summaryrefslogtreecommitdiff
path: root/src/service_identity/exceptions.py
blob: 852abc11c530b0b96ae4f0d0c139debb62a3f7d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
All exceptions and warnings thrown by ``service_identity``.

Separated into an own package for nicer tracebacks, you should still import
them from __init__.py.
"""

from __future__ import absolute_import, division, print_function

import attr


class SubjectAltNameWarning(DeprecationWarning):
    """
    Server Certificate does not contain a ``SubjectAltName``.

    Hostname matching is performed on the ``CommonName`` which is deprecated.
    """


@attr.s
class VerificationError(Exception):
    """
    Service identity verification failed.
    """

    errors = attr.ib()

    def __str__(self):
        return self.__repr__()


@attr.s
class DNSMismatch(object):
    """
    No matching DNSPattern could be found.
    """

    mismatched_id = attr.ib()


@attr.s
class SRVMismatch(object):
    """
    No matching SRVPattern could be found.
    """

    mismatched_id = attr.ib()


@attr.s
class URIMismatch(object):
    """
    No matching URIPattern could be found.
    """

    mismatched_id = attr.ib()


@attr.s
class IPAddressMismatch(object):
    """
    No matching IPAddressPattern could be found.
    """

    mismatched_id = attr.ib()


class CertificateError(Exception):
    """
    Certificate contains invalid or unexpected data.
    """