blob: 909c2cf50b6f57dc5f0f4aa9e4c177a2afa017fe [file] [log] [blame]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001"""An extensible library for opening URLs using a variety of protocols
2
3The simplest way to use this module is to call the urlopen function,
4which accepts a string containing a URL or a Request object (described
5below). It opens the URL and returns the results as file-like
6object; the returned object has some extra methods described below.
7
8The OpenerDirector manages a collection of Handler objects that do
9all the actual work. Each Handler implements a particular protocol or
10option. The OpenerDirector is a composite object that invokes the
11Handlers needed to open the requested URL. For example, the
12HTTPHandler performs HTTP GET and POST requests and deals with
13non-error returns. The HTTPRedirectHandler automatically deals with
14HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
15deals with digest authentication.
16
17urlopen(url, data=None) -- Basic usage is the same as original
18urllib. pass the url and optionally data to post to an HTTP URL, and
19get a file-like object back. One difference is that you can also pass
20a Request instance instead of URL. Raises a URLError (subclass of
Andrew Svetlovf7a17b42012-12-25 16:47:37 +020021OSError); for HTTP errors, raises an HTTPError, which can also be
Jeremy Hylton1afc1692008-06-18 20:49:58 +000022treated as a valid response.
23
24build_opener -- Function that creates a new OpenerDirector instance.
25Will install the default handlers. Accepts one or more Handlers as
26arguments, either instances or Handler classes that it will
27instantiate. If one of the argument is a subclass of the default
28handler, the argument will be installed instead of the default.
29
30install_opener -- Installs a new opener as the default opener.
31
32objects of interest:
Senthil Kumaran1107c5d2009-11-15 06:20:55 +000033
Senthil Kumaran47fff872009-12-20 07:10:31 +000034OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
35the Handler classes, while dealing with requests and responses.
Jeremy Hylton1afc1692008-06-18 20:49:58 +000036
37Request -- An object that encapsulates the state of a request. The
38state can be as simple as the URL. It can also include extra HTTP
39headers, e.g. a User-Agent.
40
41BaseHandler --
42
43internals:
44BaseHandler and parent
45_call_chain conventions
46
47Example usage:
48
Georg Brandl029986a2008-06-23 11:44:14 +000049import urllib.request
Jeremy Hylton1afc1692008-06-18 20:49:58 +000050
51# set up authentication info
Georg Brandl029986a2008-06-23 11:44:14 +000052authinfo = urllib.request.HTTPBasicAuthHandler()
Jeremy Hylton1afc1692008-06-18 20:49:58 +000053authinfo.add_password(realm='PDQ Application',
54 uri='https://mahler:8092/site-updates.py',
55 user='klem',
56 passwd='geheim$parole')
57
Georg Brandl029986a2008-06-23 11:44:14 +000058proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})
Jeremy Hylton1afc1692008-06-18 20:49:58 +000059
60# build a new opener that adds authentication and caching FTP handlers
Georg Brandl029986a2008-06-23 11:44:14 +000061opener = urllib.request.build_opener(proxy_support, authinfo,
62 urllib.request.CacheFTPHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000063
64# install it
Georg Brandl029986a2008-06-23 11:44:14 +000065urllib.request.install_opener(opener)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000066
Georg Brandl029986a2008-06-23 11:44:14 +000067f = urllib.request.urlopen('http://www.python.org/')
Jeremy Hylton1afc1692008-06-18 20:49:58 +000068"""
69
70# XXX issues:
71# If an authentication error handler that tries to perform
72# authentication for some reason but fails, how should the error be
73# signalled? The client needs to know the HTTP error code. But if
74# the handler knows that the problem was, e.g., that it didn't know
75# that hash algo that requested in the challenge, it would be good to
76# pass that information along to the client, too.
77# ftp errors aren't handled cleanly
78# check digest against correct (i.e. non-apache) implementation
79
80# Possible extensions:
81# complex proxies XXX not sure what exactly was meant by this
82# abstract factory for opener
83
84import base64
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +000085import bisect
Jeremy Hylton1afc1692008-06-18 20:49:58 +000086import email
87import hashlib
88import http.client
89import io
90import os
91import posixpath
Jeremy Hylton1afc1692008-06-18 20:49:58 +000092import re
93import socket
94import sys
95import time
Senthil Kumaran7bc0d872010-12-19 10:49:52 +000096import collections
Senthil Kumarane24f96a2012-03-13 19:29:33 -070097import tempfile
98import contextlib
Senthil Kumaran38b968b92012-03-14 13:43:53 -070099import warnings
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700100
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000101
Georg Brandl13e89462008-07-01 19:56:00 +0000102from urllib.error import URLError, HTTPError, ContentTooShortError
103from urllib.parse import (
104 urlparse, urlsplit, urljoin, unwrap, quote, unquote,
105 splittype, splithost, splitport, splituser, splitpasswd,
Antoine Pitroudf204be2012-11-24 17:59:08 +0100106 splitattr, splitquery, splitvalue, splittag, to_bytes,
107 unquote_to_bytes, urlunparse)
Georg Brandl13e89462008-07-01 19:56:00 +0000108from urllib.response import addinfourl, addclosehook
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000109
110# check for SSL
111try:
112 import ssl
Brett Cannoncd171c82013-07-04 17:43:24 -0400113except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000114 _have_ssl = False
115else:
116 _have_ssl = True
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000117
Senthil Kumaran6c5bd402011-11-01 23:20:31 +0800118__all__ = [
119 # Classes
120 'Request', 'OpenerDirector', 'BaseHandler', 'HTTPDefaultErrorHandler',
121 'HTTPRedirectHandler', 'HTTPCookieProcessor', 'ProxyHandler',
122 'HTTPPasswordMgr', 'HTTPPasswordMgrWithDefaultRealm',
R David Murray4c7f9952015-04-16 16:36:18 -0400123 'HTTPPasswordMgrWithPriorAuth', 'AbstractBasicAuthHandler',
124 'HTTPBasicAuthHandler', 'ProxyBasicAuthHandler', 'AbstractDigestAuthHandler',
125 'HTTPDigestAuthHandler', 'ProxyDigestAuthHandler', 'HTTPHandler',
126 'FileHandler', 'FTPHandler', 'CacheFTPHandler', 'DataHandler',
Senthil Kumaran6c5bd402011-11-01 23:20:31 +0800127 'UnknownHandler', 'HTTPErrorProcessor',
128 # Functions
129 'urlopen', 'install_opener', 'build_opener',
130 'pathname2url', 'url2pathname', 'getproxies',
131 # Legacy interface
132 'urlretrieve', 'urlcleanup', 'URLopener', 'FancyURLopener',
133]
134
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000135# used in User-Agent header sent
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200136__version__ = '%d.%d' % sys.version_info[:2]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000137
138_opener = None
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000139def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
Senthil Kumarana5c85b32014-09-19 15:23:30 +0800140 *, cafile=None, capath=None, cadefault=False, context=None):
Raymond Hettinger507343a2015-08-18 00:35:52 -0700141 '''Open the URL url, which can be either a string or a Request object.
142
143 *data* must be a bytes object specifying additional data to be sent to the
144 server, or None if no such data is needed. data may also be an iterable
145 object and in that case Content-Length value must be specified in the
146 headers. Currently HTTP requests are the only ones that use data; the HTTP
147 request will be a POST instead of a GET when the data parameter is
148 provided.
149
150 *data* should be a buffer in the standard application/x-www-form-urlencoded
151 format. The urllib.parse.urlencode() function takes a mapping or sequence
Martin Panterf65dd1d2015-11-24 23:00:37 +0000152 of 2-tuples and returns an ASCII text string in this format. It should be
153 encoded to bytes before being used as the data parameter.
Raymond Hettinger507343a2015-08-18 00:35:52 -0700154
155 urllib.request module uses HTTP/1.1 and includes a "Connection:close"
156 header in its HTTP requests.
157
158 The optional *timeout* parameter specifies a timeout in seconds for
159 blocking operations like the connection attempt (if not specified, the
160 global default timeout setting will be used). This only works for HTTP,
161 HTTPS and FTP connections.
162
163 If *context* is specified, it must be a ssl.SSLContext instance describing
164 the various SSL options. See HTTPSConnection for more details.
165
166 The optional *cafile* and *capath* parameters specify a set of trusted CA
167 certificates for HTTPS requests. cafile should point to a single file
168 containing a bundle of CA certificates, whereas capath should point to a
169 directory of hashed certificate files. More information can be found in
170 ssl.SSLContext.load_verify_locations().
171
172 The *cadefault* parameter is ignored.
173
174 For http and https urls, this function returns a http.client.HTTPResponse
175 object which has the following HTTPResponse Objects methods.
176
177 For ftp, file, and data urls and requests explicitly handled by legacy
178 URLopener and FancyURLopener classes, this function returns a
179 urllib.response.addinfourl object which can work as context manager and has
180 methods such as:
181
Serhiy Storchaka3fd4a732015-12-18 13:10:37 +0200182 * geturl() - return the URL of the resource retrieved, commonly used to
Raymond Hettinger507343a2015-08-18 00:35:52 -0700183 determine if a redirect was followed
184
Serhiy Storchaka3fd4a732015-12-18 13:10:37 +0200185 * info() - return the meta-information of the page, such as headers, in the
Raymond Hettinger507343a2015-08-18 00:35:52 -0700186 form of an email.message_from_string() instance (see Quick Reference to
187 HTTP Headers)
188
Serhiy Storchaka3fd4a732015-12-18 13:10:37 +0200189 * getcode() - return the HTTP status code of the response. Raises URLError
Raymond Hettinger507343a2015-08-18 00:35:52 -0700190 on errors.
191
192 Note that *None& may be returned if no handler handles the request (though
193 the default installed global OpenerDirector uses UnknownHandler to ensure
194 this never happens).
195
196 In addition, if proxy settings are detected (for example, when a *_proxy
197 environment variable like http_proxy is set), ProxyHandler is default
198 installed and makes sure the requests are handled through the proxy.
199
200 '''
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000201 global _opener
Antoine Pitroude9ac6c2012-05-16 21:40:01 +0200202 if cafile or capath or cadefault:
Senthil Kumarana5c85b32014-09-19 15:23:30 +0800203 if context is not None:
204 raise ValueError(
205 "You can't pass both context and any of cafile, capath, and "
206 "cadefault"
207 )
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000208 if not _have_ssl:
209 raise ValueError('SSL support not available')
Benjamin Petersonb6666972014-12-07 13:46:02 -0500210 context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH,
Christian Heimes67986f92013-11-23 22:43:47 +0100211 cafile=cafile,
212 capath=capath)
Benjamin Petersonb6666972014-12-07 13:46:02 -0500213 https_handler = HTTPSHandler(context=context)
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000214 opener = build_opener(https_handler)
Senthil Kumarana5c85b32014-09-19 15:23:30 +0800215 elif context:
216 https_handler = HTTPSHandler(context=context)
217 opener = build_opener(https_handler)
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000218 elif _opener is None:
219 _opener = opener = build_opener()
220 else:
221 opener = _opener
222 return opener.open(url, data, timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000223
224def install_opener(opener):
225 global _opener
226 _opener = opener
227
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700228_url_tempfiles = []
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000229def urlretrieve(url, filename=None, reporthook=None, data=None):
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700230 """
231 Retrieve a URL into a temporary location on disk.
232
233 Requires a URL argument. If a filename is passed, it is used as
234 the temporary file location. The reporthook argument should be
235 a callable that accepts a block number, a read size, and the
236 total file size of the URL target. The data argument should be
237 valid URL encoded data.
238
239 If a filename is passed and the URL points to a local resource,
240 the result is a copy from local file to new file.
241
242 Returns a tuple containing the path to the newly created
243 data file as well as the resulting HTTPMessage object.
244 """
245 url_type, path = splittype(url)
246
247 with contextlib.closing(urlopen(url, data)) as fp:
248 headers = fp.info()
249
250 # Just return the local path and the "headers" for file://
251 # URLs. No sense in performing a copy unless requested.
252 if url_type == "file" and not filename:
253 return os.path.normpath(path), headers
254
255 # Handle temporary file setup.
256 if filename:
257 tfp = open(filename, 'wb')
258 else:
259 tfp = tempfile.NamedTemporaryFile(delete=False)
260 filename = tfp.name
261 _url_tempfiles.append(filename)
262
263 with tfp:
264 result = filename, headers
265 bs = 1024*8
266 size = -1
267 read = 0
268 blocknum = 0
269 if "content-length" in headers:
270 size = int(headers["Content-Length"])
271
272 if reporthook:
Gregory P. Smith6b0bdab2012-11-10 13:43:44 -0800273 reporthook(blocknum, bs, size)
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700274
275 while True:
276 block = fp.read(bs)
277 if not block:
278 break
279 read += len(block)
280 tfp.write(block)
281 blocknum += 1
282 if reporthook:
Gregory P. Smith6b0bdab2012-11-10 13:43:44 -0800283 reporthook(blocknum, bs, size)
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700284
285 if size >= 0 and read < size:
286 raise ContentTooShortError(
287 "retrieval incomplete: got only %i out of %i bytes"
288 % (read, size), result)
289
290 return result
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000291
292def urlcleanup():
Robert Collins2fee5c92015-08-04 12:52:06 +1200293 """Clean up temporary files from urlretrieve calls."""
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700294 for temp_file in _url_tempfiles:
295 try:
296 os.unlink(temp_file)
Andrew Svetlov3438fa42012-12-17 23:35:18 +0200297 except OSError:
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700298 pass
299
300 del _url_tempfiles[:]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000301 global _opener
302 if _opener:
303 _opener = None
304
305# copied from cookielib.py
Antoine Pitroufd036452008-08-19 17:56:33 +0000306_cut_port_re = re.compile(r":\d+$", re.ASCII)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000307def request_host(request):
308 """Return request-host, as defined by RFC 2965.
309
310 Variation from RFC: returned value is lowercased, for convenient
311 comparison.
312
313 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000314 url = request.full_url
Georg Brandl13e89462008-07-01 19:56:00 +0000315 host = urlparse(url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000316 if host == "":
317 host = request.get_header("Host", "")
318
319 # remove port, if present
320 host = _cut_port_re.sub("", host, 1)
321 return host.lower()
322
323class Request:
324
325 def __init__(self, url, data=None, headers={},
Senthil Kumarande49d642011-10-16 23:54:44 +0800326 origin_req_host=None, unverifiable=False,
327 method=None):
Senthil Kumaran52380922013-04-25 05:45:48 -0700328 self.full_url = url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000329 self.headers = {}
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200330 self.unredirected_hdrs = {}
331 self._data = None
332 self.data = data
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000333 self._tunnel_host = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000334 for key, value in headers.items():
335 self.add_header(key, value)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000336 if origin_req_host is None:
337 origin_req_host = request_host(self)
338 self.origin_req_host = origin_req_host
339 self.unverifiable = unverifiable
Jason R. Coombs7dc4f4b2013-09-08 12:47:07 -0400340 if method:
341 self.method = method
Senthil Kumaran52380922013-04-25 05:45:48 -0700342
343 @property
344 def full_url(self):
Senthil Kumaran83070752013-05-24 09:14:12 -0700345 if self.fragment:
346 return '{}#{}'.format(self._full_url, self.fragment)
Senthil Kumaran52380922013-04-25 05:45:48 -0700347 return self._full_url
348
349 @full_url.setter
350 def full_url(self, url):
351 # unwrap('<URL:type://host/path>') --> 'type://host/path'
352 self._full_url = unwrap(url)
353 self._full_url, self.fragment = splittag(self._full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000354 self._parse()
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000355
Senthil Kumaran52380922013-04-25 05:45:48 -0700356 @full_url.deleter
357 def full_url(self):
358 self._full_url = None
359 self.fragment = None
360 self.selector = ''
361
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200362 @property
363 def data(self):
364 return self._data
365
366 @data.setter
367 def data(self, data):
368 if data != self._data:
369 self._data = data
370 # issue 16464
371 # if we change data we need to remove content-length header
372 # (cause it's most probably calculated for previous value)
373 if self.has_header("Content-length"):
374 self.remove_header("Content-length")
375
376 @data.deleter
377 def data(self):
R David Murray9cc7d452013-03-20 00:10:51 -0400378 self.data = None
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200379
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000380 def _parse(self):
Senthil Kumaran52380922013-04-25 05:45:48 -0700381 self.type, rest = splittype(self._full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000382 if self.type is None:
R David Murrayd8a46962013-04-03 06:58:34 -0400383 raise ValueError("unknown url type: %r" % self.full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000384 self.host, self.selector = splithost(rest)
385 if self.host:
386 self.host = unquote(self.host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000387
388 def get_method(self):
Senthil Kumarande49d642011-10-16 23:54:44 +0800389 """Return a string indicating the HTTP request method."""
Jason R. Coombsaae6a1d2013-09-08 12:54:33 -0400390 default_method = "POST" if self.data is not None else "GET"
391 return getattr(self, 'method', default_method)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000392
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000393 def get_full_url(self):
Senthil Kumaran52380922013-04-25 05:45:48 -0700394 return self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000395
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000396 def set_proxy(self, host, type):
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000397 if self.type == 'https' and not self._tunnel_host:
398 self._tunnel_host = self.host
399 else:
400 self.type= type
401 self.selector = self.full_url
402 self.host = host
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000403
404 def has_proxy(self):
405 return self.selector == self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000406
407 def add_header(self, key, val):
408 # useful for something like authentication
409 self.headers[key.capitalize()] = val
410
411 def add_unredirected_header(self, key, val):
412 # will not be added to a redirected request
413 self.unredirected_hdrs[key.capitalize()] = val
414
415 def has_header(self, header_name):
416 return (header_name in self.headers or
417 header_name in self.unredirected_hdrs)
418
419 def get_header(self, header_name, default=None):
420 return self.headers.get(
421 header_name,
422 self.unredirected_hdrs.get(header_name, default))
423
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200424 def remove_header(self, header_name):
425 self.headers.pop(header_name, None)
426 self.unredirected_hdrs.pop(header_name, None)
427
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000428 def header_items(self):
429 hdrs = self.unredirected_hdrs.copy()
430 hdrs.update(self.headers)
431 return list(hdrs.items())
432
433class OpenerDirector:
434 def __init__(self):
435 client_version = "Python-urllib/%s" % __version__
436 self.addheaders = [('User-agent', client_version)]
R. David Murray25b8cca2010-12-23 19:44:49 +0000437 # self.handlers is retained only for backward compatibility
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000438 self.handlers = []
R. David Murray25b8cca2010-12-23 19:44:49 +0000439 # manage the individual handlers
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000440 self.handle_open = {}
441 self.handle_error = {}
442 self.process_response = {}
443 self.process_request = {}
444
445 def add_handler(self, handler):
446 if not hasattr(handler, "add_parent"):
447 raise TypeError("expected BaseHandler instance, got %r" %
448 type(handler))
449
450 added = False
451 for meth in dir(handler):
452 if meth in ["redirect_request", "do_open", "proxy_open"]:
453 # oops, coincidental match
454 continue
455
456 i = meth.find("_")
457 protocol = meth[:i]
458 condition = meth[i+1:]
459
460 if condition.startswith("error"):
461 j = condition.find("_") + i + 1
462 kind = meth[j+1:]
463 try:
464 kind = int(kind)
465 except ValueError:
466 pass
467 lookup = self.handle_error.get(protocol, {})
468 self.handle_error[protocol] = lookup
469 elif condition == "open":
470 kind = protocol
471 lookup = self.handle_open
472 elif condition == "response":
473 kind = protocol
474 lookup = self.process_response
475 elif condition == "request":
476 kind = protocol
477 lookup = self.process_request
478 else:
479 continue
480
481 handlers = lookup.setdefault(kind, [])
482 if handlers:
483 bisect.insort(handlers, handler)
484 else:
485 handlers.append(handler)
486 added = True
487
488 if added:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000489 bisect.insort(self.handlers, handler)
490 handler.add_parent(self)
491
492 def close(self):
493 # Only exists for backwards compatibility.
494 pass
495
496 def _call_chain(self, chain, kind, meth_name, *args):
497 # Handlers raise an exception if no one else should try to handle
498 # the request, or return None if they can't but another handler
499 # could. Otherwise, they return the response.
500 handlers = chain.get(kind, ())
501 for handler in handlers:
502 func = getattr(handler, meth_name)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000503 result = func(*args)
504 if result is not None:
505 return result
506
507 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
508 # accept a URL or a Request object
509 if isinstance(fullurl, str):
510 req = Request(fullurl, data)
511 else:
512 req = fullurl
513 if data is not None:
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000514 req.data = data
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000515
516 req.timeout = timeout
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000517 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000518
519 # pre-process request
520 meth_name = protocol+"_request"
521 for processor in self.process_request.get(protocol, []):
522 meth = getattr(processor, meth_name)
523 req = meth(req)
524
525 response = self._open(req, data)
526
527 # post-process response
528 meth_name = protocol+"_response"
529 for processor in self.process_response.get(protocol, []):
530 meth = getattr(processor, meth_name)
531 response = meth(req, response)
532
533 return response
534
535 def _open(self, req, data=None):
536 result = self._call_chain(self.handle_open, 'default',
537 'default_open', req)
538 if result:
539 return result
540
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000541 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000542 result = self._call_chain(self.handle_open, protocol, protocol +
543 '_open', req)
544 if result:
545 return result
546
547 return self._call_chain(self.handle_open, 'unknown',
548 'unknown_open', req)
549
550 def error(self, proto, *args):
551 if proto in ('http', 'https'):
552 # XXX http[s] protocols are special-cased
553 dict = self.handle_error['http'] # https is not different than http
554 proto = args[2] # YUCK!
555 meth_name = 'http_error_%s' % proto
556 http_err = 1
557 orig_args = args
558 else:
559 dict = self.handle_error
560 meth_name = proto + '_error'
561 http_err = 0
562 args = (dict, proto, meth_name) + args
563 result = self._call_chain(*args)
564 if result:
565 return result
566
567 if http_err:
568 args = (dict, 'default', 'http_error_default') + orig_args
569 return self._call_chain(*args)
570
571# XXX probably also want an abstract factory that knows when it makes
572# sense to skip a superclass in favor of a subclass and when it might
573# make sense to include both
574
575def build_opener(*handlers):
576 """Create an opener object from a list of handlers.
577
578 The opener will use several default handlers, including support
Senthil Kumaran1107c5d2009-11-15 06:20:55 +0000579 for HTTP, FTP and when applicable HTTPS.
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000580
581 If any of the handlers passed as arguments are subclasses of the
582 default handlers, the default handlers will not be used.
583 """
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000584 opener = OpenerDirector()
585 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
586 HTTPDefaultErrorHandler, HTTPRedirectHandler,
Antoine Pitroudf204be2012-11-24 17:59:08 +0100587 FTPHandler, FileHandler, HTTPErrorProcessor,
588 DataHandler]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000589 if hasattr(http.client, "HTTPSConnection"):
590 default_classes.append(HTTPSHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000591 skip = set()
592 for klass in default_classes:
593 for check in handlers:
Benjamin Peterson78c85382014-04-01 16:27:30 -0400594 if isinstance(check, type):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000595 if issubclass(check, klass):
596 skip.add(klass)
597 elif isinstance(check, klass):
598 skip.add(klass)
599 for klass in skip:
600 default_classes.remove(klass)
601
602 for klass in default_classes:
603 opener.add_handler(klass())
604
605 for h in handlers:
Benjamin Peterson5dd3cae2014-04-01 14:20:56 -0400606 if isinstance(h, type):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000607 h = h()
608 opener.add_handler(h)
609 return opener
610
611class BaseHandler:
612 handler_order = 500
613
614 def add_parent(self, parent):
615 self.parent = parent
616
617 def close(self):
618 # Only exists for backwards compatibility
619 pass
620
621 def __lt__(self, other):
622 if not hasattr(other, "handler_order"):
623 # Try to preserve the old behavior of having custom classes
624 # inserted after default ones (works only for custom user
625 # classes which are not aware of handler_order).
626 return True
627 return self.handler_order < other.handler_order
628
629
630class HTTPErrorProcessor(BaseHandler):
631 """Process HTTP error responses."""
632 handler_order = 1000 # after all other processing
633
634 def http_response(self, request, response):
635 code, msg, hdrs = response.code, response.msg, response.info()
636
637 # According to RFC 2616, "2xx" code indicates that the client's
638 # request was successfully received, understood, and accepted.
639 if not (200 <= code < 300):
640 response = self.parent.error(
641 'http', request, response, code, msg, hdrs)
642
643 return response
644
645 https_response = http_response
646
647class HTTPDefaultErrorHandler(BaseHandler):
648 def http_error_default(self, req, fp, code, msg, hdrs):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000649 raise HTTPError(req.full_url, code, msg, hdrs, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000650
651class HTTPRedirectHandler(BaseHandler):
652 # maximum number of redirections to any single URL
653 # this is needed because of the state that cookies introduce
654 max_repeats = 4
655 # maximum total number of redirections (regardless of URL) before
656 # assuming we're in a loop
657 max_redirections = 10
658
659 def redirect_request(self, req, fp, code, msg, headers, newurl):
660 """Return a Request or None in response to a redirect.
661
662 This is called by the http_error_30x methods when a
663 redirection response is received. If a redirection should
664 take place, return a new Request to allow http_error_30x to
665 perform the redirect. Otherwise, raise HTTPError if no-one
666 else should try to handle this url. Return None if you can't
667 but another Handler might.
668 """
669 m = req.get_method()
670 if (not (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
671 or code in (301, 302, 303) and m == "POST")):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000672 raise HTTPError(req.full_url, code, msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000673
674 # Strictly (according to RFC 2616), 301 or 302 in response to
675 # a POST MUST NOT cause a redirection without confirmation
Georg Brandl029986a2008-06-23 11:44:14 +0000676 # from the user (of urllib.request, in this case). In practice,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000677 # essentially all clients do redirect in this case, so we do
678 # the same.
679 # be conciliant with URIs containing a space
680 newurl = newurl.replace(' ', '%20')
681 CONTENT_HEADERS = ("content-length", "content-type")
682 newheaders = dict((k, v) for k, v in req.headers.items()
683 if k.lower() not in CONTENT_HEADERS)
684 return Request(newurl,
685 headers=newheaders,
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000686 origin_req_host=req.origin_req_host,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000687 unverifiable=True)
688
689 # Implementation note: To avoid the server sending us into an
690 # infinite loop, the request object needs to track what URLs we
691 # have already seen. Do this by adding a handler-specific
692 # attribute to the Request object.
693 def http_error_302(self, req, fp, code, msg, headers):
694 # Some servers (incorrectly) return multiple Location headers
695 # (so probably same goes for URI). Use first header.
696 if "location" in headers:
697 newurl = headers["location"]
698 elif "uri" in headers:
699 newurl = headers["uri"]
700 else:
701 return
Facundo Batistaf24802c2008-08-17 03:36:03 +0000702
703 # fix a possible malformed URL
704 urlparts = urlparse(newurl)
guido@google.coma119df92011-03-29 11:41:02 -0700705
706 # For security reasons we don't allow redirection to anything other
707 # than http, https or ftp.
708
Senthil Kumaran6497aa32012-01-04 13:46:59 +0800709 if urlparts.scheme not in ('http', 'https', 'ftp', ''):
Senthil Kumaran34d38dc2011-10-20 02:48:01 +0800710 raise HTTPError(
711 newurl, code,
712 "%s - Redirection to url '%s' is not allowed" % (msg, newurl),
713 headers, fp)
guido@google.coma119df92011-03-29 11:41:02 -0700714
Facundo Batistaf24802c2008-08-17 03:36:03 +0000715 if not urlparts.path:
716 urlparts = list(urlparts)
717 urlparts[2] = "/"
718 newurl = urlunparse(urlparts)
719
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000720 newurl = urljoin(req.full_url, newurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000721
722 # XXX Probably want to forget about the state of the current
723 # request, although that might interact poorly with other
724 # handlers that also use handler-specific request attributes
725 new = self.redirect_request(req, fp, code, msg, headers, newurl)
726 if new is None:
727 return
728
729 # loop detection
730 # .redirect_dict has a key url if url was previously visited.
731 if hasattr(req, 'redirect_dict'):
732 visited = new.redirect_dict = req.redirect_dict
733 if (visited.get(newurl, 0) >= self.max_repeats or
734 len(visited) >= self.max_redirections):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000735 raise HTTPError(req.full_url, code,
Georg Brandl13e89462008-07-01 19:56:00 +0000736 self.inf_msg + msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000737 else:
738 visited = new.redirect_dict = req.redirect_dict = {}
739 visited[newurl] = visited.get(newurl, 0) + 1
740
741 # Don't close the fp until we are sure that we won't use it
742 # with HTTPError.
743 fp.read()
744 fp.close()
745
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000746 return self.parent.open(new, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000747
748 http_error_301 = http_error_303 = http_error_307 = http_error_302
749
750 inf_msg = "The HTTP server returned a redirect error that would " \
751 "lead to an infinite loop.\n" \
752 "The last 30x error message was:\n"
753
754
755def _parse_proxy(proxy):
756 """Return (scheme, user, password, host/port) given a URL or an authority.
757
758 If a URL is supplied, it must have an authority (host:port) component.
759 According to RFC 3986, having an authority component means the URL must
Senthil Kumarand8e24f12014-04-14 16:32:20 -0400760 have two slashes after the scheme.
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000761 """
Georg Brandl13e89462008-07-01 19:56:00 +0000762 scheme, r_scheme = splittype(proxy)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000763 if not r_scheme.startswith("/"):
764 # authority
765 scheme = None
766 authority = proxy
767 else:
768 # URL
769 if not r_scheme.startswith("//"):
770 raise ValueError("proxy URL with no authority: %r" % proxy)
771 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
772 # and 3.3.), path is empty or starts with '/'
773 end = r_scheme.find("/", 2)
774 if end == -1:
775 end = None
776 authority = r_scheme[2:end]
Georg Brandl13e89462008-07-01 19:56:00 +0000777 userinfo, hostport = splituser(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000778 if userinfo is not None:
Georg Brandl13e89462008-07-01 19:56:00 +0000779 user, password = splitpasswd(userinfo)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000780 else:
781 user = password = None
782 return scheme, user, password, hostport
783
784class ProxyHandler(BaseHandler):
785 # Proxies must be in front
786 handler_order = 100
787
788 def __init__(self, proxies=None):
789 if proxies is None:
790 proxies = getproxies()
791 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
792 self.proxies = proxies
793 for type, url in proxies.items():
794 setattr(self, '%s_open' % type,
Georg Brandlfcbdbf22012-06-24 19:56:31 +0200795 lambda r, proxy=url, type=type, meth=self.proxy_open:
796 meth(r, proxy, type))
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000797
798 def proxy_open(self, req, proxy, type):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000799 orig_type = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000800 proxy_type, user, password, hostport = _parse_proxy(proxy)
801 if proxy_type is None:
802 proxy_type = orig_type
Senthil Kumaran7bb04972009-10-11 04:58:55 +0000803
804 if req.host and proxy_bypass(req.host):
805 return None
806
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000807 if user and password:
Georg Brandl13e89462008-07-01 19:56:00 +0000808 user_pass = '%s:%s' % (unquote(user),
809 unquote(password))
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000810 creds = base64.b64encode(user_pass.encode()).decode("ascii")
811 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl13e89462008-07-01 19:56:00 +0000812 hostport = unquote(hostport)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000813 req.set_proxy(hostport, proxy_type)
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000814 if orig_type == proxy_type or orig_type == 'https':
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000815 # let other handlers take care of it
816 return None
817 else:
818 # need to start over, because the other handlers don't
819 # grok the proxy's URL type
820 # e.g. if we have a constructor arg proxies like so:
821 # {'http': 'ftp://proxy.example.com'}, we may end up turning
822 # a request for http://acme.example.com/a into one for
823 # ftp://proxy.example.com/a
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000824 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000825
826class HTTPPasswordMgr:
827
828 def __init__(self):
829 self.passwd = {}
830
831 def add_password(self, realm, uri, user, passwd):
832 # uri could be a single URI or a sequence
833 if isinstance(uri, str):
834 uri = [uri]
Senthil Kumaran34d38dc2011-10-20 02:48:01 +0800835 if realm not in self.passwd:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000836 self.passwd[realm] = {}
837 for default_port in True, False:
838 reduced_uri = tuple(
839 [self.reduce_uri(u, default_port) for u in uri])
840 self.passwd[realm][reduced_uri] = (user, passwd)
841
842 def find_user_password(self, realm, authuri):
843 domains = self.passwd.get(realm, {})
844 for default_port in True, False:
845 reduced_authuri = self.reduce_uri(authuri, default_port)
846 for uris, authinfo in domains.items():
847 for uri in uris:
848 if self.is_suburi(uri, reduced_authuri):
849 return authinfo
850 return None, None
851
852 def reduce_uri(self, uri, default_port=True):
853 """Accept authority or URI and extract only the authority and path."""
854 # note HTTP URLs do not have a userinfo component
Georg Brandl13e89462008-07-01 19:56:00 +0000855 parts = urlsplit(uri)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000856 if parts[1]:
857 # URI
858 scheme = parts[0]
859 authority = parts[1]
860 path = parts[2] or '/'
861 else:
862 # host or host:port
863 scheme = None
864 authority = uri
865 path = '/'
Georg Brandl13e89462008-07-01 19:56:00 +0000866 host, port = splitport(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000867 if default_port and port is None and scheme is not None:
868 dport = {"http": 80,
869 "https": 443,
870 }.get(scheme)
871 if dport is not None:
872 authority = "%s:%d" % (host, dport)
873 return authority, path
874
875 def is_suburi(self, base, test):
876 """Check if test is below base in a URI tree
877
878 Both args must be URIs in reduced form.
879 """
880 if base == test:
881 return True
882 if base[0] != test[0]:
883 return False
884 common = posixpath.commonprefix((base[1], test[1]))
885 if len(common) == len(base[1]):
886 return True
887 return False
888
889
890class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
891
892 def find_user_password(self, realm, authuri):
893 user, password = HTTPPasswordMgr.find_user_password(self, realm,
894 authuri)
895 if user is not None:
896 return user, password
897 return HTTPPasswordMgr.find_user_password(self, None, authuri)
898
899
R David Murray4c7f9952015-04-16 16:36:18 -0400900class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm):
901
902 def __init__(self, *args, **kwargs):
903 self.authenticated = {}
904 super().__init__(*args, **kwargs)
905
906 def add_password(self, realm, uri, user, passwd, is_authenticated=False):
907 self.update_authenticated(uri, is_authenticated)
908 # Add a default for prior auth requests
909 if realm is not None:
910 super().add_password(None, uri, user, passwd)
911 super().add_password(realm, uri, user, passwd)
912
913 def update_authenticated(self, uri, is_authenticated=False):
914 # uri could be a single URI or a sequence
915 if isinstance(uri, str):
916 uri = [uri]
917
918 for default_port in True, False:
919 for u in uri:
920 reduced_uri = self.reduce_uri(u, default_port)
921 self.authenticated[reduced_uri] = is_authenticated
922
923 def is_authenticated(self, authuri):
924 for default_port in True, False:
925 reduced_authuri = self.reduce_uri(authuri, default_port)
926 for uri in self.authenticated:
927 if self.is_suburi(uri, reduced_authuri):
928 return self.authenticated[uri]
929
930
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000931class AbstractBasicAuthHandler:
932
933 # XXX this allows for multiple auth-schemes, but will stupidly pick
934 # the last one with a realm specified.
935
936 # allow for double- and single-quoted realm values
937 # (single quotes are a violation of the RFC, but appear in the wild)
938 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
Senthil Kumaran34f3fcc2012-05-15 22:30:25 +0800939 'realm=(["\']?)([^"\']*)\\2', re.I)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000940
941 # XXX could pre-emptively send auth info already accepted (RFC 2617,
942 # end of section 2, and section 1.2 immediately after "credentials"
943 # production).
944
945 def __init__(self, password_mgr=None):
946 if password_mgr is None:
947 password_mgr = HTTPPasswordMgr()
948 self.passwd = password_mgr
949 self.add_password = self.passwd.add_password
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000950
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000951 def http_error_auth_reqed(self, authreq, host, req, headers):
952 # host may be an authority (without userinfo) or a URL with an
953 # authority
954 # XXX could be multiple headers
955 authreq = headers.get(authreq, None)
Senthil Kumaranf4998ac2010-06-01 12:53:48 +0000956
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000957 if authreq:
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800958 scheme = authreq.split()[0]
Senthil Kumaran1a129c82011-10-20 02:50:13 +0800959 if scheme.lower() != 'basic':
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800960 raise ValueError("AbstractBasicAuthHandler does not"
961 " support the following scheme: '%s'" %
962 scheme)
963 else:
964 mo = AbstractBasicAuthHandler.rx.search(authreq)
965 if mo:
966 scheme, quote, realm = mo.groups()
Senthil Kumaran92a5bf02012-05-16 00:03:29 +0800967 if quote not in ['"',"'"]:
968 warnings.warn("Basic Auth Realm was unquoted",
969 UserWarning, 2)
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800970 if scheme.lower() == 'basic':
Senthil Kumaran78373762014-08-20 07:53:58 +0530971 return self.retry_http_basic_auth(host, req, realm)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000972
973 def retry_http_basic_auth(self, host, req, realm):
974 user, pw = self.passwd.find_user_password(realm, host)
975 if pw is not None:
976 raw = "%s:%s" % (user, pw)
977 auth = "Basic " + base64.b64encode(raw.encode()).decode("ascii")
Senthil Kumaran78373762014-08-20 07:53:58 +0530978 if req.get_header(self.auth_header, None) == auth:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000979 return None
Senthil Kumaranca2fc9e2010-02-24 16:53:16 +0000980 req.add_unredirected_header(self.auth_header, auth)
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000981 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000982 else:
983 return None
984
R David Murray4c7f9952015-04-16 16:36:18 -0400985 def http_request(self, req):
986 if (not hasattr(self.passwd, 'is_authenticated') or
987 not self.passwd.is_authenticated(req.full_url)):
988 return req
989
990 if not req.has_header('Authorization'):
991 user, passwd = self.passwd.find_user_password(None, req.full_url)
992 credentials = '{0}:{1}'.format(user, passwd).encode()
993 auth_str = base64.standard_b64encode(credentials).decode()
994 req.add_unredirected_header('Authorization',
995 'Basic {}'.format(auth_str.strip()))
996 return req
997
998 def http_response(self, req, response):
999 if hasattr(self.passwd, 'is_authenticated'):
1000 if 200 <= response.code < 300:
1001 self.passwd.update_authenticated(req.full_url, True)
1002 else:
1003 self.passwd.update_authenticated(req.full_url, False)
1004 return response
1005
1006 https_request = http_request
1007 https_response = http_response
1008
1009
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001010
1011class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1012
1013 auth_header = 'Authorization'
1014
1015 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001016 url = req.full_url
Senthil Kumaran67a62a42010-08-19 17:50:31 +00001017 response = self.http_error_auth_reqed('www-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001018 url, req, headers)
Senthil Kumaran67a62a42010-08-19 17:50:31 +00001019 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001020
1021
1022class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1023
1024 auth_header = 'Proxy-authorization'
1025
1026 def http_error_407(self, req, fp, code, msg, headers):
1027 # http_error_auth_reqed requires that there is no userinfo component in
Georg Brandl029986a2008-06-23 11:44:14 +00001028 # authority. Assume there isn't one, since urllib.request does not (and
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001029 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
1030 # userinfo.
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001031 authority = req.host
Senthil Kumaran67a62a42010-08-19 17:50:31 +00001032 response = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001033 authority, req, headers)
Senthil Kumaran67a62a42010-08-19 17:50:31 +00001034 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001035
1036
Senthil Kumaran6c5bd402011-11-01 23:20:31 +08001037# Return n random bytes.
1038_randombytes = os.urandom
1039
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001040
1041class AbstractDigestAuthHandler:
1042 # Digest authentication is specified in RFC 2617.
1043
1044 # XXX The client does not inspect the Authentication-Info header
1045 # in a successful response.
1046
1047 # XXX It should be possible to test this implementation against
1048 # a mock server that just generates a static set of challenges.
1049
1050 # XXX qop="auth-int" supports is shaky
1051
1052 def __init__(self, passwd=None):
1053 if passwd is None:
1054 passwd = HTTPPasswordMgr()
1055 self.passwd = passwd
1056 self.add_password = self.passwd.add_password
1057 self.retried = 0
1058 self.nonce_count = 0
Senthil Kumaran4c7eaee2009-11-15 08:43:45 +00001059 self.last_nonce = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001060
1061 def reset_retry_count(self):
1062 self.retried = 0
1063
1064 def http_error_auth_reqed(self, auth_header, host, req, headers):
1065 authreq = headers.get(auth_header, None)
1066 if self.retried > 5:
1067 # Don't fail endlessly - if we failed once, we'll probably
1068 # fail a second time. Hm. Unless the Password Manager is
1069 # prompting for the information. Crap. This isn't great
1070 # but it's better than the current 'repeat until recursion
1071 # depth exceeded' approach <wink>
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001072 raise HTTPError(req.full_url, 401, "digest auth failed",
Georg Brandl13e89462008-07-01 19:56:00 +00001073 headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001074 else:
1075 self.retried += 1
1076 if authreq:
1077 scheme = authreq.split()[0]
1078 if scheme.lower() == 'digest':
1079 return self.retry_http_digest_auth(req, authreq)
Senthil Kumaran1a129c82011-10-20 02:50:13 +08001080 elif scheme.lower() != 'basic':
Senthil Kumaran4de00a22011-05-11 21:17:57 +08001081 raise ValueError("AbstractDigestAuthHandler does not support"
1082 " the following scheme: '%s'" % scheme)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001083
1084 def retry_http_digest_auth(self, req, auth):
1085 token, challenge = auth.split(' ', 1)
1086 chal = parse_keqv_list(filter(None, parse_http_list(challenge)))
1087 auth = self.get_authorization(req, chal)
1088 if auth:
1089 auth_val = 'Digest %s' % auth
1090 if req.headers.get(self.auth_header, None) == auth_val:
1091 return None
1092 req.add_unredirected_header(self.auth_header, auth_val)
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +00001093 resp = self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001094 return resp
1095
1096 def get_cnonce(self, nonce):
1097 # The cnonce-value is an opaque
1098 # quoted string value provided by the client and used by both client
1099 # and server to avoid chosen plaintext attacks, to provide mutual
1100 # authentication, and to provide some message integrity protection.
1101 # This isn't a fabulous effort, but it's probably Good Enough.
1102 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
Senthil Kumaran6c5bd402011-11-01 23:20:31 +08001103 b = s.encode("ascii") + _randombytes(8)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001104 dig = hashlib.sha1(b).hexdigest()
1105 return dig[:16]
1106
1107 def get_authorization(self, req, chal):
1108 try:
1109 realm = chal['realm']
1110 nonce = chal['nonce']
1111 qop = chal.get('qop')
1112 algorithm = chal.get('algorithm', 'MD5')
1113 # mod_digest doesn't send an opaque, even though it isn't
1114 # supposed to be optional
1115 opaque = chal.get('opaque', None)
1116 except KeyError:
1117 return None
1118
1119 H, KD = self.get_algorithm_impls(algorithm)
1120 if H is None:
1121 return None
1122
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001123 user, pw = self.passwd.find_user_password(realm, req.full_url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001124 if user is None:
1125 return None
1126
1127 # XXX not implemented yet
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001128 if req.data is not None:
1129 entdig = self.get_entity_digest(req.data, chal)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001130 else:
1131 entdig = None
1132
1133 A1 = "%s:%s:%s" % (user, realm, pw)
1134 A2 = "%s:%s" % (req.get_method(),
1135 # XXX selector: what about proxies and full urls
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001136 req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001137 if qop == 'auth':
Senthil Kumaran4c7eaee2009-11-15 08:43:45 +00001138 if nonce == self.last_nonce:
1139 self.nonce_count += 1
1140 else:
1141 self.nonce_count = 1
1142 self.last_nonce = nonce
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001143 ncvalue = '%08x' % self.nonce_count
1144 cnonce = self.get_cnonce(nonce)
1145 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
1146 respdig = KD(H(A1), noncebit)
1147 elif qop is None:
1148 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1149 else:
1150 # XXX handle auth-int.
Georg Brandl13e89462008-07-01 19:56:00 +00001151 raise URLError("qop '%s' is not supported." % qop)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001152
1153 # XXX should the partial digests be encoded too?
1154
1155 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001156 'response="%s"' % (user, realm, nonce, req.selector,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001157 respdig)
1158 if opaque:
1159 base += ', opaque="%s"' % opaque
1160 if entdig:
1161 base += ', digest="%s"' % entdig
1162 base += ', algorithm="%s"' % algorithm
1163 if qop:
1164 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
1165 return base
1166
1167 def get_algorithm_impls(self, algorithm):
1168 # lambdas assume digest modules are imported at the top level
1169 if algorithm == 'MD5':
1170 H = lambda x: hashlib.md5(x.encode("ascii")).hexdigest()
1171 elif algorithm == 'SHA':
1172 H = lambda x: hashlib.sha1(x.encode("ascii")).hexdigest()
1173 # XXX MD5-sess
Berker Peksage88dd1c2016-03-06 16:16:40 +02001174 else:
1175 raise ValueError("Unsupported digest authentication "
1176 "algorithm %r" % algorithm)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001177 KD = lambda s, d: H("%s:%s" % (s, d))
1178 return H, KD
1179
1180 def get_entity_digest(self, data, chal):
1181 # XXX not implemented yet
1182 return None
1183
1184
1185class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1186 """An authentication protocol defined by RFC 2069
1187
1188 Digest authentication improves on basic authentication because it
1189 does not transmit passwords in the clear.
1190 """
1191
1192 auth_header = 'Authorization'
1193 handler_order = 490 # before Basic auth
1194
1195 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001196 host = urlparse(req.full_url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001197 retry = self.http_error_auth_reqed('www-authenticate',
1198 host, req, headers)
1199 self.reset_retry_count()
1200 return retry
1201
1202
1203class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1204
1205 auth_header = 'Proxy-Authorization'
1206 handler_order = 490 # before Basic auth
1207
1208 def http_error_407(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001209 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001210 retry = self.http_error_auth_reqed('proxy-authenticate',
1211 host, req, headers)
1212 self.reset_retry_count()
1213 return retry
1214
1215class AbstractHTTPHandler(BaseHandler):
1216
1217 def __init__(self, debuglevel=0):
1218 self._debuglevel = debuglevel
1219
1220 def set_http_debuglevel(self, level):
1221 self._debuglevel = level
1222
1223 def do_request_(self, request):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001224 host = request.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001225 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001226 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001227
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001228 if request.data is not None: # POST
1229 data = request.data
Senthil Kumaran29333122011-02-11 11:25:47 +00001230 if isinstance(data, str):
Georg Brandlfcbdbf22012-06-24 19:56:31 +02001231 msg = "POST data should be bytes or an iterable of bytes. " \
1232 "It cannot be of type str."
Senthil Kumaran6b3434a2012-03-15 18:11:16 -07001233 raise TypeError(msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001234 if not request.has_header('Content-type'):
1235 request.add_unredirected_header(
1236 'Content-type',
1237 'application/x-www-form-urlencoded')
1238 if not request.has_header('Content-length'):
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001239 try:
1240 mv = memoryview(data)
1241 except TypeError:
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001242 if isinstance(data, collections.Iterable):
Georg Brandl61536042011-02-03 07:46:41 +00001243 raise ValueError("Content-Length should be specified "
1244 "for iterable data of type %r %r" % (type(data),
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001245 data))
1246 else:
1247 request.add_unredirected_header(
Senthil Kumaran1e991f22010-12-24 04:03:59 +00001248 'Content-length', '%d' % (len(mv) * mv.itemsize))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001249
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001250 sel_host = host
1251 if request.has_proxy():
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001252 scheme, sel = splittype(request.selector)
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001253 sel_host, sel_path = splithost(sel)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001254 if not request.has_header('Host'):
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001255 request.add_unredirected_header('Host', sel_host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001256 for name, value in self.parent.addheaders:
1257 name = name.capitalize()
1258 if not request.has_header(name):
1259 request.add_unredirected_header(name, value)
1260
1261 return request
1262
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001263 def do_open(self, http_class, req, **http_conn_args):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001264 """Return an HTTPResponse object for the request, using http_class.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001265
1266 http_class must implement the HTTPConnection API from http.client.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001267 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001268 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001269 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001270 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001271
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001272 # will parse host:port
1273 h = http_class(host, timeout=req.timeout, **http_conn_args)
Senthil Kumaran42ef4b12010-09-27 01:26:03 +00001274
1275 headers = dict(req.unredirected_hdrs)
1276 headers.update(dict((k, v) for k, v in req.headers.items()
1277 if k not in headers))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001278
1279 # TODO(jhylton): Should this be redesigned to handle
1280 # persistent connections?
1281
1282 # We want to make an HTTP/1.1 request, but the addinfourl
1283 # class isn't prepared to deal with a persistent connection.
1284 # It will try to read all remaining data from the socket,
1285 # which will block while the server waits for the next request.
1286 # So make sure the connection gets closed after the (only)
1287 # request.
1288 headers["Connection"] = "close"
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001289 headers = dict((name.title(), val) for name, val in headers.items())
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +00001290
1291 if req._tunnel_host:
Senthil Kumaran47fff872009-12-20 07:10:31 +00001292 tunnel_headers = {}
1293 proxy_auth_hdr = "Proxy-Authorization"
1294 if proxy_auth_hdr in headers:
1295 tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1296 # Proxy-Authorization should not be sent to origin
1297 # server.
1298 del headers[proxy_auth_hdr]
1299 h.set_tunnel(req._tunnel_host, headers=tunnel_headers)
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +00001300
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001301 try:
Serhiy Storchakaf54c3502014-09-06 21:41:39 +03001302 try:
1303 h.request(req.get_method(), req.selector, req.data, headers)
1304 except OSError as err: # timeout error
1305 raise URLError(err)
Senthil Kumaran45686b42011-07-27 09:31:03 +08001306 r = h.getresponse()
Serhiy Storchakaf54c3502014-09-06 21:41:39 +03001307 except:
1308 h.close()
1309 raise
1310
1311 # If the server does not send us a 'Connection: close' header,
1312 # HTTPConnection assumes the socket should be left open. Manually
1313 # mark the socket to be closed when this response object goes away.
1314 if h.sock:
1315 h.sock.close()
1316 h.sock = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001317
Senthil Kumaran26430412011-04-13 07:01:19 +08001318 r.url = req.get_full_url()
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001319 # This line replaces the .msg attribute of the HTTPResponse
1320 # with .headers, because urllib clients expect the response to
1321 # have the reason in .msg. It would be good to mark this
1322 # attribute is deprecated and get then to use info() or
1323 # .headers.
1324 r.msg = r.reason
1325 return r
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001326
1327
1328class HTTPHandler(AbstractHTTPHandler):
1329
1330 def http_open(self, req):
1331 return self.do_open(http.client.HTTPConnection, req)
1332
1333 http_request = AbstractHTTPHandler.do_request_
1334
1335if hasattr(http.client, 'HTTPSConnection'):
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001336
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001337 class HTTPSHandler(AbstractHTTPHandler):
1338
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001339 def __init__(self, debuglevel=0, context=None, check_hostname=None):
1340 AbstractHTTPHandler.__init__(self, debuglevel)
1341 self._context = context
1342 self._check_hostname = check_hostname
1343
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001344 def https_open(self, req):
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001345 return self.do_open(http.client.HTTPSConnection, req,
1346 context=self._context, check_hostname=self._check_hostname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001347
1348 https_request = AbstractHTTPHandler.do_request_
1349
Senthil Kumaran4c875a92011-11-01 23:57:57 +08001350 __all__.append('HTTPSHandler')
Senthil Kumaran0d54eb92011-11-01 23:49:46 +08001351
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001352class HTTPCookieProcessor(BaseHandler):
1353 def __init__(self, cookiejar=None):
1354 import http.cookiejar
1355 if cookiejar is None:
1356 cookiejar = http.cookiejar.CookieJar()
1357 self.cookiejar = cookiejar
1358
1359 def http_request(self, request):
1360 self.cookiejar.add_cookie_header(request)
1361 return request
1362
1363 def http_response(self, request, response):
1364 self.cookiejar.extract_cookies(response, request)
1365 return response
1366
1367 https_request = http_request
1368 https_response = http_response
1369
1370class UnknownHandler(BaseHandler):
1371 def unknown_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001372 type = req.type
Georg Brandl13e89462008-07-01 19:56:00 +00001373 raise URLError('unknown url type: %s' % type)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001374
1375def parse_keqv_list(l):
1376 """Parse list of key=value strings where keys are not duplicated."""
1377 parsed = {}
1378 for elt in l:
1379 k, v = elt.split('=', 1)
1380 if v[0] == '"' and v[-1] == '"':
1381 v = v[1:-1]
1382 parsed[k] = v
1383 return parsed
1384
1385def parse_http_list(s):
1386 """Parse lists as described by RFC 2068 Section 2.
1387
1388 In particular, parse comma-separated lists where the elements of
1389 the list may include quoted-strings. A quoted-string could
1390 contain a comma. A non-quoted string could have quotes in the
1391 middle. Neither commas nor quotes count if they are escaped.
1392 Only double-quotes count, not single-quotes.
1393 """
1394 res = []
1395 part = ''
1396
1397 escape = quote = False
1398 for cur in s:
1399 if escape:
1400 part += cur
1401 escape = False
1402 continue
1403 if quote:
1404 if cur == '\\':
1405 escape = True
1406 continue
1407 elif cur == '"':
1408 quote = False
1409 part += cur
1410 continue
1411
1412 if cur == ',':
1413 res.append(part)
1414 part = ''
1415 continue
1416
1417 if cur == '"':
1418 quote = True
1419
1420 part += cur
1421
1422 # append last part
1423 if part:
1424 res.append(part)
1425
1426 return [part.strip() for part in res]
1427
1428class FileHandler(BaseHandler):
1429 # Use local file or FTP depending on form of URL
1430 def file_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001431 url = req.selector
Senthil Kumaran2ef16322010-07-11 03:12:43 +00001432 if url[:2] == '//' and url[2:3] != '/' and (req.host and
1433 req.host != 'localhost'):
Senthil Kumaranbc07ac52014-07-22 00:15:20 -07001434 if not req.host in self.get_names():
Senthil Kumaran383c32d2010-10-14 11:57:35 +00001435 raise URLError("file:// scheme is supported only on localhost")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001436 else:
1437 return self.open_local_file(req)
1438
1439 # names for the localhost
1440 names = None
1441 def get_names(self):
1442 if FileHandler.names is None:
1443 try:
Senthil Kumaran99b2c8f2009-12-27 10:13:39 +00001444 FileHandler.names = tuple(
1445 socket.gethostbyname_ex('localhost')[2] +
1446 socket.gethostbyname_ex(socket.gethostname())[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001447 except socket.gaierror:
1448 FileHandler.names = (socket.gethostbyname('localhost'),)
1449 return FileHandler.names
1450
1451 # not entirely sure what the rules are here
1452 def open_local_file(self, req):
1453 import email.utils
1454 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001455 host = req.host
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001456 filename = req.selector
1457 localfile = url2pathname(filename)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001458 try:
1459 stats = os.stat(localfile)
1460 size = stats.st_size
1461 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001462 mtype = mimetypes.guess_type(filename)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001463 headers = email.message_from_string(
1464 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1465 (mtype or 'text/plain', size, modified))
1466 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001467 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001468 if not host or \
1469 (not port and _safe_gethostbyname(host) in self.get_names()):
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001470 if host:
1471 origurl = 'file://' + host + filename
1472 else:
1473 origurl = 'file://' + filename
1474 return addinfourl(open(localfile, 'rb'), headers, origurl)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001475 except OSError as exp:
Georg Brandl029986a2008-06-23 11:44:14 +00001476 # users shouldn't expect OSErrors coming from urlopen()
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001477 raise URLError(exp)
Georg Brandl13e89462008-07-01 19:56:00 +00001478 raise URLError('file not on local host')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001479
1480def _safe_gethostbyname(host):
1481 try:
1482 return socket.gethostbyname(host)
1483 except socket.gaierror:
1484 return None
1485
1486class FTPHandler(BaseHandler):
1487 def ftp_open(self, req):
1488 import ftplib
1489 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001490 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001491 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001492 raise URLError('ftp error: no host given')
1493 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001494 if port is None:
1495 port = ftplib.FTP_PORT
1496 else:
1497 port = int(port)
1498
1499 # username/password handling
Georg Brandl13e89462008-07-01 19:56:00 +00001500 user, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001501 if user:
Georg Brandl13e89462008-07-01 19:56:00 +00001502 user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001503 else:
1504 passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00001505 host = unquote(host)
Senthil Kumarandaa29d02010-11-18 15:36:41 +00001506 user = user or ''
1507 passwd = passwd or ''
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001508
1509 try:
1510 host = socket.gethostbyname(host)
Andrew Svetlov0832af62012-12-18 23:10:48 +02001511 except OSError as msg:
Georg Brandl13e89462008-07-01 19:56:00 +00001512 raise URLError(msg)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001513 path, attrs = splitattr(req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001514 dirs = path.split('/')
Georg Brandl13e89462008-07-01 19:56:00 +00001515 dirs = list(map(unquote, dirs))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001516 dirs, file = dirs[:-1], dirs[-1]
1517 if dirs and not dirs[0]:
1518 dirs = dirs[1:]
1519 try:
1520 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
1521 type = file and 'I' or 'D'
1522 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00001523 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001524 if attr.lower() == 'type' and \
1525 value in ('a', 'A', 'i', 'I', 'd', 'D'):
1526 type = value.upper()
1527 fp, retrlen = fw.retrfile(file, type)
1528 headers = ""
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001529 mtype = mimetypes.guess_type(req.full_url)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001530 if mtype:
1531 headers += "Content-type: %s\n" % mtype
1532 if retrlen is not None and retrlen >= 0:
1533 headers += "Content-length: %d\n" % retrlen
1534 headers = email.message_from_string(headers)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001535 return addinfourl(fp, headers, req.full_url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001536 except ftplib.all_errors as exp:
1537 exc = URLError('ftp error: %r' % exp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001538 raise exc.with_traceback(sys.exc_info()[2])
1539
1540 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001541 return ftpwrapper(user, passwd, host, port, dirs, timeout,
1542 persistent=False)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001543
1544class CacheFTPHandler(FTPHandler):
1545 # XXX would be nice to have pluggable cache strategies
1546 # XXX this stuff is definitely not thread safe
1547 def __init__(self):
1548 self.cache = {}
1549 self.timeout = {}
1550 self.soonest = 0
1551 self.delay = 60
1552 self.max_conns = 16
1553
1554 def setTimeout(self, t):
1555 self.delay = t
1556
1557 def setMaxConns(self, m):
1558 self.max_conns = m
1559
1560 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1561 key = user, host, port, '/'.join(dirs), timeout
1562 if key in self.cache:
1563 self.timeout[key] = time.time() + self.delay
1564 else:
1565 self.cache[key] = ftpwrapper(user, passwd, host, port,
1566 dirs, timeout)
1567 self.timeout[key] = time.time() + self.delay
1568 self.check_cache()
1569 return self.cache[key]
1570
1571 def check_cache(self):
1572 # first check for old ones
1573 t = time.time()
1574 if self.soonest <= t:
1575 for k, v in list(self.timeout.items()):
1576 if v < t:
1577 self.cache[k].close()
1578 del self.cache[k]
1579 del self.timeout[k]
1580 self.soonest = min(list(self.timeout.values()))
1581
1582 # then check the size
1583 if len(self.cache) == self.max_conns:
1584 for k, v in list(self.timeout.items()):
1585 if v == self.soonest:
1586 del self.cache[k]
1587 del self.timeout[k]
1588 break
1589 self.soonest = min(list(self.timeout.values()))
1590
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001591 def clear_cache(self):
1592 for conn in self.cache.values():
1593 conn.close()
1594 self.cache.clear()
1595 self.timeout.clear()
1596
Antoine Pitroudf204be2012-11-24 17:59:08 +01001597class DataHandler(BaseHandler):
1598 def data_open(self, req):
1599 # data URLs as specified in RFC 2397.
1600 #
1601 # ignores POSTed data
1602 #
1603 # syntax:
1604 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
1605 # mediatype := [ type "/" subtype ] *( ";" parameter )
1606 # data := *urlchar
1607 # parameter := attribute "=" value
1608 url = req.full_url
1609
1610 scheme, data = url.split(":",1)
1611 mediatype, data = data.split(",",1)
1612
1613 # even base64 encoded data URLs might be quoted so unquote in any case:
1614 data = unquote_to_bytes(data)
1615 if mediatype.endswith(";base64"):
1616 data = base64.decodebytes(data)
1617 mediatype = mediatype[:-7]
1618
1619 if not mediatype:
1620 mediatype = "text/plain;charset=US-ASCII"
1621
1622 headers = email.message_from_string("Content-type: %s\nContent-length: %d\n" %
1623 (mediatype, len(data)))
1624
1625 return addinfourl(io.BytesIO(data), headers, url)
1626
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001627
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001628# Code move from the old urllib module
1629
1630MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
1631
1632# Helper for non-unix systems
Ronald Oussoren94f25282010-05-05 19:11:21 +00001633if os.name == 'nt':
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001634 from nturl2path import url2pathname, pathname2url
1635else:
1636 def url2pathname(pathname):
1637 """OS-specific conversion from a relative URL of the 'file' scheme
1638 to a file system path; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001639 return unquote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001640
1641 def pathname2url(pathname):
1642 """OS-specific conversion from a file system path to a relative URL
1643 of the 'file' scheme; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001644 return quote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001645
1646# This really consists of two pieces:
1647# (1) a class which handles opening of all sorts of URLs
1648# (plus assorted utilities etc.)
1649# (2) a set of functions for parsing URLs
1650# XXX Should these be separated out into different modules?
1651
1652
1653ftpcache = {}
1654class URLopener:
1655 """Class to open URLs.
1656 This is a class rather than just a subroutine because we may need
1657 more than one set of global protocol-specific options.
1658 Note -- this is a base class for those who don't want the
1659 automatic handling of errors type 302 (relocated) and 401
1660 (authorization needed)."""
1661
1662 __tempfiles = None
1663
1664 version = "Python-urllib/%s" % __version__
1665
1666 # Constructor
1667 def __init__(self, proxies=None, **x509):
Georg Brandlfcbdbf22012-06-24 19:56:31 +02001668 msg = "%(class)s style of invoking requests is deprecated. " \
Senthil Kumaran38b968b92012-03-14 13:43:53 -07001669 "Use newer urlopen functions/methods" % {'class': self.__class__.__name__}
1670 warnings.warn(msg, DeprecationWarning, stacklevel=3)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001671 if proxies is None:
1672 proxies = getproxies()
1673 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
1674 self.proxies = proxies
1675 self.key_file = x509.get('key_file')
1676 self.cert_file = x509.get('cert_file')
1677 self.addheaders = [('User-Agent', self.version)]
1678 self.__tempfiles = []
1679 self.__unlink = os.unlink # See cleanup()
1680 self.tempcache = None
1681 # Undocumented feature: if you assign {} to tempcache,
1682 # it is used to cache files retrieved with
1683 # self.retrieve(). This is not enabled by default
1684 # since it does not work for changing documents (and I
1685 # haven't got the logic to check expiration headers
1686 # yet).
1687 self.ftpcache = ftpcache
1688 # Undocumented feature: you can use a different
1689 # ftp cache by assigning to the .ftpcache member;
1690 # in case you want logically independent URL openers
1691 # XXX This is not threadsafe. Bah.
1692
1693 def __del__(self):
1694 self.close()
1695
1696 def close(self):
1697 self.cleanup()
1698
1699 def cleanup(self):
1700 # This code sometimes runs when the rest of this module
1701 # has already been deleted, so it can't use any globals
1702 # or import anything.
1703 if self.__tempfiles:
1704 for file in self.__tempfiles:
1705 try:
1706 self.__unlink(file)
1707 except OSError:
1708 pass
1709 del self.__tempfiles[:]
1710 if self.tempcache:
1711 self.tempcache.clear()
1712
1713 def addheader(self, *args):
1714 """Add a header to be used by the HTTP interface only
1715 e.g. u.addheader('Accept', 'sound/basic')"""
1716 self.addheaders.append(args)
1717
1718 # External interface
1719 def open(self, fullurl, data=None):
1720 """Use URLopener().open(file) instead of open(file, 'r')."""
Georg Brandl13e89462008-07-01 19:56:00 +00001721 fullurl = unwrap(to_bytes(fullurl))
Senthil Kumaran734f0592010-02-20 22:19:04 +00001722 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001723 if self.tempcache and fullurl in self.tempcache:
1724 filename, headers = self.tempcache[fullurl]
1725 fp = open(filename, 'rb')
Georg Brandl13e89462008-07-01 19:56:00 +00001726 return addinfourl(fp, headers, fullurl)
1727 urltype, url = splittype(fullurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001728 if not urltype:
1729 urltype = 'file'
1730 if urltype in self.proxies:
1731 proxy = self.proxies[urltype]
Georg Brandl13e89462008-07-01 19:56:00 +00001732 urltype, proxyhost = splittype(proxy)
1733 host, selector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001734 url = (host, fullurl) # Signal special case to open_*()
1735 else:
1736 proxy = None
1737 name = 'open_' + urltype
1738 self.type = urltype
1739 name = name.replace('-', '_')
1740 if not hasattr(self, name):
1741 if proxy:
1742 return self.open_unknown_proxy(proxy, fullurl, data)
1743 else:
1744 return self.open_unknown(fullurl, data)
1745 try:
1746 if data is None:
1747 return getattr(self, name)(url)
1748 else:
1749 return getattr(self, name)(url, data)
Senthil Kumaranf5776862012-10-21 13:30:02 -07001750 except (HTTPError, URLError):
Antoine Pitrou6b4883d2011-10-12 02:54:14 +02001751 raise
Andrew Svetlov0832af62012-12-18 23:10:48 +02001752 except OSError as msg:
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001753 raise OSError('socket error', msg).with_traceback(sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001754
1755 def open_unknown(self, fullurl, data=None):
1756 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001757 type, url = splittype(fullurl)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001758 raise OSError('url error', 'unknown url type', type)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001759
1760 def open_unknown_proxy(self, proxy, fullurl, data=None):
1761 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001762 type, url = splittype(fullurl)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001763 raise OSError('url error', 'invalid proxy for %s' % type, proxy)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001764
1765 # External interface
1766 def retrieve(self, url, filename=None, reporthook=None, data=None):
1767 """retrieve(url) returns (filename, headers) for a local object
1768 or (tempfilename, headers) for a remote object."""
Georg Brandl13e89462008-07-01 19:56:00 +00001769 url = unwrap(to_bytes(url))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001770 if self.tempcache and url in self.tempcache:
1771 return self.tempcache[url]
Georg Brandl13e89462008-07-01 19:56:00 +00001772 type, url1 = splittype(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001773 if filename is None and (not type or type == 'file'):
1774 try:
1775 fp = self.open_local_file(url1)
1776 hdrs = fp.info()
Philip Jenveycb134d72009-12-03 02:45:01 +00001777 fp.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001778 return url2pathname(splithost(url1)[1]), hdrs
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001779 except OSError as msg:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001780 pass
1781 fp = self.open(url, data)
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001782 try:
1783 headers = fp.info()
1784 if filename:
1785 tfp = open(filename, 'wb')
1786 else:
1787 import tempfile
1788 garbage, path = splittype(url)
1789 garbage, path = splithost(path or "")
1790 path, garbage = splitquery(path or "")
1791 path, garbage = splitattr(path or "")
1792 suffix = os.path.splitext(path)[1]
1793 (fd, filename) = tempfile.mkstemp(suffix)
1794 self.__tempfiles.append(filename)
1795 tfp = os.fdopen(fd, 'wb')
1796 try:
1797 result = filename, headers
1798 if self.tempcache is not None:
1799 self.tempcache[url] = result
1800 bs = 1024*8
1801 size = -1
1802 read = 0
1803 blocknum = 0
Senthil Kumarance260142011-11-01 01:35:17 +08001804 if "content-length" in headers:
1805 size = int(headers["Content-Length"])
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001806 if reporthook:
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001807 reporthook(blocknum, bs, size)
1808 while 1:
1809 block = fp.read(bs)
1810 if not block:
1811 break
1812 read += len(block)
1813 tfp.write(block)
1814 blocknum += 1
1815 if reporthook:
1816 reporthook(blocknum, bs, size)
1817 finally:
1818 tfp.close()
1819 finally:
1820 fp.close()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001821
1822 # raise exception if actual size does not match content-length header
1823 if size >= 0 and read < size:
Georg Brandl13e89462008-07-01 19:56:00 +00001824 raise ContentTooShortError(
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001825 "retrieval incomplete: got only %i out of %i bytes"
1826 % (read, size), result)
1827
1828 return result
1829
1830 # Each method named open_<type> knows how to open that type of URL
1831
1832 def _open_generic_http(self, connection_factory, url, data):
1833 """Make an HTTP connection using connection_class.
1834
1835 This is an internal method that should be called from
1836 open_http() or open_https().
1837
1838 Arguments:
1839 - connection_factory should take a host name and return an
1840 HTTPConnection instance.
1841 - url is the url to retrieval or a host, relative-path pair.
1842 - data is payload for a POST request or None.
1843 """
1844
1845 user_passwd = None
1846 proxy_passwd= None
1847 if isinstance(url, str):
Georg Brandl13e89462008-07-01 19:56:00 +00001848 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001849 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001850 user_passwd, host = splituser(host)
1851 host = unquote(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001852 realhost = host
1853 else:
1854 host, selector = url
1855 # check whether the proxy contains authorization information
Georg Brandl13e89462008-07-01 19:56:00 +00001856 proxy_passwd, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001857 # now we proceed with the url we want to obtain
Georg Brandl13e89462008-07-01 19:56:00 +00001858 urltype, rest = splittype(selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001859 url = rest
1860 user_passwd = None
1861 if urltype.lower() != 'http':
1862 realhost = None
1863 else:
Georg Brandl13e89462008-07-01 19:56:00 +00001864 realhost, rest = splithost(rest)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001865 if realhost:
Georg Brandl13e89462008-07-01 19:56:00 +00001866 user_passwd, realhost = splituser(realhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001867 if user_passwd:
1868 selector = "%s://%s%s" % (urltype, realhost, rest)
1869 if proxy_bypass(realhost):
1870 host = realhost
1871
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001872 if not host: raise OSError('http error', 'no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001873
1874 if proxy_passwd:
Senthil Kumaranc5c5a142012-01-14 19:09:04 +08001875 proxy_passwd = unquote(proxy_passwd)
Senthil Kumaran5626eec2010-08-04 17:46:23 +00001876 proxy_auth = base64.b64encode(proxy_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001877 else:
1878 proxy_auth = None
1879
1880 if user_passwd:
Senthil Kumaranc5c5a142012-01-14 19:09:04 +08001881 user_passwd = unquote(user_passwd)
Senthil Kumaran5626eec2010-08-04 17:46:23 +00001882 auth = base64.b64encode(user_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001883 else:
1884 auth = None
1885 http_conn = connection_factory(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001886 headers = {}
1887 if proxy_auth:
1888 headers["Proxy-Authorization"] = "Basic %s" % proxy_auth
1889 if auth:
1890 headers["Authorization"] = "Basic %s" % auth
1891 if realhost:
1892 headers["Host"] = realhost
Senthil Kumarand91ffca2011-03-19 17:25:27 +08001893
1894 # Add Connection:close as we don't support persistent connections yet.
1895 # This helps in closing the socket and avoiding ResourceWarning
1896
1897 headers["Connection"] = "close"
1898
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001899 for header, value in self.addheaders:
1900 headers[header] = value
1901
1902 if data is not None:
1903 headers["Content-Type"] = "application/x-www-form-urlencoded"
1904 http_conn.request("POST", selector, data, headers)
1905 else:
1906 http_conn.request("GET", selector, headers=headers)
1907
1908 try:
1909 response = http_conn.getresponse()
1910 except http.client.BadStatusLine:
1911 # something went wrong with the HTTP status line
Georg Brandl13e89462008-07-01 19:56:00 +00001912 raise URLError("http protocol error: bad status line")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001913
1914 # According to RFC 2616, "2xx" code indicates that the client's
1915 # request was successfully received, understood, and accepted.
1916 if 200 <= response.status < 300:
Antoine Pitroub353c122009-02-11 00:39:14 +00001917 return addinfourl(response, response.msg, "http:" + url,
Georg Brandl13e89462008-07-01 19:56:00 +00001918 response.status)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001919 else:
1920 return self.http_error(
1921 url, response.fp,
1922 response.status, response.reason, response.msg, data)
1923
1924 def open_http(self, url, data=None):
1925 """Use HTTP protocol."""
1926 return self._open_generic_http(http.client.HTTPConnection, url, data)
1927
1928 def http_error(self, url, fp, errcode, errmsg, headers, data=None):
1929 """Handle http errors.
1930
1931 Derived class can override this, or provide specific handlers
1932 named http_error_DDD where DDD is the 3-digit error code."""
1933 # First check if there's a specific handler for this error
1934 name = 'http_error_%d' % errcode
1935 if hasattr(self, name):
1936 method = getattr(self, name)
1937 if data is None:
1938 result = method(url, fp, errcode, errmsg, headers)
1939 else:
1940 result = method(url, fp, errcode, errmsg, headers, data)
1941 if result: return result
1942 return self.http_error_default(url, fp, errcode, errmsg, headers)
1943
1944 def http_error_default(self, url, fp, errcode, errmsg, headers):
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001945 """Default error handler: close the connection and raise OSError."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001946 fp.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001947 raise HTTPError(url, errcode, errmsg, headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001948
1949 if _have_ssl:
1950 def _https_connection(self, host):
1951 return http.client.HTTPSConnection(host,
1952 key_file=self.key_file,
1953 cert_file=self.cert_file)
1954
1955 def open_https(self, url, data=None):
1956 """Use HTTPS protocol."""
1957 return self._open_generic_http(self._https_connection, url, data)
1958
1959 def open_file(self, url):
1960 """Use local file or FTP depending on form of URL."""
1961 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001962 raise URLError('file error: proxy support for file protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001963 if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
Senthil Kumaran383c32d2010-10-14 11:57:35 +00001964 raise ValueError("file:// scheme is supported only on localhost")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001965 else:
1966 return self.open_local_file(url)
1967
1968 def open_local_file(self, url):
1969 """Use local file."""
Senthil Kumaran6c5bd402011-11-01 23:20:31 +08001970 import email.utils
1971 import mimetypes
Georg Brandl13e89462008-07-01 19:56:00 +00001972 host, file = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001973 localname = url2pathname(file)
1974 try:
1975 stats = os.stat(localname)
1976 except OSError as e:
Senthil Kumaranf5776862012-10-21 13:30:02 -07001977 raise URLError(e.strerror, e.filename)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001978 size = stats.st_size
1979 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1980 mtype = mimetypes.guess_type(url)[0]
1981 headers = email.message_from_string(
1982 'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' %
1983 (mtype or 'text/plain', size, modified))
1984 if not host:
1985 urlfile = file
1986 if file[:1] == '/':
1987 urlfile = 'file://' + file
Georg Brandl13e89462008-07-01 19:56:00 +00001988 return addinfourl(open(localname, 'rb'), headers, urlfile)
1989 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001990 if (not port
Senthil Kumaran40d80782012-10-22 09:43:04 -07001991 and socket.gethostbyname(host) in ((localhost(),) + thishost())):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001992 urlfile = file
1993 if file[:1] == '/':
1994 urlfile = 'file://' + file
Senthil Kumaran3800ea92012-01-21 11:52:48 +08001995 elif file[:2] == './':
1996 raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url)
Georg Brandl13e89462008-07-01 19:56:00 +00001997 return addinfourl(open(localname, 'rb'), headers, urlfile)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001998 raise URLError('local file error: not on local host')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001999
2000 def open_ftp(self, url):
2001 """Use FTP protocol."""
2002 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07002003 raise URLError('ftp error: proxy support for ftp protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002004 import mimetypes
Georg Brandl13e89462008-07-01 19:56:00 +00002005 host, path = splithost(url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07002006 if not host: raise URLError('ftp error: no host given')
Georg Brandl13e89462008-07-01 19:56:00 +00002007 host, port = splitport(host)
2008 user, host = splituser(host)
2009 if user: user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002010 else: passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00002011 host = unquote(host)
2012 user = unquote(user or '')
2013 passwd = unquote(passwd or '')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002014 host = socket.gethostbyname(host)
2015 if not port:
2016 import ftplib
2017 port = ftplib.FTP_PORT
2018 else:
2019 port = int(port)
Georg Brandl13e89462008-07-01 19:56:00 +00002020 path, attrs = splitattr(path)
2021 path = unquote(path)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002022 dirs = path.split('/')
2023 dirs, file = dirs[:-1], dirs[-1]
2024 if dirs and not dirs[0]: dirs = dirs[1:]
2025 if dirs and not dirs[0]: dirs[0] = '/'
2026 key = user, host, port, '/'.join(dirs)
2027 # XXX thread unsafe!
2028 if len(self.ftpcache) > MAXFTPCACHE:
2029 # Prune the cache, rather arbitrarily
Benjamin Peterson3c2dca62014-06-07 15:08:04 -07002030 for k in list(self.ftpcache):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002031 if k != key:
2032 v = self.ftpcache[k]
2033 del self.ftpcache[k]
2034 v.close()
2035 try:
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08002036 if key not in self.ftpcache:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002037 self.ftpcache[key] = \
2038 ftpwrapper(user, passwd, host, port, dirs)
2039 if not file: type = 'D'
2040 else: type = 'I'
2041 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00002042 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002043 if attr.lower() == 'type' and \
2044 value in ('a', 'A', 'i', 'I', 'd', 'D'):
2045 type = value.upper()
2046 (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
2047 mtype = mimetypes.guess_type("ftp:" + url)[0]
2048 headers = ""
2049 if mtype:
2050 headers += "Content-Type: %s\n" % mtype
2051 if retrlen is not None and retrlen >= 0:
2052 headers += "Content-Length: %d\n" % retrlen
2053 headers = email.message_from_string(headers)
Georg Brandl13e89462008-07-01 19:56:00 +00002054 return addinfourl(fp, headers, "ftp:" + url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07002055 except ftperrors() as exp:
2056 raise URLError('ftp error %r' % exp).with_traceback(sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002057
2058 def open_data(self, url, data=None):
2059 """Use "data" URL."""
2060 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07002061 raise URLError('data error: proxy support for data protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002062 # ignore POSTed data
2063 #
2064 # syntax of data URLs:
2065 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
2066 # mediatype := [ type "/" subtype ] *( ";" parameter )
2067 # data := *urlchar
2068 # parameter := attribute "=" value
2069 try:
2070 [type, data] = url.split(',', 1)
2071 except ValueError:
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02002072 raise OSError('data error', 'bad data URL')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002073 if not type:
2074 type = 'text/plain;charset=US-ASCII'
2075 semi = type.rfind(';')
2076 if semi >= 0 and '=' not in type[semi:]:
2077 encoding = type[semi+1:]
2078 type = type[:semi]
2079 else:
2080 encoding = ''
2081 msg = []
Senthil Kumaranf6c456d2010-05-01 08:29:18 +00002082 msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT',
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002083 time.gmtime(time.time())))
2084 msg.append('Content-type: %s' % type)
2085 if encoding == 'base64':
Georg Brandl706824f2009-06-04 09:42:55 +00002086 # XXX is this encoding/decoding ok?
Marc-André Lemburg8f36af72011-02-25 15:42:01 +00002087 data = base64.decodebytes(data.encode('ascii')).decode('latin-1')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002088 else:
Georg Brandl13e89462008-07-01 19:56:00 +00002089 data = unquote(data)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002090 msg.append('Content-Length: %d' % len(data))
2091 msg.append('')
2092 msg.append(data)
2093 msg = '\n'.join(msg)
Georg Brandl13e89462008-07-01 19:56:00 +00002094 headers = email.message_from_string(msg)
2095 f = io.StringIO(msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002096 #f.fileno = None # needed for addinfourl
Georg Brandl13e89462008-07-01 19:56:00 +00002097 return addinfourl(f, headers, url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002098
2099
2100class FancyURLopener(URLopener):
2101 """Derived class with handlers for errors we can handle (perhaps)."""
2102
2103 def __init__(self, *args, **kwargs):
2104 URLopener.__init__(self, *args, **kwargs)
2105 self.auth_cache = {}
2106 self.tries = 0
2107 self.maxtries = 10
2108
2109 def http_error_default(self, url, fp, errcode, errmsg, headers):
2110 """Default error handling -- don't raise an exception."""
Georg Brandl13e89462008-07-01 19:56:00 +00002111 return addinfourl(fp, headers, "http:" + url, errcode)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002112
2113 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
2114 """Error 302 -- relocated (temporarily)."""
2115 self.tries += 1
Martin Pantera0370222016-02-04 06:01:35 +00002116 try:
2117 if self.maxtries and self.tries >= self.maxtries:
2118 if hasattr(self, "http_error_500"):
2119 meth = self.http_error_500
2120 else:
2121 meth = self.http_error_default
2122 return meth(url, fp, 500,
2123 "Internal Server Error: Redirect Recursion",
2124 headers)
2125 result = self.redirect_internal(url, fp, errcode, errmsg,
2126 headers, data)
2127 return result
2128 finally:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002129 self.tries = 0
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002130
2131 def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
2132 if 'location' in headers:
2133 newurl = headers['location']
2134 elif 'uri' in headers:
2135 newurl = headers['uri']
2136 else:
2137 return
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002138 fp.close()
guido@google.coma119df92011-03-29 11:41:02 -07002139
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002140 # In case the server sent a relative URL, join with original:
Georg Brandl13e89462008-07-01 19:56:00 +00002141 newurl = urljoin(self.type + ":" + url, newurl)
guido@google.coma119df92011-03-29 11:41:02 -07002142
2143 urlparts = urlparse(newurl)
2144
2145 # For security reasons, we don't allow redirection to anything other
2146 # than http, https and ftp.
2147
2148 # We are using newer HTTPError with older redirect_internal method
2149 # This older method will get deprecated in 3.3
2150
Senthil Kumaran6497aa32012-01-04 13:46:59 +08002151 if urlparts.scheme not in ('http', 'https', 'ftp', ''):
guido@google.coma119df92011-03-29 11:41:02 -07002152 raise HTTPError(newurl, errcode,
2153 errmsg +
2154 " Redirection to url '%s' is not allowed." % newurl,
2155 headers, fp)
2156
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002157 return self.open(newurl)
2158
2159 def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):
2160 """Error 301 -- also relocated (permanently)."""
2161 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2162
2163 def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):
2164 """Error 303 -- also relocated (essentially identical to 302)."""
2165 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2166
2167 def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):
2168 """Error 307 -- relocated, but turn POST into error."""
2169 if data is None:
2170 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2171 else:
2172 return self.http_error_default(url, fp, errcode, errmsg, headers)
2173
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002174 def http_error_401(self, url, fp, errcode, errmsg, headers, data=None,
2175 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002176 """Error 401 -- authentication required.
2177 This function supports Basic authentication only."""
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08002178 if 'www-authenticate' not in headers:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002179 URLopener.http_error_default(self, url, fp,
2180 errcode, errmsg, headers)
2181 stuff = headers['www-authenticate']
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002182 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2183 if not match:
2184 URLopener.http_error_default(self, url, fp,
2185 errcode, errmsg, headers)
2186 scheme, realm = match.groups()
2187 if scheme.lower() != 'basic':
2188 URLopener.http_error_default(self, url, fp,
2189 errcode, errmsg, headers)
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002190 if not retry:
2191 URLopener.http_error_default(self, url, fp, errcode, errmsg,
2192 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002193 name = 'retry_' + self.type + '_basic_auth'
2194 if data is None:
2195 return getattr(self,name)(url, realm)
2196 else:
2197 return getattr(self,name)(url, realm, data)
2198
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002199 def http_error_407(self, url, fp, errcode, errmsg, headers, data=None,
2200 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002201 """Error 407 -- proxy authentication required.
2202 This function supports Basic authentication only."""
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08002203 if 'proxy-authenticate' not in headers:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002204 URLopener.http_error_default(self, url, fp,
2205 errcode, errmsg, headers)
2206 stuff = headers['proxy-authenticate']
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002207 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2208 if not match:
2209 URLopener.http_error_default(self, url, fp,
2210 errcode, errmsg, headers)
2211 scheme, realm = match.groups()
2212 if scheme.lower() != 'basic':
2213 URLopener.http_error_default(self, url, fp,
2214 errcode, errmsg, headers)
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002215 if not retry:
2216 URLopener.http_error_default(self, url, fp, errcode, errmsg,
2217 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002218 name = 'retry_proxy_' + self.type + '_basic_auth'
2219 if data is None:
2220 return getattr(self,name)(url, realm)
2221 else:
2222 return getattr(self,name)(url, realm, data)
2223
2224 def retry_proxy_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002225 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002226 newurl = 'http://' + host + selector
2227 proxy = self.proxies['http']
Georg Brandl13e89462008-07-01 19:56:00 +00002228 urltype, proxyhost = splittype(proxy)
2229 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002230 i = proxyhost.find('@') + 1
2231 proxyhost = proxyhost[i:]
2232 user, passwd = self.get_user_passwd(proxyhost, realm, i)
2233 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002234 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002235 quote(passwd, safe=''), proxyhost)
2236 self.proxies['http'] = 'http://' + proxyhost + proxyselector
2237 if data is None:
2238 return self.open(newurl)
2239 else:
2240 return self.open(newurl, data)
2241
2242 def retry_proxy_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002243 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002244 newurl = 'https://' + host + selector
2245 proxy = self.proxies['https']
Georg Brandl13e89462008-07-01 19:56:00 +00002246 urltype, proxyhost = splittype(proxy)
2247 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002248 i = proxyhost.find('@') + 1
2249 proxyhost = proxyhost[i:]
2250 user, passwd = self.get_user_passwd(proxyhost, realm, i)
2251 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002252 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002253 quote(passwd, safe=''), proxyhost)
2254 self.proxies['https'] = 'https://' + proxyhost + proxyselector
2255 if data is None:
2256 return self.open(newurl)
2257 else:
2258 return self.open(newurl, data)
2259
2260 def retry_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002261 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002262 i = host.find('@') + 1
2263 host = host[i:]
2264 user, passwd = self.get_user_passwd(host, realm, i)
2265 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002266 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002267 quote(passwd, safe=''), host)
2268 newurl = 'http://' + host + selector
2269 if data is None:
2270 return self.open(newurl)
2271 else:
2272 return self.open(newurl, data)
2273
2274 def retry_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002275 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002276 i = host.find('@') + 1
2277 host = host[i:]
2278 user, passwd = self.get_user_passwd(host, realm, i)
2279 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002280 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002281 quote(passwd, safe=''), host)
2282 newurl = 'https://' + host + selector
2283 if data is None:
2284 return self.open(newurl)
2285 else:
2286 return self.open(newurl, data)
2287
Florent Xicluna757445b2010-05-17 17:24:07 +00002288 def get_user_passwd(self, host, realm, clear_cache=0):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002289 key = realm + '@' + host.lower()
2290 if key in self.auth_cache:
2291 if clear_cache:
2292 del self.auth_cache[key]
2293 else:
2294 return self.auth_cache[key]
2295 user, passwd = self.prompt_user_passwd(host, realm)
2296 if user or passwd: self.auth_cache[key] = (user, passwd)
2297 return user, passwd
2298
2299 def prompt_user_passwd(self, host, realm):
2300 """Override this in a GUI environment!"""
2301 import getpass
2302 try:
2303 user = input("Enter username for %s at %s: " % (realm, host))
2304 passwd = getpass.getpass("Enter password for %s in %s at %s: " %
2305 (user, realm, host))
2306 return user, passwd
2307 except KeyboardInterrupt:
2308 print()
2309 return None, None
2310
2311
2312# Utility functions
2313
2314_localhost = None
2315def localhost():
2316 """Return the IP address of the magic hostname 'localhost'."""
2317 global _localhost
2318 if _localhost is None:
2319 _localhost = socket.gethostbyname('localhost')
2320 return _localhost
2321
2322_thishost = None
2323def thishost():
Senthil Kumaran99b2c8f2009-12-27 10:13:39 +00002324 """Return the IP addresses of the current host."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002325 global _thishost
2326 if _thishost is None:
Senthil Kumarandcdadfe2013-06-01 11:12:17 -07002327 try:
2328 _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2])
2329 except socket.gaierror:
2330 _thishost = tuple(socket.gethostbyname_ex('localhost')[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002331 return _thishost
2332
2333_ftperrors = None
2334def ftperrors():
2335 """Return the set of errors raised by the FTP class."""
2336 global _ftperrors
2337 if _ftperrors is None:
2338 import ftplib
2339 _ftperrors = ftplib.all_errors
2340 return _ftperrors
2341
2342_noheaders = None
2343def noheaders():
Georg Brandl13e89462008-07-01 19:56:00 +00002344 """Return an empty email Message object."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002345 global _noheaders
2346 if _noheaders is None:
Georg Brandl13e89462008-07-01 19:56:00 +00002347 _noheaders = email.message_from_string("")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002348 return _noheaders
2349
2350
2351# Utility classes
2352
2353class ftpwrapper:
2354 """Class used by open_ftp() for cache of open FTP connections."""
2355
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002356 def __init__(self, user, passwd, host, port, dirs, timeout=None,
2357 persistent=True):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002358 self.user = user
2359 self.passwd = passwd
2360 self.host = host
2361 self.port = port
2362 self.dirs = dirs
2363 self.timeout = timeout
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002364 self.refcount = 0
2365 self.keepalive = persistent
Victor Stinnerab73e652015-04-07 12:49:27 +02002366 try:
2367 self.init()
2368 except:
2369 self.close()
2370 raise
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002371
2372 def init(self):
2373 import ftplib
2374 self.busy = 0
2375 self.ftp = ftplib.FTP()
2376 self.ftp.connect(self.host, self.port, self.timeout)
2377 self.ftp.login(self.user, self.passwd)
Senthil Kumarancaa00fe2013-06-02 11:59:47 -07002378 _target = '/'.join(self.dirs)
2379 self.ftp.cwd(_target)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002380
2381 def retrfile(self, file, type):
2382 import ftplib
2383 self.endtransfer()
2384 if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1
2385 else: cmd = 'TYPE ' + type; isdir = 0
2386 try:
2387 self.ftp.voidcmd(cmd)
2388 except ftplib.all_errors:
2389 self.init()
2390 self.ftp.voidcmd(cmd)
2391 conn = None
2392 if file and not isdir:
2393 # Try to retrieve as a file
2394 try:
2395 cmd = 'RETR ' + file
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002396 conn, retrlen = self.ftp.ntransfercmd(cmd)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002397 except ftplib.error_perm as reason:
2398 if str(reason)[:3] != '550':
Benjamin Peterson901a2782013-05-12 19:01:52 -05002399 raise URLError('ftp error: %r' % reason).with_traceback(
Georg Brandl13e89462008-07-01 19:56:00 +00002400 sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002401 if not conn:
2402 # Set transfer mode to ASCII!
2403 self.ftp.voidcmd('TYPE A')
2404 # Try a directory listing. Verify that directory exists.
2405 if file:
2406 pwd = self.ftp.pwd()
2407 try:
2408 try:
2409 self.ftp.cwd(file)
2410 except ftplib.error_perm as reason:
Benjamin Peterson901a2782013-05-12 19:01:52 -05002411 raise URLError('ftp error: %r' % reason) from reason
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002412 finally:
2413 self.ftp.cwd(pwd)
2414 cmd = 'LIST ' + file
2415 else:
2416 cmd = 'LIST'
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002417 conn, retrlen = self.ftp.ntransfercmd(cmd)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002418 self.busy = 1
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002419
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002420 ftpobj = addclosehook(conn.makefile('rb'), self.file_close)
2421 self.refcount += 1
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002422 conn.close()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002423 # Pass back both a suitably decorated object and a retrieval length
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002424 return (ftpobj, retrlen)
2425
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002426 def endtransfer(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002427 self.busy = 0
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002428
2429 def close(self):
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002430 self.keepalive = False
2431 if self.refcount <= 0:
2432 self.real_close()
2433
2434 def file_close(self):
2435 self.endtransfer()
2436 self.refcount -= 1
2437 if self.refcount <= 0 and not self.keepalive:
2438 self.real_close()
2439
2440 def real_close(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002441 self.endtransfer()
2442 try:
2443 self.ftp.close()
2444 except ftperrors():
2445 pass
2446
2447# Proxy handling
2448def getproxies_environment():
2449 """Return a dictionary of scheme -> proxy server URL mappings.
2450
2451 Scan the environment for variables named <scheme>_proxy;
2452 this seems to be the standard convention. If you need a
2453 different way, you can pass a proxies dictionary to the
2454 [Fancy]URLopener constructor.
2455
2456 """
2457 proxies = {}
2458 for name, value in os.environ.items():
2459 name = name.lower()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002460 if value and name[-6:] == '_proxy':
2461 proxies[name[:-6]] = value
2462 return proxies
2463
2464def proxy_bypass_environment(host):
2465 """Test if proxies should not be used for a particular host.
2466
2467 Checks the environment for a variable named no_proxy, which should
2468 be a list of DNS suffixes separated by commas, or '*' for all hosts.
2469 """
2470 no_proxy = os.environ.get('no_proxy', '') or os.environ.get('NO_PROXY', '')
2471 # '*' is special case for always bypass
2472 if no_proxy == '*':
2473 return 1
2474 # strip port off host
Georg Brandl13e89462008-07-01 19:56:00 +00002475 hostonly, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002476 # check if the host ends with any of the DNS suffixes
Senthil Kumaran89976f12011-08-06 12:27:40 +08002477 no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]
2478 for name in no_proxy_list:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002479 if name and (hostonly.endswith(name) or host.endswith(name)):
2480 return 1
2481 # otherwise, don't bypass
2482 return 0
2483
2484
Ronald Oussorene72e1612011-03-14 18:15:25 -04002485# This code tests an OSX specific data structure but is testable on all
2486# platforms
2487def _proxy_bypass_macosx_sysconf(host, proxy_settings):
2488 """
2489 Return True iff this host shouldn't be accessed using a proxy
2490
2491 This function uses the MacOSX framework SystemConfiguration
2492 to fetch the proxy information.
2493
2494 proxy_settings come from _scproxy._get_proxy_settings or get mocked ie:
2495 { 'exclude_simple': bool,
2496 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16']
2497 }
2498 """
Ronald Oussorene72e1612011-03-14 18:15:25 -04002499 from fnmatch import fnmatch
2500
2501 hostonly, port = splitport(host)
2502
2503 def ip2num(ipAddr):
2504 parts = ipAddr.split('.')
2505 parts = list(map(int, parts))
2506 if len(parts) != 4:
2507 parts = (parts + [0, 0, 0, 0])[:4]
2508 return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]
2509
2510 # Check for simple host names:
2511 if '.' not in host:
2512 if proxy_settings['exclude_simple']:
2513 return True
2514
2515 hostIP = None
2516
2517 for value in proxy_settings.get('exceptions', ()):
2518 # Items in the list are strings like these: *.local, 169.254/16
2519 if not value: continue
2520
2521 m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)
2522 if m is not None:
2523 if hostIP is None:
2524 try:
2525 hostIP = socket.gethostbyname(hostonly)
2526 hostIP = ip2num(hostIP)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002527 except OSError:
Ronald Oussorene72e1612011-03-14 18:15:25 -04002528 continue
2529
2530 base = ip2num(m.group(1))
2531 mask = m.group(2)
2532 if mask is None:
2533 mask = 8 * (m.group(1).count('.') + 1)
2534 else:
2535 mask = int(mask[1:])
2536 mask = 32 - mask
2537
2538 if (hostIP >> mask) == (base >> mask):
2539 return True
2540
2541 elif fnmatch(host, value):
2542 return True
2543
2544 return False
2545
2546
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002547if sys.platform == 'darwin':
Ronald Oussoren84151202010-04-18 20:46:11 +00002548 from _scproxy import _get_proxy_settings, _get_proxies
2549
2550 def proxy_bypass_macosx_sysconf(host):
Ronald Oussoren84151202010-04-18 20:46:11 +00002551 proxy_settings = _get_proxy_settings()
Ronald Oussorene72e1612011-03-14 18:15:25 -04002552 return _proxy_bypass_macosx_sysconf(host, proxy_settings)
Ronald Oussoren84151202010-04-18 20:46:11 +00002553
2554 def getproxies_macosx_sysconf():
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002555 """Return a dictionary of scheme -> proxy server URL mappings.
2556
Ronald Oussoren84151202010-04-18 20:46:11 +00002557 This function uses the MacOSX framework SystemConfiguration
2558 to fetch the proxy information.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002559 """
Ronald Oussoren84151202010-04-18 20:46:11 +00002560 return _get_proxies()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002561
Ronald Oussoren84151202010-04-18 20:46:11 +00002562
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002563
2564 def proxy_bypass(host):
2565 if getproxies_environment():
2566 return proxy_bypass_environment(host)
2567 else:
Ronald Oussoren84151202010-04-18 20:46:11 +00002568 return proxy_bypass_macosx_sysconf(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002569
2570 def getproxies():
Ronald Oussoren84151202010-04-18 20:46:11 +00002571 return getproxies_environment() or getproxies_macosx_sysconf()
2572
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002573
2574elif os.name == 'nt':
2575 def getproxies_registry():
2576 """Return a dictionary of scheme -> proxy server URL mappings.
2577
2578 Win32 uses the registry to store proxies.
2579
2580 """
2581 proxies = {}
2582 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002583 import winreg
Brett Cannoncd171c82013-07-04 17:43:24 -04002584 except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002585 # Std module, so should be around - but you never know!
2586 return proxies
2587 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002588 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002589 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002590 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002591 'ProxyEnable')[0]
2592 if proxyEnable:
2593 # Returned as Unicode but problems if not converted to ASCII
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002594 proxyServer = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002595 'ProxyServer')[0])
2596 if '=' in proxyServer:
2597 # Per-protocol settings
2598 for p in proxyServer.split(';'):
2599 protocol, address = p.split('=', 1)
2600 # See if address has a type:// prefix
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002601 if not re.match('^([^/:]+)://', address):
2602 address = '%s://%s' % (protocol, address)
2603 proxies[protocol] = address
2604 else:
2605 # Use one setting for all protocols
2606 if proxyServer[:5] == 'http:':
2607 proxies['http'] = proxyServer
2608 else:
2609 proxies['http'] = 'http://%s' % proxyServer
Senthil Kumaran04f31b82010-07-14 20:10:52 +00002610 proxies['https'] = 'https://%s' % proxyServer
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002611 proxies['ftp'] = 'ftp://%s' % proxyServer
2612 internetSettings.Close()
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02002613 except (OSError, ValueError, TypeError):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002614 # Either registry key not found etc, or the value in an
2615 # unexpected format.
2616 # proxies already set up to be empty so nothing to do
2617 pass
2618 return proxies
2619
2620 def getproxies():
2621 """Return a dictionary of scheme -> proxy server URL mappings.
2622
2623 Returns settings gathered from the environment, if specified,
2624 or the registry.
2625
2626 """
2627 return getproxies_environment() or getproxies_registry()
2628
2629 def proxy_bypass_registry(host):
2630 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002631 import winreg
Brett Cannoncd171c82013-07-04 17:43:24 -04002632 except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002633 # Std modules, so should be around - but you never know!
2634 return 0
2635 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002636 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002637 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002638 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002639 'ProxyEnable')[0]
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002640 proxyOverride = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002641 'ProxyOverride')[0])
2642 # ^^^^ Returned as Unicode but problems if not converted to ASCII
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02002643 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002644 return 0
2645 if not proxyEnable or not proxyOverride:
2646 return 0
2647 # try to make a host list from name and IP address.
Georg Brandl13e89462008-07-01 19:56:00 +00002648 rawHost, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002649 host = [rawHost]
2650 try:
2651 addr = socket.gethostbyname(rawHost)
2652 if addr != rawHost:
2653 host.append(addr)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002654 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002655 pass
2656 try:
2657 fqdn = socket.getfqdn(rawHost)
2658 if fqdn != rawHost:
2659 host.append(fqdn)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002660 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002661 pass
2662 # make a check value list from the registry entry: replace the
2663 # '<local>' string by the localhost entry and the corresponding
2664 # canonical entry.
2665 proxyOverride = proxyOverride.split(';')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002666 # now check if we match one of the registry values.
2667 for test in proxyOverride:
Senthil Kumaran49476062009-05-01 06:00:23 +00002668 if test == '<local>':
2669 if '.' not in rawHost:
2670 return 1
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002671 test = test.replace(".", r"\.") # mask dots
2672 test = test.replace("*", r".*") # change glob sequence
2673 test = test.replace("?", r".") # change glob char
2674 for val in host:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002675 if re.match(test, val, re.I):
2676 return 1
2677 return 0
2678
2679 def proxy_bypass(host):
2680 """Return a dictionary of scheme -> proxy server URL mappings.
2681
2682 Returns settings gathered from the environment, if specified,
2683 or the registry.
2684
2685 """
2686 if getproxies_environment():
2687 return proxy_bypass_environment(host)
2688 else:
2689 return proxy_bypass_registry(host)
2690
2691else:
2692 # By default use environment variables
2693 getproxies = getproxies_environment
2694 proxy_bypass = proxy_bypass_environment