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