v3_purp.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:19k
源码类别:

其他游戏

开发平台:

Visual C++

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