blob: 99cbac8c3d86871cefa66950b6d82d77db25ed8a [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11// Handling of certificates and keypairs for SSLStreamAdapter's peer mode.
12
13#ifndef WEBRTC_BASE_SSLIDENTITY_H_
14#define WEBRTC_BASE_SSLIDENTITY_H_
15
16#include <algorithm>
17#include <string>
18#include <vector>
19
20#include "webrtc/base/buffer.h"
torbjorng0df3eb02015-10-08 02:06:17 -070021#include "webrtc/base/checks.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000022#include "webrtc/base/messagedigest.h"
23
24namespace rtc {
25
26// Forward declaration due to circular dependency with SSLCertificate.
27class SSLCertChain;
28
29// Abstract interface overridden by SSL library specific
30// implementations.
31
32// A somewhat opaque type used to encapsulate a certificate.
33// Wraps the SSL library's notion of a certificate, with reference counting.
34// The SSLCertificate object is pretty much immutable once created.
35// (The OpenSSL implementation only does reference counting and
36// possibly caching of intermediate results.)
37class SSLCertificate {
38 public:
39 // Parses and build a certificate from a PEM encoded string.
40 // Returns NULL on failure.
41 // The length of the string representation of the certificate is
42 // stored in *pem_length if it is non-NULL, and only if
43 // parsing was successful.
44 // Caller is responsible for freeing the returned object.
45 static SSLCertificate* FromPEMString(const std::string& pem_string);
46 virtual ~SSLCertificate() {}
47
48 // Returns a new SSLCertificate object instance wrapping the same
49 // underlying certificate, including its chain if present.
50 // Caller is responsible for freeing the returned object.
51 virtual SSLCertificate* GetReference() const = 0;
52
53 // Provides the cert chain, or returns false. The caller owns the chain.
54 // The chain includes a copy of each certificate, excluding the leaf.
55 virtual bool GetChain(SSLCertChain** chain) const = 0;
56
57 // Returns a PEM encoded string representation of the certificate.
58 virtual std::string ToPEMString() const = 0;
59
60 // Provides a DER encoded binary representation of the certificate.
61 virtual void ToDER(Buffer* der_buffer) const = 0;
62
63 // Gets the name of the digest algorithm that was used to compute this
64 // certificate's signature.
65 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0;
66
67 // Compute the digest of the certificate given algorithm
68 virtual bool ComputeDigest(const std::string& algorithm,
69 unsigned char* digest,
70 size_t size,
71 size_t* length) const = 0;
72};
73
74// SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves
75// primarily to ensure proper memory management (especially deletion) of the
76// SSLCertificate pointers.
77class SSLCertChain {
78 public:
79 // These constructors copy the provided SSLCertificate(s), so the caller
80 // retains ownership.
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +000081 explicit SSLCertChain(const std::vector<SSLCertificate*>& certs);
82 explicit SSLCertChain(const SSLCertificate* cert);
83 ~SSLCertChain();
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000084
85 // Vector access methods.
86 size_t GetSize() const { return certs_.size(); }
87
88 // Returns a temporary reference, only valid until the chain is destroyed.
89 const SSLCertificate& Get(size_t pos) const { return *(certs_[pos]); }
90
91 // Returns a new SSLCertChain object instance wrapping the same underlying
92 // certificate chain. Caller is responsible for freeing the returned object.
93 SSLCertChain* Copy() const {
94 return new SSLCertChain(certs_);
95 }
96
97 private:
98 // Helper function for duplicating a vector of certificates.
99 static SSLCertificate* DupCert(const SSLCertificate* cert) {
100 return cert->GetReference();
101 }
102
103 // Helper function for deleting a vector of certificates.
104 static void DeleteCert(SSLCertificate* cert) { delete cert; }
105
106 std::vector<SSLCertificate*> certs_;
107
henrikg3c089d72015-09-16 05:37:44 -0700108 RTC_DISALLOW_COPY_AND_ASSIGN(SSLCertChain);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000109};
110
torbjorng0df3eb02015-10-08 02:06:17 -0700111// KT_DEFAULT is currently an alias for KT_RSA. This is likely to change.
112// KT_LAST is intended for vector declarations and loops over all key types;
113// it does not represent any key type in itself.
Henrik Boström9b5476d2015-09-22 14:12:57 +0200114// TODO(hbos,torbjorng): Don't change KT_DEFAULT without first updating
115// PeerConnectionFactory_nativeCreatePeerConnection's certificate generation
116// code.
Henrik Boström5e56c592015-08-11 10:33:13 +0200117enum KeyType { KT_RSA, KT_ECDSA, KT_LAST, KT_DEFAULT = KT_RSA };
118
torbjorng0df3eb02015-10-08 02:06:17 -0700119static const int kRsaDefaultModSize = 1024;
120static const int kRsaDefaultExponent = 0x10001; // = 2^16+1 = 65537
121static const int kRsaMinModSize = 1024;
122static const int kRsaMaxModSize = 8192;
123
124struct RSAParams {
125 unsigned int mod_size;
126 unsigned int pub_exp;
127};
128
129enum ECCurve { EC_NIST_P256, /* EC_FANCY, */ EC_LAST };
130
131class KeyParams {
132 public:
133 // Generate a KeyParams object from a simple KeyType, using default params.
134 explicit KeyParams(KeyType key_type = KT_DEFAULT) {
135 if (key_type == KT_ECDSA) {
136 type_ = KT_ECDSA;
137 params_.curve = EC_NIST_P256;
138 } else if (key_type == KT_RSA) {
139 type_ = KT_RSA;
140 params_.rsa.mod_size = kRsaDefaultModSize;
141 params_.rsa.pub_exp = kRsaDefaultExponent;
142 } else {
143 RTC_NOTREACHED();
144 }
145 }
146
147 // Generate a a KeyParams for RSA with explicit parameters.
148 static KeyParams RSA(int mod_size = kRsaDefaultModSize,
149 int pub_exp = kRsaDefaultExponent) {
150 KeyParams kt(KT_RSA);
151 kt.params_.rsa.mod_size = mod_size;
152 kt.params_.rsa.pub_exp = pub_exp;
153 return kt;
154 }
155
156 // Generate a a KeyParams for ECDSA specifying the curve.
157 static KeyParams ECDSA(ECCurve curve = EC_NIST_P256) {
158 KeyParams kt(KT_ECDSA);
159 kt.params_.curve = curve;
160 return kt;
161 }
162
163 // Check validity of a KeyParams object. Since the factory functions have
164 // no way of returning errors, this function can be called after creation
165 // to make sure the parameters are OK.
166 bool IsValid() {
167 if (type_ == KT_RSA) {
168 return (params_.rsa.mod_size >= kRsaMinModSize &&
169 params_.rsa.mod_size <= kRsaMaxModSize &&
170 params_.rsa.pub_exp > params_.rsa.mod_size);
171 } else if (type_ == KT_ECDSA) {
172 return (params_.curve == EC_NIST_P256);
173 }
174 return false;
175 }
176
177 RSAParams rsa_params() const {
178 RTC_DCHECK(type_ == KT_RSA);
179 return params_.rsa;
180 }
181
182 ECCurve ec_curve() const {
183 RTC_DCHECK(type_ == KT_ECDSA);
184 return params_.curve;
185 }
186
187 KeyType type() const { return type_; }
188
189 private:
190 KeyType type_;
191 union {
192 RSAParams rsa;
193 ECCurve curve;
194 } params_;
195};
196
Henrik Boström9b5476d2015-09-22 14:12:57 +0200197// TODO(hbos): Remove once rtc::KeyType (to be modified) and
198// blink::WebRTCKeyType (to be landed) match. By using this function in Chromium
199// appropriately we can change KeyType enum -> class without breaking Chromium.
200KeyType IntKeyTypeFamilyToKeyType(int key_type_family);
201
torbjorng0df3eb02015-10-08 02:06:17 -0700202// Parameters for generating a certificate. If |common_name| is non-empty, it
203// will be used for the certificate's subject and issuer name, otherwise a
204// random string will be used.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000205struct SSLIdentityParams {
206 std::string common_name;
torbjorng0df3eb02015-10-08 02:06:17 -0700207 int not_before; // offset from current time in seconds.
208 int not_after; // offset from current time in seconds.
209 KeyParams key_params;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000210};
211
212// Our identity in an SSL negotiation: a keypair and certificate (both
213// with the same public key).
214// This too is pretty much immutable once created.
215class SSLIdentity {
216 public:
217 // Generates an identity (keypair and self-signed certificate). If
218 // common_name is non-empty, it will be used for the certificate's
219 // subject and issuer name, otherwise a random string will be used.
220 // Returns NULL on failure.
221 // Caller is responsible for freeing the returned object.
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +0200222 static SSLIdentity* Generate(const std::string& common_name,
torbjorng0df3eb02015-10-08 02:06:17 -0700223 const KeyParams& key_param);
224 static SSLIdentity* Generate(const std::string& common_name,
225 KeyType key_type) {
226 return Generate(common_name, KeyParams(key_type));
227 }
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000228
229 // Generates an identity with the specified validity period.
230 static SSLIdentity* GenerateForTest(const SSLIdentityParams& params);
231
232 // Construct an identity from a private key and a certificate.
233 static SSLIdentity* FromPEMStrings(const std::string& private_key,
234 const std::string& certificate);
235
236 virtual ~SSLIdentity() {}
237
238 // Returns a new SSLIdentity object instance wrapping the same
239 // identity information.
240 // Caller is responsible for freeing the returned object.
Henrik Boström87713d02015-08-25 09:53:21 +0200241 // TODO(hbos,torbjorng): Rename to a less confusing name.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000242 virtual SSLIdentity* GetReference() const = 0;
243
244 // Returns a temporary reference to the certificate.
245 virtual const SSLCertificate& certificate() const = 0;
246
247 // Helpers for parsing converting between PEM and DER format.
248 static bool PemToDer(const std::string& pem_type,
249 const std::string& pem_string,
250 std::string* der);
251 static std::string DerToPem(const std::string& pem_type,
252 const unsigned char* data,
253 size_t length);
254};
255
256extern const char kPemTypeCertificate[];
257extern const char kPemTypeRsaPrivateKey[];
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +0200258extern const char kPemTypeEcPrivateKey[];
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000259
260} // namespace rtc
261
262#endif // WEBRTC_BASE_SSLIDENTITY_H_