1 /*
2 * Copyright 2006-2026 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 #include <stdio.h>
11 #include <openssl/objects.h>
12 #include <openssl/ts.h>
13 #include <openssl/pkcs7.h>
14 #include "internal/cryptlib.h"
15 #include "internal/sizes.h"
16 #include "crypto/ess.h"
17 #include "ts_local.h"
18
19 static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
20 X509 *signer, STACK_OF(X509) **chain);
21 static int ts_check_signing_certs(const PKCS7_SIGNER_INFO *si,
22 const STACK_OF(X509) *chain);
23
24 static int int_ts_RESP_verify_token(TS_VERIFY_CTX *ctx,
25 PKCS7 *token, TS_TST_INFO *tst_info);
26 static int ts_check_status_info(TS_RESP *response);
27 static char *ts_get_status_text(STACK_OF(ASN1_UTF8STRING) *text);
28 static int ts_check_policy(const ASN1_OBJECT *req_oid,
29 const TS_TST_INFO *tst_info);
30 static int ts_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
31 X509_ALGOR **md_alg,
32 unsigned char **imprint, unsigned *imprint_len);
33 static int ts_check_imprints(X509_ALGOR *algor_a,
34 const unsigned char *imprint_a, unsigned len_a,
35 TS_TST_INFO *tst_info);
36 static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info);
37 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer);
38 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names,
39 GENERAL_NAME *name);
40
41 /*
42 * This must be large enough to hold all values in ts_status_text (with
43 * comma separator) or all text fields in ts_failure_info (also with comma).
44 */
45 #define TS_STATUS_BUF_SIZE 256
46
47 /*
48 * Local mapping between response codes and descriptions.
49 */
50 static const char *ts_status_text[] = {
51 "granted",
52 "grantedWithMods",
53 "rejection",
54 "waiting",
55 "revocationWarning",
56 "revocationNotification"
57 };
58
59 #define TS_STATUS_TEXT_SIZE OSSL_NELEM(ts_status_text)
60
61 static struct {
62 int code;
63 const char *text;
64 } ts_failure_info[] = {
65 { TS_INFO_BAD_ALG, "badAlg" },
66 { TS_INFO_BAD_REQUEST, "badRequest" },
67 { TS_INFO_BAD_DATA_FORMAT, "badDataFormat" },
68 { TS_INFO_TIME_NOT_AVAILABLE, "timeNotAvailable" },
69 { TS_INFO_UNACCEPTED_POLICY, "unacceptedPolicy" },
70 { TS_INFO_UNACCEPTED_EXTENSION, "unacceptedExtension" },
71 { TS_INFO_ADD_INFO_NOT_AVAILABLE, "addInfoNotAvailable" },
72 { TS_INFO_SYSTEM_FAILURE, "systemFailure" }
73 };
74
75 /*-
76 * This function carries out the following tasks:
77 * - Checks if there is one and only one signer.
78 * - Search for the signing certificate in 'certs' and in the response.
79 * - Check the extended key usage and key usage fields of the signer
80 * certificate (done by the path validation).
81 * - Build and validate the certificate path.
82 * - Check if the certificate path meets the requirements of the
83 * SigningCertificate ESS signed attribute.
84 * - Verify the signature value.
85 * - Returns the signer certificate in 'signer', if 'signer' is not NULL.
86 */
TS_RESP_verify_signature(PKCS7 * token,STACK_OF (X509)* certs,X509_STORE * store,X509 ** signer_out)87 int TS_RESP_verify_signature(PKCS7 *token, STACK_OF(X509) *certs,
88 X509_STORE *store, X509 **signer_out)
89 {
90 STACK_OF(PKCS7_SIGNER_INFO) *sinfos = NULL;
91 PKCS7_SIGNER_INFO *si;
92 STACK_OF(X509) *untrusted = NULL;
93 STACK_OF(X509) *signers = NULL;
94 X509 *signer;
95 STACK_OF(X509) *chain = NULL;
96 char buf[4096];
97 int i, j = 0, ret = 0;
98 BIO *p7bio = NULL;
99
100 /* Some sanity checks first. */
101 if (!token) {
102 ERR_raise(ERR_LIB_TS, TS_R_INVALID_NULL_POINTER);
103 goto err;
104 }
105 if (!PKCS7_type_is_signed(token)) {
106 ERR_raise(ERR_LIB_TS, TS_R_WRONG_CONTENT_TYPE);
107 goto err;
108 }
109 sinfos = PKCS7_get_signer_info(token);
110 if (!sinfos || sk_PKCS7_SIGNER_INFO_num(sinfos) != 1) {
111 ERR_raise(ERR_LIB_TS, TS_R_THERE_MUST_BE_ONE_SIGNER);
112 goto err;
113 }
114 si = sk_PKCS7_SIGNER_INFO_value(sinfos, 0);
115 if (PKCS7_get_detached(token)) {
116 ERR_raise(ERR_LIB_TS, TS_R_NO_CONTENT);
117 goto err;
118 }
119
120 /*
121 * Get hold of the signer certificate, search only internal certificates
122 * if it was requested.
123 */
124 signers = PKCS7_get0_signers(token, certs, 0);
125 if (!signers || sk_X509_num(signers) != 1)
126 goto err;
127 signer = sk_X509_value(signers, 0);
128
129 untrusted = sk_X509_new_reserve(NULL, sk_X509_num(certs) + sk_X509_num(token->d.sign->cert));
130 if (untrusted == NULL
131 || !X509_add_certs(untrusted, certs, 0)
132 || !X509_add_certs(untrusted, token->d.sign->cert, 0))
133 goto err;
134 if (!ts_verify_cert(store, untrusted, signer, &chain))
135 goto err;
136 if (!ts_check_signing_certs(si, chain))
137 goto err;
138 p7bio = PKCS7_dataInit(token, NULL);
139
140 /* We now have to 'read' from p7bio to calculate digests etc. */
141 while ((i = BIO_read(p7bio, buf, sizeof(buf))) > 0)
142 continue;
143
144 j = PKCS7_signatureVerify(p7bio, token, si, signer);
145 if (j <= 0) {
146 ERR_raise(ERR_LIB_TS, TS_R_SIGNATURE_FAILURE);
147 goto err;
148 }
149
150 if (signer_out) {
151 if (!X509_up_ref(signer))
152 goto err;
153
154 *signer_out = signer;
155 }
156 ret = 1;
157
158 err:
159 BIO_free_all(p7bio);
160 sk_X509_free(untrusted);
161 OSSL_STACK_OF_X509_free(chain);
162 sk_X509_free(signers);
163
164 return ret;
165 }
166
167 /*
168 * The certificate chain is returned in chain. Caller is responsible for
169 * freeing the vector.
170 */
ts_verify_cert(X509_STORE * store,STACK_OF (X509)* untrusted,X509 * signer,STACK_OF (X509)** chain)171 static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
172 X509 *signer, STACK_OF(X509) **chain)
173 {
174 X509_STORE_CTX *cert_ctx = NULL;
175 int i;
176 int ret = 0;
177
178 *chain = NULL;
179 cert_ctx = X509_STORE_CTX_new();
180 if (cert_ctx == NULL) {
181 ERR_raise(ERR_LIB_TS, ERR_R_X509_LIB);
182 goto err;
183 }
184 if (!X509_STORE_CTX_init(cert_ctx, store, signer, untrusted))
185 goto end;
186 X509_STORE_CTX_set_purpose(cert_ctx, X509_PURPOSE_TIMESTAMP_SIGN);
187 i = X509_verify_cert(cert_ctx);
188 if (i <= 0) {
189 int j = X509_STORE_CTX_get_error(cert_ctx);
190 ERR_raise_data(ERR_LIB_TS, TS_R_CERTIFICATE_VERIFY_ERROR,
191 "Verify error:%s", X509_verify_cert_error_string(j));
192 goto err;
193 }
194 *chain = X509_STORE_CTX_get1_chain(cert_ctx);
195 ret = 1;
196 goto end;
197
198 err:
199 ret = 0;
200
201 end:
202 X509_STORE_CTX_free(cert_ctx);
203 return ret;
204 }
205
ossl_ess_get_signing_cert(const PKCS7_SIGNER_INFO * si)206 static ESS_SIGNING_CERT *ossl_ess_get_signing_cert(const PKCS7_SIGNER_INFO *si)
207 {
208 ASN1_TYPE *attr;
209 const unsigned char *p;
210
211 attr = PKCS7_get_signed_attribute(si, NID_id_smime_aa_signingCertificate);
212 if (attr == NULL || attr->type != V_ASN1_SEQUENCE)
213 return NULL;
214 p = attr->value.sequence->data;
215 return d2i_ESS_SIGNING_CERT(NULL, &p, attr->value.sequence->length);
216 }
217
ossl_ess_get_signing_cert_v2(const PKCS7_SIGNER_INFO * si)218 static ESS_SIGNING_CERT_V2 *ossl_ess_get_signing_cert_v2(const PKCS7_SIGNER_INFO *si)
219 {
220 ASN1_TYPE *attr;
221 const unsigned char *p;
222
223 attr = PKCS7_get_signed_attribute(si, NID_id_smime_aa_signingCertificateV2);
224 if (attr == NULL || attr->type != V_ASN1_SEQUENCE)
225 return NULL;
226 p = attr->value.sequence->data;
227 return d2i_ESS_SIGNING_CERT_V2(NULL, &p, attr->value.sequence->length);
228 }
229
ts_check_signing_certs(const PKCS7_SIGNER_INFO * si,const STACK_OF (X509)* chain)230 static int ts_check_signing_certs(const PKCS7_SIGNER_INFO *si,
231 const STACK_OF(X509) *chain)
232 {
233 ESS_SIGNING_CERT *ss = ossl_ess_get_signing_cert(si);
234 ESS_SIGNING_CERT_V2 *ssv2 = ossl_ess_get_signing_cert_v2(si);
235 int ret = OSSL_ESS_check_signing_certs(ss, ssv2, chain, 1) > 0;
236
237 ESS_SIGNING_CERT_free(ss);
238 ESS_SIGNING_CERT_V2_free(ssv2);
239 return ret;
240 }
241
242 /*-
243 * Verifies whether 'response' contains a valid response with regards
244 * to the settings of the context:
245 * - Gives an error message if the TS_TST_INFO is not present.
246 * - Calls _TS_RESP_verify_token to verify the token content.
247 */
TS_RESP_verify_response(TS_VERIFY_CTX * ctx,TS_RESP * response)248 int TS_RESP_verify_response(TS_VERIFY_CTX *ctx, TS_RESP *response)
249 {
250 PKCS7 *token = response->token;
251 TS_TST_INFO *tst_info = response->tst_info;
252 int ret = 0;
253
254 if (!ts_check_status_info(response))
255 goto err;
256 if (!int_ts_RESP_verify_token(ctx, token, tst_info))
257 goto err;
258 ret = 1;
259
260 err:
261 return ret;
262 }
263
264 /*
265 * Tries to extract a TS_TST_INFO structure from the PKCS7 token and
266 * calls the internal int_TS_RESP_verify_token function for verifying it.
267 */
TS_RESP_verify_token(TS_VERIFY_CTX * ctx,PKCS7 * token)268 int TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token)
269 {
270 TS_TST_INFO *tst_info = PKCS7_to_TS_TST_INFO(token);
271 int ret = 0;
272 if (tst_info) {
273 ret = int_ts_RESP_verify_token(ctx, token, tst_info);
274 TS_TST_INFO_free(tst_info);
275 }
276 return ret;
277 }
278
279 /*-
280 * Verifies whether the 'token' contains a valid timestamp token
281 * with regards to the settings of the context. Only those checks are
282 * carried out that are specified in the context:
283 * - Verifies the signature of the TS_TST_INFO.
284 * - Checks the version number of the response.
285 * - Check if the requested and returned policies math.
286 * - Check if the message imprints are the same.
287 * - Check if the nonces are the same.
288 * - Check if the TSA name matches the signer.
289 * - Check if the TSA name is the expected TSA.
290 */
int_ts_RESP_verify_token(TS_VERIFY_CTX * ctx,PKCS7 * token,TS_TST_INFO * tst_info)291 static int int_ts_RESP_verify_token(TS_VERIFY_CTX *ctx,
292 PKCS7 *token, TS_TST_INFO *tst_info)
293 {
294 X509 *signer = NULL;
295 GENERAL_NAME *tsa_name = tst_info->tsa;
296 X509_ALGOR *md_alg = NULL;
297 unsigned char *imprint = NULL;
298 unsigned imprint_len = 0;
299 int ret = 0;
300 int flags = ctx->flags;
301
302 /* Some options require us to also check the signature */
303 if (((flags & TS_VFY_SIGNER) && tsa_name != NULL)
304 || (flags & TS_VFY_TSA_NAME)) {
305 flags |= TS_VFY_SIGNATURE;
306 }
307
308 if ((flags & TS_VFY_SIGNATURE)
309 && !TS_RESP_verify_signature(token, ctx->certs, ctx->store, &signer))
310 goto err;
311 if ((flags & TS_VFY_VERSION)
312 && TS_TST_INFO_get_version(tst_info) != 1) {
313 ERR_raise(ERR_LIB_TS, TS_R_UNSUPPORTED_VERSION);
314 goto err;
315 }
316 if ((flags & TS_VFY_POLICY)
317 && !ts_check_policy(ctx->policy, tst_info))
318 goto err;
319 if ((flags & TS_VFY_IMPRINT)
320 && !ts_check_imprints(ctx->md_alg, ctx->imprint, ctx->imprint_len,
321 tst_info))
322 goto err;
323 if ((flags & TS_VFY_DATA)
324 && (!ts_compute_imprint(ctx->data, tst_info,
325 &md_alg, &imprint, &imprint_len)
326 || !ts_check_imprints(md_alg, imprint, imprint_len, tst_info)))
327 goto err;
328 if ((flags & TS_VFY_NONCE)
329 && !ts_check_nonces(ctx->nonce, tst_info))
330 goto err;
331 if ((flags & TS_VFY_SIGNER)
332 && tsa_name && !ts_check_signer_name(tsa_name, signer)) {
333 ERR_raise(ERR_LIB_TS, TS_R_TSA_NAME_MISMATCH);
334 goto err;
335 }
336 if ((flags & TS_VFY_TSA_NAME)
337 && !ts_check_signer_name(ctx->tsa_name, signer)) {
338 ERR_raise(ERR_LIB_TS, TS_R_TSA_UNTRUSTED);
339 goto err;
340 }
341 ret = 1;
342
343 err:
344 X509_free(signer);
345 X509_ALGOR_free(md_alg);
346 OPENSSL_free(imprint);
347 return ret;
348 }
349
ts_check_status_info(TS_RESP * response)350 static int ts_check_status_info(TS_RESP *response)
351 {
352 TS_STATUS_INFO *info = response->status_info;
353 long status = ASN1_INTEGER_get(info->status);
354 const char *status_text = NULL;
355 char *embedded_status_text = NULL;
356 char failure_text[TS_STATUS_BUF_SIZE] = "";
357
358 if (status == 0 || status == 1)
359 return 1;
360
361 /* There was an error, get the description in status_text. */
362 if (0 <= status && status < (long)OSSL_NELEM(ts_status_text))
363 status_text = ts_status_text[status];
364 else
365 status_text = "unknown code";
366
367 if (sk_ASN1_UTF8STRING_num(info->text) > 0
368 && (embedded_status_text = ts_get_status_text(info->text)) == NULL)
369 return 0;
370
371 /* Fill in failure_text with the failure information. */
372 if (info->failure_info) {
373 int i;
374 int first = 1;
375 for (i = 0; i < (int)OSSL_NELEM(ts_failure_info); ++i) {
376 if (ASN1_BIT_STRING_get_bit(info->failure_info,
377 ts_failure_info[i].code)) {
378 if (!first)
379 strcat(failure_text, ",");
380 else
381 first = 0;
382 strcat(failure_text, ts_failure_info[i].text);
383 }
384 }
385 }
386 if (failure_text[0] == '\0')
387 strcpy(failure_text, "unspecified");
388
389 ERR_raise_data(ERR_LIB_TS, TS_R_NO_TIME_STAMP_TOKEN,
390 "status code: %s, status text: %s, failure codes: %s",
391 status_text,
392 embedded_status_text ? embedded_status_text : "unspecified",
393 failure_text);
394 OPENSSL_free(embedded_status_text);
395
396 return 0;
397 }
398
ts_get_status_text(STACK_OF (ASN1_UTF8STRING)* text)399 static char *ts_get_status_text(STACK_OF(ASN1_UTF8STRING) *text)
400 {
401 return ossl_sk_ASN1_UTF8STRING2text(text, "/", TS_MAX_STATUS_LENGTH);
402 }
403
ts_check_policy(const ASN1_OBJECT * req_oid,const TS_TST_INFO * tst_info)404 static int ts_check_policy(const ASN1_OBJECT *req_oid,
405 const TS_TST_INFO *tst_info)
406 {
407 const ASN1_OBJECT *resp_oid = tst_info->policy_id;
408
409 if (OBJ_cmp(req_oid, resp_oid) != 0) {
410 ERR_raise(ERR_LIB_TS, TS_R_POLICY_MISMATCH);
411 return 0;
412 }
413
414 return 1;
415 }
416
ts_compute_imprint(BIO * data,TS_TST_INFO * tst_info,X509_ALGOR ** md_alg,unsigned char ** imprint,unsigned * imprint_len)417 static int ts_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
418 X509_ALGOR **md_alg,
419 unsigned char **imprint, unsigned *imprint_len)
420 {
421 TS_MSG_IMPRINT *msg_imprint = tst_info->msg_imprint;
422 X509_ALGOR *md_alg_resp = msg_imprint->hash_algo;
423 EVP_MD *md = NULL;
424 EVP_MD_CTX *md_ctx = NULL;
425 unsigned char buffer[4096];
426 char name[OSSL_MAX_NAME_SIZE];
427 int length;
428
429 *md_alg = NULL;
430 *imprint = NULL;
431
432 if ((*md_alg = X509_ALGOR_dup(md_alg_resp)) == NULL)
433 goto err;
434
435 OBJ_obj2txt(name, sizeof(name), md_alg_resp->algorithm, 0);
436
437 (void)ERR_set_mark();
438 md = EVP_MD_fetch(NULL, name, NULL);
439
440 if (md == NULL)
441 md = (EVP_MD *)EVP_get_digestbyname(name);
442
443 if (md == NULL) {
444 (void)ERR_clear_last_mark();
445 goto err;
446 }
447 (void)ERR_pop_to_mark();
448
449 length = EVP_MD_get_size(md);
450 if (length <= 0)
451 goto err;
452 *imprint_len = length;
453 if ((*imprint = OPENSSL_malloc(*imprint_len)) == NULL)
454 goto err;
455
456 md_ctx = EVP_MD_CTX_new();
457 if (md_ctx == NULL) {
458 ERR_raise(ERR_LIB_TS, ERR_R_EVP_LIB);
459 goto err;
460 }
461 if (!EVP_DigestInit(md_ctx, md))
462 goto err;
463 EVP_MD_free(md);
464 md = NULL;
465 while ((length = BIO_read(data, buffer, sizeof(buffer))) > 0) {
466 if (!EVP_DigestUpdate(md_ctx, buffer, length))
467 goto err;
468 }
469 if (!EVP_DigestFinal(md_ctx, *imprint, NULL))
470 goto err;
471 EVP_MD_CTX_free(md_ctx);
472
473 return 1;
474 err:
475 EVP_MD_CTX_free(md_ctx);
476 EVP_MD_free(md);
477 X509_ALGOR_free(*md_alg);
478 *md_alg = NULL;
479 OPENSSL_free(*imprint);
480 *imprint_len = 0;
481 *imprint = 0;
482 return 0;
483 }
484
ts_check_imprints(X509_ALGOR * algor_a,const unsigned char * imprint_a,unsigned len_a,TS_TST_INFO * tst_info)485 static int ts_check_imprints(X509_ALGOR *algor_a,
486 const unsigned char *imprint_a, unsigned len_a,
487 TS_TST_INFO *tst_info)
488 {
489 TS_MSG_IMPRINT *b = tst_info->msg_imprint;
490 X509_ALGOR *algor_b = b->hash_algo;
491 int ret = 0;
492
493 if (algor_a) {
494 if (OBJ_cmp(algor_a->algorithm, algor_b->algorithm))
495 goto err;
496
497 /* The parameter must be NULL in both. */
498 if ((algor_a->parameter
499 && ASN1_TYPE_get(algor_a->parameter) != V_ASN1_NULL)
500 || (algor_b->parameter
501 && ASN1_TYPE_get(algor_b->parameter) != V_ASN1_NULL))
502 goto err;
503 }
504
505 ret = len_a == (unsigned)ASN1_STRING_length(b->hashed_msg) && memcmp(imprint_a, ASN1_STRING_get0_data(b->hashed_msg), len_a) == 0;
506 err:
507 if (!ret)
508 ERR_raise(ERR_LIB_TS, TS_R_MESSAGE_IMPRINT_MISMATCH);
509 return ret;
510 }
511
ts_check_nonces(const ASN1_INTEGER * a,TS_TST_INFO * tst_info)512 static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info)
513 {
514 const ASN1_INTEGER *b = tst_info->nonce;
515
516 if (!b) {
517 ERR_raise(ERR_LIB_TS, TS_R_NONCE_NOT_RETURNED);
518 return 0;
519 }
520
521 /* No error if a nonce is returned without being requested. */
522 if (ASN1_INTEGER_cmp(a, b) != 0) {
523 ERR_raise(ERR_LIB_TS, TS_R_NONCE_MISMATCH);
524 return 0;
525 }
526
527 return 1;
528 }
529
530 /*
531 * Check if the specified TSA name matches either the subject or one of the
532 * subject alternative names of the TSA certificate.
533 */
ts_check_signer_name(GENERAL_NAME * tsa_name,X509 * signer)534 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer)
535 {
536 STACK_OF(GENERAL_NAME) *gen_names = NULL;
537 int idx = -1;
538 int found = 0;
539
540 if (tsa_name->type == GEN_DIRNAME
541 && X509_name_cmp(tsa_name->d.dirn, X509_get_subject_name(signer)) == 0)
542 return 1;
543 gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name, NULL, &idx);
544 while (gen_names != NULL) {
545 found = ts_find_name(gen_names, tsa_name) >= 0;
546 if (found)
547 break;
548 /*
549 * Get the next subject alternative name, although there should be no
550 * more than one.
551 */
552 GENERAL_NAMES_free(gen_names);
553 gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name, NULL, &idx);
554 }
555 GENERAL_NAMES_free(gen_names);
556
557 return found;
558 }
559
560 /* Returns 1 if name is in gen_names, 0 otherwise. */
ts_find_name(STACK_OF (GENERAL_NAME)* gen_names,GENERAL_NAME * name)561 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names, GENERAL_NAME *name)
562 {
563 int i, found;
564 for (i = 0, found = 0; !found && i < sk_GENERAL_NAME_num(gen_names); ++i) {
565 GENERAL_NAME *current = sk_GENERAL_NAME_value(gen_names, i);
566 found = GENERAL_NAME_cmp(current, name) == 0;
567 }
568 return found ? i - 1 : -1;
569 }
570