Your IP : 18.191.240.117


Current Path : /lib64/python3.6/asyncio/__pycache__/
Upload File :
Current File : //lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.opt-1.pyc

3


 \�e�
@s�ddlZddlZyddlZWnek
r4dZYnXddlmZddlmZddlmZddlmZddl	m
Z
dd	�Zd
d�ZdZ
d
ZdZdZGdd�de�ZGdd�dejej�ZGdd�dej�ZdS)�N�)�base_events)�compat)�	protocols)�
transports)�loggercCsj|rtd��ttd�r*tj�}|sfd|_n<tjtj�}|jtjO_|jtj	O_|j
�tj|_|S)Nz(Server side SSL needs a valid SSLContext�create_default_contextF)
�
ValueError�hasattr�sslr�check_hostnameZ
SSLContextZPROTOCOL_SSLv23ZoptionsZOP_NO_SSLv2ZOP_NO_SSLv3Zset_default_verify_pathsZ
CERT_REQUIRED�verify_mode)�server_side�server_hostname�
sslcontext�r� /usr/lib64/python3.6/sslproto.py�_create_transport_contexts
rcCs
ttd�S)N�	MemoryBIO)r
rrrrr�_is_sslproto_available%srZ	UNWRAPPEDZDO_HANDSHAKEZWRAPPEDZSHUTDOWNc@s~eZdZdZdZddd�Zedd��Zed	d
��Zedd��Z	ed
d��Z
ddd�Zddd�Zdd�Z
ddd�Zd dd�ZdS)!�_SSLPipeaAn SSL "Pipe".

    An SSL pipe allows you to communicate with an SSL/TLS protocol instance
    through memory buffers. It can be used to implement a security layer for an
    existing connection where you don't have access to the connection's file
    descriptor, or for some reason you don't want to use it.

    An SSL pipe can be in "wrapped" and "unwrapped" mode. In unwrapped mode,
    data is passed through untransformed. In wrapped mode, application level
    data is encrypted to SSL record level data and vice versa. The SSL record
    level is the lowest level in the SSL protocol suite and is what travels
    as-is over the wire.

    An SslPipe initially is in "unwrapped" mode. To start SSL, call
    do_handshake(). To shutdown SSL again, call unwrap().
    �iNcCsH||_||_||_t|_tj�|_tj�|_d|_	d|_
d|_d|_dS)a�
        The *context* argument specifies the ssl.SSLContext to use.

        The *server_side* argument indicates whether this is a server side or
        client side transport.

        The optional *server_hostname* argument can be used to specify the
        hostname you are connecting to. You may only specify this parameter if
        the _ssl module supports Server Name Indication (SNI).
        NF)
�_context�_server_side�_server_hostname�
_UNWRAPPED�_staterr�	_incoming�	_outgoing�_sslobj�
_need_ssldata�
_handshake_cb�_shutdown_cb)�self�contextrrrrr�__init__Ds

z_SSLPipe.__init__cCs|jS)z*The SSL context passed to the constructor.)r)r#rrrr$Zsz_SSLPipe.contextcCs|jS)z^The internal ssl.SSLObject instance.

        Return None if the pipe is not wrapped.
        )r)r#rrr�
ssl_object_sz_SSLPipe.ssl_objectcCs|jS)zgWhether more record level data is needed to complete a handshake
        that is currently in progress.)r )r#rrr�need_ssldatagsz_SSLPipe.need_ssldatacCs
|jtkS)zj
        Whether a security layer is currently in effect.

        Return False during handshake.
        )r�_WRAPPED)r#rrr�wrappedmsz_SSLPipe.wrappedcCsR|jtkrtd��|jj|j|j|j|jd�|_	t
|_||_|jddd�\}}|S)aLStart the SSL handshake.

        Return a list of ssldata. A ssldata element is a list of buffers

        The optional *callback* argument can be used to install a callback that
        will be called when the handshake is complete. The callback will be
        called with None if successful, else an exception instance.
        z"handshake in progress or completed)rr�T)�only_handshake)
rr�RuntimeErrorrZwrap_biorrrrr�
_DO_HANDSHAKEr!�feed_ssldata)r#�callback�ssldata�appdatarrr�do_handshakevs	
z_SSLPipe.do_handshakecCsB|jtkrtd��|jtkr$td��t|_||_|jd�\}}|S)a1Start the SSL shutdown sequence.

        Return a list of ssldata. A ssldata element is a list of buffers

        The optional *callback* argument can be used to install a callback that
        will be called when the shutdown is complete. The callback will be
        called without arguments.
        zno security layer presentzshutdown in progressr*)rrr,�	_SHUTDOWNr"r.)r#r/r0r1rrr�shutdown�s	

z_SSLPipe.shutdowncCs|jj�|jd�\}}dS)z�Send a potentially "ragged" EOF.

        This method will raise an SSL_ERROR_EOF exception if the EOF is
        unexpected.
        r*N)rZ	write_eofr.)r#r0r1rrr�feed_eof�s
z_SSLPipe.feed_eofFcCs�|jtkr"|r|g}ng}g|fSd|_|r8|jj|�g}g}y�|jtkrx|jj�t|_|j	rl|j	d�|rx||fS|jtkr�xn|jj
|j�}|j|�|s�Pq�WnJ|jt
kr�|jj�d|_t|_|jr�|j�n|jtkr�|j|jj
��Wnxtjtjfk
�rl}zRt|dd�tjtjtjfk�rN|jtk�rL|j	�rL|j	|��|jtjk|_WYdd}~XnX|jj�r�|j|jj
��||fS)a�Feed SSL record level data into the pipe.

        The data must be a bytes instance. It is OK to send an empty bytes
        instance. This can be used to get ssldata for a handshake initiated by
        this endpoint.

        Return a (ssldata, appdata) tuple. The ssldata element is a list of
        buffers containing SSL data that needs to be sent to the remote SSL.

        The appdata element is a list of buffers containing plaintext data that
        needs to be forwarded to the application. The appdata list may contain
        an empty buffer indicating an SSL "close_notify" alert. This alert must
        be acknowledged by calling shutdown().
        FN�errno)rrr r�writer-rr2r(r!�read�max_size�appendr3Zunwrapr"r�SSLError�CertificateError�getattr�SSL_ERROR_WANT_READ�SSL_ERROR_WANT_WRITE�SSL_ERROR_SYSCALLr6r�pending)r#�datar+r1r0�chunk�excrrrr.�sV











 
z_SSLPipe.feed_ssldatarcCs|jtkr6|t|�kr&||d�g}ng}|t|�fSg}t|�}x�d|_y(|t|�krp||jj||d��7}Wn\tjk
r�}z>|j	dkr�tj
|_|jtj
tjtj
fkr��|jtj
k|_WYdd}~XnX|jjr�|j|jj��|t|�ks�|jrDPqDW||fS)aFeed plaintext data into the pipe.

        Return an (ssldata, offset) tuple. The ssldata element is a list of
        buffers containing record level data that needs to be sent to the
        remote SSL instance. The offset is the number of plaintext bytes that
        were processed, which may be less than the length of data.

        NOTE: In case of short writes, this call MUST be retried with the SAME
        buffer passed into the *data* argument (i.e. the id() must be the
        same). This is an OpenSSL requirement. A further particularity is that
        a short write will always have offset == 0, because the _ssl module
        does not enable partial writes. And even though the offset is zero,
        there will still be encrypted data in ssldata.
        NFZPROTOCOL_IS_SHUTDOWN)rr�len�
memoryviewr rr7rr;�reasonr>r6r?r@rrAr:r8)r#rB�offsetr0ZviewrDrrr�feed_appdata�s2


 z_SSLPipe.feed_appdatai)N)N)N)F)r)�__name__�
__module__�__qualname__�__doc__r9r%�propertyr$r&r'r)r2r4r5r.rIrrrrr0s
	



Jrc@s�eZdZdd�Zddd�Zdd�Zdd	�Zd
d�Zdd
�Ze	j
rHdd�Zdd�Zdd�Z
ddd�Zdd�Zdd�Zdd�Zdd�ZdS) �_SSLProtocolTransportcCs||_||_d|_dS)NF)�_loop�
_ssl_protocol�_closed)r#�loopZssl_protocolrrrr%)sz_SSLProtocolTransport.__init__NcCs|jj||�S)z#Get optional transport information.)rQ�_get_extra_info)r#�name�defaultrrr�get_extra_info/sz$_SSLProtocolTransport.get_extra_infocCs||j_dS)N)rQ�
_app_protocol)r#�protocolrrr�set_protocol3sz"_SSLProtocolTransport.set_protocolcCs|jjS)N)rQrX)r#rrr�get_protocol6sz"_SSLProtocolTransport.get_protocolcCs|jS)N)rR)r#rrr�
is_closing9sz _SSLProtocolTransport.is_closingcCsd|_|jj�dS)a
Close the transport.

        Buffered data will be flushed asynchronously.  No more data
        will be received.  After all buffered data is flushed, the
        protocol's connection_lost() method will (eventually) called
        with None as its argument.
        TN)rRrQ�_start_shutdown)r#rrr�close<sz_SSLProtocolTransport.closecCs&|js"tjd|t|d�|j�dS)Nzunclosed transport %r)�source)rR�warnings�warn�ResourceWarningr^)r#rrr�__del__Ksz_SSLProtocolTransport.__del__cCs|jjj�dS)z�Pause the receiving end.

        No data will be passed to the protocol's data_received()
        method until resume_reading() is called.
        N)rQ�
_transport�
pause_reading)r#rrrreQsz#_SSLProtocolTransport.pause_readingcCs|jjj�dS)z�Resume the receiving end.

        Data received will once again be passed to the protocol's
        data_received() method.
        N)rQrd�resume_reading)r#rrrrfYsz$_SSLProtocolTransport.resume_readingcCs|jjj||�dS)a�Set the high- and low-water limits for write flow control.

        These two values control when to call the protocol's
        pause_writing() and resume_writing() methods.  If specified,
        the low-water limit must be less than or equal to the
        high-water limit.  Neither value can be negative.

        The defaults are implementation-specific.  If only the
        high-water limit is given, the low-water limit defaults to an
        implementation-specific value less than or equal to the
        high-water limit.  Setting high to zero forces low to zero as
        well, and causes pause_writing() to be called whenever the
        buffer becomes non-empty.  Setting low to zero causes
        resume_writing() to be called only once the buffer is empty.
        Use of zero for either limit is generally sub-optimal as it
        reduces opportunities for doing I/O and computation
        concurrently.
        N)rQrd�set_write_buffer_limits)r#ZhighZlowrrrrgasz-_SSLProtocolTransport.set_write_buffer_limitscCs|jjj�S)z,Return the current size of the write buffer.)rQrd�get_write_buffer_size)r#rrrrhvsz+_SSLProtocolTransport.get_write_buffer_sizecCs<t|tttf�s$tdjt|�j���|s,dS|jj	|�dS)z�Write some data bytes to the transport.

        This does not block; it buffers the data and arranges for it
        to be sent out asynchronously.
        z/data: expecting a bytes-like instance, got {!r}N)
�
isinstance�bytes�	bytearrayrF�	TypeError�format�typerJrQ�_write_appdata)r#rBrrrr7zsz_SSLProtocolTransport.writecCsdS)zAReturn True if this transport supports write_eof(), False if not.Fr)r#rrr�
can_write_eof�sz#_SSLProtocolTransport.can_write_eofcCs|jj�dS)z�Close the transport immediately.

        Buffered data will be lost.  No more data will be received.
        The protocol's connection_lost() method will (eventually) be
        called with None as its argument.
        N)rQ�_abort)r#rrr�abort�sz_SSLProtocolTransport.abort)N)NN)rJrKrLr%rWrZr[r\r^rZPY34rcrerfrgrhr7rprrrrrrrO&s


rOc@s�eZdZdZd(dd�Zd)dd�Zd	d
�Zdd�Zd
d�Zdd�Z	dd�Z
dd�Zd*dd�Zdd�Z
dd�Zdd�Zdd�Zdd �Zd+d"d#�Zd$d%�Zd&d'�ZdS),�SSLProtocolz�SSL protocol.

    Implementation of SSL on top of a socket using incoming and outgoing
    buffers which are ssl.MemoryBIO objects.
    FNTcCs�tdkrtd��|st||�}||_|r6|r6||_nd|_||_t|d�|_tj	�|_
d|_||_||_
||_t|j
|�|_d|_d|_d|_d|_d|_||_dS)Nzstdlib ssl module not available)rrF)rr,rrr�_sslcontext�dict�_extra�collections�deque�_write_backlog�_write_buffer_size�_waiterrPrXrO�_app_transport�_sslpipe�_session_established�
_in_handshake�_in_shutdownrd�_call_connection_made)r#rSZapp_protocolrZwaiterrrZcall_connection_maderrrr%�s,


zSSLProtocol.__init__cCsD|jdkrdS|jj�s:|dk	r.|jj|�n|jjd�d|_dS)N)r{Z	cancelledZ
set_exceptionZ
set_result)r#rDrrr�_wakeup_waiter�s

zSSLProtocol._wakeup_waitercCs&||_t|j|j|j�|_|j�dS)zXCalled when the low-level connection is made.

        Start the SSL handshake.
        N)rdrrtrrr}�_start_handshake)r#�	transportrrr�connection_made�s

zSSLProtocol.connection_madecCs8|jrd|_|jj|jj|�d|_d|_|j|�dS)z�Called when the low-level connection is lost or closed.

        The argument is an exception object or None (the latter
        meaning a regular EOF is received or the connection was
        aborted or closed).
        FN)r~rP�	call_soonrX�connection_lostrdr|r�)r#rDrrrr��szSSLProtocol.connection_lostcCs|jj�dS)z\Called when the low-level transport's buffer goes over
        the high-water mark.
        N)rX�
pause_writing)r#rrrr��szSSLProtocol.pause_writingcCs|jj�dS)z^Called when the low-level transport's buffer drains below
        the low-water mark.
        N)rX�resume_writing)r#rrrr��szSSLProtocol.resume_writingcCs�|jdkrdSy|jj|�\}}WnHtjk
rj}z*|jj�rTtjd||j|j	�|j
�dSd}~XnXx|D]}|jj|�qrWx(|D] }|r�|j
j|�q�|j�Pq�WdS)zXCalled when some SSL data is received.

        The argument is a bytes object.
        Nz%r: SSL error %s (reason %s))r}r.rr;rP�	get_debugr�warningr6rGrqrdr7rX�
data_receivedr])r#rBr0r1�erCrrrr��s"



zSSLProtocol.data_receivedc
CsTzB|jj�rtjd|�|jt�|js@|jj�}|r@tj	d�Wd|j
j�XdS)aCalled when the other end of the low-level stream
        is half-closed.

        If this returns a false value (including None), the transport
        will close itself.  If it returns a true value, closing the
        transport is up to the protocol.
        z%r received EOFz?returning true from eof_received() has no effect when using sslN)rPr�r�debugr��ConnectionResetErrorrrX�eof_receivedr�rdr^)r#Z	keep_openrrrr�s


zSSLProtocol.eof_receivedcCs4||jkr|j|S|jdk	r,|jj||�S|SdS)N)rvrdrW)r#rUrVrrrrT!s



zSSLProtocol._get_extra_infocCs.|jr
dS|jr|j�nd|_|jd�dS)NTr*)r�rrqro)r#rrrr])s
zSSLProtocol._start_shutdowncCs.|jj|df�|jt|�7_|j�dS)Nr)ryr:rzrE�_process_write_backlog)r#rBrrrro2szSSLProtocol._write_appdatacCsH|jj�r$tjd|�|jj�|_nd|_d|_|jjd�|j	�dS)Nz%r starts SSL handshakeTr*r)r*r)
rPr�rr��time�_handshake_start_timerryr:r�)r#rrrr�7s
zSSLProtocol._start_handshakecCsTd|_|jj}yF|dk	r|�|j�}t|jd�sR|jrR|jjtj	krRtj
||j�Wn~tk
r�}zb|jj
�r�t|tj�r�tjd|dd�ntjd|dd�|jj�t|t�r�|j|�dS�WYdd}~XnX|jj
��r|jj�|j}tjd||d�|jj||j�|j�|d	�|j�r4|jj|j �|j�d|_!|jj"|j#�dS)
NFrz5%r: SSL handshake failed on verifying the certificateT)�exc_infoz%r: SSL handshake failedz%r: SSL handshake took %.1f msg@�@)�peercert�cipher�compressionr&)$rr}r&Zgetpeercertr
rtrr
rZ	CERT_NONEZmatch_hostname�
BaseExceptionrPr�rir<rr�rdr^�	Exceptionr�r�r�r�rv�updater�r�r�rXr�r|r~r�r�)r#Z
handshake_excZsslobjr�rDZdtrrr�_on_handshake_completeCsD




z"SSLProtocol._on_handshake_completecCs>|jdks|jdkrdSy�x�tt|j��D]�}|jd\}}|rT|jj||�\}}n*|rl|jj|j�}d}n|jj|j	�}d}x|D]}|jj
|�q�W|t|�kr�||f|jd<|jjr�|jj�P|jd=|j
t|�8_
q*WWnRtk
�r8}z4|j�r|j|�n|j|d�t|t��s(�WYdd}~XnXdS)NrrzFatal error on SSL transport)rdr}�rangerEryrIr2r�r4�	_finalizer7Z_pausedrfrzr�r�_fatal_errorrir�)r#�irBrHr0rCrDrrrr�ws8

z"SSLProtocol._process_write_backlog�Fatal error on transportcCsXt|tj�r*|jj�rBtjd||dd�n|jj|||j|d��|jrT|jj	|�dS)Nz%r: %sT)r�)�messageZ	exceptionr�rY)
rirZ_FATAL_ERROR_IGNORErPr�rr�Zcall_exception_handlerrdZ_force_close)r#rDr�rrrr��s

zSSLProtocol._fatal_errorcCsd|_|jdk	r|jj�dS)N)r}rdr^)r#rrrr��s
zSSLProtocol._finalizec
Cs(z|jdk	r|jj�Wd|j�XdS)N)rdrrr�)r#rrrrq�s
zSSLProtocol._abort)FNT)N)N)r�)rJrKrLrMr%r�r�r�r�r�r�r�rTr]ror�r�r�r�r�rqrrrrrs�s&
"


	4,
rs)rwr`r�ImportError�rrrr�logrrrrr-r(r3�objectrZ_FlowControlMixinZ	TransportrOZProtocolrsrrrr�<module>s*
wn