summaryrefslogtreecommitdiff
path: root/nss/gtests/ssl_gtest/tls_protect.cc
blob: efcd89e1456a464b72bbc2a77a678745a7a7b5c1 (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "tls_protect.h"
#include "tls_filter.h"

namespace nss_test {

AeadCipher::~AeadCipher() {
  if (key_) {
    PK11_FreeSymKey(key_);
  }
}

bool AeadCipher::Init(PK11SymKey *key, const uint8_t *iv) {
  key_ = PK11_ReferenceSymKey(key);
  if (!key_) return false;

  memcpy(iv_, iv, sizeof(iv_));
  return true;
}

void AeadCipher::FormatNonce(uint64_t seq, uint8_t *nonce) {
  memcpy(nonce, iv_, 12);

  for (size_t i = 0; i < 8; ++i) {
    nonce[12 - (i + 1)] ^= seq & 0xff;
    seq >>= 8;
  }

  DataBuffer d(nonce, 12);
  std::cerr << "Nonce " << d << std::endl;
}

bool AeadCipher::AeadInner(bool decrypt, void *params, size_t param_length,
                           const uint8_t *in, size_t inlen, uint8_t *out,
                           size_t *outlen, size_t maxlen) {
  SECStatus rv;
  unsigned int uoutlen = 0;
  SECItem param = {
      siBuffer, static_cast<unsigned char *>(params),
      static_cast<unsigned int>(param_length),
  };

  if (decrypt) {
    rv = PK11_Decrypt(key_, mech_, &param, out, &uoutlen, maxlen, in, inlen);
  } else {
    rv = PK11_Encrypt(key_, mech_, &param, out, &uoutlen, maxlen, in, inlen);
  }
  *outlen = (int)uoutlen;

  return rv == SECSuccess;
}

bool AeadCipherAesGcm::Aead(bool decrypt, uint64_t seq, const uint8_t *in,
                            size_t inlen, uint8_t *out, size_t *outlen,
                            size_t maxlen) {
  CK_GCM_PARAMS aeadParams;
  unsigned char nonce[12];

  memset(&aeadParams, 0, sizeof(aeadParams));
  aeadParams.pIv = nonce;
  aeadParams.ulIvLen = sizeof(nonce);
  aeadParams.pAAD = NULL;
  aeadParams.ulAADLen = 0;
  aeadParams.ulTagBits = 128;

  FormatNonce(seq, nonce);
  return AeadInner(decrypt, (unsigned char *)&aeadParams, sizeof(aeadParams),
                   in, inlen, out, outlen, maxlen);
}

bool AeadCipherChacha20Poly1305::Aead(bool decrypt, uint64_t seq,
                                      const uint8_t *in, size_t inlen,
                                      uint8_t *out, size_t *outlen,
                                      size_t maxlen) {
  CK_NSS_AEAD_PARAMS aeadParams;
  unsigned char nonce[12];

  memset(&aeadParams, 0, sizeof(aeadParams));
  aeadParams.pNonce = nonce;
  aeadParams.ulNonceLen = sizeof(nonce);
  aeadParams.pAAD = NULL;
  aeadParams.ulAADLen = 0;
  aeadParams.ulTagLen = 16;

  FormatNonce(seq, nonce);
  return AeadInner(decrypt, (unsigned char *)&aeadParams, sizeof(aeadParams),
                   in, inlen, out, outlen, maxlen);
}

bool TlsCipherSpec::Init(SSLCipherAlgorithm cipher, PK11SymKey *key,
                         const uint8_t *iv) {
  switch (cipher) {
    case ssl_calg_aes_gcm:
      aead_.reset(new AeadCipherAesGcm());
      break;
    case ssl_calg_chacha20:
      aead_.reset(new AeadCipherChacha20Poly1305());
      break;
    default:
      return false;
  }

  return aead_->Init(key, iv);
}

bool TlsCipherSpec::Unprotect(const TlsRecordHeader &header,
                              const DataBuffer &ciphertext,
                              DataBuffer *plaintext) {
  // Make space.
  plaintext->Allocate(ciphertext.len());

  size_t len;
  bool ret =
      aead_->Aead(true, header.sequence_number(), ciphertext.data(),
                  ciphertext.len(), plaintext->data(), &len, plaintext->len());
  if (!ret) return false;

  plaintext->Truncate(len);

  return true;
}

bool TlsCipherSpec::Protect(const TlsRecordHeader &header,
                            const DataBuffer &plaintext,
                            DataBuffer *ciphertext) {
  // Make a padded buffer.

  ciphertext->Allocate(plaintext.len() +
                       32);  // Room for any plausible auth tag
  size_t len;
  bool ret =
      aead_->Aead(false, header.sequence_number(), plaintext.data(),
                  plaintext.len(), ciphertext->data(), &len, ciphertext->len());
  if (!ret) return false;
  ciphertext->Truncate(len);

  return true;
}

}  // namespace nss_test