Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

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