obj_xref.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /* crypto/objects/obj_xref.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 2006.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 2006 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 <openssl/objects.h>
  59. #include "obj_xref.h"
  60. DECLARE_STACK_OF(nid_triple)
  61. STACK_OF(nid_triple) *sig_app, *sigx_app;
  62. static int sig_cmp(const nid_triple *a, const nid_triple *b)
  63. {
  64. return a->sign_id - b->sign_id;
  65. }
  66. DECLARE_OBJ_BSEARCH_CMP_FN(nid_triple, nid_triple, sig);
  67. IMPLEMENT_OBJ_BSEARCH_CMP_FN(nid_triple, nid_triple, sig);
  68. static int sig_sk_cmp(const nid_triple * const *a, const nid_triple * const *b)
  69. {
  70. return (*a)->sign_id - (*b)->sign_id;
  71. }
  72. DECLARE_OBJ_BSEARCH_CMP_FN(const nid_triple *, const nid_triple *, sigx);
  73. static int sigx_cmp(const nid_triple * const *a, const nid_triple * const *b)
  74. {
  75. int ret;
  76. ret = (*a)->hash_id - (*b)->hash_id;
  77. if (ret)
  78. return ret;
  79. return (*a)->pkey_id - (*b)->pkey_id;
  80. }
  81. IMPLEMENT_OBJ_BSEARCH_CMP_FN(const nid_triple *, const nid_triple *, sigx);
  82. int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid)
  83. {
  84. nid_triple tmp;
  85. const nid_triple *rv = NULL;
  86. tmp.sign_id = signid;
  87. if (sig_app)
  88. {
  89. int idx = sk_nid_triple_find(sig_app, &tmp);
  90. if (idx >= 0)
  91. rv = sk_nid_triple_value(sig_app, idx);
  92. }
  93. #ifndef OBJ_XREF_TEST2
  94. if (rv == NULL)
  95. {
  96. rv = OBJ_bsearch_sig(&tmp, sigoid_srt,
  97. sizeof(sigoid_srt) / sizeof(nid_triple));
  98. }
  99. #endif
  100. if (rv == NULL)
  101. return 0;
  102. *pdig_nid = rv->hash_id;
  103. *ppkey_nid = rv->pkey_id;
  104. return 1;
  105. }
  106. int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid)
  107. {
  108. nid_triple tmp;
  109. const nid_triple *t=&tmp;
  110. const nid_triple **rv = NULL;
  111. tmp.hash_id = dig_nid;
  112. tmp.pkey_id = pkey_nid;
  113. if (sigx_app)
  114. {
  115. int idx = sk_nid_triple_find(sigx_app, &tmp);
  116. if (idx >= 0)
  117. {
  118. t = sk_nid_triple_value(sigx_app, idx);
  119. rv = &t;
  120. }
  121. }
  122. #ifndef OBJ_XREF_TEST2
  123. if (rv == NULL)
  124. {
  125. rv = OBJ_bsearch_sigx(&t, sigoid_srt_xref,
  126. sizeof(sigoid_srt_xref) / sizeof(nid_triple *)
  127. );
  128. }
  129. #endif
  130. if (rv == NULL)
  131. return 0;
  132. *psignid = (*rv)->sign_id;
  133. return 1;
  134. }
  135. int OBJ_add_sigid(int signid, int dig_id, int pkey_id)
  136. {
  137. nid_triple *ntr;
  138. if (!sig_app)
  139. sig_app = sk_nid_triple_new(sig_sk_cmp);
  140. if (!sig_app)
  141. return 0;
  142. if (!sigx_app)
  143. sigx_app = sk_nid_triple_new(sigx_cmp);
  144. if (!sigx_app)
  145. return 0;
  146. ntr = OPENSSL_malloc(sizeof(int) * 3);
  147. if (!ntr)
  148. return 0;
  149. ntr->sign_id = signid;
  150. ntr->hash_id = dig_id;
  151. ntr->pkey_id = pkey_id;
  152. if (!sk_nid_triple_push(sig_app, ntr))
  153. {
  154. OPENSSL_free(ntr);
  155. return 0;
  156. }
  157. if (!sk_nid_triple_push(sigx_app, ntr))
  158. return 0;
  159. sk_nid_triple_sort(sig_app);
  160. sk_nid_triple_sort(sigx_app);
  161. return 1;
  162. }
  163. static void sid_free(nid_triple *tt)
  164. {
  165. OPENSSL_free(tt);
  166. }
  167. void OBJ_sigid_free(void)
  168. {
  169. if (sig_app)
  170. {
  171. sk_nid_triple_pop_free(sig_app, sid_free);
  172. sig_app = NULL;
  173. }
  174. if (sigx_app)
  175. {
  176. sk_nid_triple_free(sigx_app);
  177. sigx_app = NULL;
  178. }
  179. }
  180. #ifdef OBJ_XREF_TEST
  181. main()
  182. {
  183. int n1, n2, n3;
  184. int i, rv;
  185. #ifdef OBJ_XREF_TEST2
  186. for (i = 0; i < sizeof(sigoid_srt) / sizeof(nid_triple); i++)
  187. {
  188. OBJ_add_sigid(sigoid_srt[i][0], sigoid_srt[i][1],
  189. sigoid_srt[i][2]);
  190. }
  191. #endif
  192. for (i = 0; i < sizeof(sigoid_srt) / sizeof(nid_triple); i++)
  193. {
  194. n1 = sigoid_srt[i][0];
  195. rv = OBJ_find_sigid_algs(n1, &n2, &n3);
  196. printf("Forward: %d, %s %s %s\n", rv,
  197. OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
  198. n1=0;
  199. rv = OBJ_find_sigid_by_algs(&n1, n2, n3);
  200. printf("Reverse: %d, %s %s %s\n", rv,
  201. OBJ_nid2ln(n1), OBJ_nid2ln(n2), OBJ_nid2ln(n3));
  202. }
  203. }
  204. #endif