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