You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

327 lines
9.8 KiB

  1. /*
  2. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  3. * 1999.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999 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 <openssl/buf.h>
  57. #include <openssl/err.h>
  58. #include <openssl/mem.h>
  59. #include <openssl/obj.h>
  60. #include <openssl/x509v3.h>
  61. static int tr_cmp(const X509_TRUST **a, const X509_TRUST **b);
  62. static void trtable_free(X509_TRUST *p);
  63. static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
  64. static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
  65. static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
  66. static int obj_trust(int id, X509 *x, int flags);
  67. static int (*default_trust) (int id, X509 *x, int flags) = obj_trust;
  68. /*
  69. * WARNING: the following table should be kept in order of trust and without
  70. * any gaps so we can just subtract the minimum trust value to get an index
  71. * into the table
  72. */
  73. static X509_TRUST trstandard[] = {
  74. {X509_TRUST_COMPAT, 0, trust_compat, (char *)"compatible", 0, NULL},
  75. {X509_TRUST_SSL_CLIENT, 0, trust_1oidany, (char *)"SSL Client",
  76. NID_client_auth, NULL},
  77. {X509_TRUST_SSL_SERVER, 0, trust_1oidany, (char *)"SSL Server",
  78. NID_server_auth, NULL},
  79. {X509_TRUST_EMAIL, 0, trust_1oidany, (char *)"S/MIME email",
  80. NID_email_protect, NULL},
  81. {X509_TRUST_OBJECT_SIGN, 0, trust_1oidany, (char *)"Object Signer",
  82. NID_code_sign, NULL},
  83. {X509_TRUST_OCSP_SIGN, 0, trust_1oid, (char *)"OCSP responder",
  84. NID_OCSP_sign, NULL},
  85. {X509_TRUST_OCSP_REQUEST, 0, trust_1oid, (char *)"OCSP request",
  86. NID_ad_OCSP, NULL},
  87. {X509_TRUST_TSA, 0, trust_1oidany, (char *)"TSA server", NID_time_stamp,
  88. NULL}
  89. };
  90. #define X509_TRUST_COUNT (sizeof(trstandard)/sizeof(X509_TRUST))
  91. static STACK_OF(X509_TRUST) *trtable = NULL;
  92. static int tr_cmp(const X509_TRUST **a, const X509_TRUST **b)
  93. {
  94. return (*a)->trust - (*b)->trust;
  95. }
  96. int (*X509_TRUST_set_default(int (*trust) (int, X509 *, int))) (int, X509 *,
  97. int) {
  98. int (*oldtrust) (int, X509 *, int);
  99. oldtrust = default_trust;
  100. default_trust = trust;
  101. return oldtrust;
  102. }
  103. int X509_check_trust(X509 *x, int id, int flags)
  104. {
  105. X509_TRUST *pt;
  106. int idx;
  107. if (id == -1)
  108. return 1;
  109. /* We get this as a default value */
  110. if (id == 0) {
  111. int rv;
  112. rv = obj_trust(NID_anyExtendedKeyUsage, x, 0);
  113. if (rv != X509_TRUST_UNTRUSTED)
  114. return rv;
  115. return trust_compat(NULL, x, 0);
  116. }
  117. idx = X509_TRUST_get_by_id(id);
  118. if (idx == -1)
  119. return default_trust(id, x, flags);
  120. pt = X509_TRUST_get0(idx);
  121. return pt->check_trust(pt, x, flags);
  122. }
  123. int X509_TRUST_get_count(void)
  124. {
  125. if (!trtable)
  126. return X509_TRUST_COUNT;
  127. return sk_X509_TRUST_num(trtable) + X509_TRUST_COUNT;
  128. }
  129. X509_TRUST *X509_TRUST_get0(int idx)
  130. {
  131. if (idx < 0)
  132. return NULL;
  133. if (idx < (int)X509_TRUST_COUNT)
  134. return trstandard + idx;
  135. return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT);
  136. }
  137. int X509_TRUST_get_by_id(int id)
  138. {
  139. X509_TRUST tmp;
  140. size_t idx;
  141. if ((id >= X509_TRUST_MIN) && (id <= X509_TRUST_MAX))
  142. return id - X509_TRUST_MIN;
  143. tmp.trust = id;
  144. if (!trtable)
  145. return -1;
  146. if (!sk_X509_TRUST_find(trtable, &idx, &tmp)) {
  147. return -1;
  148. }
  149. return idx + X509_TRUST_COUNT;
  150. }
  151. int X509_TRUST_set(int *t, int trust)
  152. {
  153. if (X509_TRUST_get_by_id(trust) == -1) {
  154. OPENSSL_PUT_ERROR(X509, X509_R_INVALID_TRUST);
  155. return 0;
  156. }
  157. *t = trust;
  158. return 1;
  159. }
  160. int X509_TRUST_add(int id, int flags, int (*ck) (X509_TRUST *, X509 *, int),
  161. char *name, int arg1, void *arg2)
  162. {
  163. int idx;
  164. X509_TRUST *trtmp;
  165. char *name_dup;
  166. /*
  167. * This is set according to what we change: application can't set it
  168. */
  169. flags &= ~X509_TRUST_DYNAMIC;
  170. /* This will always be set for application modified trust entries */
  171. flags |= X509_TRUST_DYNAMIC_NAME;
  172. /* Get existing entry if any */
  173. idx = X509_TRUST_get_by_id(id);
  174. /* Need a new entry */
  175. if (idx == -1) {
  176. if (!(trtmp = OPENSSL_malloc(sizeof(X509_TRUST)))) {
  177. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  178. return 0;
  179. }
  180. trtmp->flags = X509_TRUST_DYNAMIC;
  181. } else
  182. trtmp = X509_TRUST_get0(idx);
  183. /* Duplicate the supplied name. */
  184. name_dup = BUF_strdup(name);
  185. if (name_dup == NULL) {
  186. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  187. if (idx == -1)
  188. OPENSSL_free(trtmp);
  189. return 0;
  190. }
  191. /* OPENSSL_free existing name if dynamic */
  192. if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
  193. OPENSSL_free(trtmp->name);
  194. trtmp->name = name_dup;
  195. /* Keep the dynamic flag of existing entry */
  196. trtmp->flags &= X509_TRUST_DYNAMIC;
  197. /* Set all other flags */
  198. trtmp->flags |= flags;
  199. trtmp->trust = id;
  200. trtmp->check_trust = ck;
  201. trtmp->arg1 = arg1;
  202. trtmp->arg2 = arg2;
  203. /* If its a new entry manage the dynamic table */
  204. if (idx == -1) {
  205. if (!trtable && !(trtable = sk_X509_TRUST_new(tr_cmp))) {
  206. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  207. trtable_free(trtmp);
  208. return 0;
  209. }
  210. if (!sk_X509_TRUST_push(trtable, trtmp)) {
  211. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  212. trtable_free(trtmp);
  213. return 0;
  214. }
  215. }
  216. return 1;
  217. }
  218. static void trtable_free(X509_TRUST *p)
  219. {
  220. if (!p)
  221. return;
  222. if (p->flags & X509_TRUST_DYNAMIC) {
  223. if (p->flags & X509_TRUST_DYNAMIC_NAME)
  224. OPENSSL_free(p->name);
  225. OPENSSL_free(p);
  226. }
  227. }
  228. void X509_TRUST_cleanup(void)
  229. {
  230. unsigned int i;
  231. for (i = 0; i < X509_TRUST_COUNT; i++)
  232. trtable_free(trstandard + i);
  233. sk_X509_TRUST_pop_free(trtable, trtable_free);
  234. trtable = NULL;
  235. }
  236. int X509_TRUST_get_flags(X509_TRUST *xp)
  237. {
  238. return xp->flags;
  239. }
  240. char *X509_TRUST_get0_name(X509_TRUST *xp)
  241. {
  242. return xp->name;
  243. }
  244. int X509_TRUST_get_trust(X509_TRUST *xp)
  245. {
  246. return xp->trust;
  247. }
  248. static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags)
  249. {
  250. if (x->aux && (x->aux->trust || x->aux->reject))
  251. return obj_trust(trust->arg1, x, flags);
  252. /*
  253. * we don't have any trust settings: for compatibility we return trusted
  254. * if it is self signed
  255. */
  256. return trust_compat(trust, x, flags);
  257. }
  258. static int trust_1oid(X509_TRUST *trust, X509 *x, int flags)
  259. {
  260. if (x->aux)
  261. return obj_trust(trust->arg1, x, flags);
  262. return X509_TRUST_UNTRUSTED;
  263. }
  264. static int trust_compat(X509_TRUST *trust, X509 *x, int flags)
  265. {
  266. X509_check_purpose(x, -1, 0);
  267. if (x->ex_flags & EXFLAG_SS)
  268. return X509_TRUST_TRUSTED;
  269. else
  270. return X509_TRUST_UNTRUSTED;
  271. }
  272. static int obj_trust(int id, X509 *x, int flags)
  273. {
  274. ASN1_OBJECT *obj;
  275. size_t i;
  276. X509_CERT_AUX *ax;
  277. ax = x->aux;
  278. if (!ax)
  279. return X509_TRUST_UNTRUSTED;
  280. if (ax->reject) {
  281. for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
  282. obj = sk_ASN1_OBJECT_value(ax->reject, i);
  283. if (OBJ_obj2nid(obj) == id)
  284. return X509_TRUST_REJECTED;
  285. }
  286. }
  287. if (ax->trust) {
  288. for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
  289. obj = sk_ASN1_OBJECT_value(ax->trust, i);
  290. if (OBJ_obj2nid(obj) == id)
  291. return X509_TRUST_TRUSTED;
  292. }
  293. }
  294. return X509_TRUST_UNTRUSTED;
  295. }