B \:@sdZddlmZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl Z ddl mZddlmZmZmZddlmZmZmZmZydd l mZWn$ek rdZdd lmZYnXd d gZd ZejZejj Z!e "Z#e $Z%dZ&ej'ej(ej)ej*ej+ej,ej-ej.ej/ej0ej1ej2ej3ej4ej5ej6ej7ej8ej9ej:ej;ejej?ej@ejAejBejCejDgZEejFejGejHfiZIeJe drejKejKfeIe jL<eJe drejMejMfeIe jN<eJe drejGejGfeIe jO<eJe drejPejPfeIe jQ<eJe drejRejRfeIe jS<dd ZTdd ZUddZVddZWeXeVZYeZeWZ[Gddde\Z]ernd#ddZ^n d$d dZ^e^e]_^Gd!d"d"e\Z_dS)%a SecureTranport support for urllib3 via ctypes. This makes platform-native TLS available to urllib3 users on macOS without the use of a compiler. This is an important feature because the Python Package Index is moving to become a TLSv1.2-or-higher server, and the default OpenSSL that ships with macOS is not capable of doing TLSv1.2. The only way to resolve this is to give macOS users an alternative solution to the problem, and that solution is to use SecureTransport. We use ctypes here because this solution must not require a compiler. That's because pip is not allowed to require a compiler either. This is not intended to be a seriously long-term solution to this problem. The hope is that PEP 543 will eventually solve this issue for us, at which point we can retire this contrib module. But in the short term, we need to solve the impending tire fire that is Python on Mac without this kind of contrib module. So...here we are. To use this module, simply import and inject it:: import urllib3.contrib.securetransport urllib3.contrib.securetransport.inject_into_urllib3() Happy TLSing! This code is a bastardised version of the code found in Will Bond's oscrypto library. An enormous debt is owed to him for blazing this trail for us. For that reason, this code should be considered to be covered both by urllib3's license and by oscrypto's: Copyright (c) 2015-2016 Will Bond Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. )absolute_importN)util)Security SecurityConstCoreFoundation)_assert_no_error_cert_array_from_pem_temporary_keychain_load_client_cert_chain) _fileobject)backport_makefileinject_into_urllib3extract_from_urllib3Ti@PROTOCOL_SSLv2PROTOCOL_SSLv3PROTOCOL_TLSv1PROTOCOL_TLSv1_1PROTOCOL_TLSv1_2cCs.tt_ttj_tt_ttj_dt_dtj_dS)zG Monkey-patch urllib3 with SecureTransport-backed SSL-support. TN)SecureTransportContextr SSLContextssl_HAS_SNIIS_SECURETRANSPORTrrB/tmp/pip-build-uw_ogi45/urllib3/urllib3/contrib/securetransport.pyrs cCs.tt_ttj_tt_ttj_dt_dtj_dS)z> Undo monkey-patching by :func:`inject_into_urllib3`. FN)orig_util_SSLContextrrrorig_util_HAS_SNIrrrrrrrs c Cs|d}y:t|}|dkr tjS|j}|d}|}d}d}y|xv||kr|dksZ|dkrtt||sttt j d||} t j |  ||} || | } || 7}| sB|stjSPqBWWnjtjk r$} zH| j }|dk r|t j kr||d<|t jks |t jkrtjSWdd} ~ XYnX||d<||kr>tjSdStk rv} z|dk rd| |_tjSd} ~ XYnXdS)zs SecureTransport read callback. This is called by ST to request that data be returned from the socket. Nrz timed out)_connection_refsgetrerrSSLInternalsocket gettimeoutr wait_for_readerrorerrnoEAGAINctypesc_char from_address recv_intoerrSSLClosedGraceful ECONNRESETEPIPEerrSSLClosedAborterrSSLWouldBlock Exception _exception) connection_id data_bufferdata_length_pointerwrapped_socket base_socketZrequested_lengthtimeoutr%Z read_count remainingbuffer chunk_sizeerrr_read_callbacksN         r=c Cs^d}yt|}|dkr tjS|j}|d}t||}|}d}d} yZxT| |kr|dksf|dkrt ||st t j d| |} | | 7} || d}qNWWnbtj k r} z@| j }|dk r|t j kr| |d<|t jks|t jkrtjSWdd} ~ XYnX| |d<| |kr tjSdStk rX} z|dk rF| |_tjSd} ~ XYnXdS)zx SecureTransport write callback. This is called by ST to request that data actually be sent on the network. Nrz timed out)rr rr!r"r( string_atr#rwait_for_writer%r&r'sendr-r.r/r0r1r2) r3r4r5r6r7Zbytes_to_writedatar8r%sentZ chunk_sentr<rrr_write_callbacksD       rCc@seZdZdZddZejddZddZdd Z d d Z d d Z ddZ ddZ d*ddZddZddZddZddZddZdd Zd+d"d#Zd$d%Zd&d'Zd(d)ZdS), WrappedSocketz API-compatibility wrapper for Python's OpenSSL wrapped socket object. Note: _makefile_refs, _drop(), and _reuse() are needed for the garbage collector of PyPy. cCsL||_d|_d|_d|_d|_d|_d|_d|_|j|_ |j ddS)NrF) r"context_makefile_refs_closedr2 _keychain _keychain_dir_client_cert_chainr#_timeout settimeout)selfr"rrr__init__?s zWrappedSocket.__init__ccs4d|_dV|jdk r0|jd}|_||dS)a] A context manager that can be used to wrap calls that do I/O from SecureTransport. If any of the I/O callbacks hit an exception, this context manager will correctly propagate the exception after the fact. This avoids silently swallowing those exceptions. It also correctly forces the socket closed. N)r2close)rM exceptionrrr_raise_on_errorQs  zWrappedSocket._raise_on_errorcCs2tjttt}t|j|tt}t|dS)a4 Sets up the allowed ciphers. By default this matches the set in util.ssl_.DEFAULT_CIPHERS, at least as supported by macOS. This is done custom and doesn't allow changing at this time, mostly because parsing OpenSSL cipher strings is going to be a freaking nightmare. N)rZSSLCipherSuitelen CIPHER_SUITESZSSLSetEnabledCiphersrEr )rMciphersresultrrr _set_ciphersfszWrappedSocket._set_ciphersc Cs|sdStj|r2t|d}|}WdQRXd}t}zt|}t|j t |}t ||srt dt||}t |t|d}t |t}t|t |}t |Wd|rt||dk rt|Xtjtjf}|j|kr t d|jdS)z Called when we have set custom validation. We do this in two cases: first, when cert validation is entirely disabled; and second, when using a custom trust DB. NrbzFailed to copy trust referenceTz)certificate verify failed, error code: %d)ospathisfileopenreadr SecTrustRefr SSLCopyPeerTrustrEr(byrefr sslSSLErrorZSecTrustSetAnchorCertificatesZ!SecTrustSetAnchorCertificatesOnlyZSecTrustResultTypeZSecTrustEvaluater CFReleaserZkSecTrustResultUnspecifiedZkSecTrustResultProceedvalue) rMverify trust_bundlefZ cert_arraytrustrUZ trust_resultZ successesrrr_custom_validatess@         zWrappedSocket._custom_validatec Cstdtjtj|_t|jtt} t | t 4t |d} x| t krV| dd} q@W|t | <WdQRXt |j| } t | |rt|ts|d}t|j|t|} t | |t|j|} t | t|j|} | dkr|tjkrt|jtj} t | |r|dk r8t|jtjd} t | |rtt\|_|_t|j|||_t|j|j} t | xf| Rt!|j} | tj"krt#$dn(| tj%kr|&||wvn t | PWdQRXqvWdS)z Actually performs the TLS handshake. This is run automatically by wrapped socket, and shouldn't be needed in user code. Nirzutf-8rTzhandshake timed out)'rZSSLCreateContextrZkSSLClientSideZkSSLStreamTyperEZ SSLSetIOFuncs_read_callback_pointer_write_callback_pointerr _connection_ref_lockidrZSSLSetConnection isinstancebytesencodeZSSLSetPeerDomainNamerRrVZSSLSetProtocolVersionMinZSSLSetProtocolVersionMaxkTLSProtocolMaxSupportedkTLSProtocol12ZSSLSetSessionOptionZ"kSSLSessionOptionBreakOnServerAuthr rHrIr rJZSSLSetCertificaterQZ SSLHandshaker0r"r8ZerrSSLServerAuthCompletedrh) rMserver_hostnamerdre min_versionZ max_version client_certZ client_keyZclient_key_passphraserUhandlerrr handshakes`            zWrappedSocket.handshakecCs |jS)N)r"fileno)rMrrrrwszWrappedSocket.filenocCs*|jdkr|jd8_|jr&|dS)Nrr)rFrGrO)rMrrr_decref_socketioss zWrappedSocket._decref_socketioscCs&t|}|||}|d|}|S)N)r(create_string_bufferr+)rMZbufsizr: bytes_readrArrrrecvs   zWrappedSocket.recvNc Cs|jr dS|dkrt|}tj||}td}|t|j ||t |}WdQRX|t j kr|j dkrtdn"|t jt jfkr|nt||j S)Nrzrecv timed out)rGrRr(r) from_bufferc_size_trQrZSSLReadrEr_rr0rcr"r8r,ZerrSSLClosedNoNotifyrOr )rMr:nbytesprocessed_bytesrUrrrr+"s       zWrappedSocket.recv_intocCs ||_dS)N)rK)rMr8rrrrLJszWrappedSocket.settimeoutcCs|jS)N)rK)rMrrrr#MszWrappedSocket.gettimeoutc Cshtd}|"t|j|t|t|}WdQRX|tj krZ|j dkrZt dnt ||j S)Nrzsend timed out)r(r}rQrZSSLWriterErRr_rr0rcr"r8r )rMrArrUrrrr@Ps  " zWrappedSocket.sendcCs8d}x.|t|kr2||||t}||7}qWdS)Nr)rRr@SSL_WRITE_BLOCKSIZE)rMrA total_sentrBrrrsendallaszWrappedSocket.sendallc Cs$|t|jWdQRXdS)N)rQrZSSLCloserE)rMrrrshutdowngs zWrappedSocket.shutdowncCs|jdkrd|_|jr(t|jd|_|jr@t|jd|_|jrvt|jt|jt |j d|_|_ |j S|jd8_dS)NrT)rFrGrErrbrJrHrZSecKeychainDeleteshutilrmtreerIr"rO)rMrrrrOks        zWrappedSocket.closeFc Cs|s tdt}d}d}zt|jt|}t||sBdSt|}|sTdSt |d}|sht t |}|szt t |}t |} t| |}Wd|rt ||rt |X|S)Nz2SecureTransport only supports dumping binary certsr) ValueErrorrr]r^rEr(r_r ZSecTrustGetCertificateCountZSecTrustGetCertificateAtIndexAssertionErrorZSecCertificateCopyDatarZCFDataGetLengthZCFDataGetBytePtrr>rb) rM binary_formrgZcertdataZ der_bytesrUZ cert_countZleafZ data_lengthr4rrr getpeercert~s6       zWrappedSocket.getpeercertcCst}t|jt|}t||jtj kr4dS|jtj krDdS|jtj krTdS|jtj krddS|jtj krtdS|jtjkrdStd|dS)NzTLSv1.3zTLSv1.2zTLSv1.1TLSv1SSLv3ZSSLv2zUnknown TLS version: %r)rZ SSLProtocolZSSLGetNegotiatedProtocolVersionrEr(r_r rcrZkTLSProtocol13rqkTLSProtocol11 kTLSProtocol1 kSSLProtocol3 kSSLProtocol2r`ra)rMprotocolrUrrrversions       zWrappedSocket.versioncCs|jd7_dS)Nr)rF)rMrrr_reuseszWrappedSocket._reusecCs&|jdkr|n|jd8_dS)Nr)rFrO)rMrrr_drops  zWrappedSocket._drop)N)F)__name__ __module__ __qualname____doc__rN contextlibcontextmanagerrQrVrhrvrwrxr{r+rLr#r@rrrOrrrrrrrrrD8s( >a ( >rDcCs|jd7_t|||ddS)NrT)rO)rFr )rMmodebufsizerrrmakefilesrrcOsd}t|||f||S)Nr)r)rMr bufferingargskwargsrrrrsc@seZdZdZddZeddZejddZeddZejd dZed d Z e jd d Z d dZ ddZ ddZ dddZ dddZdddZdS)rz I am a wrapper class for the SecureTransport library, to translate the interface of the standard library ``SSLContext`` object to calls into SecureTransport. cCs8t|\|_|_d|_d|_d|_d|_d|_d|_dS)NrF) _protocol_to_min_max _min_version _max_version_options_verify _trust_bundle _client_cert _client_key_client_key_passphrase)rMrrrrrNszSecureTransportContext.__init__cCsdS)z SecureTransport cannot have its hostname checking disabled. For more, see the comment on getpeercert() in this file. Tr)rMrrrcheck_hostnamesz%SecureTransportContext.check_hostnamecCsdS)z SecureTransport cannot have its hostname checking disabled. For more, see the comment on getpeercert() in this file. Nr)rMrcrrrrscCs|jS)N)r)rMrrroptionsszSecureTransportContext.optionscCs ||_dS)N)r)rMrcrrrrscCs|jr tjStjS)N)rr` CERT_REQUIRED CERT_NONE)rMrrr verify_modesz"SecureTransportContext.verify_modecCs|tjkrdnd|_dS)NTF)r`rr)rMrcrrrrscCsdS)Nr)rMrrrset_default_verify_pathss z/SecureTransportContext.set_default_verify_pathscCs|S)N)r)rMrrrload_default_certs)sz)SecureTransportContext.load_default_certscCs|tjjkrtddS)Nz5SecureTransport doesn't support custom cipher strings)rrDEFAULT_CIPHERSr)rMrTrrr set_ciphers,s z"SecureTransportContext.set_ciphersNcCs|dk rtd|p||_dS)Nz1SecureTransport does not support cert directories)rr)rMcafilecapathcadatarrrload_verify_locations3sz,SecureTransportContext.load_verify_locationscCs||_||_||_dS)N)rrZ_client_cert_passphrase)rMcertfilekeyfilepasswordrrrload_cert_chain<sz&SecureTransportContext.load_cert_chainFTc CsJ|rt|st|stt|}|||j|j|j|j|j|j|j |S)N) rrDrvrrrrrrr)rMsock server_sidedo_handshake_on_connectsuppress_ragged_eofsrrr6rrr wrap_socketAs   z"SecureTransportContext.wrap_socket)NNN)NN)FTTN)rrrrrNpropertyrsetterrrrrrrrrrrrrrs      r)r)rN)`r __future__rrr(r&os.pathrXrr"r` threadingweakrefrZ_securetransport.bindingsrrrZ_securetransport.low_levelr r r r r ImportErrorZpackages.backports.makefiler__all__rrrrrWeakValueDictionaryrLockrkrZ'TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384Z'TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256Z%TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384Z%TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256Z-TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256Z+TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256Z#TLS_DHE_RSA_WITH_AES_256_GCM_SHA384Z#TLS_DHE_RSA_WITH_AES_128_GCM_SHA256Z'TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384Z$TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHAZ'TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256Z$TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHAZ%TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384Z"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHAZ%TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256Z"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHAZ#TLS_DHE_RSA_WITH_AES_256_CBC_SHA256Z TLS_DHE_RSA_WITH_AES_256_CBC_SHAZ#TLS_DHE_RSA_WITH_AES_128_CBC_SHA256Z TLS_DHE_RSA_WITH_AES_128_CBC_SHAZTLS_AES_256_GCM_SHA384ZTLS_AES_128_GCM_SHA256ZTLS_RSA_WITH_AES_256_GCM_SHA384ZTLS_RSA_WITH_AES_128_GCM_SHA256ZTLS_AES_128_CCM_8_SHA256ZTLS_AES_128_CCM_SHA256ZTLS_RSA_WITH_AES_256_CBC_SHA256ZTLS_RSA_WITH_AES_128_CBC_SHA256ZTLS_RSA_WITH_AES_256_CBC_SHAZTLS_RSA_WITH_AES_128_CBC_SHArS PROTOCOL_TLSrrprhasattrrrrrrrrrqrrrr=rCZ SSLReadFuncriZ SSLWriteFuncrjobjectrDrrrrrr3s         76  $