aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/bindings/test_openssl.py
blob: b2264fb565352187a8534d16e40ab72fa0e84fc0 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import threading
import time

import pytest

from cryptography.hazmat.bindings.openssl.binding import Binding


class TestOpenSSL(object):
    def test_binding_loads(self):
        binding = Binding()
        assert binding
        assert binding.lib
        assert binding.ffi

    def test_is_available(self):
        assert Binding.is_available() is True

    def test_crypto_lock_init(self):
        b = Binding()
        b.init_static_locks()
        lock_cb = b.lib.CRYPTO_get_locking_callback()
        assert lock_cb != b.ffi.NULL

    def test_our_crypto_lock(self, capfd):
        b = Binding()
        b.init_static_locks()

        # only run this test if we are using our locking cb
        original_cb = b.lib.CRYPTO_get_locking_callback()
        if original_cb != b._lock_cb_handle:
            pytest.skip("Not using Python locking callback implementation")

        # check that the lock state changes appropriately
        lock = b._locks[b.lib.CRYPTO_LOCK_SSL]

        assert lock.acquire(False)

        lock.release()

        b.lib.CRYPTO_lock(
            b.lib.CRYPTO_LOCK | b.lib.CRYPTO_READ,
            b.lib.CRYPTO_LOCK_SSL,
            b.ffi.NULL,
            0
        )

        assert not lock.acquire(False)

        b.lib.CRYPTO_lock(
            b.lib.CRYPTO_UNLOCK | b.lib.CRYPTO_READ,
            b.lib.CRYPTO_LOCK_SSL,
            b.ffi.NULL,
            0
        )

        assert lock.acquire(False)
        lock.release()

        # force the error path to run.

        b.lib.CRYPTO_lock(
            0,
            b.lib.CRYPTO_LOCK_SSL,
            b.ffi.NULL,
            0
        )

        lock.acquire(False)
        lock.release()

        out, err = capfd.readouterr()
        assert "RuntimeError: Unknown lock mode" in err

    def test_crypto_lock_mutex(self):
        b = Binding()
        b.init_static_locks()

        # make sure whatever locking system we end up with actually acts
        # like a mutex.

        self._shared_value = 0

        def critical_loop():
            for i in range(10):
                b.lib.CRYPTO_lock(
                    b.lib.CRYPTO_LOCK | b.lib.CRYPTO_READ,
                    b.lib.CRYPTO_LOCK_SSL,
                    b.ffi.NULL,
                    0
                )

                assert self._shared_value == 0
                self._shared_value += 1
                time.sleep(0.01)
                assert self._shared_value == 1
                self._shared_value = 0

                b.lib.CRYPTO_lock(
                    b.lib.CRYPTO_UNLOCK | b.lib.CRYPTO_READ,
                    b.lib.CRYPTO_LOCK_SSL,
                    b.ffi.NULL,
                    0
                )

        threads = []
        for x in range(10):
            t = threading.Thread(target=critical_loop)
            t.daemon = True
            t.start()

            threads.append(t)

        while threads:
            for t in threads:
                t.join(0.1)
                if not t.is_alive():
                    threads.remove(t)