Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

805 строки
24 KiB

  1. /* v3_purp.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 2001.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * licensing@OpenSSL.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com). */
  56. #include <stdio.h>
  57. #include <string.h>
  58. #include <openssl/buf.h>
  59. #include <openssl/err.h>
  60. #include <openssl/digest.h>
  61. #include <openssl/mem.h>
  62. #include <openssl/obj.h>
  63. #include <openssl/thread.h>
  64. #include <openssl/x509_vfy.h>
  65. #include <openssl/x509v3.h>
  66. #include "../internal.h"
  67. static void x509v3_cache_extensions(X509 *x);
  68. static int check_ssl_ca(const X509 *x);
  69. static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
  70. static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
  71. static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
  72. static int purpose_smime(const X509 *x, int ca);
  73. static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
  74. static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
  75. static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
  76. static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
  77. static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
  78. static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
  79. static int xp_cmp(const X509_PURPOSE **a, const X509_PURPOSE **b);
  80. static void xptable_free(X509_PURPOSE *p);
  81. static X509_PURPOSE xstandard[] = {
  82. {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0, check_purpose_ssl_client, (char *) "SSL client", (char *) "sslclient", NULL},
  83. {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ssl_server, (char *) "SSL server", (char *) "sslserver", NULL},
  84. {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0, check_purpose_ns_ssl_server, (char *) "Netscape SSL server", (char *) "nssslserver", NULL},
  85. {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign, (char *) "S/MIME signing", (char *) "smimesign", NULL},
  86. {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0, check_purpose_smime_encrypt, (char *) "S/MIME encryption", (char *) "smimeencrypt", NULL},
  87. {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign, (char *) "CRL signing", (char *) "crlsign", NULL},
  88. {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, (char *) "Any Purpose", (char *) "any", NULL},
  89. {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper, (char *) "OCSP helper", (char *) "ocsphelper", NULL},
  90. {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0, check_purpose_timestamp_sign, (char *) "Time Stamp signing", (char *) "timestampsign", NULL},
  91. };
  92. #define X509_PURPOSE_COUNT (sizeof(xstandard)/sizeof(X509_PURPOSE))
  93. static STACK_OF(X509_PURPOSE) *xptable = NULL;
  94. static int xp_cmp(const X509_PURPOSE **a, const X509_PURPOSE **b)
  95. {
  96. return (*a)->purpose - (*b)->purpose;
  97. }
  98. /* As much as I'd like to make X509_check_purpose use a "const" X509*
  99. * I really can't because it does recalculate hashes and do other non-const
  100. * things. */
  101. int X509_check_purpose(X509 *x, int id, int ca)
  102. {
  103. int idx;
  104. const X509_PURPOSE *pt;
  105. if(!(x->ex_flags & EXFLAG_SET)) {
  106. x509v3_cache_extensions(x);
  107. }
  108. if(id == -1) return 1;
  109. idx = X509_PURPOSE_get_by_id(id);
  110. if(idx == -1) return -1;
  111. pt = X509_PURPOSE_get0(idx);
  112. return pt->check_purpose(pt, x, ca);
  113. }
  114. int X509_PURPOSE_set(int *p, int purpose)
  115. {
  116. if(X509_PURPOSE_get_by_id(purpose) == -1) {
  117. OPENSSL_PUT_ERROR(X509V3, X509_PURPOSE_set, X509V3_R_INVALID_PURPOSE);
  118. return 0;
  119. }
  120. *p = purpose;
  121. return 1;
  122. }
  123. int X509_PURPOSE_get_count(void)
  124. {
  125. if(!xptable) return X509_PURPOSE_COUNT;
  126. return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT;
  127. }
  128. X509_PURPOSE * X509_PURPOSE_get0(int idx)
  129. {
  130. if(idx < 0) return NULL;
  131. if(idx < (int)X509_PURPOSE_COUNT) return xstandard + idx;
  132. return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
  133. }
  134. int X509_PURPOSE_get_by_sname(char *sname)
  135. {
  136. int i;
  137. X509_PURPOSE *xptmp;
  138. for(i = 0; i < X509_PURPOSE_get_count(); i++) {
  139. xptmp = X509_PURPOSE_get0(i);
  140. if(!strcmp(xptmp->sname, sname)) return i;
  141. }
  142. return -1;
  143. }
  144. int X509_PURPOSE_get_by_id(int purpose)
  145. {
  146. X509_PURPOSE tmp;
  147. size_t idx;
  148. if((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
  149. return purpose - X509_PURPOSE_MIN;
  150. tmp.purpose = purpose;
  151. if(!xptable) return -1;
  152. if (!sk_X509_PURPOSE_find(xptable, &idx, &tmp))
  153. return -1;
  154. return idx + X509_PURPOSE_COUNT;
  155. }
  156. int X509_PURPOSE_add(int id, int trust, int flags,
  157. int (*ck)(const X509_PURPOSE *, const X509 *, int),
  158. char *name, char *sname, void *arg)
  159. {
  160. int idx;
  161. X509_PURPOSE *ptmp;
  162. char *name_dup, *sname_dup;
  163. /* This is set according to what we change: application can't set it */
  164. flags &= ~X509_PURPOSE_DYNAMIC;
  165. /* This will always be set for application modified trust entries */
  166. flags |= X509_PURPOSE_DYNAMIC_NAME;
  167. /* Get existing entry if any */
  168. idx = X509_PURPOSE_get_by_id(id);
  169. /* Need a new entry */
  170. if(idx == -1) {
  171. if(!(ptmp = OPENSSL_malloc(sizeof(X509_PURPOSE)))) {
  172. OPENSSL_PUT_ERROR(X509V3, X509_PURPOSE_add, ERR_R_MALLOC_FAILURE);
  173. return 0;
  174. }
  175. ptmp->flags = X509_PURPOSE_DYNAMIC;
  176. } else ptmp = X509_PURPOSE_get0(idx);
  177. /* Duplicate the supplied names. */
  178. name_dup = BUF_strdup(name);
  179. sname_dup = BUF_strdup(sname);
  180. if (name_dup == NULL || sname_dup == NULL) {
  181. OPENSSL_PUT_ERROR(X509V3, X509_PURPOSE_add, ERR_R_MALLOC_FAILURE);
  182. if (name_dup != NULL)
  183. OPENSSL_free(name_dup);
  184. if (sname_dup != NULL)
  185. OPENSSL_free(sname_dup);
  186. if (idx == -1)
  187. OPENSSL_free(ptmp);
  188. return 0;
  189. }
  190. /* OPENSSL_free existing name if dynamic */
  191. if(ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) {
  192. OPENSSL_free(ptmp->name);
  193. OPENSSL_free(ptmp->sname);
  194. }
  195. /* dup supplied name */
  196. ptmp->name = name_dup;
  197. ptmp->sname = sname_dup;
  198. /* Keep the dynamic flag of existing entry */
  199. ptmp->flags &= X509_PURPOSE_DYNAMIC;
  200. /* Set all other flags */
  201. ptmp->flags |= flags;
  202. ptmp->purpose = id;
  203. ptmp->trust = trust;
  204. ptmp->check_purpose = ck;
  205. ptmp->usr_data = arg;
  206. /* If its a new entry manage the dynamic table */
  207. if(idx == -1) {
  208. if(!xptable && !(xptable = sk_X509_PURPOSE_new(xp_cmp))) {
  209. OPENSSL_PUT_ERROR(X509V3, X509_PURPOSE_add, ERR_R_MALLOC_FAILURE);
  210. xptable_free(ptmp);
  211. return 0;
  212. }
  213. if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
  214. OPENSSL_PUT_ERROR(X509V3, X509_PURPOSE_add, ERR_R_MALLOC_FAILURE);
  215. xptable_free(ptmp);
  216. return 0;
  217. }
  218. }
  219. return 1;
  220. }
  221. static void xptable_free(X509_PURPOSE *p)
  222. {
  223. if(!p) return;
  224. if (p->flags & X509_PURPOSE_DYNAMIC)
  225. {
  226. if (p->flags & X509_PURPOSE_DYNAMIC_NAME) {
  227. OPENSSL_free(p->name);
  228. OPENSSL_free(p->sname);
  229. }
  230. OPENSSL_free(p);
  231. }
  232. }
  233. void X509_PURPOSE_cleanup(void)
  234. {
  235. unsigned int i;
  236. sk_X509_PURPOSE_pop_free(xptable, xptable_free);
  237. for(i = 0; i < X509_PURPOSE_COUNT; i++) xptable_free(xstandard + i);
  238. xptable = NULL;
  239. }
  240. int X509_PURPOSE_get_id(X509_PURPOSE *xp)
  241. {
  242. return xp->purpose;
  243. }
  244. char *X509_PURPOSE_get0_name(X509_PURPOSE *xp)
  245. {
  246. return xp->name;
  247. }
  248. char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp)
  249. {
  250. return xp->sname;
  251. }
  252. int X509_PURPOSE_get_trust(X509_PURPOSE *xp)
  253. {
  254. return xp->trust;
  255. }
  256. static int nid_cmp(const void *void_a, const void *void_b)
  257. {
  258. const int *a = void_a, *b = void_b;
  259. return *a - *b;
  260. }
  261. int X509_supported_extension(X509_EXTENSION *ex)
  262. {
  263. /* This table is a list of the NIDs of supported extensions:
  264. * that is those which are used by the verify process. If
  265. * an extension is critical and doesn't appear in this list
  266. * then the verify process will normally reject the certificate.
  267. * The list must be kept in numerical order because it will be
  268. * searched using bsearch.
  269. */
  270. static const int supported_nids[] = {
  271. NID_netscape_cert_type, /* 71 */
  272. NID_key_usage, /* 83 */
  273. NID_subject_alt_name, /* 85 */
  274. NID_basic_constraints, /* 87 */
  275. NID_certificate_policies, /* 89 */
  276. NID_ext_key_usage, /* 126 */
  277. NID_policy_constraints, /* 401 */
  278. NID_proxyCertInfo, /* 663 */
  279. NID_name_constraints, /* 666 */
  280. NID_policy_mappings, /* 747 */
  281. NID_inhibit_any_policy /* 748 */
  282. };
  283. int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
  284. if (ex_nid == NID_undef)
  285. return 0;
  286. if (bsearch(&ex_nid, supported_nids, sizeof(supported_nids)/sizeof(int), sizeof(int), nid_cmp) != NULL)
  287. return 1;
  288. return 0;
  289. }
  290. static void setup_dp(X509 *x, DIST_POINT *dp)
  291. {
  292. X509_NAME *iname = NULL;
  293. size_t i;
  294. if (dp->reasons)
  295. {
  296. if (dp->reasons->length > 0)
  297. dp->dp_reasons = dp->reasons->data[0];
  298. if (dp->reasons->length > 1)
  299. dp->dp_reasons |= (dp->reasons->data[1] << 8);
  300. dp->dp_reasons &= CRLDP_ALL_REASONS;
  301. }
  302. else
  303. dp->dp_reasons = CRLDP_ALL_REASONS;
  304. if (!dp->distpoint || (dp->distpoint->type != 1))
  305. return;
  306. for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++)
  307. {
  308. GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
  309. if (gen->type == GEN_DIRNAME)
  310. {
  311. iname = gen->d.directoryName;
  312. break;
  313. }
  314. }
  315. if (!iname)
  316. iname = X509_get_issuer_name(x);
  317. DIST_POINT_set_dpname(dp->distpoint, iname);
  318. }
  319. static void setup_crldp(X509 *x)
  320. {
  321. size_t i;
  322. x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
  323. for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++)
  324. setup_dp(x, sk_DIST_POINT_value(x->crldp, i));
  325. }
  326. /* g_x509_cache_extensions_lock is used to protect against concurrent calls to
  327. * |x509v3_cache_extensions|. Ideally this would be done with a |CRYPTO_once_t|
  328. * in the |X509| structure, but |CRYPTO_once_t| isn't public.
  329. *
  330. * Note: it's not entirely clear whether this lock is needed. Not all paths to
  331. * this function took a lock in OpenSSL. */
  332. static struct CRYPTO_STATIC_MUTEX g_x509_cache_extensions_lock =
  333. CRYPTO_STATIC_MUTEX_INIT;
  334. static void x509v3_cache_extensions(X509 *x)
  335. {
  336. BASIC_CONSTRAINTS *bs;
  337. PROXY_CERT_INFO_EXTENSION *pci;
  338. ASN1_BIT_STRING *usage;
  339. ASN1_BIT_STRING *ns;
  340. EXTENDED_KEY_USAGE *extusage;
  341. X509_EXTENSION *ex;
  342. size_t i;
  343. int j;
  344. CRYPTO_STATIC_MUTEX_lock_write(&g_x509_cache_extensions_lock);
  345. if(x->ex_flags & EXFLAG_SET)
  346. {
  347. CRYPTO_STATIC_MUTEX_unlock(&g_x509_cache_extensions_lock);
  348. return;
  349. }
  350. X509_digest(x, EVP_sha1(), x->sha1_hash, NULL);
  351. /* V1 should mean no extensions ... */
  352. if(!X509_get_version(x)) x->ex_flags |= EXFLAG_V1;
  353. /* Handle basic constraints */
  354. if((bs=X509_get_ext_d2i(x, NID_basic_constraints, NULL, NULL))) {
  355. if(bs->ca) x->ex_flags |= EXFLAG_CA;
  356. if(bs->pathlen) {
  357. if((bs->pathlen->type == V_ASN1_NEG_INTEGER)
  358. || !bs->ca) {
  359. x->ex_flags |= EXFLAG_INVALID;
  360. x->ex_pathlen = 0;
  361. } else x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
  362. } else x->ex_pathlen = -1;
  363. BASIC_CONSTRAINTS_free(bs);
  364. x->ex_flags |= EXFLAG_BCONS;
  365. }
  366. /* Handle proxy certificates */
  367. if((pci=X509_get_ext_d2i(x, NID_proxyCertInfo, NULL, NULL))) {
  368. if (x->ex_flags & EXFLAG_CA
  369. || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0
  370. || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) {
  371. x->ex_flags |= EXFLAG_INVALID;
  372. }
  373. if (pci->pcPathLengthConstraint) {
  374. x->ex_pcpathlen =
  375. ASN1_INTEGER_get(pci->pcPathLengthConstraint);
  376. } else x->ex_pcpathlen = -1;
  377. PROXY_CERT_INFO_EXTENSION_free(pci);
  378. x->ex_flags |= EXFLAG_PROXY;
  379. }
  380. /* Handle key usage */
  381. if((usage=X509_get_ext_d2i(x, NID_key_usage, NULL, NULL))) {
  382. if(usage->length > 0) {
  383. x->ex_kusage = usage->data[0];
  384. if(usage->length > 1)
  385. x->ex_kusage |= usage->data[1] << 8;
  386. } else x->ex_kusage = 0;
  387. x->ex_flags |= EXFLAG_KUSAGE;
  388. ASN1_BIT_STRING_free(usage);
  389. }
  390. x->ex_xkusage = 0;
  391. if((extusage=X509_get_ext_d2i(x, NID_ext_key_usage, NULL, NULL))) {
  392. x->ex_flags |= EXFLAG_XKUSAGE;
  393. for(i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
  394. switch(OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage,i))) {
  395. case NID_server_auth:
  396. x->ex_xkusage |= XKU_SSL_SERVER;
  397. break;
  398. case NID_client_auth:
  399. x->ex_xkusage |= XKU_SSL_CLIENT;
  400. break;
  401. case NID_email_protect:
  402. x->ex_xkusage |= XKU_SMIME;
  403. break;
  404. case NID_code_sign:
  405. x->ex_xkusage |= XKU_CODE_SIGN;
  406. break;
  407. case NID_ms_sgc:
  408. case NID_ns_sgc:
  409. x->ex_xkusage |= XKU_SGC;
  410. break;
  411. case NID_OCSP_sign:
  412. x->ex_xkusage |= XKU_OCSP_SIGN;
  413. break;
  414. case NID_time_stamp:
  415. x->ex_xkusage |= XKU_TIMESTAMP;
  416. break;
  417. case NID_dvcs:
  418. x->ex_xkusage |= XKU_DVCS;
  419. break;
  420. case NID_anyExtendedKeyUsage:
  421. x->ex_xkusage |= XKU_ANYEKU;
  422. break;
  423. }
  424. }
  425. sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
  426. }
  427. if((ns=X509_get_ext_d2i(x, NID_netscape_cert_type, NULL, NULL))) {
  428. if(ns->length > 0) x->ex_nscert = ns->data[0];
  429. else x->ex_nscert = 0;
  430. x->ex_flags |= EXFLAG_NSCERT;
  431. ASN1_BIT_STRING_free(ns);
  432. }
  433. x->skid =X509_get_ext_d2i(x, NID_subject_key_identifier, NULL, NULL);
  434. x->akid =X509_get_ext_d2i(x, NID_authority_key_identifier, NULL, NULL);
  435. /* Does subject name match issuer ? */
  436. if(!X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x)))
  437. {
  438. x->ex_flags |= EXFLAG_SI;
  439. /* If SKID matches AKID also indicate self signed */
  440. if (X509_check_akid(x, x->akid) == X509_V_OK)
  441. x->ex_flags |= EXFLAG_SS;
  442. }
  443. x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
  444. x->nc = X509_get_ext_d2i(x, NID_name_constraints, &j, NULL);
  445. if (!x->nc && (j != -1))
  446. x->ex_flags |= EXFLAG_INVALID;
  447. setup_crldp(x);
  448. for (j = 0; j < X509_get_ext_count(x); j++)
  449. {
  450. ex = X509_get_ext(x, j);
  451. if (OBJ_obj2nid(X509_EXTENSION_get_object(ex))
  452. == NID_freshest_crl)
  453. x->ex_flags |= EXFLAG_FRESHEST;
  454. if (!X509_EXTENSION_get_critical(ex))
  455. continue;
  456. if (!X509_supported_extension(ex))
  457. {
  458. x->ex_flags |= EXFLAG_CRITICAL;
  459. break;
  460. }
  461. }
  462. x->ex_flags |= EXFLAG_SET;
  463. CRYPTO_STATIC_MUTEX_unlock(&g_x509_cache_extensions_lock);
  464. }
  465. /* CA checks common to all purposes
  466. * return codes:
  467. * 0 not a CA
  468. * 1 is a CA
  469. * 2 basicConstraints absent so "maybe" a CA
  470. * 3 basicConstraints absent but self signed V1.
  471. * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
  472. */
  473. #define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
  474. #define ku_reject(x, usage) \
  475. (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
  476. #define xku_reject(x, usage) \
  477. (((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
  478. #define ns_reject(x, usage) \
  479. (((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
  480. static int check_ca(const X509 *x)
  481. {
  482. /* keyUsage if present should allow cert signing */
  483. if(ku_reject(x, KU_KEY_CERT_SIGN)) return 0;
  484. if(x->ex_flags & EXFLAG_BCONS) {
  485. if(x->ex_flags & EXFLAG_CA) return 1;
  486. /* If basicConstraints says not a CA then say so */
  487. else return 0;
  488. } else {
  489. /* we support V1 roots for... uh, I don't really know why. */
  490. if((x->ex_flags & V1_ROOT) == V1_ROOT) return 3;
  491. /* If key usage present it must have certSign so tolerate it */
  492. else if (x->ex_flags & EXFLAG_KUSAGE) return 4;
  493. /* Older certificates could have Netscape-specific CA types */
  494. else if (x->ex_flags & EXFLAG_NSCERT
  495. && x->ex_nscert & NS_ANY_CA) return 5;
  496. /* can this still be regarded a CA certificate? I doubt it */
  497. return 0;
  498. }
  499. }
  500. int X509_check_ca(X509 *x)
  501. {
  502. if(!(x->ex_flags & EXFLAG_SET)) {
  503. x509v3_cache_extensions(x);
  504. }
  505. return check_ca(x);
  506. }
  507. /* Check SSL CA: common checks for SSL client and server */
  508. static int check_ssl_ca(const X509 *x)
  509. {
  510. int ca_ret;
  511. ca_ret = check_ca(x);
  512. if(!ca_ret) return 0;
  513. /* check nsCertType if present */
  514. if(ca_ret != 5 || x->ex_nscert & NS_SSL_CA) return ca_ret;
  515. else return 0;
  516. }
  517. static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca)
  518. {
  519. if(xku_reject(x,XKU_SSL_CLIENT)) return 0;
  520. if(ca) return check_ssl_ca(x);
  521. /* We need to do digital signatures or key agreement */
  522. if(ku_reject(x,KU_DIGITAL_SIGNATURE|KU_KEY_AGREEMENT)) return 0;
  523. /* nsCertType if present should allow SSL client use */
  524. if(ns_reject(x, NS_SSL_CLIENT)) return 0;
  525. return 1;
  526. }
  527. /* Key usage needed for TLS/SSL server: digital signature, encipherment or
  528. * key agreement. The ssl code can check this more thoroughly for individual
  529. * key types.
  530. */
  531. #define KU_TLS \
  532. KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT|KU_KEY_AGREEMENT
  533. static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca)
  534. {
  535. if(xku_reject(x,XKU_SSL_SERVER|XKU_SGC)) return 0;
  536. if(ca) return check_ssl_ca(x);
  537. if(ns_reject(x, NS_SSL_SERVER)) return 0;
  538. if(ku_reject(x, KU_TLS)) return 0;
  539. return 1;
  540. }
  541. static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca)
  542. {
  543. int ret;
  544. ret = check_purpose_ssl_server(xp, x, ca);
  545. if(!ret || ca) return ret;
  546. /* We need to encipher or Netscape complains */
  547. if(ku_reject(x, KU_KEY_ENCIPHERMENT)) return 0;
  548. return ret;
  549. }
  550. /* common S/MIME checks */
  551. static int purpose_smime(const X509 *x, int ca)
  552. {
  553. if(xku_reject(x,XKU_SMIME)) return 0;
  554. if(ca) {
  555. int ca_ret;
  556. ca_ret = check_ca(x);
  557. if(!ca_ret) return 0;
  558. /* check nsCertType if present */
  559. if(ca_ret != 5 || x->ex_nscert & NS_SMIME_CA) return ca_ret;
  560. else return 0;
  561. }
  562. if(x->ex_flags & EXFLAG_NSCERT) {
  563. if(x->ex_nscert & NS_SMIME) return 1;
  564. /* Workaround for some buggy certificates */
  565. if(x->ex_nscert & NS_SSL_CLIENT) return 2;
  566. return 0;
  567. }
  568. return 1;
  569. }
  570. static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca)
  571. {
  572. int ret;
  573. ret = purpose_smime(x, ca);
  574. if(!ret || ca) return ret;
  575. if(ku_reject(x, KU_DIGITAL_SIGNATURE|KU_NON_REPUDIATION)) return 0;
  576. return ret;
  577. }
  578. static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca)
  579. {
  580. int ret;
  581. ret = purpose_smime(x, ca);
  582. if(!ret || ca) return ret;
  583. if(ku_reject(x, KU_KEY_ENCIPHERMENT)) return 0;
  584. return ret;
  585. }
  586. static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca)
  587. {
  588. if(ca) {
  589. int ca_ret;
  590. if((ca_ret = check_ca(x)) != 2) return ca_ret;
  591. else return 0;
  592. }
  593. if(ku_reject(x, KU_CRL_SIGN)) return 0;
  594. return 1;
  595. }
  596. /* OCSP helper: this is *not* a full OCSP check. It just checks that
  597. * each CA is valid. Additional checks must be made on the chain.
  598. */
  599. static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
  600. {
  601. /* Must be a valid CA. Should we really support the "I don't know"
  602. value (2)? */
  603. if(ca) return check_ca(x);
  604. /* leaf certificate is checked in OCSP_verify() */
  605. return 1;
  606. }
  607. static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
  608. int ca)
  609. {
  610. int i_ext;
  611. /* If ca is true we must return if this is a valid CA certificate. */
  612. if (ca) return check_ca(x);
  613. /*
  614. * Check the optional key usage field:
  615. * if Key Usage is present, it must be one of digitalSignature
  616. * and/or nonRepudiation (other values are not consistent and shall
  617. * be rejected).
  618. */
  619. if ((x->ex_flags & EXFLAG_KUSAGE)
  620. && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) ||
  621. !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE))))
  622. return 0;
  623. /* Only time stamp key usage is permitted and it's required. */
  624. if (!(x->ex_flags & EXFLAG_XKUSAGE) || x->ex_xkusage != XKU_TIMESTAMP)
  625. return 0;
  626. /* Extended Key Usage MUST be critical */
  627. i_ext = X509_get_ext_by_NID((X509 *) x, NID_ext_key_usage, -1);
  628. if (i_ext >= 0)
  629. {
  630. X509_EXTENSION *ext = X509_get_ext((X509 *) x, i_ext);
  631. if (!X509_EXTENSION_get_critical(ext))
  632. return 0;
  633. }
  634. return 1;
  635. }
  636. static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
  637. {
  638. return 1;
  639. }
  640. /* Various checks to see if one certificate issued the second.
  641. * This can be used to prune a set of possible issuer certificates
  642. * which have been looked up using some simple method such as by
  643. * subject name.
  644. * These are:
  645. * 1. Check issuer_name(subject) == subject_name(issuer)
  646. * 2. If akid(subject) exists check it matches issuer
  647. * 3. If key_usage(issuer) exists check it supports certificate signing
  648. * returns 0 for OK, positive for reason for mismatch, reasons match
  649. * codes for X509_verify_cert()
  650. */
  651. int X509_check_issued(X509 *issuer, X509 *subject)
  652. {
  653. if(X509_NAME_cmp(X509_get_subject_name(issuer),
  654. X509_get_issuer_name(subject)))
  655. return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
  656. x509v3_cache_extensions(issuer);
  657. x509v3_cache_extensions(subject);
  658. if(subject->akid)
  659. {
  660. int ret = X509_check_akid(issuer, subject->akid);
  661. if (ret != X509_V_OK)
  662. return ret;
  663. }
  664. if(subject->ex_flags & EXFLAG_PROXY)
  665. {
  666. if(ku_reject(issuer, KU_DIGITAL_SIGNATURE))
  667. return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
  668. }
  669. else if(ku_reject(issuer, KU_KEY_CERT_SIGN))
  670. return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
  671. return X509_V_OK;
  672. }
  673. int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid)
  674. {
  675. if(!akid)
  676. return X509_V_OK;
  677. /* Check key ids (if present) */
  678. if(akid->keyid && issuer->skid &&
  679. ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid) )
  680. return X509_V_ERR_AKID_SKID_MISMATCH;
  681. /* Check serial number */
  682. if(akid->serial &&
  683. ASN1_INTEGER_cmp(X509_get_serialNumber(issuer), akid->serial))
  684. return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
  685. /* Check issuer name */
  686. if(akid->issuer)
  687. {
  688. /* Ugh, for some peculiar reason AKID includes
  689. * SEQUENCE OF GeneralName. So look for a DirName.
  690. * There may be more than one but we only take any
  691. * notice of the first.
  692. */
  693. GENERAL_NAMES *gens;
  694. GENERAL_NAME *gen;
  695. X509_NAME *nm = NULL;
  696. size_t i;
  697. gens = akid->issuer;
  698. for(i = 0; i < sk_GENERAL_NAME_num(gens); i++)
  699. {
  700. gen = sk_GENERAL_NAME_value(gens, i);
  701. if(gen->type == GEN_DIRNAME)
  702. {
  703. nm = gen->d.dirn;
  704. break;
  705. }
  706. }
  707. if(nm && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)))
  708. return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
  709. }
  710. return X509_V_OK;
  711. }