U
    <{f;                     @   s  U d Z ddlZddlZddlZddlZddlmZmZmZm	Z	 ddl
ZddlZddlZddlZG dd dejjZG dd dZG dd	 d	eZG d
d deZG dd dejjZG dd deZG dd deZejeejeejeiZeeef ed< eedddZe	eef dedddZe	eef e e!e!edddZ"eeddddZ#ejZej$Z$ej%Z%ej&Z&ejZej'Z'ej(Z(ej)Z)ej*Z*ej+Z+ejZdS ) zEDNS Options    N)AnyDictOptionalUnionc                   @   sD   e Zd ZdZdZdZdZdZdZdZ	dZ
d	Zd
ZdZedd ZdS )
OptionType               	   
               c                 C   s   dS Ni   clsr   r   G/var/www/html/Darija-Ai-API/env/lib/python3.8/site-packages/dns/edns.py_maximum8   s    zOptionType._maximumN)__name__
__module____qualname__NSIDDAUDHUN3UECSEXPIRECOOKIE	KEEPALIVEPADDINGCHAINEDEclassmethodr   r   r   r   r   r       s   r   c                   @   s   e Zd ZdZeeef dddZd ee	 ee
 dddZed	d
dZeedd dddZdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd ZdS )!Optionz%Base class for all EDNS option types.otypec                 C   s   t || _dS )z_Initialize an option.

        *otype*, a ``dns.edns.OptionType``, is the option type.
        N)r   maker)   )selfr)   r   r   r   __init__@   s    zOption.__init__Nfilereturnc                 C   s   t dS )zUConvert an option to wire format.

        Returns a ``bytes`` or ``None``.

        NNotImplementedErrorr+   r.   r   r   r   to_wireG   s    zOption.to_wirer/   c                 C   s   t d S Nr0   r+   r   r   r   to_textO   s    zOption.to_textdns.wire.Parserr)   parserr/   c                 C   s   t dS )a  Build an EDNS option object from wire format.

        *otype*, a ``dns.edns.OptionType``, is the option type.

        *parser*, a ``dns.wire.Parser``, the parser, which should be
        restructed to the option length.

        Returns a ``dns.edns.Option``.
        Nr0   r   r)   r:   r   r   r   from_wire_parserR   s    zOption.from_wire_parserc                 C   s,   |   }|  }||krdS ||kr(dS dS )zCompare an EDNS option with another option of the same type.

        Returns < 0 if < *other*, 0 if == *other*, and > 0 if > *other*.
        r      )r3   )r+   otherwireZowirer   r   r   _cmp_   s    zOption._cmpc                 C   s,   t |tsdS | j|jkrdS | |dkS )NFr   
isinstancer'   r)   rA   r+   r?   r   r   r   __eq__l   s
    
zOption.__eq__c                 C   s,   t |tsdS | j|jkrdS | |dkS )NTr   rB   rD   r   r   r   __ne__s   s
    
zOption.__ne__c                 C   s(   t |tr| j|jkrtS | |dk S Nr   rC   r'   r)   NotImplementedrA   rD   r   r   r   __lt__z   s    zOption.__lt__c                 C   s(   t |tr| j|jkrtS | |dkS rG   rH   rD   r   r   r   __le__   s    zOption.__le__c                 C   s(   t |tr| j|jkrtS | |dkS rG   rH   rD   r   r   r   __ge__   s    zOption.__ge__c                 C   s(   t |tr| j|jkrtS | |dkS rG   rH   rD   r   r   r   __gt__   s    zOption.__gt__c                 C   s   |   S r5   )r7   r6   r   r   r   __str__   s    zOption.__str__)N)r   r   r   __doc__r   r   strr,   r   r   bytesr3   r7   r&   r<   rA   rE   rF   rJ   rK   rL   rM   rN   r   r   r   r   r'   =   s   r'   c                       s~   e Zd ZdZeeef eeef d fddZde	e
 e	e dddZed	d
dZeeeef dedddZ  ZS )GenericOptionzwGeneric Option Class

    This class is used for EDNS option types for which we have no better
    implementation.
    )r)   datac                    s"   t  | tjj|d| _d S )NT)superr,   dnsrdataRdataZ	_as_bytesrS   )r+   r)   rS   	__class__r   r   r,      s    zGenericOption.__init__Nr-   c                 C   s   |r| | j d S | jS d S r5   )writerS   r2   r   r   r   r3      s    zGenericOption.to_wirer4   c                 C   s
   d| j  S )Nz
Generic %dr(   r6   r   r   r   r7      s    zGenericOption.to_textr8   r9   c                 C   s   | ||  S r5   get_remainingr;   r   r   r   r<      s    zGenericOption.from_wire_parser)N)r   r   r   rO   r   r   rP   rQ   r,   r   r   r3   r7   r&   r'   r<   __classcell__r   r   rX   r   rR      s   $
 rR   c                       s   e Zd ZdZdeee ed fddZeddd	Ze	ee
d
ddZdee ee dddZeeeef de
dddZ  ZS )	ECSOptionz!EDNS Client Subnet (ECS, RFC7871)Nr   )addresssrclenscopelenc           	         s^  t  tj tj|}|tjkrjd| _	|dkr6d}tj
j|}tj
j|dd}tj
j|dd}nX|tjkrd| _	|dkrd}tj
j|}tj
j|dd}tj
j|dd}ntd	|dk	st|| _|| _|| _tj||}tt|d
 }|d| | _|d }|dkrZtdt| jdd dd| > @ }| jdd | | _dS )a  *address*, a ``str``, is the client address information.

        *srclen*, an ``int``, the source prefix length, which is the
        leftmost number of bits of the address to be used for the
        lookup.  The default is 24 for IPv4 and 56 for IPv6.

        *scopelen*, an ``int``, the scope prefix length.  This value
        must be 0 in queries, and should be set in responses.
           N8   r      r=          zBad address family       @r   Br>      )rT   r,   r   r   rU   ZinetZaf_for_addresssocketAF_INET6familyrV   rW   Z_as_ipv6_address_as_intAF_INETZ_as_ipv4_address
ValueErrorAssertionErrorr_   r`   ra   	inet_ptonintmathceiladdrdatastructpackord)	r+   r_   r`   ra   afru   nbytesnbitslastrX   r   r   r,      s8    


&zECSOption.__init__r4   c                 C   s   d | j| j| jS )NzECS {}/{} scope/{})formatr_   r`   ra   r6   r   r   r   r7      s    zECSOption.to_text)textr/   c           
      C   s(  d}|   }d}t|dkr&|d }n>t|dkrV|d |krLtd| |d }ntd| |d}|dkr| d\}}d}n(|dkr| d\}}}ntd| zt|}W n& tk
r   td	d
| Y nX zt|}	W n( tk
r   tdd| Y nX t||	|S )a  Convert a string into a `dns.edns.ECSOption`

        *text*, a `str`, the text form of the option.

        Returns a `dns.edns.ECSOption`.

        Examples:

        >>> import dns.edns
        >>>
        >>> # basic example
        >>> dns.edns.ECSOption.from_text('1.2.3.4/24')
        >>>
        >>> # also understands scope
        >>> dns.edns.ECSOption.from_text('1.2.3.4/24/32')
        >>>
        >>> # IPv6
        >>> dns.edns.ECSOption.from_text('2001:4b98::1/64/64')
        >>>
        >>> # it understands results from `dns.edns.ECSOption.to_text()`
        >>> dns.edns.ECSOption.from_text('ECS 1.2.3.4/24/32')
        r   Nr=   r   rb   zcould not parse ECS from "{}"/0zinvalid scope z"{}": scope must be an integerzinvalid srclen z"{}": srclen must be an integer)splitlenro   r}   countrr   r^   )
r~   Zoptional_prefixtokensZecs_textZ	n_slashesr_   ZtsrclenZtscopescoper`   r   r   r   	from_text   s<    




zECSOption.from_textr-   c                 C   s6   t d| j| j| j| j }|r.|| d S |S d S )N!HBB)rv   rw   rl   r`   ra   ru   rZ   r+   r.   valuer   r   r   r3     s    
zECSOption.to_wirer8   r9   c           
      C   s   | d\}}}tt|d }||}|dkrRd| }tj|d|  }	n.|dkrxd| }tj|d|  }	nt	d| |	||S )	Nr   rg   r=          rb      zunsupported family)
Z
get_structrr   rs   rt   	get_bytesrU   Zipv4	inet_ntoaZipv6ro   )
r   r)   r:   rl   srcr   Zaddrlenprefixpadaddrr   r   r   r<   &  s    
zECSOption.from_wire_parser)Nr   )N)r   r   r   rO   rP   r   rr   r,   r7   staticmethodr'   r   r   rQ   r3   r&   r   r   r<   r]   r   r   rX   r   r^      s   /8

 r^   c                   @   s|   e Zd ZdZdZdZdZdZdZdZ	dZ
d	Zd
ZdZdZdZdZdZdZdZdZdZdZdZdZdZdZdZedd ZdS )EDECoder   r=   rb   r   r   r   r	   r
   r   r   r   r   r   r      r   r                        re   c                 C   s   dS r   r   r   r   r   r   r   T  s    zEDECode._maximumN)r   r   r   OTHERZUNSUPPORTED_DNSKEY_ALGORITHMZUNSUPPORTED_DS_DIGEST_TYPEZSTALE_ANSWERZFORGED_ANSWERZDNSSEC_INDETERMINATEZDNSSEC_BOGUSZSIGNATURE_EXPIREDZSIGNATURE_NOT_YET_VALIDZDNSKEY_MISSINGZRRSIGS_MISSINGZNO_ZONE_KEY_BIT_SETZNSEC_MISSINGZCACHED_ERRORZ	NOT_READYZBLOCKEDZCENSOREDZFILTEREDZ
PROHIBITEDZSTALE_NXDOMAIN_ANSWERZNOT_AUTHORITATIVEZNOT_SUPPORTEDZNO_REACHABLE_AUTHORITYZNETWORK_ERRORZINVALID_DATAr&   r   r   r   r   r   r   9  s6   r   c                       s   e Zd ZdZddddddhZdeeef ee d	 fd
dZ	edddZ
dee ee dddZeeeef dedddZ  ZS )	EDEOptionz!Extended DNS Error (EDE, RFC8914)ZDNSKEYZDSZDNSSECZRRSIGsZNSECZNXDOMAINN)coder~   c                    s>   t  tj t|| _|dk	r4t|ts4t	d|| _
dS )z*code*, a ``dns.edns.EDECode`` or ``str``, the info code of the
        extended error.

        *text*, a ``str`` or ``None``, specifying additional information about
        the error.
        Nztext must be string or None)rT   r,   r   r%   r   r*   r   rC   rP   ro   r~   )r+   r   r~   rX   r   r   r,   ^  s
    zEDEOption.__init__r4   c                    sn   d j  } j tkrPt j }d fdd|dD }|d| d7 } jd k	rj|d j 7 }|S )	NzEDE  c                 3   s$   | ]}| j kr|n| V  qd S r5   )_preserve_casetitle).0wordr6   r   r   	<genexpr>q  s   z$EDEOption.to_text.<locals>.<genexpr>_z ()z: )r   r   r7   joinr   r~   )r+   outputdescr   r6   r   r7   m  s    

zEDEOption.to_textr-   c                 C   sB   t d| j}| jd k	r(|| jd7 }|r:|| d S |S d S )Nz!Hutf8)rv   rw   r   r~   encoderZ   r   r   r   r   r3   z  s    

zEDEOption.to_wirer8   r9   c                 C   sL   t | }| }|r>|d dkr2|d d }|d}nd }| ||S )Nr>   r   r   )r   r*   Z
get_uint16r\   decode)r   r)   r:   r   r~   Zbtextr   r   r   r<     s    zEDEOption.from_wire_parser)N)N)r   r   r   rO   r   r   r   rP   r   r,   r7   r   rQ   r3   r&   r   r'   r<   r]   r   r   rX   r   r   Y  s   "
 r   c                       sh   e Zd Zed fddZdeee dddZedd	d
Z	e
eeef ejjedddZ  ZS )
NSIDOption)nsidc                    s   t  tj || _d S r5   )rT   r,   r   r   r   )r+   r   rX   r   r   r,     s    zNSIDOption.__init__Nr-   c                 C   s   |r| | j d S | jS d S r5   )rZ   r   r2   r   r   r   r3     s    zNSIDOption.to_wirer4   c                 C   s:   t dd | jD r | j }nt| j }d| S )Nc                 s   s   | ]}|d ko|dkV  qdS )rf   ~   Nr   )r   cr   r   r   r     s     z%NSIDOption.to_text.<locals>.<genexpr>zNSID )allr   r   binasciihexlify)r+   r   r   r   r   r7     s    zNSIDOption.to_textr9   c                 C   s   | |  S r5   r[   r;   r   r   r   r<     s    zNSIDOption.from_wire_parser)N)r   r   r   rQ   r,   r   r   r3   rP   r7   r&   r   r   rU   r@   Parserr'   r<   r]   r   r   rX   r   r     s   
 r   _type_to_class)r)   r/   c                 C   s   t | }|dkrt}|S )zReturn the class for the specified option type.

    The GenericOption class is used if a more specific class is not
    known.
    N)r   getrR   )r)   r   r   r   r   get_option_class  s    
r   r8   r9   c                 C   s   t | } t| }|| |S )a  Build an EDNS option object from wire format.

    *otype*, an ``int``, is the option type.

    *parser*, a ``dns.wire.Parser``, the parser, which should be
    restricted to the option length.

    Returns an instance of a subclass of ``dns.edns.Option``.
    )r   r*   r   r<   )r)   r:   r   r   r   r   option_from_wire_parser  s    
r   )r)   r@   currentolenr/   c              
   C   s:   t j||}|| t| |W  5 Q R  S Q R X dS )ar  Build an EDNS option object from wire format.

    *otype*, an ``int``, is the option type.

    *wire*, a ``bytes``, is the wire-format message.

    *current*, an ``int``, is the offset in *wire* of the beginning
    of the rdata.

    *olen*, an ``int``, is the length of the wire-format option data

    Returns an instance of a subclass of ``dns.edns.Option``.
    N)rU   r@   r   Zrestrict_tor   )r)   r@   r   r   r:   r   r   r   option_from_wire  s    r   )implementationr)   r/   c                 C   s   | t |< dS )zRegister the implementation of an option type.

    *implementation*, a ``class``, is a subclass of ``dns.edns.Option``.

    *otype*, an ``int``, is the option type.
    N)r   )r   r)   r   r   r   register_type  s    r   ),rO   r   rs   rj   rv   typingr   r   r   r   Zdns.enumrU   Zdns.inetZ	dns.rdataZdns.wireenumIntEnumr   r'   rR   r^   r   r   r   r   r%   r   r   __annotations__r   rP   r   rQ   rr   r   r   r   r   r   r    r!   r"   r#   r$   r   r   r   r   <module>   s^   U  =   
 
   