File: tlsprf.hpp

package info (click to toggle)
openvpn3-client 25%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,276 kB
  • sloc: cpp: 190,085; python: 7,218; ansic: 1,866; sh: 1,361; java: 402; lisp: 81; makefile: 17
file content (317 lines) | stat: -rw-r--r-- 9,618 bytes parent folder | download
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
//    OpenVPN -- An application to securely tunnel IP networks
//               over a single port, with support for SSL/TLS-based
//               session authentication and key exchange,
//               packet encryption, packet authentication, and
//               packet compression.
//
//    Copyright (C) 2012- OpenVPN Inc.
//
//    SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//

// Implement the TLS-PRF function, used by ProtoContext.

#ifndef OPENVPN_SSL_TLSPRF_H
#define OPENVPN_SSL_TLSPRF_H

#include <cstring> // for std::strlen and others

#include <string>
#include <sstream>

#include <openvpn/common/size.hpp>
#include <openvpn/common/exception.hpp>
#include <openvpn/common/rc.hpp>
#include <openvpn/common/hexstr.hpp>
#include <openvpn/common/unreachable.hpp>
#include <openvpn/buffer/buffer.hpp>
#include <openvpn/buffer/bufcomplete.hpp>
#include <openvpn/crypto/static_key.hpp>
#include <openvpn/crypto/cryptoalgs.hpp>
#include <openvpn/ssl/psid.hpp>
#include <openvpn/random/randapi.hpp>

namespace openvpn {

template <typename CRYPTO_API>
class TLSPRF
{
  public:
    OPENVPN_SIMPLE_EXCEPTION(tlsprf_uninitialized);
    OPENVPN_SIMPLE_EXCEPTION(tlsprf_client_server_mismatch);
    OPENVPN_SIMPLE_EXCEPTION(tlsprf_tlsprf_failed);
    enum
    {
        SIZE_OF_RANDOM = 32
    };

    TLSPRF(const bool server)
        : initialized_(false), server_(server)
    {
    }

    void randomize(StrongRandomAPI &rng)
    {
        if (!server_)
            rng.rand_bytes(pre_master, sizeof(pre_master));
        rng.rand_bytes(random1, sizeof(random1));
        rng.rand_bytes(random2, sizeof(random2));
        initialized_ = true;
    }

    void read(Buffer &buf)
    {
        if (!server_)
            buf.read(pre_master, sizeof(pre_master));
        buf.read(random1, sizeof(random1));
        buf.read(random2, sizeof(random2));
        initialized_ = true;
    }

    bool read_complete(BufferComplete &bc)
    {
        size_t need = sizeof(random1) + sizeof(random2);
        if (!server_)
            need += sizeof(pre_master);
        if (!bc.advance(need))
            return false;
        return true;
    }

    void write(Buffer &buf)
    {
        verify_initialized();
        if (!server_)
            buf.write(pre_master, sizeof(pre_master));
        buf.write(random1, sizeof(random1));
        buf.write(random2, sizeof(random2));
    }

    void generate_key_expansion(OpenVPNStaticKey &dest,
                                const TLSPRF &peer,
                                const ProtoSessionID &psid_self,
                                const ProtoSessionID &psid_peer) const
    {
        if (server_ == peer.server_)
            throw tlsprf_client_server_mismatch();
        if (server_)
            gen_exp(dest, peer, psid_peer, *this, psid_self);
        else
            gen_exp(dest, *this, psid_self, peer, psid_peer);
    }

    void erase()
    {
        if (initialized_)
        {
            if (!server_)
                std::memset(pre_master, 0, sizeof(pre_master));
            std::memset(random1, 0, sizeof(random1));
            std::memset(random2, 0, sizeof(random2));
            initialized_ = false;
        }
    }

    std::string dump(const char *title)
    {
        std::ostringstream out;
        out << "*** TLSPRF " << title << " pre_master: " << render_hex(pre_master, sizeof(pre_master)) << std::endl;
        out << "*** TLSPRF " << title << " random1: " << render_hex(random1, sizeof(random1)) << std::endl;
        out << "*** TLSPRF " << title << " random2: " << render_hex(random2, sizeof(random2)) << std::endl;
        return out.str();
    }

    ~TLSPRF()
    {
        erase();
    }

    static void openvpn_PRF(const unsigned char *secret,
                            const size_t secret_len,
                            const char *label,
                            const unsigned char *client_seed,
                            const size_t client_seed_len,
                            const unsigned char *server_seed,
                            const size_t server_seed_len,
                            const ProtoSessionID *client_sid,
                            const ProtoSessionID *server_sid,
                            unsigned char *output,
                            const size_t output_len)
    {
        const size_t label_len = std::strlen(label);
        // GCC is bad at optimizing this, so give it a hint
        if (client_seed_len != SIZE_OF_RANDOM || server_seed_len != SIZE_OF_RANDOM)
            unreachable();
        BufferAllocated seed(label_len
                                 + client_seed_len
                                 + server_seed_len
                                 + ProtoSessionID::SIZE * 2,
                             BufAllocFlags::DESTRUCT_ZERO);
        seed.write((unsigned char *)label, label_len);
        seed.write(client_seed, client_seed_len);
        seed.write(server_seed, server_seed_len);
        if (client_sid)
            client_sid->write(seed);
        if (server_sid)
            server_sid->write(seed);

        // compute PRF
        if (!CRYPTO_API::TLS1PRF::PRF(seed.data(),
                                      seed.size(),
                                      secret,
                                      secret_len,
                                      output,
                                      output_len))
        {
            throw tlsprf_tlsprf_failed();
        }
    }

  private:
    static void gen_exp(OpenVPNStaticKey &dest,
                        const TLSPRF &client,
                        const ProtoSessionID &psid_client,
                        const TLSPRF &server,
                        const ProtoSessionID &psid_server)
    {
        static const char master_secret_id[] = "OpenVPN master secret";
        static const char key_expansion_id[] = "OpenVPN key expansion";

        unsigned char master[48];

        client.verify_initialized();
        server.verify_initialized();

        // compute master secret
        openvpn_PRF(client.pre_master,
                    sizeof(client.pre_master),
                    master_secret_id,
                    client.random1,
                    sizeof(client.random1),
                    server.random1,
                    sizeof(server.random1),
                    nullptr,
                    nullptr,
                    master,
                    sizeof(master));

        // compute key expansion */
        openvpn_PRF(master,
                    sizeof(master),
                    key_expansion_id,
                    client.random2,
                    sizeof(client.random2),
                    server.random2,
                    sizeof(server.random2),
                    &psid_client,
                    &psid_server,
                    dest.raw_alloc(),
                    OpenVPNStaticKey::KEY_SIZE);

        std::memset(master, 0, sizeof(master));
    }

    void verify_initialized() const
    {
        if (!initialized_)
            throw tlsprf_uninitialized();
    }

    bool initialized_;
    bool server_;
    unsigned char pre_master[48];          // client generated
    unsigned char random1[SIZE_OF_RANDOM]; // generated by both client and server
    unsigned char random2[SIZE_OF_RANDOM]; // generated by both client and server
};

// TLSPRF wrapper API using dynamic polymorphism

class TLSPRFInstance : public RC<thread_unsafe_refcount>
{
  public:
    typedef RCPtr<TLSPRFInstance> Ptr;

    virtual void self_randomize(StrongRandomAPI &rng) = 0;
    virtual void self_write(Buffer &buf) = 0;
    virtual void peer_read(Buffer &buf) = 0;
    virtual bool peer_read_complete(BufferComplete &bc) = 0;
    virtual void erase() = 0;

    // clang-format off
    virtual void generate_key_expansion(OpenVPNStaticKey &dest,
                                        const ProtoSessionID &psid_self,
                                        const ProtoSessionID &psid_peer) const = 0;
    // clang-format on
};

class TLSPRFFactory : public RC<thread_unsafe_refcount>
{
  public:
    typedef RCPtr<TLSPRFFactory> Ptr;

    virtual TLSPRFInstance::Ptr new_obj(const bool self_is_server) = 0;
};

// TLSPRF wrapper implementation using dynamic polymorphism

template <typename CRYPTO_API>
class CryptoTLSPRFInstance : public TLSPRFInstance
{
  public:
    CryptoTLSPRFInstance(const bool self_is_server)
        : self(self_is_server),
          peer(!self_is_server)
    {
    }

    void self_randomize(StrongRandomAPI &rng) override
    {
        self.randomize(rng);
    }

    void self_write(Buffer &buf) override
    {
        self.write(buf);
    }

    void peer_read(Buffer &buf) override
    {
        peer.read(buf);
    }

    bool peer_read_complete(BufferComplete &bc) override
    {
        return peer.read_complete(bc);
    }

    void erase() override
    {
        self.erase();
        peer.erase();
    }

    void generate_key_expansion(OpenVPNStaticKey &dest,
                                const ProtoSessionID &psid_self,
                                const ProtoSessionID &psid_peer) const override
    {
        self.generate_key_expansion(dest, peer, psid_self, psid_peer);
    }

  private:
    TLSPRF<CRYPTO_API> self;
    TLSPRF<CRYPTO_API> peer;
};

template <typename CRYPTO_API>
class CryptoTLSPRFFactory : public TLSPRFFactory
{
  public:
    TLSPRFInstance::Ptr new_obj(const bool self_is_server) override
    {
        return new CryptoTLSPRFInstance<CRYPTO_API>(self_is_server);
    }
};

} // namespace openvpn

#endif // OPENVPN_SSL_TLSPRF_H