-
Notifications
You must be signed in to change notification settings - Fork 883
/
url_helper.py
999 lines (876 loc) · 34.2 KB
/
url_helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
# Copyright (C) 2012 Canonical Ltd.
# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
# Copyright (C) 2012 Yahoo! Inc.
#
# Author: Scott Moser <scott.moser@canonical.com>
# Author: Juerg Haefliger <juerg.haefliger@hp.com>
# Author: Joshua Harlow <harlowja@yahoo-inc.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
import copy
import ftplib
import io
import json
import logging
import os
import threading
import time
from concurrent.futures import ThreadPoolExecutor, TimeoutError, as_completed
from email.utils import parsedate
from functools import partial
from http.client import NOT_FOUND
from itertools import count
from ssl import create_default_context
from typing import Any, Callable, Iterator, List, Optional, Tuple, Union
from urllib.parse import quote, urlparse, urlsplit, urlunparse
import requests
from requests import exceptions
from cloudinit import util, version
LOG = logging.getLogger(__name__)
REDACTED = "REDACTED"
def _cleanurl(url):
parsed_url = list(urlparse(url, scheme="http"))
if not parsed_url[1] and parsed_url[2]:
# Swap these since this seems to be a common
# occurrence when given urls like 'www.google.com'
parsed_url[1] = parsed_url[2]
parsed_url[2] = ""
return urlunparse(parsed_url)
def combine_url(base, *add_ons):
def combine_single(url, add_on):
url_parsed = list(urlparse(url))
path = url_parsed[2]
if path and not path.endswith("/"):
path += "/"
path += quote(str(add_on), safe="/:")
url_parsed[2] = path
return urlunparse(url_parsed)
url = base
for add_on in add_ons:
url = combine_single(url, add_on)
return url
def ftp_get_return_code_from_exception(exc) -> int:
"""helper for read_ftps to map return codes to a number"""
# ftplib doesn't expose error codes, so use this lookup table
ftp_error_codes = {
ftplib.error_reply: 300, # unexpected [123]xx reply
ftplib.error_temp: 400, # 4xx errors
ftplib.error_perm: 500, # 5xx errors
ftplib.error_proto: 600, # response does not begin with [1-5]
EOFError: 700, # made up
# OSError is also possible. Use OSError.errno for that.
}
code = ftp_error_codes.get(type(exc)) # pyright: ignore
if not code:
if isinstance(exc, OSError):
code = exc.errno
else:
LOG.warning(
"Unexpected exception type while connecting to ftp server."
)
code = -99
return code
def read_ftps(url: str, timeout: float = 5.0, **kwargs: dict) -> "FtpResponse":
"""connect to URL using ftp over TLS and read a file
when using strict mode (ftps://), raise exception in event of failure
when not using strict mode (ftp://), fall back to using unencrypted ftp
url: string containing the desination to read a file from. The url is
parsed with urllib.urlsplit to identify username, password, host,
path, and port in the following format:
ftps://[username:password@]host[:port]/[path]
host is the only required component
timeout: maximum time for the connection to take
kwargs: unused, for compatibility with read_url
returns: UrlResponse
"""
url_parts = urlsplit(url)
if not url_parts.hostname:
raise UrlError(
cause="Invalid url provided", code=NOT_FOUND, headers=None, url=url
)
with io.BytesIO() as buffer:
port = url_parts.port or 21
user = url_parts.username or "anonymous"
if "ftps" == url_parts.scheme:
try:
ftp_tls = ftplib.FTP_TLS(
context=create_default_context(),
)
LOG.debug(
"Attempting to connect to %s via port [%s] over tls.",
url,
port,
)
ftp_tls.connect(
host=url_parts.hostname,
port=port,
timeout=timeout or 5.0, # uses float internally
)
except ftplib.all_errors as e:
code = ftp_get_return_code_from_exception(e)
raise UrlError(
cause=(
"Reading file from server over tls "
f"failed for url {url} [{code}]"
),
code=code,
headers=None,
url=url,
) from e
LOG.debug("Attempting to login with user [%s]", user)
try:
ftp_tls.login(
user=user,
passwd=url_parts.password or "",
)
except ftplib.error_perm as e:
LOG.warning(
"Attempted to connect to an insecure ftp server but used "
"a scheme of ftps://, which is not allowed. Use ftp:// "
"to allow connecting to insecure ftp servers."
)
raise UrlError(
cause=(
"Attempted to connect to an insecure ftp server but "
"used a scheme of ftps://, which is not allowed. Use "
"ftp:// to allow connecting to insecure ftp servers."
),
code=500,
headers=None,
url=url,
) from e
LOG.debug("Creating a secure connection")
ftp_tls.prot_p()
LOG.debug("Reading file: %s", url_parts.path)
ftp_tls.retrbinary(f"RETR {url_parts.path}", callback=buffer.write)
response = FtpResponse(buffer.getvalue(), url)
LOG.debug("Closing connection")
ftp_tls.close()
return response
else:
try:
ftp = ftplib.FTP()
LOG.debug(
"Attempting to connect to %s via port %s.", url, port
)
ftp.connect(
host=url_parts.hostname,
port=port,
timeout=timeout or 5.0, # uses float internally
)
except ftplib.all_errors as e:
code = ftp_get_return_code_from_exception(e)
raise UrlError(
cause=(
"Reading file from ftp server"
f" failed for url {url} [{code}]"
),
code=code,
headers=None,
url=url,
) from e
LOG.debug("Attempting to login with user [%s]", user)
ftp.login(
user=user,
passwd=url_parts.password or "",
)
LOG.debug("Reading file: %s", url_parts.path)
ftp.retrbinary(f"RETR {url_parts.path}", callback=buffer.write)
response = FtpResponse(buffer.getvalue(), url)
LOG.debug("Closing connection")
ftp.close()
return response
def _read_file(path: str, **kwargs) -> "FileResponse":
"""read a binary file and return a FileResponse
matches function signature with read_ftps and read_url
"""
if kwargs.get("data"):
LOG.warning("Unable to post data to file resource %s", path)
try:
contents = util.load_binary_file(path)
return FileResponse(contents, path)
except FileNotFoundError as e:
raise UrlError(cause=e, code=NOT_FOUND, headers=None, url=path) from e
except IOError as e:
raise UrlError(cause=e, code=e.errno, headers=None, url=path) from e
def read_file_or_url(
url, **kwargs
) -> Union["FileResponse", "UrlResponse", "FtpResponse"]:
"""Wrapper function around readurl to allow passing a file path as url.
When url is not a local file path, passthrough any kwargs to readurl.
In the case of parameter passthrough to readurl, default values for some
parameters. See: call-signature of readurl in this module for param docs.
"""
url = url.lstrip()
try:
parsed = urlparse(url)
except ValueError as e:
raise UrlError(cause=e, url=url) from e
scheme = parsed.scheme
if scheme == "file" or (url and "/" == url[0]):
return _read_file(parsed.path, **kwargs)
elif scheme in ("ftp", "ftps"):
return read_ftps(url, **kwargs)
elif scheme in ("http", "https"):
return readurl(url, **kwargs)
else:
LOG.warning("Attempting unknown protocol %s", scheme)
return readurl(url, **kwargs)
# Made to have same accessors as UrlResponse so that the
# read_file_or_url can return this or that object and the
# 'user' of those objects will not need to know the difference.
class StringResponse:
def __init__(self, contents, url, code=200):
self.code = code
self.headers = {}
self.contents = contents
self.url = url
def ok(self, *args, **kwargs):
if self.code != 200:
return False
return True
def __str__(self):
return self.contents.decode("utf-8")
class FileResponse(StringResponse):
def __init__(self, contents: bytes, url: str, code=200):
super().__init__(contents, url, code=code)
class FtpResponse(StringResponse):
def __init__(self, contents: bytes, url: str):
super().__init__(contents, url)
class UrlResponse:
def __init__(self, response: requests.Response):
self._response = response
@property
def contents(self) -> bytes:
if self._response.content is None:
# typeshed bug: https://github.com/python/typeshed/pull/12180
return b"" # type: ignore
return self._response.content
@property
def url(self) -> str:
return self._response.url
def ok(self, redirects_ok=False) -> bool:
upper = 300
if redirects_ok:
upper = 400
if 200 <= self.code < upper:
return True
else:
return False
@property
def headers(self):
return self._response.headers
@property
def code(self) -> int:
return self._response.status_code
def __str__(self):
return self._response.text
def iter_content(
self, chunk_size: Optional[int] = 1, decode_unicode: bool = False
) -> Iterator[bytes]:
"""Iterates over the response data.
When stream=True is set on the request, this avoids reading the content
at once into memory for large responses.
:param chunk_size: Number of bytes it should read into memory.
:param decode_unicode: If True, content will be decoded using the best
available encoding based on the response.
"""
yield from self._response.iter_content(chunk_size, decode_unicode)
class UrlError(IOError):
def __init__(self, cause, code=None, headers=None, url=None):
IOError.__init__(self, str(cause))
self.cause = cause
self.code = code
self.headers = headers
if self.headers is None:
self.headers = {}
self.url = url
def _get_ssl_args(url, ssl_details):
ssl_args = {}
scheme = urlparse(url).scheme
if scheme == "https" and ssl_details:
if "ca_certs" in ssl_details and ssl_details["ca_certs"]:
ssl_args["verify"] = ssl_details["ca_certs"]
else:
ssl_args["verify"] = True
if "cert_file" in ssl_details and "key_file" in ssl_details:
ssl_args["cert"] = [
ssl_details["cert_file"],
ssl_details["key_file"],
]
elif "cert_file" in ssl_details:
ssl_args["cert"] = str(ssl_details["cert_file"])
return ssl_args
def readurl(
url,
data=None,
timeout=None,
retries=0,
sec_between=1,
headers=None,
headers_cb=None,
headers_redact=None,
ssl_details=None,
check_status=True,
allow_redirects=True,
exception_cb=None,
session=None,
infinite=False,
log_req_resp=True,
request_method="",
stream: bool = False,
) -> UrlResponse:
"""Wrapper around requests.Session to read the url and retry if necessary
:param url: Mandatory url to request.
:param data: Optional form data to post the URL. Will set request_method
to 'POST' if present.
:param timeout: Timeout in seconds to wait for a response. May be a tuple
if specifying (connection timeout, read timeout).
:param retries: Number of times to retry on exception if exception_cb is
None or exception_cb returns True for the exception caught. Default is
to fail with 0 retries on exception.
:param sec_between: Default 1: amount of seconds passed to time.sleep
between retries. None or -1 means don't sleep.
:param headers: Optional dict of headers to send during request
:param headers_cb: Optional callable returning a dict of values to send as
headers during request
:param headers_redact: Optional list of header names to redact from the log
:param ssl_details: Optional dict providing key_file, ca_certs, and
cert_file keys for use on in ssl connections.
:param check_status: Optional boolean set True to raise when HTTPError
occurs. Default: True.
:param allow_redirects: Optional boolean passed straight to Session.request
as 'allow_redirects'. Default: True.
:param exception_cb: Optional callable which accepts the params
msg and exception and returns a boolean True if retries are permitted.
:param session: Optional exiting requests.Session instance to reuse.
:param infinite: Bool, set True to retry indefinitely. Default: False.
:param log_req_resp: Set False to turn off verbose debug messages.
:param request_method: String passed as 'method' to Session.request.
Typically GET, or POST. Default: POST if data is provided, GET
otherwise.
:param stream: if False, the response content will be immediately
downloaded.
"""
url = _cleanurl(url)
req_args = {
"url": url,
"stream": stream,
}
req_args.update(_get_ssl_args(url, ssl_details))
req_args["allow_redirects"] = allow_redirects
if not request_method:
request_method = "POST" if data else "GET"
req_args["method"] = request_method
if timeout is not None:
if isinstance(timeout, tuple):
req_args["timeout"] = timeout
else:
req_args["timeout"] = max(float(timeout), 0)
if headers_redact is None:
headers_redact = []
manual_tries = 1
if retries:
manual_tries = max(int(retries) + 1, 1)
user_agent = "Cloud-Init/%s" % (version.version_string())
if headers is not None:
headers = headers.copy()
else:
headers = {}
if data:
req_args["data"] = data
if sec_between is None:
sec_between = -1
if session is None:
session = requests.Session()
# Handle retrying ourselves since the built-in support
# doesn't handle sleeping between tries...
for i in count():
if headers_cb:
headers = headers_cb(url)
if "User-Agent" not in headers:
headers["User-Agent"] = user_agent
req_args["headers"] = headers
filtered_req_args = {}
for (k, v) in req_args.items():
if k == "data":
continue
if k == "headers" and headers_redact:
matched_headers = [k for k in headers_redact if v.get(k)]
if matched_headers:
filtered_req_args[k] = copy.deepcopy(v)
for key in matched_headers:
filtered_req_args[k][key] = REDACTED
else:
filtered_req_args[k] = v
try:
if log_req_resp:
LOG.debug(
"[%s/%s] open '%s' with %s configuration",
i,
"infinite" if infinite else manual_tries,
url,
filtered_req_args,
)
r = session.request(**req_args)
if check_status:
r.raise_for_status()
LOG.debug(
"Read from %s (%s, %sb) after %s attempts",
url,
r.status_code,
len(r.content),
(i + 1),
)
# Doesn't seem like we can make it use a different
# subclass for responses, so add our own backward-compat
# attrs
return UrlResponse(r)
except exceptions.SSLError as e:
# ssl exceptions are not going to get fixed by waiting a
# few seconds
raise UrlError(e, url=url) from e
except exceptions.RequestException as e:
if (
isinstance(e, (exceptions.HTTPError))
and hasattr(e, "response")
and hasattr( # This appeared in v 0.10.8
e.response, "status_code"
)
):
url_error = UrlError(
e,
code=e.response.status_code,
headers=e.response.headers,
url=url,
)
else:
url_error = UrlError(e, url=url)
if exception_cb and not exception_cb(req_args.copy(), url_error):
# if an exception callback was given, it should return True
# to continue retrying and False to break and re-raise the
# exception
raise url_error from e
will_retry = infinite or (i + 1 < manual_tries)
if not will_retry:
raise url_error from e
if sec_between > 0:
if log_req_resp:
LOG.debug(
"Please wait %s seconds while we wait to try again",
sec_between,
)
time.sleep(sec_between)
raise RuntimeError("This path should be unreachable...")
def _run_func_with_delay(
func: Callable[..., Any],
addr: str,
timeout: int,
event: threading.Event,
delay: Optional[float] = None,
) -> Any:
"""Execute func with optional delay"""
if delay:
# event returns True iff the flag is set to true: indicating that
# another thread has already completed successfully, no need to try
# again - exit early
if event.wait(timeout=delay):
return
return func(addr, timeout)
def dual_stack(
func: Callable[..., Any],
addresses: List[str],
stagger_delay: float = 0.150,
timeout: int = 10,
) -> Tuple:
"""execute multiple callbacks in parallel
Run blocking func against two different addresses staggered with a
delay. The first call to return successfully is returned from this
function and remaining unfinished calls are cancelled if they have not
yet started
"""
return_result = None
returned_address = None
last_exception: Optional[BaseException] = None
exceptions = []
is_done = threading.Event()
# future work: add cancel_futures to Python stdlib ThreadPoolExecutor
# context manager implementation
#
# for now we don't use this feature since it only supports python >3.8
# and doesn't provide a context manager and only marginal benefit
executor = ThreadPoolExecutor(max_workers=len(addresses))
try:
futures = {
executor.submit(
_run_func_with_delay,
func=func,
addr=addr,
timeout=timeout,
event=is_done,
delay=(i * stagger_delay),
): addr
for i, addr in enumerate(addresses)
}
# handle returned requests in order of completion
for future in as_completed(futures, timeout=timeout):
returned_address = futures[future]
return_exception = future.exception()
if return_exception:
last_exception = return_exception
exceptions.append(last_exception)
else:
return_result = future.result()
if return_result:
# communicate to other threads that they do not need to
# try: this thread has already succeeded
is_done.set()
return (returned_address, return_result)
# No success, return the last exception but log them all for
# debugging
if last_exception:
LOG.warning(
"Exception(s) %s during request to "
"%s, raising last exception",
exceptions,
returned_address,
)
raise last_exception
else:
LOG.error("Empty result for address %s", returned_address)
raise ValueError("No result returned")
# when max_wait expires, log but don't throw (retries happen)
except TimeoutError:
LOG.warning(
"Timed out waiting for addresses: %s, "
"exception(s) raised while waiting: %s",
" ".join(addresses),
" ".join(map(str, exceptions)),
)
finally:
executor.shutdown(wait=False)
return (returned_address, return_result)
def wait_for_url(
urls,
max_wait: float = float("inf"),
timeout: Optional[float] = None,
status_cb: Callable = LOG.debug, # some sources use different log levels
headers_cb: Optional[Callable] = None,
headers_redact=None,
sleep_time: Optional[float] = None,
exception_cb: Optional[Callable] = None,
sleep_time_cb: Optional[Callable[[Any, float], float]] = None,
request_method: str = "",
connect_synchronously: bool = True,
async_delay: float = 0.150,
):
"""
urls: a list of urls to try
max_wait: roughly the maximum time to wait before giving up
The max time is *actually* len(urls)*timeout as each url will
be tried once and given the timeout provided.
a number <= 0 will always result in only one try
timeout: the timeout provided to urlopen
status_cb: call method with string message when a url is not available
headers_cb: call method with single argument of url to get headers
for request.
headers_redact: a list of header names to redact from the log
sleep_time: Amount of time to sleep between retries. If this and
sleep_time_cb are None, the default sleep time
defaults to 1 second and increases by 1 seconds every 5
tries. Cannot be specified along with `sleep_time_cb`.
exception_cb: call method with 2 arguments 'msg' (per status_cb) and
'exception', the exception that occurred.
sleep_time_cb: call method with 2 arguments (response, loop_n) that
generates the next sleep time. Cannot be specified
along with 'sleep_time`.
request_method: indicate the type of HTTP request, GET, PUT, or POST
connect_synchronously: if false, enables executing requests in parallel
async_delay: delay before parallel metadata requests, see RFC 6555
returns: tuple of (url, response contents), on failure, (False, None)
the idea of this routine is to wait for the EC2 metadata service to
come up. On both Eucalyptus and EC2 we have seen the case where
the instance hit the MD before the MD service was up. EC2 seems
to have permanently fixed this, though.
In openstack, the metadata service might be painfully slow, and
unable to avoid hitting a timeout of even up to 10 seconds or more
(LP: #894279) for a simple GET.
Offset those needs with the need to not hang forever (and block boot)
on a system where cloud-init is configured to look for EC2 Metadata
service but is not going to find one. It is possible that the instance
data host (169.254.169.254) may be firewalled off Entirely for a system,
meaning that the connection will block forever unless a timeout is set.
The default value for max_wait will retry indefinitely.
"""
def default_sleep_time(_, loop_number: int) -> float:
return sleep_time if sleep_time is not None else loop_number // 5 + 1
def timeup(max_wait: float, start_time: float, sleep_time: float = 0):
"""Check if time is up based on start time and max wait"""
if max_wait in (float("inf"), None):
return False
return (max_wait <= 0) or (
time.monotonic() - start_time + sleep_time > max_wait
)
def handle_url_response(response, url):
"""Map requests response code/contents to internal "UrlError" type"""
if not response.contents:
reason = "empty response [%s]" % (response.code)
url_exc = UrlError(
ValueError(reason),
code=response.code,
headers=response.headers,
url=url,
)
elif not response.ok():
reason = "bad status code [%s]" % (response.code)
url_exc = UrlError(
ValueError(reason),
code=response.code,
headers=response.headers,
url=url,
)
else:
reason = ""
url_exc = None
return (url_exc, reason)
def read_url_handle_exceptions(
url_reader_cb, urls, start_time, exc_cb, log_cb
):
"""Execute request, handle response, optionally log exception"""
reason = ""
url = None
try:
url, response = url_reader_cb(urls)
url_exc, reason = handle_url_response(response, url)
if not url_exc:
return (url, response)
except UrlError as e:
reason = "request error [%s]" % e
url_exc = e
except Exception as e:
reason = "unexpected error [%s]" % e
url_exc = e
time_taken = int(time.monotonic() - start_time)
max_wait_str = "%ss" % max_wait if max_wait else "unlimited"
status_msg = "Calling '%s' failed [%s/%s]: %s" % (
url or getattr(url_exc, "url", "url ? None"),
time_taken,
max_wait_str,
reason,
)
log_cb(status_msg)
if exc_cb:
# This can be used to alter the headers that will be sent
# in the future, for example this is what the MAAS datasource
# does.
exc_cb(msg=status_msg, exception=url_exc)
def read_url_cb(url, timeout):
return readurl(
url,
headers={} if headers_cb is None else headers_cb(url),
headers_redact=headers_redact,
timeout=timeout,
check_status=False,
request_method=request_method,
)
def read_url_serial(start_time, timeout, exc_cb, log_cb):
"""iterate over list of urls, request each one and handle responses
and thrown exceptions individually per url
"""
def url_reader_serial(url):
return (url, read_url_cb(url, timeout))
for url in urls:
now = time.monotonic()
if loop_n != 0:
if timeup(max_wait, start_time):
return
if (
max_wait is not None
and timeout
and (now + timeout > (start_time + max_wait))
):
# shorten timeout to not run way over max_time
timeout = int((start_time + max_wait) - now)
out = read_url_handle_exceptions(
url_reader_serial, url, start_time, exc_cb, log_cb
)
if out:
return out
def read_url_parallel(start_time, timeout, exc_cb, log_cb):
"""pass list of urls to dual_stack which sends requests in parallel
handle response and exceptions of the first endpoint to respond
"""
url_reader_parallel = partial(
dual_stack,
read_url_cb,
stagger_delay=async_delay,
timeout=timeout,
)
out = read_url_handle_exceptions(
url_reader_parallel, urls, start_time, exc_cb, log_cb
)
if out:
return out
start_time = time.monotonic()
if sleep_time and sleep_time_cb:
raise ValueError("sleep_time and sleep_time_cb are mutually exclusive")
# Dual-stack support factored out serial and parallel execution paths to
# allow the retry loop logic to exist separately from the http calls.
# Serial execution should be fundamentally the same as before, but with a
# layer of indirection so that the parallel dual-stack path may use the
# same max timeout logic.
do_read_url = (
read_url_serial if connect_synchronously else read_url_parallel
)
calculate_sleep_time = sleep_time_cb or default_sleep_time
loop_n: int = 0
response = None
while True:
current_sleep_time = calculate_sleep_time(response, loop_n)
url = do_read_url(start_time, timeout, exception_cb, status_cb)
if url:
address, response = url
return (address, response.contents)
if timeup(max_wait, start_time, current_sleep_time):
break
loop_n = loop_n + 1
LOG.debug(
"Please wait %s seconds while we wait to try again",
current_sleep_time,
)
time.sleep(current_sleep_time)
# shorten timeout to not run way over max_time
current_time = time.monotonic()
if timeout and current_time + timeout > start_time + max_wait:
timeout = max_wait - (current_time - start_time)
if timeout <= 0:
# We've already exceeded our max_wait. Time to bail.
break
LOG.error("Timed out, no response from urls: %s", urls)
return False, None
class OauthUrlHelper:
def __init__(
self,
consumer_key=None,
token_key=None,
token_secret=None,
consumer_secret=None,
skew_data_file="/run/oauth_skew.json",
):
self.consumer_key = consumer_key
self.consumer_secret = consumer_secret or ""
self.token_key = token_key
self.token_secret = token_secret
self.skew_data_file = skew_data_file
self._do_oauth = True
self.skew_change_limit = 5
required = (self.token_key, self.token_secret, self.consumer_key)
if not any(required):
self._do_oauth = False
elif not all(required):
raise ValueError(
"all or none of token_key, token_secret, or "
"consumer_key can be set"
)
old = self.read_skew_file()
self.skew_data = old or {}
def read_skew_file(self):
if self.skew_data_file and os.path.isfile(self.skew_data_file):
with open(self.skew_data_file, mode="r") as fp:
return json.load(fp)
return None
def update_skew_file(self, host, value):
# this is not atomic
if not self.skew_data_file:
return
cur = self.read_skew_file()
if cur is None:
cur = {}
cur[host] = value
with open(self.skew_data_file, mode="w") as fp:
fp.write(json.dumps(cur))
def exception_cb(self, msg, exception):
if not (
isinstance(exception, UrlError)
and (exception.code == 403 or exception.code == 401)
):
return
if "date" not in exception.headers:
LOG.warning("Missing header 'date' in %s response", exception.code)
return
date = exception.headers["date"]
try:
remote_time = time.mktime(parsedate(date))
except Exception as e:
LOG.warning("Failed to convert datetime '%s': %s", date, e)
return
skew = int(remote_time - time.time())
host = urlparse(exception.url).netloc
old_skew = self.skew_data.get(host, 0)
if abs(old_skew - skew) > self.skew_change_limit:
self.update_skew_file(host, skew)
LOG.warning("Setting oauth clockskew for %s to %d", host, skew)
self.skew_data[host] = skew
return
def headers_cb(self, url):
if not self._do_oauth:
return {}
timestamp = None
host = urlparse(url).netloc
if self.skew_data and host in self.skew_data:
timestamp = int(time.time()) + self.skew_data[host]
return oauth_headers(
url=url,
consumer_key=self.consumer_key,
token_key=self.token_key,
token_secret=self.token_secret,
consumer_secret=self.consumer_secret,
timestamp=timestamp,
)
def _wrapped(self, wrapped_func, args, kwargs):
kwargs["headers_cb"] = partial(
self._headers_cb, kwargs.get("headers_cb")
)
kwargs["exception_cb"] = partial(
self._exception_cb, kwargs.get("exception_cb")
)
return wrapped_func(*args, **kwargs)
def wait_for_url(self, *args, **kwargs):
return self._wrapped(wait_for_url, args, kwargs)
def readurl(self, *args, **kwargs):
return self._wrapped(readurl, args, kwargs)
def _exception_cb(self, extra_exception_cb, msg, exception):
ret = None
try:
if extra_exception_cb:
ret = extra_exception_cb(msg, exception)
finally:
self.exception_cb(msg, exception)
return ret
def _headers_cb(self, extra_headers_cb, url):
headers = {}
if extra_headers_cb:
headers = extra_headers_cb(url)
headers.update(self.headers_cb(url))
return headers
def oauth_headers(
url, consumer_key, token_key, token_secret, consumer_secret, timestamp=None
):
try:
import oauthlib.oauth1 as oauth1
except ImportError as e:
raise NotImplementedError("oauth support is not available") from e
if timestamp:
timestamp = str(timestamp)
else:
timestamp = None
client = oauth1.Client(
consumer_key,
client_secret=consumer_secret,
resource_owner_key=token_key,
resource_owner_secret=token_secret,
signature_method=oauth1.SIGNATURE_PLAINTEXT,
timestamp=timestamp,
)
_uri, signed_headers, _body = client.sign(url)
return signed_headers