x509_trs.c 9.4 KB

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