1
0

ts_rsp_verify.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  1. /* crypto/ts/ts_resp_verify.c */
  2. /*
  3. * Written by Zoltan Glozik ([email protected]) for the OpenSSL project
  4. * 2002.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * [email protected].
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * ([email protected]). This product includes software written by Tim
  56. * Hudson ([email protected]).
  57. *
  58. */
  59. #include <stdio.h>
  60. #include "cryptlib.h"
  61. #include <openssl/objects.h>
  62. #include <openssl/ts.h>
  63. #include <openssl/pkcs7.h>
  64. /* Private function declarations. */
  65. static int TS_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
  66. X509 *signer, STACK_OF(X509) **chain);
  67. static int TS_check_signing_certs(PKCS7_SIGNER_INFO *si,
  68. STACK_OF(X509) *chain);
  69. static ESS_SIGNING_CERT *ESS_get_signing_cert(PKCS7_SIGNER_INFO *si);
  70. static int TS_find_cert(STACK_OF(ESS_CERT_ID) *cert_ids, X509 *cert);
  71. static int TS_issuer_serial_cmp(ESS_ISSUER_SERIAL *is, X509_CINF *cinfo);
  72. static int int_TS_RESP_verify_token(TS_VERIFY_CTX *ctx,
  73. PKCS7 *token, TS_TST_INFO *tst_info);
  74. static int TS_check_status_info(TS_RESP *response);
  75. static char *TS_get_status_text(STACK_OF(ASN1_UTF8STRING) *text);
  76. static int TS_check_policy(ASN1_OBJECT *req_oid, TS_TST_INFO *tst_info);
  77. static int TS_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
  78. X509_ALGOR **md_alg,
  79. unsigned char **imprint, unsigned *imprint_len);
  80. static int TS_check_imprints(X509_ALGOR *algor_a,
  81. unsigned char *imprint_a, unsigned len_a,
  82. TS_TST_INFO *tst_info);
  83. static int TS_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info);
  84. static int TS_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer);
  85. static int TS_find_name(STACK_OF(GENERAL_NAME) *gen_names,
  86. GENERAL_NAME *name);
  87. /*
  88. * Local mapping between response codes and descriptions.
  89. * Don't forget to change TS_STATUS_BUF_SIZE when modifying
  90. * the elements of this array.
  91. */
  92. static const char *TS_status_text[] = { "granted",
  93. "grantedWithMods",
  94. "rejection",
  95. "waiting",
  96. "revocationWarning",
  97. "revocationNotification"
  98. };
  99. #define TS_STATUS_TEXT_SIZE (sizeof(TS_status_text)/sizeof(*TS_status_text))
  100. /*
  101. * This must be greater or equal to the sum of the strings in TS_status_text
  102. * plus the number of its elements.
  103. */
  104. #define TS_STATUS_BUF_SIZE 256
  105. static struct {
  106. int code;
  107. const char *text;
  108. } TS_failure_info[] = {
  109. {
  110. TS_INFO_BAD_ALG, "badAlg"
  111. },
  112. {
  113. TS_INFO_BAD_REQUEST, "badRequest"
  114. },
  115. {
  116. TS_INFO_BAD_DATA_FORMAT, "badDataFormat"
  117. },
  118. {
  119. TS_INFO_TIME_NOT_AVAILABLE, "timeNotAvailable"
  120. },
  121. {
  122. TS_INFO_UNACCEPTED_POLICY, "unacceptedPolicy"
  123. },
  124. {
  125. TS_INFO_UNACCEPTED_EXTENSION, "unacceptedExtension"
  126. },
  127. {
  128. TS_INFO_ADD_INFO_NOT_AVAILABLE, "addInfoNotAvailable"
  129. },
  130. {
  131. TS_INFO_SYSTEM_FAILURE, "systemFailure"
  132. }
  133. };
  134. #define TS_FAILURE_INFO_SIZE (sizeof(TS_failure_info) / \
  135. sizeof(*TS_failure_info))
  136. /* Functions for verifying a signed TS_TST_INFO structure. */
  137. /*-
  138. * This function carries out the following tasks:
  139. * - Checks if there is one and only one signer.
  140. * - Search for the signing certificate in 'certs' and in the response.
  141. * - Check the extended key usage and key usage fields of the signer
  142. * certificate (done by the path validation).
  143. * - Build and validate the certificate path.
  144. * - Check if the certificate path meets the requirements of the
  145. * SigningCertificate ESS signed attribute.
  146. * - Verify the signature value.
  147. * - Returns the signer certificate in 'signer', if 'signer' is not NULL.
  148. */
  149. int TS_RESP_verify_signature(PKCS7 *token, STACK_OF(X509) *certs,
  150. X509_STORE *store, X509 **signer_out)
  151. {
  152. STACK_OF(PKCS7_SIGNER_INFO) *sinfos = NULL;
  153. PKCS7_SIGNER_INFO *si;
  154. STACK_OF(X509) *signers = NULL;
  155. X509 *signer;
  156. STACK_OF(X509) *chain = NULL;
  157. char buf[4096];
  158. int i, j = 0, ret = 0;
  159. BIO *p7bio = NULL;
  160. /* Some sanity checks first. */
  161. if (!token) {
  162. TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_INVALID_NULL_POINTER);
  163. goto err;
  164. }
  165. /* Check for the correct content type */
  166. if (!PKCS7_type_is_signed(token)) {
  167. TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_WRONG_CONTENT_TYPE);
  168. goto err;
  169. }
  170. /* Check if there is one and only one signer. */
  171. sinfos = PKCS7_get_signer_info(token);
  172. if (!sinfos || sk_PKCS7_SIGNER_INFO_num(sinfos) != 1) {
  173. TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_THERE_MUST_BE_ONE_SIGNER);
  174. goto err;
  175. }
  176. si = sk_PKCS7_SIGNER_INFO_value(sinfos, 0);
  177. /* Check for no content: no data to verify signature. */
  178. if (PKCS7_get_detached(token)) {
  179. TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_NO_CONTENT);
  180. goto err;
  181. }
  182. /*
  183. * Get hold of the signer certificate, search only internal certificates
  184. * if it was requested.
  185. */
  186. signers = PKCS7_get0_signers(token, certs, 0);
  187. if (!signers || sk_X509_num(signers) != 1)
  188. goto err;
  189. signer = sk_X509_value(signers, 0);
  190. /* Now verify the certificate. */
  191. if (!TS_verify_cert(store, certs, signer, &chain))
  192. goto err;
  193. /*
  194. * Check if the signer certificate is consistent with the ESS extension.
  195. */
  196. if (!TS_check_signing_certs(si, chain))
  197. goto err;
  198. /* Creating the message digest. */
  199. p7bio = PKCS7_dataInit(token, NULL);
  200. /* We now have to 'read' from p7bio to calculate digests etc. */
  201. while ((i = BIO_read(p7bio, buf, sizeof(buf))) > 0) ;
  202. /* Verifying the signature. */
  203. j = PKCS7_signatureVerify(p7bio, token, si, signer);
  204. if (j <= 0) {
  205. TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_SIGNATURE_FAILURE);
  206. goto err;
  207. }
  208. /* Return the signer certificate if needed. */
  209. if (signer_out) {
  210. *signer_out = signer;
  211. CRYPTO_add(&signer->references, 1, CRYPTO_LOCK_X509);
  212. }
  213. ret = 1;
  214. err:
  215. BIO_free_all(p7bio);
  216. sk_X509_pop_free(chain, X509_free);
  217. sk_X509_free(signers);
  218. return ret;
  219. }
  220. /*
  221. * The certificate chain is returned in chain. Caller is responsible for
  222. * freeing the vector.
  223. */
  224. static int TS_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
  225. X509 *signer, STACK_OF(X509) **chain)
  226. {
  227. X509_STORE_CTX cert_ctx;
  228. int i;
  229. int ret = 1;
  230. /* chain is an out argument. */
  231. *chain = NULL;
  232. X509_STORE_CTX_init(&cert_ctx, store, signer, untrusted);
  233. X509_STORE_CTX_set_purpose(&cert_ctx, X509_PURPOSE_TIMESTAMP_SIGN);
  234. i = X509_verify_cert(&cert_ctx);
  235. if (i <= 0) {
  236. int j = X509_STORE_CTX_get_error(&cert_ctx);
  237. TSerr(TS_F_TS_VERIFY_CERT, TS_R_CERTIFICATE_VERIFY_ERROR);
  238. ERR_add_error_data(2, "Verify error:",
  239. X509_verify_cert_error_string(j));
  240. ret = 0;
  241. } else {
  242. /* Get a copy of the certificate chain. */
  243. *chain = X509_STORE_CTX_get1_chain(&cert_ctx);
  244. }
  245. X509_STORE_CTX_cleanup(&cert_ctx);
  246. return ret;
  247. }
  248. static int TS_check_signing_certs(PKCS7_SIGNER_INFO *si,
  249. STACK_OF(X509) *chain)
  250. {
  251. ESS_SIGNING_CERT *ss = ESS_get_signing_cert(si);
  252. STACK_OF(ESS_CERT_ID) *cert_ids = NULL;
  253. X509 *cert;
  254. int i = 0;
  255. int ret = 0;
  256. if (!ss)
  257. goto err;
  258. cert_ids = ss->cert_ids;
  259. /* The signer certificate must be the first in cert_ids. */
  260. cert = sk_X509_value(chain, 0);
  261. if (TS_find_cert(cert_ids, cert) != 0)
  262. goto err;
  263. /*
  264. * Check the other certificates of the chain if there are more than one
  265. * certificate ids in cert_ids.
  266. */
  267. if (sk_ESS_CERT_ID_num(cert_ids) > 1) {
  268. /* All the certificates of the chain must be in cert_ids. */
  269. for (i = 1; i < sk_X509_num(chain); ++i) {
  270. cert = sk_X509_value(chain, i);
  271. if (TS_find_cert(cert_ids, cert) < 0)
  272. goto err;
  273. }
  274. }
  275. ret = 1;
  276. err:
  277. if (!ret)
  278. TSerr(TS_F_TS_CHECK_SIGNING_CERTS,
  279. TS_R_ESS_SIGNING_CERTIFICATE_ERROR);
  280. ESS_SIGNING_CERT_free(ss);
  281. return ret;
  282. }
  283. static ESS_SIGNING_CERT *ESS_get_signing_cert(PKCS7_SIGNER_INFO *si)
  284. {
  285. ASN1_TYPE *attr;
  286. const unsigned char *p;
  287. attr = PKCS7_get_signed_attribute(si, NID_id_smime_aa_signingCertificate);
  288. if (!attr)
  289. return NULL;
  290. p = attr->value.sequence->data;
  291. return d2i_ESS_SIGNING_CERT(NULL, &p, attr->value.sequence->length);
  292. }
  293. /* Returns < 0 if certificate is not found, certificate index otherwise. */
  294. static int TS_find_cert(STACK_OF(ESS_CERT_ID) *cert_ids, X509 *cert)
  295. {
  296. int i;
  297. if (!cert_ids || !cert)
  298. return -1;
  299. /* Recompute SHA1 hash of certificate if necessary (side effect). */
  300. X509_check_purpose(cert, -1, 0);
  301. /* Look for cert in the cert_ids vector. */
  302. for (i = 0; i < sk_ESS_CERT_ID_num(cert_ids); ++i) {
  303. ESS_CERT_ID *cid = sk_ESS_CERT_ID_value(cert_ids, i);
  304. /* Check the SHA-1 hash first. */
  305. if (cid->hash->length == sizeof(cert->sha1_hash)
  306. && !memcmp(cid->hash->data, cert->sha1_hash,
  307. sizeof(cert->sha1_hash))) {
  308. /* Check the issuer/serial as well if specified. */
  309. ESS_ISSUER_SERIAL *is = cid->issuer_serial;
  310. if (!is || !TS_issuer_serial_cmp(is, cert->cert_info))
  311. return i;
  312. }
  313. }
  314. return -1;
  315. }
  316. static int TS_issuer_serial_cmp(ESS_ISSUER_SERIAL *is, X509_CINF *cinfo)
  317. {
  318. GENERAL_NAME *issuer;
  319. if (!is || !cinfo || sk_GENERAL_NAME_num(is->issuer) != 1)
  320. return -1;
  321. /* Check the issuer first. It must be a directory name. */
  322. issuer = sk_GENERAL_NAME_value(is->issuer, 0);
  323. if (issuer->type != GEN_DIRNAME
  324. || X509_NAME_cmp(issuer->d.dirn, cinfo->issuer))
  325. return -1;
  326. /* Check the serial number, too. */
  327. if (ASN1_INTEGER_cmp(is->serial, cinfo->serialNumber))
  328. return -1;
  329. return 0;
  330. }
  331. /*-
  332. * Verifies whether 'response' contains a valid response with regards
  333. * to the settings of the context:
  334. * - Gives an error message if the TS_TST_INFO is not present.
  335. * - Calls _TS_RESP_verify_token to verify the token content.
  336. */
  337. int TS_RESP_verify_response(TS_VERIFY_CTX *ctx, TS_RESP *response)
  338. {
  339. PKCS7 *token = TS_RESP_get_token(response);
  340. TS_TST_INFO *tst_info = TS_RESP_get_tst_info(response);
  341. int ret = 0;
  342. /* Check if we have a successful TS_TST_INFO object in place. */
  343. if (!TS_check_status_info(response))
  344. goto err;
  345. /* Check the contents of the time stamp token. */
  346. if (!int_TS_RESP_verify_token(ctx, token, tst_info))
  347. goto err;
  348. ret = 1;
  349. err:
  350. return ret;
  351. }
  352. /*
  353. * Tries to extract a TS_TST_INFO structure from the PKCS7 token and
  354. * calls the internal int_TS_RESP_verify_token function for verifying it.
  355. */
  356. int TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token)
  357. {
  358. TS_TST_INFO *tst_info = PKCS7_to_TS_TST_INFO(token);
  359. int ret = 0;
  360. if (tst_info) {
  361. ret = int_TS_RESP_verify_token(ctx, token, tst_info);
  362. TS_TST_INFO_free(tst_info);
  363. }
  364. return ret;
  365. }
  366. /*-
  367. * Verifies whether the 'token' contains a valid time stamp token
  368. * with regards to the settings of the context. Only those checks are
  369. * carried out that are specified in the context:
  370. * - Verifies the signature of the TS_TST_INFO.
  371. * - Checks the version number of the response.
  372. * - Check if the requested and returned policies math.
  373. * - Check if the message imprints are the same.
  374. * - Check if the nonces are the same.
  375. * - Check if the TSA name matches the signer.
  376. * - Check if the TSA name is the expected TSA.
  377. */
  378. static int int_TS_RESP_verify_token(TS_VERIFY_CTX *ctx,
  379. PKCS7 *token, TS_TST_INFO *tst_info)
  380. {
  381. X509 *signer = NULL;
  382. GENERAL_NAME *tsa_name = TS_TST_INFO_get_tsa(tst_info);
  383. X509_ALGOR *md_alg = NULL;
  384. unsigned char *imprint = NULL;
  385. unsigned imprint_len = 0;
  386. int ret = 0;
  387. /* Verify the signature. */
  388. if ((ctx->flags & TS_VFY_SIGNATURE)
  389. && !TS_RESP_verify_signature(token, ctx->certs, ctx->store, &signer))
  390. goto err;
  391. /* Check version number of response. */
  392. if ((ctx->flags & TS_VFY_VERSION)
  393. && TS_TST_INFO_get_version(tst_info) != 1) {
  394. TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_UNSUPPORTED_VERSION);
  395. goto err;
  396. }
  397. /* Check policies. */
  398. if ((ctx->flags & TS_VFY_POLICY)
  399. && !TS_check_policy(ctx->policy, tst_info))
  400. goto err;
  401. /* Check message imprints. */
  402. if ((ctx->flags & TS_VFY_IMPRINT)
  403. && !TS_check_imprints(ctx->md_alg, ctx->imprint, ctx->imprint_len,
  404. tst_info))
  405. goto err;
  406. /* Compute and check message imprints. */
  407. if ((ctx->flags & TS_VFY_DATA)
  408. && (!TS_compute_imprint(ctx->data, tst_info,
  409. &md_alg, &imprint, &imprint_len)
  410. || !TS_check_imprints(md_alg, imprint, imprint_len, tst_info)))
  411. goto err;
  412. /* Check nonces. */
  413. if ((ctx->flags & TS_VFY_NONCE)
  414. && !TS_check_nonces(ctx->nonce, tst_info))
  415. goto err;
  416. /* Check whether TSA name and signer certificate match. */
  417. if ((ctx->flags & TS_VFY_SIGNER)
  418. && tsa_name && !TS_check_signer_name(tsa_name, signer)) {
  419. TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_TSA_NAME_MISMATCH);
  420. goto err;
  421. }
  422. /* Check whether the TSA is the expected one. */
  423. if ((ctx->flags & TS_VFY_TSA_NAME)
  424. && !TS_check_signer_name(ctx->tsa_name, signer)) {
  425. TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_TSA_UNTRUSTED);
  426. goto err;
  427. }
  428. ret = 1;
  429. err:
  430. X509_free(signer);
  431. X509_ALGOR_free(md_alg);
  432. OPENSSL_free(imprint);
  433. return ret;
  434. }
  435. static int TS_check_status_info(TS_RESP *response)
  436. {
  437. TS_STATUS_INFO *info = TS_RESP_get_status_info(response);
  438. long status = ASN1_INTEGER_get(info->status);
  439. const char *status_text = NULL;
  440. char *embedded_status_text = NULL;
  441. char failure_text[TS_STATUS_BUF_SIZE] = "";
  442. /* Check if everything went fine. */
  443. if (status == 0 || status == 1)
  444. return 1;
  445. /* There was an error, get the description in status_text. */
  446. if (0 <= status && status < (long)TS_STATUS_TEXT_SIZE)
  447. status_text = TS_status_text[status];
  448. else
  449. status_text = "unknown code";
  450. /* Set the embedded_status_text to the returned description. */
  451. if (sk_ASN1_UTF8STRING_num(info->text) > 0
  452. && !(embedded_status_text = TS_get_status_text(info->text)))
  453. return 0;
  454. /* Filling in failure_text with the failure information. */
  455. if (info->failure_info) {
  456. int i;
  457. int first = 1;
  458. for (i = 0; i < (int)TS_FAILURE_INFO_SIZE; ++i) {
  459. if (ASN1_BIT_STRING_get_bit(info->failure_info,
  460. TS_failure_info[i].code)) {
  461. if (!first)
  462. strcpy(failure_text, ",");
  463. else
  464. first = 0;
  465. strcat(failure_text, TS_failure_info[i].text);
  466. }
  467. }
  468. }
  469. if (failure_text[0] == '\0')
  470. strcpy(failure_text, "unspecified");
  471. /* Making up the error string. */
  472. TSerr(TS_F_TS_CHECK_STATUS_INFO, TS_R_NO_TIME_STAMP_TOKEN);
  473. ERR_add_error_data(6,
  474. "status code: ", status_text,
  475. ", status text: ", embedded_status_text ?
  476. embedded_status_text : "unspecified",
  477. ", failure codes: ", failure_text);
  478. OPENSSL_free(embedded_status_text);
  479. return 0;
  480. }
  481. static char *TS_get_status_text(STACK_OF(ASN1_UTF8STRING) *text)
  482. {
  483. int i;
  484. unsigned int length = 0;
  485. char *result = NULL;
  486. char *p;
  487. /* Determine length first. */
  488. for (i = 0; i < sk_ASN1_UTF8STRING_num(text); ++i) {
  489. ASN1_UTF8STRING *current = sk_ASN1_UTF8STRING_value(text, i);
  490. length += ASN1_STRING_length(current);
  491. length += 1; /* separator character */
  492. }
  493. /* Allocate memory (closing '\0' included). */
  494. if (!(result = OPENSSL_malloc(length))) {
  495. TSerr(TS_F_TS_GET_STATUS_TEXT, ERR_R_MALLOC_FAILURE);
  496. return NULL;
  497. }
  498. /* Concatenate the descriptions. */
  499. for (i = 0, p = result; i < sk_ASN1_UTF8STRING_num(text); ++i) {
  500. ASN1_UTF8STRING *current = sk_ASN1_UTF8STRING_value(text, i);
  501. length = ASN1_STRING_length(current);
  502. if (i > 0)
  503. *p++ = '/';
  504. strncpy(p, (const char *)ASN1_STRING_data(current), length);
  505. p += length;
  506. }
  507. /* We do have space for this, too. */
  508. *p = '\0';
  509. return result;
  510. }
  511. static int TS_check_policy(ASN1_OBJECT *req_oid, TS_TST_INFO *tst_info)
  512. {
  513. ASN1_OBJECT *resp_oid = TS_TST_INFO_get_policy_id(tst_info);
  514. if (OBJ_cmp(req_oid, resp_oid) != 0) {
  515. TSerr(TS_F_TS_CHECK_POLICY, TS_R_POLICY_MISMATCH);
  516. return 0;
  517. }
  518. return 1;
  519. }
  520. static int TS_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
  521. X509_ALGOR **md_alg,
  522. unsigned char **imprint, unsigned *imprint_len)
  523. {
  524. TS_MSG_IMPRINT *msg_imprint = TS_TST_INFO_get_msg_imprint(tst_info);
  525. X509_ALGOR *md_alg_resp = TS_MSG_IMPRINT_get_algo(msg_imprint);
  526. const EVP_MD *md;
  527. EVP_MD_CTX md_ctx;
  528. unsigned char buffer[4096];
  529. int length;
  530. *md_alg = NULL;
  531. *imprint = NULL;
  532. /* Return the MD algorithm of the response. */
  533. if (!(*md_alg = X509_ALGOR_dup(md_alg_resp)))
  534. goto err;
  535. /* Getting the MD object. */
  536. if (!(md = EVP_get_digestbyobj((*md_alg)->algorithm))) {
  537. TSerr(TS_F_TS_COMPUTE_IMPRINT, TS_R_UNSUPPORTED_MD_ALGORITHM);
  538. goto err;
  539. }
  540. /* Compute message digest. */
  541. length = EVP_MD_size(md);
  542. if (length < 0)
  543. goto err;
  544. *imprint_len = length;
  545. if (!(*imprint = OPENSSL_malloc(*imprint_len))) {
  546. TSerr(TS_F_TS_COMPUTE_IMPRINT, ERR_R_MALLOC_FAILURE);
  547. goto err;
  548. }
  549. if (!EVP_DigestInit(&md_ctx, md))
  550. goto err;
  551. while ((length = BIO_read(data, buffer, sizeof(buffer))) > 0) {
  552. if (!EVP_DigestUpdate(&md_ctx, buffer, length))
  553. goto err;
  554. }
  555. if (!EVP_DigestFinal(&md_ctx, *imprint, NULL))
  556. goto err;
  557. return 1;
  558. err:
  559. X509_ALGOR_free(*md_alg);
  560. OPENSSL_free(*imprint);
  561. *imprint_len = 0;
  562. *imprint = NULL;
  563. return 0;
  564. }
  565. static int TS_check_imprints(X509_ALGOR *algor_a,
  566. unsigned char *imprint_a, unsigned len_a,
  567. TS_TST_INFO *tst_info)
  568. {
  569. TS_MSG_IMPRINT *b = TS_TST_INFO_get_msg_imprint(tst_info);
  570. X509_ALGOR *algor_b = TS_MSG_IMPRINT_get_algo(b);
  571. int ret = 0;
  572. /* algor_a is optional. */
  573. if (algor_a) {
  574. /* Compare algorithm OIDs. */
  575. if (OBJ_cmp(algor_a->algorithm, algor_b->algorithm))
  576. goto err;
  577. /* The parameter must be NULL in both. */
  578. if ((algor_a->parameter
  579. && ASN1_TYPE_get(algor_a->parameter) != V_ASN1_NULL)
  580. || (algor_b->parameter
  581. && ASN1_TYPE_get(algor_b->parameter) != V_ASN1_NULL))
  582. goto err;
  583. }
  584. /* Compare octet strings. */
  585. ret = len_a == (unsigned)ASN1_STRING_length(b->hashed_msg) &&
  586. memcmp(imprint_a, ASN1_STRING_data(b->hashed_msg), len_a) == 0;
  587. err:
  588. if (!ret)
  589. TSerr(TS_F_TS_CHECK_IMPRINTS, TS_R_MESSAGE_IMPRINT_MISMATCH);
  590. return ret;
  591. }
  592. static int TS_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info)
  593. {
  594. const ASN1_INTEGER *b = TS_TST_INFO_get_nonce(tst_info);
  595. /* Error if nonce is missing. */
  596. if (!b) {
  597. TSerr(TS_F_TS_CHECK_NONCES, TS_R_NONCE_NOT_RETURNED);
  598. return 0;
  599. }
  600. /* No error if a nonce is returned without being requested. */
  601. if (ASN1_INTEGER_cmp(a, b) != 0) {
  602. TSerr(TS_F_TS_CHECK_NONCES, TS_R_NONCE_MISMATCH);
  603. return 0;
  604. }
  605. return 1;
  606. }
  607. /*
  608. * Check if the specified TSA name matches either the subject or one of the
  609. * subject alternative names of the TSA certificate.
  610. */
  611. static int TS_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer)
  612. {
  613. STACK_OF(GENERAL_NAME) *gen_names = NULL;
  614. int idx = -1;
  615. int found = 0;
  616. /* Check the subject name first. */
  617. if (tsa_name->type == GEN_DIRNAME
  618. && X509_name_cmp(tsa_name->d.dirn, signer->cert_info->subject) == 0)
  619. return 1;
  620. /* Check all the alternative names. */
  621. gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name, NULL, &idx);
  622. while (gen_names != NULL
  623. && !(found = TS_find_name(gen_names, tsa_name) >= 0)) {
  624. /*
  625. * Get the next subject alternative name, although there should be no
  626. * more than one.
  627. */
  628. GENERAL_NAMES_free(gen_names);
  629. gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name,
  630. NULL, &idx);
  631. }
  632. if (gen_names)
  633. GENERAL_NAMES_free(gen_names);
  634. return found;
  635. }
  636. /* Returns 1 if name is in gen_names, 0 otherwise. */
  637. static int TS_find_name(STACK_OF(GENERAL_NAME) *gen_names, GENERAL_NAME *name)
  638. {
  639. int i, found;
  640. for (i = 0, found = 0; !found && i < sk_GENERAL_NAME_num(gen_names); ++i) {
  641. GENERAL_NAME *current = sk_GENERAL_NAME_value(gen_names, i);
  642. found = GENERAL_NAME_cmp(current, name) == 0;
  643. }
  644. return found ? i - 1 : -1;
  645. }