GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: crypto/crypto_timing.cc Lines: 21 21 100.0 %
Date: 2022-08-30 04:20:47 Branches: 8 8 100.0 %

Line Branch Exec Source
1
#include "crypto/crypto_timing.h"
2
#include "crypto/crypto_util.h"
3
#include "env-inl.h"
4
#include "node_errors.h"
5
#include "v8.h"
6
#include "node.h"
7
8
#include <openssl/crypto.h>
9
10
namespace node {
11
12
using v8::FunctionCallbackInfo;
13
using v8::Local;
14
using v8::Object;
15
using v8::Value;
16
17
namespace crypto {
18
namespace Timing {
19
42
void TimingSafeEqual(const FunctionCallbackInfo<Value>& args) {
20
  // Moving the type checking into JS leads to test failures, most likely due
21
  // to V8 inlining certain parts of the wrapper. Therefore, keep them in C++.
22
  // Refs: https://github.com/nodejs/node/issues/34073.
23
42
  Environment* env = Environment::GetCurrent(args);
24
42
  if (!IsAnyByteSource(args[0])) {
25
1
    THROW_ERR_INVALID_ARG_TYPE(
26
      env, "The \"buf1\" argument must be an instance of "
27
      "ArrayBuffer, Buffer, TypedArray, or DataView.");
28
1
    return;
29
  }
30
41
  if (!IsAnyByteSource(args[1])) {
31
1
    THROW_ERR_INVALID_ARG_TYPE(
32
      env, "The \"buf2\" argument must be an instance of "
33
      "ArrayBuffer, Buffer, TypedArray, or DataView.");
34
1
    return;
35
  }
36
37
40
  ArrayBufferOrViewContents<char> buf1(args[0]);
38
40
  ArrayBufferOrViewContents<char> buf2(args[1]);
39
40
40
  if (buf1.size() != buf2.size()) {
41
1
    THROW_ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH(env);
42
1
    return;
43
  }
44
45
39
  return args.GetReturnValue().Set(
46
78
      CRYPTO_memcmp(buf1.data(), buf2.data(), buf1.size()) == 0);
47
}
48
49
779
void Initialize(Environment* env, Local<Object> target) {
50
779
  SetMethodNoSideEffect(
51
      env->context(), target, "timingSafeEqual", TimingSafeEqual);
52
779
}
53
5419
void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
54
5419
  registry->Register(TimingSafeEqual);
55
5419
}
56
}  // namespace Timing
57
58
}  // namespace crypto
59
}  // namespace node