GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: crypto/crypto_hkdf.cc Lines: 57 72 79.2 %
Date: 2022-08-12 04:19:25 Branches: 35 66 53.0 %

Line Branch Exec Source
1
#include "crypto/crypto_hkdf.h"
2
#include "async_wrap-inl.h"
3
#include "base_object-inl.h"
4
#include "crypto/crypto_keys.h"
5
#include "env-inl.h"
6
#include "memory_tracker-inl.h"
7
#include "threadpoolwork-inl.h"
8
#include "v8.h"
9
10
namespace node {
11
12
using v8::FunctionCallbackInfo;
13
using v8::Just;
14
using v8::Maybe;
15
using v8::Nothing;
16
using v8::Uint32;
17
using v8::Value;
18
19
namespace crypto {
20
988
HKDFConfig::HKDFConfig(HKDFConfig&& other) noexcept
21
988
    : mode(other.mode),
22
988
      length(other.length),
23
988
      digest(other.digest),
24
988
      key(other.key),
25
988
      salt(std::move(other.salt)),
26
988
      info(std::move(other.info)) {}
27
28
HKDFConfig& HKDFConfig::operator=(HKDFConfig&& other) noexcept {
29
  if (&other == this) return *this;
30
  this->~HKDFConfig();
31
  return *new (this) HKDFConfig(std::move(other));
32
}
33
34
988
Maybe<bool> HKDFTraits::EncodeOutput(
35
    Environment* env,
36
    const HKDFConfig& params,
37
    ByteSource* out,
38
    v8::Local<v8::Value>* result) {
39
1976
  *result = out->ToArrayBuffer(env);
40
988
  return Just(!result->IsEmpty());
41
}
42
43
992
Maybe<bool> HKDFTraits::AdditionalConfig(
44
    CryptoJobMode mode,
45
    const FunctionCallbackInfo<Value>& args,
46
    unsigned int offset,
47
    HKDFConfig* params) {
48
992
  Environment* env = Environment::GetCurrent(args);
49
50
992
  params->mode = mode;
51
52

2976
  CHECK(args[offset]->IsString());  // Hash
53

1984
  CHECK(args[offset + 1]->IsObject());  // Key
54

1984
  CHECK(IsAnyByteSource(args[offset + 2]));  // Salt
55

1984
  CHECK(IsAnyByteSource(args[offset + 3]));  // Info
56

1984
  CHECK(args[offset + 4]->IsUint32());  // Length
57
58
2976
  Utf8Value hash(env->isolate(), args[offset]);
59
992
  params->digest = EVP_get_digestbyname(*hash);
60
992
  if (params->digest == nullptr) {
61
2
    THROW_ERR_CRYPTO_INVALID_DIGEST(env);
62
2
    return Nothing<bool>();
63
  }
64
65
  KeyObjectHandle* key;
66

1980
  ASSIGN_OR_RETURN_UNWRAP(&key, args[offset + 1], Nothing<bool>());
67
990
  params->key = key->Data();
68
69
1980
  ArrayBufferOrViewContents<char> salt(args[offset + 2]);
70
1980
  ArrayBufferOrViewContents<char> info(args[offset + 3]);
71
72
990
  if (UNLIKELY(!salt.CheckSizeInt32())) {
73
    THROW_ERR_OUT_OF_RANGE(env, "salt is too big");
74
    return Nothing<bool>();
75
  }
76
990
  if (UNLIKELY(!info.CheckSizeInt32())) {
77
    THROW_ERR_OUT_OF_RANGE(env, "info is too big");
78
    return Nothing<bool>();
79
  }
80
81
  params->salt = mode == kCryptoJobAsync
82
1980
      ? salt.ToCopy()
83
990
      : salt.ToByteSource();
84
85
  params->info = mode == kCryptoJobAsync
86
1980
      ? info.ToCopy()
87
990
      : info.ToByteSource();
88
89
2970
  params->length = args[offset + 4].As<Uint32>()->Value();
90
990
  size_t max_length = EVP_MD_size(params->digest) * kMaxDigestMultiplier;
91
990
  if (params->length > max_length) {
92
2
    THROW_ERR_CRYPTO_INVALID_KEYLEN(env);
93
2
    return Nothing<bool>();
94
  }
95
96
988
  return Just(true);
97
}
98
99
988
bool HKDFTraits::DeriveBits(
100
    Environment* env,
101
    const HKDFConfig& params,
102
    ByteSource* out) {
103
  EVPKeyCtxPointer ctx =
104
1976
      EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, nullptr));
105

2964
  if (!ctx || !EVP_PKEY_derive_init(ctx.get()) ||
106
988
      !EVP_PKEY_CTX_hkdf_mode(ctx.get(),
107
988
                              EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND) ||
108
1976
      !EVP_PKEY_CTX_set_hkdf_md(ctx.get(), params.digest) ||
109
988
      !EVP_PKEY_CTX_set1_hkdf_salt(
110
1976
          ctx.get(), params.salt.data<unsigned char>(), params.salt.size()) ||
111
988
      !EVP_PKEY_CTX_set1_hkdf_key(
112
          ctx.get(),
113
988
          reinterpret_cast<const unsigned char*>(params.key->GetSymmetricKey()),
114

2964
          params.key->GetSymmetricKeySize()) ||
115
988
      !EVP_PKEY_CTX_add1_hkdf_info(
116
988
          ctx.get(), params.info.data<unsigned char>(), params.info.size())) {
117
    return false;
118
  }
119
120
988
  size_t length = params.length;
121
1976
  ByteSource::Builder buf(length);
122
988
  if (EVP_PKEY_derive(ctx.get(), buf.data<unsigned char>(), &length) <= 0)
123
    return false;
124
125
988
  *out = std::move(buf).release();
126
988
  return true;
127
}
128
129
void HKDFConfig::MemoryInfo(MemoryTracker* tracker) const {
130
  tracker->TrackField("key", key);
131
  // If the job is sync, then the HKDFConfig does not own the data
132
  if (mode == kCryptoJobAsync) {
133
    tracker->TrackFieldWithSize("salt", salt.size());
134
    tracker->TrackFieldWithSize("info", info.size());
135
  }
136
}
137
138
}  // namespace crypto
139
}  // namespace node