2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2001
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 /* free an asn1 structure */
24 void asn1_free(ASN1_DATA
*data
)
26 SAFE_FREE(data
->data
);
29 /* write to the ASN1 buffer, advancing the buffer pointer */
30 BOOL
asn1_write(ASN1_DATA
*data
, const void *p
, int len
)
32 if (data
->has_error
) return False
;
33 if (data
->length
< data
->ofs
+len
) {
35 newp
= SMB_REALLOC(data
->data
, data
->ofs
+len
);
37 SAFE_FREE(data
->data
);
38 data
->has_error
= True
;
42 data
->length
= data
->ofs
+len
;
44 memcpy(data
->data
+ data
->ofs
, p
, len
);
49 /* useful fn for writing a uint8 */
50 BOOL
asn1_write_uint8(ASN1_DATA
*data
, uint8 v
)
52 return asn1_write(data
, &v
, 1);
55 /* push a tag onto the asn1 data buffer. Used for nested structures */
56 BOOL
asn1_push_tag(ASN1_DATA
*data
, uint8 tag
)
58 struct nesting
*nesting
;
60 asn1_write_uint8(data
, tag
);
61 nesting
= SMB_MALLOC_P(struct nesting
);
63 data
->has_error
= True
;
67 nesting
->start
= data
->ofs
;
68 nesting
->next
= data
->nesting
;
69 data
->nesting
= nesting
;
70 return asn1_write_uint8(data
, 0xff);
74 BOOL
asn1_pop_tag(ASN1_DATA
*data
)
76 struct nesting
*nesting
;
79 nesting
= data
->nesting
;
82 data
->has_error
= True
;
85 len
= data
->ofs
- (nesting
->start
+1);
86 /* yes, this is ugly. We don't know in advance how many bytes the length
87 of a tag will take, so we assumed 1 byte. If we were wrong then we
88 need to correct our mistake */
90 data
->data
[nesting
->start
] = 0x82;
91 if (!asn1_write_uint8(data
, 0)) return False
;
92 if (!asn1_write_uint8(data
, 0)) return False
;
93 memmove(data
->data
+nesting
->start
+3, data
->data
+nesting
->start
+1, len
);
94 data
->data
[nesting
->start
+1] = len
>>8;
95 data
->data
[nesting
->start
+2] = len
&0xff;
96 } else if (len
> 127) {
97 data
->data
[nesting
->start
] = 0x81;
98 if (!asn1_write_uint8(data
, 0)) return False
;
99 memmove(data
->data
+nesting
->start
+2, data
->data
+nesting
->start
+1, len
);
100 data
->data
[nesting
->start
+1] = len
;
102 data
->data
[nesting
->start
] = len
;
105 data
->nesting
= nesting
->next
;
111 /* write an integer */
112 BOOL
asn1_write_Integer(ASN1_DATA
*data
, int i
)
114 if (!asn1_push_tag(data
, ASN1_INTEGER
)) return False
;
116 asn1_write_uint8(data
, i
);
119 return asn1_pop_tag(data
);
122 /* write an object ID to a ASN1 buffer */
123 BOOL
asn1_write_OID(ASN1_DATA
*data
, const char *OID
)
126 const char *p
= (const char *)OID
;
129 if (!asn1_push_tag(data
, ASN1_OID
))
131 v
= strtol(p
, &newp
, 10);
133 v2
= strtol(p
, &newp
, 10);
135 if (!asn1_write_uint8(data
, 40*v
+ v2
))
139 v
= strtol(p
, &newp
, 10);
141 if (v
>= (1<<28)) asn1_write_uint8(data
, 0x80 | ((v
>>28)&0xff));
142 if (v
>= (1<<21)) asn1_write_uint8(data
, 0x80 | ((v
>>21)&0xff));
143 if (v
>= (1<<14)) asn1_write_uint8(data
, 0x80 | ((v
>>14)&0xff));
144 if (v
>= (1<<7)) asn1_write_uint8(data
, 0x80 | ((v
>>7)&0xff));
145 if (!asn1_write_uint8(data
, v
&0x7f))
148 return asn1_pop_tag(data
);
151 /* write an octet string */
152 BOOL
asn1_write_OctetString(ASN1_DATA
*data
, const void *p
, size_t length
)
154 asn1_push_tag(data
, ASN1_OCTET_STRING
);
155 asn1_write(data
, p
, length
);
157 return !data
->has_error
;
160 /* write a general string */
161 BOOL
asn1_write_GeneralString(ASN1_DATA
*data
, const char *s
)
163 asn1_push_tag(data
, ASN1_GENERAL_STRING
);
164 asn1_write(data
, s
, strlen(s
));
166 return !data
->has_error
;
169 /* write a BOOLEAN */
170 BOOL
asn1_write_BOOLEAN(ASN1_DATA
*data
, BOOL v
)
172 asn1_write_uint8(data
, ASN1_BOOLEAN
);
173 asn1_write_uint8(data
, v
);
174 return !data
->has_error
;
177 /* write a BOOLEAN - hmm, I suspect this one is the correct one, and the
178 above boolean is bogus. Need to check */
179 BOOL
asn1_write_BOOLEAN2(ASN1_DATA
*data
, BOOL v
)
181 asn1_push_tag(data
, ASN1_BOOLEAN
);
182 asn1_write_uint8(data
, v
);
184 return !data
->has_error
;
187 /* check a BOOLEAN */
188 BOOL
asn1_check_BOOLEAN(ASN1_DATA
*data
, BOOL v
)
192 asn1_read_uint8(data
, &b
);
193 if (b
!= ASN1_BOOLEAN
) {
194 data
->has_error
= True
;
197 asn1_read_uint8(data
, &b
);
199 data
->has_error
= True
;
202 return !data
->has_error
;
206 /* load a ASN1_DATA structure with a lump of data, ready to be parsed */
207 BOOL
asn1_load(ASN1_DATA
*data
, DATA_BLOB blob
)
210 data
->data
= memdup(blob
.data
, blob
.length
);
212 data
->has_error
= True
;
215 data
->length
= blob
.length
;
219 /* read from a ASN1 buffer, advancing the buffer pointer */
220 BOOL
asn1_read(ASN1_DATA
*data
, void *p
, int len
)
225 if (len
< 0 || data
->ofs
+ len
< data
->ofs
|| data
->ofs
+ len
< len
) {
226 data
->has_error
= True
;
230 if (data
->ofs
+ len
> data
->length
) {
231 data
->has_error
= True
;
234 memcpy(p
, data
->data
+ data
->ofs
, len
);
239 /* read a uint8 from a ASN1 buffer */
240 BOOL
asn1_read_uint8(ASN1_DATA
*data
, uint8
*v
)
242 return asn1_read(data
, v
, 1);
245 /* start reading a nested asn1 structure */
246 BOOL
asn1_start_tag(ASN1_DATA
*data
, uint8 tag
)
249 struct nesting
*nesting
;
251 if (!asn1_read_uint8(data
, &b
))
255 data
->has_error
= True
;
258 nesting
= SMB_MALLOC_P(struct nesting
);
260 data
->has_error
= True
;
264 if (!asn1_read_uint8(data
, &b
)) {
270 if (!asn1_read_uint8(data
, &b
))
274 if (!asn1_read_uint8(data
, &b
))
276 nesting
->taglen
= (nesting
->taglen
<< 8) | b
;
282 nesting
->start
= data
->ofs
;
283 nesting
->next
= data
->nesting
;
284 data
->nesting
= nesting
;
285 return !data
->has_error
;
289 /* stop reading a tag */
290 BOOL
asn1_end_tag(ASN1_DATA
*data
)
292 struct nesting
*nesting
;
294 /* make sure we read it all */
295 if (asn1_tag_remaining(data
) != 0) {
296 data
->has_error
= True
;
300 nesting
= data
->nesting
;
303 data
->has_error
= True
;
307 data
->nesting
= nesting
->next
;
312 /* work out how many bytes are left in this nested tag */
313 int asn1_tag_remaining(ASN1_DATA
*data
)
318 if (!data
->nesting
) {
319 data
->has_error
= True
;
322 return data
->nesting
->taglen
- (data
->ofs
- data
->nesting
->start
);
325 /* read an object ID from a ASN1 buffer */
326 BOOL
asn1_read_OID(ASN1_DATA
*data
, char **OID
)
332 if (!asn1_start_tag(data
, ASN1_OID
)) return False
;
333 asn1_read_uint8(data
, &b
);
336 fstr_sprintf(el
, "%u", b
/40);
337 pstrcat(oid_str
, el
);
338 fstr_sprintf(el
, " %u", b
%40);
339 pstrcat(oid_str
, el
);
341 while (asn1_tag_remaining(data
) > 0) {
344 asn1_read_uint8(data
, &b
);
345 v
= (v
<<7) | (b
&0x7f);
346 } while (!data
->has_error
&& b
& 0x80);
347 fstr_sprintf(el
, " %u", v
);
348 pstrcat(oid_str
, el
);
353 *OID
= SMB_STRDUP(oid_str
);
355 return !data
->has_error
;
358 /* check that the next object ID is correct */
359 BOOL
asn1_check_OID(ASN1_DATA
*data
, const char *OID
)
363 if (!asn1_read_OID(data
, &id
)) return False
;
365 if (strcmp(id
, OID
) != 0) {
366 data
->has_error
= True
;
373 /* read a GeneralString from a ASN1 buffer */
374 BOOL
asn1_read_GeneralString(ASN1_DATA
*data
, char **s
)
377 if (!asn1_start_tag(data
, ASN1_GENERAL_STRING
)) return False
;
378 len
= asn1_tag_remaining(data
);
380 data
->has_error
= True
;
383 *s
= SMB_MALLOC(len
+1);
385 data
->has_error
= True
;
388 asn1_read(data
, *s
, len
);
391 return !data
->has_error
;
394 /* read a octet string blob */
395 BOOL
asn1_read_OctetString(ASN1_DATA
*data
, DATA_BLOB
*blob
)
399 if (!asn1_start_tag(data
, ASN1_OCTET_STRING
)) return False
;
400 len
= asn1_tag_remaining(data
);
402 data
->has_error
= True
;
405 *blob
= data_blob(NULL
, len
);
406 asn1_read(data
, blob
->data
, len
);
408 return !data
->has_error
;
411 /* read an interger */
412 BOOL
asn1_read_Integer(ASN1_DATA
*data
, int *i
)
417 if (!asn1_start_tag(data
, ASN1_INTEGER
)) return False
;
418 while (asn1_tag_remaining(data
)>0) {
419 asn1_read_uint8(data
, &b
);
422 return asn1_end_tag(data
);
426 /* check a enumarted value is correct */
427 BOOL
asn1_check_enumerated(ASN1_DATA
*data
, int v
)
430 if (!asn1_start_tag(data
, ASN1_ENUMERATED
)) return False
;
431 asn1_read_uint8(data
, &b
);
435 data
->has_error
= False
;
437 return !data
->has_error
;
440 /* write an enumarted value to the stream */
441 BOOL
asn1_write_enumerated(ASN1_DATA
*data
, uint8 v
)
443 if (!asn1_push_tag(data
, ASN1_ENUMERATED
)) return False
;
444 asn1_write_uint8(data
, v
);
446 return !data
->has_error
;