]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/ct.h.in
fix some code with obvious wrong coding style
[thirdparty/openssl.git] / include / openssl / ct.h.in
CommitLineData
0cea8832 1/*
9d01ac71
MC
2 * {- join("\n * ", @autowarntext) -}
3 *
33388b44 4 * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
21dcbebc 5 *
48f4ad77 6 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
10 */
0cea8832 11
9d01ac71
MC
12{-
13use OpenSSL::stackhash qw(generate_stack_macros);
14-}
15
ae4186b0
DMSP
16#ifndef OPENSSL_CT_H
17# define OPENSSL_CT_H
d86167ec
DMSP
18# pragma once
19
20# include <openssl/macros.h>
936c2b9e 21# ifndef OPENSSL_NO_DEPRECATED_3_0
d86167ec
DMSP
22# define HEADER_CT_H
23# endif
0cea8832 24
3c27208f
RS
25# include <openssl/opensslconf.h>
26
27# ifndef OPENSSL_NO_CT
50cd4768 28# include <openssl/types.h>
0cea8832
RP
29# include <openssl/safestack.h>
30# include <openssl/x509.h>
52df25cf 31# include <openssl/cterr.h>
0cea8832
RP
32# ifdef __cplusplus
33extern "C" {
34# endif
35
3c27208f 36
0cea8832
RP
37/* Minimum RSA key size, from RFC6962 */
38# define SCT_MIN_RSA_BITS 2048
39
40/* All hashes are SHA256 in v1 of Certificate Transparency */
41# define CT_V1_HASHLEN SHA256_DIGEST_LENGTH
42
9d01ac71
MC
43{-
44 generate_stack_macros("SCT")
45 .generate_stack_macros("CTLOG");
46-}
47
852c2ed2 48
0cea8832
RP
49typedef enum {
50 CT_LOG_ENTRY_TYPE_NOT_SET = -1,
51 CT_LOG_ENTRY_TYPE_X509 = 0,
52 CT_LOG_ENTRY_TYPE_PRECERT = 1
53} ct_log_entry_type_t;
54
55typedef enum {
56 SCT_VERSION_NOT_SET = -1,
57 SCT_VERSION_V1 = 0
58} sct_version_t;
59
8c6afbc5
RP
60typedef enum {
61 SCT_SOURCE_UNKNOWN,
62 SCT_SOURCE_TLS_EXTENSION,
63 SCT_SOURCE_X509V3_EXTENSION,
64 SCT_SOURCE_OCSP_STAPLED_RESPONSE
65} sct_source_t;
66
7d054e5a
RP
67typedef enum {
68 SCT_VALIDATION_STATUS_NOT_SET,
69 SCT_VALIDATION_STATUS_UNKNOWN_LOG,
70 SCT_VALIDATION_STATUS_VALID,
71 SCT_VALIDATION_STATUS_INVALID,
72 SCT_VALIDATION_STATUS_UNVERIFIED,
73 SCT_VALIDATION_STATUS_UNKNOWN_VERSION
74} sct_validation_status_t;
75
7d054e5a
RP
76/******************************************
77 * CT policy evaluation context functions *
78 ******************************************/
79
b4a98616 80/*
d4b2bfba
MC
81 * Creates a new, empty policy evaluation context associated with the given
82 * library context and property query string.
b4a98616
RP
83 * The caller is responsible for calling CT_POLICY_EVAL_CTX_free when finished
84 * with the CT_POLICY_EVAL_CTX.
85 */
b4250010 86CT_POLICY_EVAL_CTX *CT_POLICY_EVAL_CTX_new_ex(OSSL_LIB_CTX *libctx,
d8652be0 87 const char *propq);
1287dabd 88
d4b2bfba 89/*
d8652be0 90 * The same as CT_POLICY_EVAL_CTX_new_ex() but the default library
d4b2bfba
MC
91 * context and property query string is used.
92 */
7d054e5a
RP
93CT_POLICY_EVAL_CTX *CT_POLICY_EVAL_CTX_new(void);
94
a1bb7708 95/* Deletes a policy evaluation context and anything it owns. */
7d054e5a
RP
96void CT_POLICY_EVAL_CTX_free(CT_POLICY_EVAL_CTX *ctx);
97
98/* Gets the peer certificate that the SCTs are for */
680ddc99 99X509* CT_POLICY_EVAL_CTX_get0_cert(const CT_POLICY_EVAL_CTX *ctx);
7d054e5a 100
11c68cea
RP
101/*
102 * Sets the certificate associated with the received SCTs.
ea4b7ded 103 * Increments the reference count of cert.
11c68cea
RP
104 * Returns 1 on success, 0 otherwise.
105 */
106int CT_POLICY_EVAL_CTX_set1_cert(CT_POLICY_EVAL_CTX *ctx, X509 *cert);
7d054e5a
RP
107
108/* Gets the issuer of the aforementioned certificate */
680ddc99 109X509* CT_POLICY_EVAL_CTX_get0_issuer(const CT_POLICY_EVAL_CTX *ctx);
7d054e5a 110
11c68cea
RP
111/*
112 * Sets the issuer of the certificate associated with the received SCTs.
113 * Increments the reference count of issuer.
114 * Returns 1 on success, 0 otherwise.
115 */
116int CT_POLICY_EVAL_CTX_set1_issuer(CT_POLICY_EVAL_CTX *ctx, X509 *issuer);
7d054e5a
RP
117
118/* Gets the CT logs that are trusted sources of SCTs */
680ddc99 119const CTLOG_STORE *CT_POLICY_EVAL_CTX_get0_log_store(const CT_POLICY_EVAL_CTX *ctx);
7d054e5a 120
a1bb7708
RP
121/* Sets the log store that is in use. It must outlive the CT_POLICY_EVAL_CTX. */
122void CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(CT_POLICY_EVAL_CTX *ctx,
123 CTLOG_STORE *log_store);
7d054e5a 124
1fa9ffd9
RP
125/*
126 * Gets the time, in milliseconds since the Unix epoch, that will be used as the
127 * current time when checking whether an SCT was issued in the future.
128 * Such SCTs will fail validation, as required by RFC6962.
129 */
130uint64_t CT_POLICY_EVAL_CTX_get_time(const CT_POLICY_EVAL_CTX *ctx);
131
132/*
1871a5aa
RP
133 * Sets the time to evaluate SCTs against, in milliseconds since the Unix epoch.
134 * If an SCT's timestamp is after this time, it will be interpreted as having
135 * been issued in the future. RFC6962 states that "TLS clients MUST reject SCTs
1fa9ffd9
RP
136 * whose timestamp is in the future", so an SCT will not validate in this case.
137 */
138void CT_POLICY_EVAL_CTX_set_time(CT_POLICY_EVAL_CTX *ctx, uint64_t time_in_ms);
139
0cea8832
RP
140/*****************
141 * SCT functions *
142 *****************/
143
144/*
145 * Creates a new, blank SCT.
146 * The caller is responsible for calling SCT_free when finished with the SCT.
147 */
148SCT *SCT_new(void);
149
8c6afbc5
RP
150/*
151 * Creates a new SCT from some base64-encoded strings.
152 * The caller is responsible for calling SCT_free when finished with the SCT.
153 */
154SCT *SCT_new_from_base64(unsigned char version,
155 const char *logid_base64,
156 ct_log_entry_type_t entry_type,
157 uint64_t timestamp,
158 const char *extensions_base64,
159 const char *signature_base64);
160
0cea8832
RP
161/*
162 * Frees the SCT and the underlying data structures.
163 */
164void SCT_free(SCT *sct);
165
166/*
167 * Free a stack of SCTs, and the underlying SCTs themselves.
168 * Intended to be compatible with X509V3_EXT_FREE.
169 */
170void SCT_LIST_free(STACK_OF(SCT) *a);
171
172/*
173 * Returns the version of the SCT.
174 */
175sct_version_t SCT_get_version(const SCT *sct);
176
177/*
178 * Set the version of an SCT.
179 * Returns 1 on success, 0 if the version is unrecognized.
180 */
5da65ef2 181__owur int SCT_set_version(SCT *sct, sct_version_t version);
0cea8832
RP
182
183/*
184 * Returns the log entry type of the SCT.
185 */
186ct_log_entry_type_t SCT_get_log_entry_type(const SCT *sct);
187
188/*
189 * Set the log entry type of an SCT.
5da65ef2 190 * Returns 1 on success, 0 otherwise.
0cea8832 191 */
5da65ef2 192__owur int SCT_set_log_entry_type(SCT *sct, ct_log_entry_type_t entry_type);
0cea8832
RP
193
194/*
195 * Gets the ID of the log that an SCT came from.
196 * Ownership of the log ID remains with the SCT.
197 * Returns the length of the log ID.
198 */
199size_t SCT_get0_log_id(const SCT *sct, unsigned char **log_id);
200
201/*
202 * Set the log ID of an SCT to point directly to the *log_id specified.
203 * The SCT takes ownership of the specified pointer.
5da65ef2 204 * Returns 1 on success, 0 otherwise.
0cea8832 205 */
5da65ef2 206__owur int SCT_set0_log_id(SCT *sct, unsigned char *log_id, size_t log_id_len);
0cea8832
RP
207
208/*
209 * Set the log ID of an SCT.
210 * This makes a copy of the log_id.
5da65ef2 211 * Returns 1 on success, 0 otherwise.
0cea8832 212 */
5da65ef2
RP
213__owur int SCT_set1_log_id(SCT *sct, const unsigned char *log_id,
214 size_t log_id_len);
0cea8832
RP
215
216/*
217 * Returns the timestamp for the SCT (epoch time in milliseconds).
218 */
219uint64_t SCT_get_timestamp(const SCT *sct);
220
221/*
222 * Set the timestamp of an SCT (epoch time in milliseconds).
223 */
224void SCT_set_timestamp(SCT *sct, uint64_t timestamp);
225
226/*
227 * Return the NID for the signature used by the SCT.
228 * For CT v1, this will be either NID_sha256WithRSAEncryption or
229 * NID_ecdsa_with_SHA256 (or NID_undef if incorrect/unset).
230 */
231int SCT_get_signature_nid(const SCT *sct);
232
233/*
234 * Set the signature type of an SCT
235 * For CT v1, this should be either NID_sha256WithRSAEncryption or
236 * NID_ecdsa_with_SHA256.
5da65ef2 237 * Returns 1 on success, 0 otherwise.
0cea8832 238 */
5da65ef2 239__owur int SCT_set_signature_nid(SCT *sct, int nid);
0cea8832
RP
240
241/*
242 * Set *ext to point to the extension data for the SCT. ext must not be NULL.
243 * The SCT retains ownership of this pointer.
244 * Returns length of the data pointed to.
245 */
246size_t SCT_get0_extensions(const SCT *sct, unsigned char **ext);
247
248/*
249 * Set the extensions of an SCT to point directly to the *ext specified.
250 * The SCT takes ownership of the specified pointer.
251 */
252void SCT_set0_extensions(SCT *sct, unsigned char *ext, size_t ext_len);
253
254/*
255 * Set the extensions of an SCT.
256 * This takes a copy of the ext.
5da65ef2 257 * Returns 1 on success, 0 otherwise.
0cea8832 258 */
5da65ef2
RP
259__owur int SCT_set1_extensions(SCT *sct, const unsigned char *ext,
260 size_t ext_len);
0cea8832
RP
261
262/*
263 * Set *sig to point to the signature for the SCT. sig must not be NULL.
264 * The SCT retains ownership of this pointer.
265 * Returns length of the data pointed to.
266 */
267size_t SCT_get0_signature(const SCT *sct, unsigned char **sig);
268
269/*
270 * Set the signature of an SCT to point directly to the *sig specified.
271 * The SCT takes ownership of the specified pointer.
272 */
273void SCT_set0_signature(SCT *sct, unsigned char *sig, size_t sig_len);
274
275/*
276 * Set the signature of an SCT to be a copy of the *sig specified.
5da65ef2 277 * Returns 1 on success, 0 otherwise.
0cea8832 278 */
5da65ef2
RP
279__owur int SCT_set1_signature(SCT *sct, const unsigned char *sig,
280 size_t sig_len);
0cea8832 281
8c6afbc5
RP
282/*
283 * The origin of this SCT, e.g. TLS extension, OCSP response, etc.
284 */
285sct_source_t SCT_get_source(const SCT *sct);
286
287/*
288 * Set the origin of this SCT, e.g. TLS extension, OCSP response, etc.
289 * Returns 1 on success, 0 otherwise.
290 */
5da65ef2 291__owur int SCT_set_source(SCT *sct, sct_source_t source);
8c6afbc5 292
43341433
VD
293/*
294 * Returns a text string describing the validation status of |sct|.
295 */
296const char *SCT_validation_status_string(const SCT *sct);
297
0cea8832
RP
298/*
299 * Pretty-prints an |sct| to |out|.
300 * It will be indented by the number of spaces specified by |indent|.
49e5db0b
RP
301 * If |logs| is not NULL, it will be used to lookup the CT log that the SCT came
302 * from, so that the log name can be printed.
0cea8832 303 */
49e5db0b 304void SCT_print(const SCT *sct, BIO *out, int indent, const CTLOG_STORE *logs);
0cea8832
RP
305
306/*
307 * Pretty-prints an |sct_list| to |out|.
308 * It will be indented by the number of spaces specified by |indent|.
309 * SCTs will be delimited by |separator|.
8359b57f
RP
310 * If |logs| is not NULL, it will be used to lookup the CT log that each SCT
311 * came from, so that the log names can be printed.
0cea8832
RP
312 */
313void SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
8359b57f 314 const char *separator, const CTLOG_STORE *logs);
0cea8832 315
7d054e5a
RP
316/*
317 * Gets the last result of validating this SCT.
318 * If it has not been validated yet, returns SCT_VALIDATION_STATUS_NOT_SET.
319 */
320sct_validation_status_t SCT_get_validation_status(const SCT *sct);
321
322/*
323 * Validates the given SCT with the provided context.
324 * Sets the "validation_status" field of the SCT.
325 * Returns 1 if the SCT is valid and the signature verifies.
326 * Returns 0 if the SCT is invalid or could not be verified.
327 * Returns -1 if an error occurs.
328 */
5da65ef2 329__owur int SCT_validate(SCT *sct, const CT_POLICY_EVAL_CTX *ctx);
7d054e5a
RP
330
331/*
332 * Validates the given list of SCTs with the provided context.
efa00a46 333 * Sets the "validation_status" field of each SCT.
7d054e5a
RP
334 * Returns 1 if there are no invalid SCTs and all signatures verify.
335 * Returns 0 if at least one SCT is invalid or could not be verified.
336 * Returns a negative integer if an error occurs.
337 */
5da65ef2
RP
338__owur int SCT_LIST_validate(const STACK_OF(SCT) *scts,
339 CT_POLICY_EVAL_CTX *ctx);
7d054e5a
RP
340
341
0cea8832 342/*********************************
aa97970c 343 * SCT parsing and serialization *
0cea8832
RP
344 *********************************/
345
346/*
347 * Serialize (to TLS format) a stack of SCTs and return the length.
348 * "a" must not be NULL.
349 * If "pp" is NULL, just return the length of what would have been serialized.
350 * If "pp" is not NULL and "*pp" is null, function will allocate a new pointer
351 * for data that caller is responsible for freeing (only if function returns
352 * successfully).
353 * If "pp" is NULL and "*pp" is not NULL, caller is responsible for ensuring
8483a003 354 * that "*pp" is large enough to accept all of the serialized data.
0cea8832
RP
355 * Returns < 0 on error, >= 0 indicating bytes written (or would have been)
356 * on success.
357 */
5da65ef2 358__owur int i2o_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
0cea8832
RP
359
360/*
361 * Convert TLS format SCT list to a stack of SCTs.
362 * If "a" or "*a" is NULL, a new stack will be created that the caller is
363 * responsible for freeing (by calling SCT_LIST_free).
364 * "**pp" and "*pp" must not be NULL.
365 * Upon success, "*pp" will point to after the last bytes read, and a stack
366 * will be returned.
367 * Upon failure, a NULL pointer will be returned, and the position of "*pp" is
368 * not defined.
369 */
370STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
371 size_t len);
372
373/*
374 * Serialize (to DER format) a stack of SCTs and return the length.
375 * "a" must not be NULL.
376 * If "pp" is NULL, just returns the length of what would have been serialized.
377 * If "pp" is not NULL and "*pp" is null, function will allocate a new pointer
378 * for data that caller is responsible for freeing (only if function returns
379 * successfully).
380 * If "pp" is NULL and "*pp" is not NULL, caller is responsible for ensuring
8483a003 381 * that "*pp" is large enough to accept all of the serialized data.
0cea8832
RP
382 * Returns < 0 on error, >= 0 indicating bytes written (or would have been)
383 * on success.
384 */
eac84e81 385__owur int i2d_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
0cea8832
RP
386
387/*
388 * Parses an SCT list in DER format and returns it.
389 * If "a" or "*a" is NULL, a new stack will be created that the caller is
390 * responsible for freeing (by calling SCT_LIST_free).
391 * "**pp" and "*pp" must not be NULL.
392 * Upon success, "*pp" will point to after the last bytes read, and a stack
393 * will be returned.
394 * Upon failure, a NULL pointer will be returned, and the position of "*pp" is
395 * not defined.
396 */
397STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
398 long len);
399
400/*
401 * Serialize (to TLS format) an |sct| and write it to |out|.
402 * If |out| is null, no SCT will be output but the length will still be returned.
403 * If |out| points to a null pointer, a string will be allocated to hold the
404 * TLS-format SCT. It is the responsibility of the caller to free it.
405 * If |out| points to an allocated string, the TLS-format SCT will be written
406 * to it.
407 * The length of the SCT in TLS format will be returned.
408 */
5da65ef2 409__owur int i2o_SCT(const SCT *sct, unsigned char **out);
0cea8832
RP
410
411/*
412 * Parses an SCT in TLS format and returns it.
413 * If |psct| is not null, it will end up pointing to the parsed SCT. If it
414 * already points to a non-null pointer, the pointer will be free'd.
8483a003 415 * |in| should be a pointer to a string containing the TLS-format SCT.
0cea8832
RP
416 * |in| will be advanced to the end of the SCT if parsing succeeds.
417 * |len| should be the length of the SCT in |in|.
418 * Returns NULL if an error occurs.
419 * If the SCT is an unsupported version, only the SCT's 'sct' and 'sct_len'
420 * fields will be populated (with |in| and |len| respectively).
421 */
422SCT *o2i_SCT(SCT **psct, const unsigned char **in, size_t len);
423
8c6afbc5
RP
424/********************
425 * CT log functions *
426 ********************/
427
428/*
d4b2bfba
MC
429 * Creates a new CT log instance with the given |public_key| and |name| and
430 * associates it with the give library context |libctx| and property query
431 * string |propq|.
5edcadb1 432 * Takes ownership of |public_key| but copies |name|.
a6f5d614 433 * Returns NULL if malloc fails or if |public_key| cannot be converted to DER.
8c6afbc5
RP
434 * Should be deleted by the caller using CTLOG_free when no longer needed.
435 */
b4250010 436CTLOG *CTLOG_new_ex(EVP_PKEY *public_key, const char *name, OSSL_LIB_CTX *libctx,
d8652be0 437 const char *propq);
d4b2bfba
MC
438
439/*
d8652be0 440 * The same as CTLOG_new_ex except that the default library context and
d4b2bfba
MC
441 * property query string are used.
442 */
8c6afbc5
RP
443CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name);
444
8c6afbc5 445/*
a6f5d614 446 * Creates a new CTLOG instance with the base64-encoded SubjectPublicKeyInfo DER
d4b2bfba
MC
447 * in |pkey_base64| and associated with the given library context |libctx| and
448 * property query string |propq|. The |name| is a string to help users identify
449 * this log.
a6f5d614 450 * Returns 1 on success, 0 on failure.
8c6afbc5
RP
451 * Should be deleted by the caller using CTLOG_free when no longer needed.
452 */
d8652be0 453int CTLOG_new_from_base64_ex(CTLOG **ct_log, const char *pkey_base64,
b4250010 454 const char *name, OSSL_LIB_CTX *libctx,
d8652be0 455 const char *propq);
d4b2bfba
MC
456
457/*
d8652be0 458 * The same as CTLOG_new_from_base64_ex() except that the default
d4b2bfba
MC
459 * library context and property query string are used.
460 * Returns 1 on success, 0 on failure.
461 */
4aed8756
F
462int CTLOG_new_from_base64(CTLOG ** ct_log,
463 const char *pkey_base64, const char *name);
8c6afbc5
RP
464
465/*
466 * Deletes a CT log instance and its fields.
467 */
468void CTLOG_free(CTLOG *log);
469
470/* Gets the name of the CT log */
8c92c4ea 471const char *CTLOG_get0_name(const CTLOG *log);
8c6afbc5 472/* Gets the ID of the CT log */
8c92c4ea
RP
473void CTLOG_get0_log_id(const CTLOG *log, const uint8_t **log_id,
474 size_t *log_id_len);
8c6afbc5 475/* Gets the public key of the CT log */
8c92c4ea 476EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log);
8c6afbc5
RP
477
478/**************************
479 * CT log store functions *
480 **************************/
481
482/*
d4b2bfba
MC
483 * Creates a new CT log store and associates it with the given libctx and
484 * property query string.
485 * Should be deleted by the caller using CTLOG_STORE_free when no longer needed.
486 */
b4250010 487CTLOG_STORE *CTLOG_STORE_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
d4b2bfba
MC
488
489/*
d8652be0 490 * Same as CTLOG_STORE_new_ex except that the default libctx and
d4b2bfba 491 * property query string are used.
8c6afbc5
RP
492 * Should be deleted by the caller using CTLOG_STORE_free when no longer needed.
493 */
494CTLOG_STORE *CTLOG_STORE_new(void);
495
496/*
497 * Deletes a CT log store and all of the CT log instances held within.
498 */
499void CTLOG_STORE_free(CTLOG_STORE *store);
500
501/*
502 * Finds a CT log in the store based on its log ID.
503 * Returns the CT log, or NULL if no match is found.
504 */
12d2d281
RP
505const CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
506 const uint8_t *log_id,
507 size_t log_id_len);
8c6afbc5
RP
508
509/*
510 * Loads a CT log list into a |store| from a |file|.
a930afb6 511 * Returns 1 if loading is successful, or 0 otherwise.
8c6afbc5 512 */
5da65ef2 513__owur int CTLOG_STORE_load_file(CTLOG_STORE *store, const char *file);
8c6afbc5
RP
514
515/*
516 * Loads the default CT log list into a |store|.
a930afb6 517 * Returns 1 if loading is successful, or 0 otherwise.
8c6afbc5 518 */
5da65ef2 519__owur int CTLOG_STORE_load_default_file(CTLOG_STORE *store);
8c6afbc5 520
0cd0a820 521# ifdef __cplusplus
0cea8832 522}
0cd0a820 523# endif
3c27208f 524# endif
0cea8832 525#endif