sl@0
|
1 |
/* crypto/asn1/a_set.c */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
#include <stdio.h>
|
sl@0
|
60 |
#include "cryptlib.h"
|
sl@0
|
61 |
#include <openssl/asn1_mac.h>
|
sl@0
|
62 |
|
sl@0
|
63 |
#ifndef NO_ASN1_OLD
|
sl@0
|
64 |
|
sl@0
|
65 |
typedef struct
|
sl@0
|
66 |
{
|
sl@0
|
67 |
unsigned char *pbData;
|
sl@0
|
68 |
int cbData;
|
sl@0
|
69 |
} MYBLOB;
|
sl@0
|
70 |
|
sl@0
|
71 |
/* SetBlobCmp
|
sl@0
|
72 |
* This function compares two elements of SET_OF block
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
static int SetBlobCmp(const void *elem1, const void *elem2 )
|
sl@0
|
75 |
{
|
sl@0
|
76 |
const MYBLOB *b1 = (const MYBLOB *)elem1;
|
sl@0
|
77 |
const MYBLOB *b2 = (const MYBLOB *)elem2;
|
sl@0
|
78 |
int r;
|
sl@0
|
79 |
|
sl@0
|
80 |
r = memcmp(b1->pbData, b2->pbData,
|
sl@0
|
81 |
b1->cbData < b2->cbData ? b1->cbData : b2->cbData);
|
sl@0
|
82 |
if(r != 0)
|
sl@0
|
83 |
return r;
|
sl@0
|
84 |
return b1->cbData-b2->cbData;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
/* int is_set: if TRUE, then sort the contents (i.e. it isn't a SEQUENCE) */
|
sl@0
|
88 |
EXPORT_C int i2d_ASN1_SET(STACK *a, unsigned char **pp, i2d_of_void *i2d, int ex_tag,
|
sl@0
|
89 |
int ex_class, int is_set)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
int ret=0,r;
|
sl@0
|
92 |
int i;
|
sl@0
|
93 |
unsigned char *p;
|
sl@0
|
94 |
unsigned char *pStart, *pTempMem;
|
sl@0
|
95 |
MYBLOB *rgSetBlob;
|
sl@0
|
96 |
int totSize;
|
sl@0
|
97 |
|
sl@0
|
98 |
if (a == NULL) return(0);
|
sl@0
|
99 |
for (i=sk_num(a)-1; i>=0; i--)
|
sl@0
|
100 |
ret+=i2d(sk_value(a,i),NULL);
|
sl@0
|
101 |
r=ASN1_object_size(1,ret,ex_tag);
|
sl@0
|
102 |
if (pp == NULL) return(r);
|
sl@0
|
103 |
|
sl@0
|
104 |
p= *pp;
|
sl@0
|
105 |
ASN1_put_object(&p,1,ret,ex_tag,ex_class);
|
sl@0
|
106 |
|
sl@0
|
107 |
/* Modified by gp@nsj.co.jp */
|
sl@0
|
108 |
/* And then again by Ben */
|
sl@0
|
109 |
/* And again by Steve */
|
sl@0
|
110 |
|
sl@0
|
111 |
if(!is_set || (sk_num(a) < 2))
|
sl@0
|
112 |
{
|
sl@0
|
113 |
for (i=0; i<sk_num(a); i++)
|
sl@0
|
114 |
i2d(sk_value(a,i),&p);
|
sl@0
|
115 |
|
sl@0
|
116 |
*pp=p;
|
sl@0
|
117 |
return(r);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
pStart = p; /* Catch the beg of Setblobs*/
|
sl@0
|
121 |
/* In this array we will store the SET blobs */
|
sl@0
|
122 |
rgSetBlob = (MYBLOB *)OPENSSL_malloc(sk_num(a) * sizeof(MYBLOB));
|
sl@0
|
123 |
if (rgSetBlob == NULL)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
ASN1err(ASN1_F_I2D_ASN1_SET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
126 |
return(0);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
for (i=0; i<sk_num(a); i++)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
rgSetBlob[i].pbData = p; /* catch each set encode blob */
|
sl@0
|
132 |
i2d(sk_value(a,i),&p);
|
sl@0
|
133 |
rgSetBlob[i].cbData = p - rgSetBlob[i].pbData; /* Length of this
|
sl@0
|
134 |
SetBlob
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
}
|
sl@0
|
137 |
*pp=p;
|
sl@0
|
138 |
totSize = p - pStart; /* This is the total size of all set blobs */
|
sl@0
|
139 |
|
sl@0
|
140 |
/* Now we have to sort the blobs. I am using a simple algo.
|
sl@0
|
141 |
*Sort ptrs *Copy to temp-mem *Copy from temp-mem to user-mem*/
|
sl@0
|
142 |
qsort( rgSetBlob, sk_num(a), sizeof(MYBLOB), SetBlobCmp);
|
sl@0
|
143 |
if (!(pTempMem = OPENSSL_malloc(totSize)))
|
sl@0
|
144 |
{
|
sl@0
|
145 |
ASN1err(ASN1_F_I2D_ASN1_SET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
146 |
return(0);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
/* Copy to temp mem */
|
sl@0
|
150 |
p = pTempMem;
|
sl@0
|
151 |
for(i=0; i<sk_num(a); ++i)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
memcpy(p, rgSetBlob[i].pbData, rgSetBlob[i].cbData);
|
sl@0
|
154 |
p += rgSetBlob[i].cbData;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
/* Copy back to user mem*/
|
sl@0
|
158 |
memcpy(pStart, pTempMem, totSize);
|
sl@0
|
159 |
OPENSSL_free(pTempMem);
|
sl@0
|
160 |
OPENSSL_free(rgSetBlob);
|
sl@0
|
161 |
|
sl@0
|
162 |
return(r);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
EXPORT_C STACK *d2i_ASN1_SET(STACK **a, const unsigned char **pp, long length,
|
sl@0
|
166 |
d2i_of_void *d2i, void (*free_func)(void *), int ex_tag,
|
sl@0
|
167 |
int ex_class)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
ASN1_const_CTX c;
|
sl@0
|
170 |
STACK *ret=NULL;
|
sl@0
|
171 |
|
sl@0
|
172 |
if ((a == NULL) || ((*a) == NULL))
|
sl@0
|
173 |
{
|
sl@0
|
174 |
if ((ret=sk_new_null()) == NULL)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
ASN1err(ASN1_F_D2I_ASN1_SET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
177 |
goto err;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
}
|
sl@0
|
180 |
else
|
sl@0
|
181 |
ret=(*a);
|
sl@0
|
182 |
|
sl@0
|
183 |
c.p= *pp;
|
sl@0
|
184 |
c.max=(length == 0)?0:(c.p+length);
|
sl@0
|
185 |
|
sl@0
|
186 |
c.inf=ASN1_get_object(&c.p,&c.slen,&c.tag,&c.xclass,c.max-c.p);
|
sl@0
|
187 |
if (c.inf & 0x80) goto err;
|
sl@0
|
188 |
if (ex_class != c.xclass)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
ASN1err(ASN1_F_D2I_ASN1_SET,ASN1_R_BAD_CLASS);
|
sl@0
|
191 |
goto err;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
if (ex_tag != c.tag)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
ASN1err(ASN1_F_D2I_ASN1_SET,ASN1_R_BAD_TAG);
|
sl@0
|
196 |
goto err;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
if ((c.slen+c.p) > c.max)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
ASN1err(ASN1_F_D2I_ASN1_SET,ASN1_R_LENGTH_ERROR);
|
sl@0
|
201 |
goto err;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
/* check for infinite constructed - it can be as long
|
sl@0
|
204 |
* as the amount of data passed to us */
|
sl@0
|
205 |
if (c.inf == (V_ASN1_CONSTRUCTED+1))
|
sl@0
|
206 |
c.slen=length+ *pp-c.p;
|
sl@0
|
207 |
c.max=c.p+c.slen;
|
sl@0
|
208 |
|
sl@0
|
209 |
while (c.p < c.max)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
char *s;
|
sl@0
|
212 |
|
sl@0
|
213 |
if (M_ASN1_D2I_end_sequence()) break;
|
sl@0
|
214 |
/* XXX: This was called with 4 arguments, incorrectly, it seems
|
sl@0
|
215 |
if ((s=func(NULL,&c.p,c.slen,c.max-c.p)) == NULL) */
|
sl@0
|
216 |
if ((s=d2i(NULL,&c.p,c.slen)) == NULL)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
ASN1err(ASN1_F_D2I_ASN1_SET,ASN1_R_ERROR_PARSING_SET_ELEMENT);
|
sl@0
|
219 |
asn1_add_error(*pp,(int)(c.q- *pp));
|
sl@0
|
220 |
goto err;
|
sl@0
|
221 |
}
|
sl@0
|
222 |
if (!sk_push(ret,s)) goto err;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
if (a != NULL) (*a)=ret;
|
sl@0
|
225 |
*pp=c.p;
|
sl@0
|
226 |
return(ret);
|
sl@0
|
227 |
err:
|
sl@0
|
228 |
if ((ret != NULL) && ((a == NULL) || (*a != ret)))
|
sl@0
|
229 |
{
|
sl@0
|
230 |
if (free_func != NULL)
|
sl@0
|
231 |
sk_pop_free(ret,free_func);
|
sl@0
|
232 |
else
|
sl@0
|
233 |
sk_free(ret);
|
sl@0
|
234 |
}
|
sl@0
|
235 |
return(NULL);
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
#endif
|