• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2012 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CRYPTO_OPENSSL_UTIL_H_
6 #define CRYPTO_OPENSSL_UTIL_H_
7 
8 #include <stddef.h>
9 #include <string.h>
10 
11 #include "base/location.h"
12 #include "base/memory/raw_ptr.h"
13 #include "crypto/crypto_export.h"
14 
15 namespace crypto {
16 
17 // Provides a buffer of at least MIN_SIZE bytes, for use when calling OpenSSL's
18 // SHA256, HMAC, etc functions, adapting the buffer sizing rules to meet those
19 // of our base wrapper APIs.
20 // This allows the library to write directly to the caller's buffer if it is of
21 // sufficient size, but if not it will write to temporary |min_sized_buffer_|
22 // of required size and then its content is automatically copied out on
23 // destruction, with truncation as appropriate.
24 template<int MIN_SIZE>
25 class ScopedOpenSSLSafeSizeBuffer {
26  public:
ScopedOpenSSLSafeSizeBuffer(unsigned char * output,size_t output_len)27   ScopedOpenSSLSafeSizeBuffer(unsigned char* output, size_t output_len)
28       : output_(output),
29         output_len_(output_len) {
30   }
31 
32   ScopedOpenSSLSafeSizeBuffer(const ScopedOpenSSLSafeSizeBuffer&) = delete;
33   ScopedOpenSSLSafeSizeBuffer& operator=(const ScopedOpenSSLSafeSizeBuffer&) =
34       delete;
35 
~ScopedOpenSSLSafeSizeBuffer()36   ~ScopedOpenSSLSafeSizeBuffer() {
37     if (output_len_ < MIN_SIZE) {
38       // Copy the temporary buffer out, truncating as needed.
39       memcpy(output_, min_sized_buffer_, output_len_);
40     }
41     // else... any writing already happened directly into |output_|.
42   }
43 
safe_buffer()44   unsigned char* safe_buffer() {
45     return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_.get();
46   }
47 
48  private:
49   // Pointer to the caller's data area and its associated size, where data
50   // written via safe_buffer() will [eventually] end up.
51   raw_ptr<unsigned char> output_;
52   size_t output_len_;
53 
54   // Temporary buffer writen into in the case where the caller's
55   // buffer is not of sufficient size.
56   unsigned char min_sized_buffer_[MIN_SIZE];
57 };
58 
59 // Drains the OpenSSL ERR_get_error stack. On a debug build the error codes
60 // are send to VLOG(1), on a release build they are disregarded. In most
61 // cases you should pass FROM_HERE as the |location|.
62 CRYPTO_EXPORT void ClearOpenSSLERRStack(const base::Location& location);
63 
64 // Place an instance of this class on the call stack to automatically clear
65 // the OpenSSL error stack on function exit.
66 class OpenSSLErrStackTracer {
67  public:
68   OpenSSLErrStackTracer() = delete;
69 
70   // Pass FROM_HERE as |location|, to help track the source of OpenSSL error
71   // messages. Note any diagnostic emitted will be tagged with the location of
72   // the constructor call as it's not possible to trace a destructor's callsite.
OpenSSLErrStackTracer(const base::Location & location)73   explicit OpenSSLErrStackTracer(const base::Location& location)
74       : location_(location) {}
75 
76   OpenSSLErrStackTracer(const OpenSSLErrStackTracer&) = delete;
77   OpenSSLErrStackTracer& operator=(const OpenSSLErrStackTracer&) = delete;
78 
~OpenSSLErrStackTracer()79   ~OpenSSLErrStackTracer() {
80     ClearOpenSSLERRStack(location_);
81   }
82 
83  private:
84   const base::Location location_;
85 };
86 
87 }  // namespace crypto
88 
89 #endif  // CRYPTO_OPENSSL_UTIL_H_
90