summaryrefslogtreecommitdiff
path: root/src/mongo/crypto/symmetric_crypto_tom.cpp
blob: 2f659f817bab6ac86626da35bded81736b36f14b (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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/**
 *    Copyright (C) 2022-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the Server Side Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */


#include "mongo/platform/basic.h"

#include <cstdint>
#include <iterator>
#include <memory>
#include <set>
#include <sys/types.h>
#include <vector>

#include "mongo/base/data_cursor.h"
#include "mongo/base/data_range.h"
#include "mongo/base/error_codes.h"
#include "mongo/base/init.h"
#include "mongo/base/status.h"
#include "mongo/config.h"
#include "mongo/crypto/symmetric_crypto.h"
#include "mongo/crypto/symmetric_key.h"
#include "mongo/platform/random.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/net/ssl_manager.h"
#include "mongo/util/str.h"

#include <tomcrypt.h>

#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kStorage


#ifdef MONGO_CONFIG_SSL
#error This file should not be included if compiling with SSL support
#endif

namespace mongo {
namespace crypto {

namespace {

/**
 * Since tomcrypt only does block aligned crypto, we have to buffer bytes into blocks.
 *
 * This is implementation is simple but inefficient. It only needs to support the non-ssl build
 * which is not shipped to customers.
 *
 * Also, tomcrypt does not support padding in 1.8.2 so we implement PKCS#7 padding.
 */
class BufferedCryptoStream {
public:
    virtual ~BufferedCryptoStream() = default;

    virtual StatusWith<std::size_t> doBlockAlignedOperation(DataRange buf, size_t size) = 0;

    StatusWith<std::size_t> addData(ConstDataRange cdr, DataRange out, bool encrypt) {
        // Add all the data in
        std::copy(cdr.data(), cdr.data() + cdr.length(), std::back_inserter(_buffer));

        // Encrypt/decrypt all the blocks we can
        size_t blocks = _buffer.size() / aesBlockSize;
        size_t payloadSize = blocks * aesBlockSize;

        if (payloadSize > 0) {
            auto swOp = doBlockAlignedOperation(_buffer, payloadSize);
            if (!swOp.isOK()) {
                return swOp;
            }

            // For decryption, save the last block as it is supposed a block of pads
            if (!encrypt) {
                payloadSize -= aesBlockSize;
            }

            memcpy(out.data(), _buffer.data(), payloadSize);

            // Remove everything that we just encrypted/decrypted
            _buffer.erase(_buffer.begin(), _buffer.begin() + payloadSize);

            return payloadSize;
        } else {
            return 0;
        }
    }

    StatusWith<std::size_t> finalizeBufferForDecryption(DataRange out) {
        if (_buffer.size() != aesBlockSize) {
            return Status(ErrorCodes::BadValue, "invalid final block buffer");
        }

        uint8_t pad = _buffer[_buffer.size() - 1];
        if (pad == 0 || pad > aesBlockSize) {
            return Status(ErrorCodes::BadValue, "wrong pad length");
        }

        // Validate pad
        for (size_t i = 0; i < pad; i++) {
            if (_buffer[aesBlockSize - i - 1] != pad) {
                return Status(ErrorCodes::BadValue, "wrong pad byte");
            }
        }

        size_t final_size = aesBlockSize - pad;
        if (final_size == 0) {
            return 0;
        }

        memcpy(out.data(), _buffer.data(), final_size);

        return {final_size};
    }

    StatusWith<std::size_t> finalizeBufferForEncryption(DataRange out) {
        std::array<uint8_t, aesBlockSize> buffer;

        if (_buffer.size() == 0) {
            buffer.fill(aesBlockSize);
        } else {
            invariant(_buffer.size() < aesBlockSize);

            // Pad
            std::copy(_buffer.data(), _buffer.data() + _buffer.size(), buffer.begin());

            uint8_t padding_pkcs7 = aesBlockSize - _buffer.size();
            uint8_t start = _buffer.size();
            for (std::size_t i = 0; i < padding_pkcs7; i++) {
                buffer[start + i] = padding_pkcs7;
            }
        }

        auto swOp = doBlockAlignedOperation(buffer, aesBlockSize);
        if (!swOp.isOK()) {
            return swOp;
        }

        memcpy(out.data(), buffer.data(), aesBlockSize);

        return {buffer.size()};
    }

private:
    std::vector<uint8_t> _buffer;
};

class TomCryptSetup {
public:
    TomCryptSetup() {
        invariant(register_cipher(&aes_desc) != -1);
        _cipher = find_cipher("aes");
    }

    int getCipher() {
        return _cipher;
    }

private:
    int _cipher{0};
};

static TomCryptSetup& getTomCryptSetup() {
    static TomCryptSetup loader;
    return loader;
}

class SymmetricEncryptorTomCrypt : public SymmetricEncryptor, BufferedCryptoStream {
public:
    SymmetricEncryptorTomCrypt(const SymmetricKey& key, aesMode mode, ConstDataRange iv)
        : _mode(mode) {
        if (_mode == crypto::aesMode::cbc) {
            int ret = cbc_start(getTomCryptSetup().getCipher(),
                                iv.data<uint8_t>(),
                                key.getKey(),
                                key.getKeySize(),
                                0,
                                &_contextCBC);
            uassert(6373801, "cbc encrypt init failed", ret == CRYPT_OK);

        } else if (_mode == crypto::aesMode::ctr) {
            int ret = ctr_start(getTomCryptSetup().getCipher(),
                                iv.data<uint8_t>(),
                                key.getKey(),
                                key.getKeySize(),
                                0,
                                CTR_COUNTER_BIG_ENDIAN,
                                &_contextCTR);
            uassert(6373802, "ctr decrypt init failed", ret == CRYPT_OK);
        } else {
            MONGO_UNREACHABLE;
        }
    }

    StatusWith<std::size_t> doBlockAlignedOperation(DataRange buf, size_t size) final {
        if (_mode == crypto::aesMode::cbc) {
            int ret = cbc_encrypt(buf.data<uint8_t>(), buf.data<uint8_t>(), size, &_contextCBC);
            uassert(6373803, "cbc encrypt failed", ret == CRYPT_OK);
        } else {
            uasserted(6373804, "not supported");
        }

        return size;
    }

    StatusWith<std::size_t> update(ConstDataRange in, DataRange out) final {
        if (_mode == crypto::aesMode::cbc) {
            return addData(in, out, true);
        } else if (_mode == crypto::aesMode::ctr) {
            int ret =
                ctr_encrypt(in.data<uint8_t>(), out.data<uint8_t>(), in.length(), &_contextCTR);
            uassert(6373805, "ctr encrypt failed", ret == CRYPT_OK);
        }

        return in.length();
    }

    Status addAuthenticatedData(ConstDataRange in) final {
        fassert(6373806, _mode == crypto::aesMode::gcm);

        return Status::OK();
    }

    StatusWith<std::size_t> finalize(DataRange out) final {
        if (_mode == crypto::aesMode::cbc) {
            auto sw = finalizeBufferForEncryption(out);
            cbc_done(&_contextCBC);
            return sw;
        }

        return 0;
    }

    StatusWith<std::size_t> finalizeTag(DataRange out) final {

        return Status(ErrorCodes::UnsupportedFormat, "GCM support is not available");
    }

private:
    const aesMode _mode;
    symmetric_CBC _contextCBC;
    symmetric_CTR _contextCTR;
};

class SymmetricDecryptorTomCrypt : public SymmetricDecryptor, BufferedCryptoStream {
public:
    SymmetricDecryptorTomCrypt(const SymmetricKey& key, aesMode mode, ConstDataRange iv)
        : _mode(mode) {
        if (_mode == crypto::aesMode::cbc) {
            int ret = cbc_start(getTomCryptSetup().getCipher(),
                                iv.data<uint8_t>(),
                                key.getKey(),
                                key.getKeySize(),
                                0,
                                &_contextCBC);
            uassert(6373807, "cbc decrypt init failed", ret == CRYPT_OK);
        } else if (_mode == crypto::aesMode::ctr) {
            int ret = ctr_start(getTomCryptSetup().getCipher(),
                                iv.data<uint8_t>(),
                                key.getKey(),
                                key.getKeySize(),
                                0,
                                CTR_COUNTER_BIG_ENDIAN,
                                &_contextCTR);
            uassert(6373808, "ctr decrypt init failed", ret == CRYPT_OK);
        } else {
            MONGO_UNREACHABLE;
        }
    }

    StatusWith<std::size_t> doBlockAlignedOperation(DataRange buf, size_t size) final {
        if (_mode == crypto::aesMode::cbc) {
            int ret = cbc_decrypt(buf.data<uint8_t>(), buf.data<uint8_t>(), size, &_contextCBC);
            uassert(6373809, "cbc decrypt failed", ret == CRYPT_OK);
        } else {
            uasserted(6373810, "not supported");
        }

        return size;
    }

    StatusWith<std::size_t> update(ConstDataRange in, DataRange out) final {
        if (_mode == crypto::aesMode::cbc) {
            return addData(in, out, false);
        } else if (_mode == crypto::aesMode::ctr) {
            int ret =
                ctr_decrypt(in.data<uint8_t>(), out.data<uint8_t>(), in.length(), &_contextCTR);
            uassert(6373811, "ctr decrypt failed", ret == CRYPT_OK);
        }

        return in.length();
    }

    Status addAuthenticatedData(ConstDataRange authData) final {
        fassert(6373812, _mode == crypto::aesMode::gcm);

        return Status::OK();
    }

    StatusWith<std::size_t> finalize(DataRange out) final {
        if (_mode == crypto::aesMode::cbc) {
            auto sw = finalizeBufferForDecryption(out);
            cbc_done(&_contextCBC);
            return sw;
        }
        return 0;
    }

    Status updateTag(ConstDataRange tag) final {
        return {ErrorCodes::BadValue, "Unexpected tag for non-gcm cipher"};
    }

private:
    const aesMode _mode;
    symmetric_CBC _contextCBC;
    symmetric_CTR _contextCTR;
};

}  // namespace

std::set<std::string> getSupportedSymmetricAlgorithms() {
    return {aes256CBCName, aes256CTRName};
}

Status engineRandBytes(DataRange buffer) {
    SecureRandom().fill(buffer.data<std::uint8_t>(), buffer.length());
    return Status::OK();
}

StatusWith<std::unique_ptr<SymmetricEncryptor>> SymmetricEncryptor::create(const SymmetricKey& key,
                                                                           aesMode mode,
                                                                           ConstDataRange iv) try {
    std::unique_ptr<SymmetricEncryptor> encryptor =
        std::make_unique<SymmetricEncryptorTomCrypt>(key, mode, iv);
    return std::move(encryptor);
} catch (const DBException& e) {
    return e.toStatus();
}

StatusWith<std::unique_ptr<SymmetricDecryptor>> SymmetricDecryptor::create(const SymmetricKey& key,
                                                                           aesMode mode,
                                                                           ConstDataRange iv) try {
    std::unique_ptr<SymmetricDecryptor> decryptor =
        std::make_unique<SymmetricDecryptorTomCrypt>(key, mode, iv);
    return std::move(decryptor);
} catch (const DBException& e) {
    return e.toStatus();
}

}  // namespace crypto
}  // namespace mongo