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 3 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, see <http://www.gnu.org/licenses/>.
22 /* free an asn1 structure */
23 void asn1_free(ASN1_DATA
*data
)
25 struct nesting
*nesting
= data
->nesting
;
28 struct nesting
*nnext
= nesting
->next
;
33 SAFE_FREE(data
->data
);
36 /* write to the ASN1 buffer, advancing the buffer pointer */
37 bool asn1_write(ASN1_DATA
*data
, const void *p
, int len
)
39 if (data
->has_error
) return false;
40 if (data
->length
< data
->ofs
+len
) {
41 data
->data
= SMB_REALLOC_ARRAY(data
->data
, unsigned char,
44 data
->has_error
= true;
47 data
->length
= data
->ofs
+len
;
49 memcpy(data
->data
+ data
->ofs
, p
, len
);
54 /* useful fn for writing a uint8 */
55 bool asn1_write_uint8(ASN1_DATA
*data
, uint8 v
)
57 return asn1_write(data
, &v
, 1);
60 /* push a tag onto the asn1 data buffer. Used for nested structures */
61 bool asn1_push_tag(ASN1_DATA
*data
, uint8 tag
)
63 struct nesting
*nesting
;
65 asn1_write_uint8(data
, tag
);
66 nesting
= SMB_MALLOC_P(struct nesting
);
68 data
->has_error
= true;
72 nesting
->start
= data
->ofs
;
73 nesting
->next
= data
->nesting
;
74 data
->nesting
= nesting
;
75 return asn1_write_uint8(data
, 0xff);
79 bool asn1_pop_tag(ASN1_DATA
*data
)
81 struct nesting
*nesting
;
84 if (data
->has_error
) {
88 nesting
= data
->nesting
;
91 data
->has_error
= true;
94 len
= data
->ofs
- (nesting
->start
+1);
95 /* yes, this is ugly. We don't know in advance how many bytes the length
96 of a tag will take, so we assumed 1 byte. If we were wrong then we
97 need to correct our mistake */
99 data
->data
[nesting
->start
] = 0x83;
100 if (!asn1_write_uint8(data
, 0)) return false;
101 if (!asn1_write_uint8(data
, 0)) return false;
102 if (!asn1_write_uint8(data
, 0)) return false;
103 memmove(data
->data
+nesting
->start
+4, data
->data
+nesting
->start
+1, len
);
104 data
->data
[nesting
->start
+1] = (len
>>16) & 0xFF;
105 data
->data
[nesting
->start
+2] = (len
>>8) & 0xFF;
106 data
->data
[nesting
->start
+3] = len
&0xff;
107 } else if (len
> 255) {
108 data
->data
[nesting
->start
] = 0x82;
109 if (!asn1_write_uint8(data
, 0)) return false;
110 if (!asn1_write_uint8(data
, 0)) return false;
111 memmove(data
->data
+nesting
->start
+3, data
->data
+nesting
->start
+1, len
);
112 data
->data
[nesting
->start
+1] = len
>>8;
113 data
->data
[nesting
->start
+2] = len
&0xff;
114 } else if (len
> 127) {
115 data
->data
[nesting
->start
] = 0x81;
116 if (!asn1_write_uint8(data
, 0)) return false;
117 memmove(data
->data
+nesting
->start
+2, data
->data
+nesting
->start
+1, len
);
118 data
->data
[nesting
->start
+1] = len
;
120 data
->data
[nesting
->start
] = len
;
123 data
->nesting
= nesting
->next
;
129 /* write an integer */
130 bool asn1_write_Integer(ASN1_DATA
*data
, int i
)
132 if (!asn1_push_tag(data
, ASN1_INTEGER
)) return false;
134 asn1_write_uint8(data
, i
);
137 return asn1_pop_tag(data
);
140 /* write an object ID to a ASN1 buffer */
141 bool asn1_write_OID(ASN1_DATA
*data
, const char *OID
)
144 const char *p
= (const char *)OID
;
147 if (!asn1_push_tag(data
, ASN1_OID
))
149 v
= strtol(p
, &newp
, 10);
151 v2
= strtol(p
, &newp
, 10);
153 if (!asn1_write_uint8(data
, 40*v
+ v2
))
157 v
= strtol(p
, &newp
, 10);
159 if (v
>= (1<<28)) asn1_write_uint8(data
, 0x80 | ((v
>>28)&0xff));
160 if (v
>= (1<<21)) asn1_write_uint8(data
, 0x80 | ((v
>>21)&0xff));
161 if (v
>= (1<<14)) asn1_write_uint8(data
, 0x80 | ((v
>>14)&0xff));
162 if (v
>= (1<<7)) asn1_write_uint8(data
, 0x80 | ((v
>>7)&0xff));
163 if (!asn1_write_uint8(data
, v
&0x7f))
166 return asn1_pop_tag(data
);
169 /* write an octet string */
170 bool asn1_write_OctetString(ASN1_DATA
*data
, const void *p
, size_t length
)
172 asn1_push_tag(data
, ASN1_OCTET_STRING
);
173 asn1_write(data
, p
, length
);
175 return !data
->has_error
;
178 /* write a general string */
179 bool asn1_write_GeneralString(ASN1_DATA
*data
, const char *s
)
181 asn1_push_tag(data
, ASN1_GENERAL_STRING
);
182 asn1_write(data
, s
, strlen(s
));
184 return !data
->has_error
;
187 /* write a BOOLEAN */
188 bool asn1_write_BOOLEAN(ASN1_DATA
*data
, bool v
)
190 asn1_write_uint8(data
, ASN1_BOOLEAN
);
191 asn1_write_uint8(data
, v
);
192 return !data
->has_error
;
195 /* write a BOOLEAN - hmm, I suspect this one is the correct one, and the
196 above boolean is bogus. Need to check */
197 bool asn1_write_BOOLEAN2(ASN1_DATA
*data
, bool v
)
199 asn1_push_tag(data
, ASN1_BOOLEAN
);
200 asn1_write_uint8(data
, v
);
202 return !data
->has_error
;
205 /* check a BOOLEAN */
206 bool asn1_check_BOOLEAN(ASN1_DATA
*data
, bool v
)
210 asn1_read_uint8(data
, &b
);
211 if (b
!= ASN1_BOOLEAN
) {
212 data
->has_error
= true;
215 asn1_read_uint8(data
, &b
);
217 data
->has_error
= true;
220 return !data
->has_error
;
224 /* load a ASN1_DATA structure with a lump of data, ready to be parsed */
225 bool asn1_load(ASN1_DATA
*data
, DATA_BLOB blob
)
228 data
->data
= (unsigned char *)memdup(blob
.data
, blob
.length
);
230 data
->has_error
= true;
233 data
->length
= blob
.length
;
237 /* read from a ASN1 buffer, advancing the buffer pointer */
238 bool asn1_read(ASN1_DATA
*data
, void *p
, int len
)
243 if (len
< 0 || data
->ofs
+ len
< data
->ofs
|| data
->ofs
+ len
< len
) {
244 data
->has_error
= true;
248 if (data
->ofs
+ len
> data
->length
) {
249 data
->has_error
= true;
252 memcpy(p
, data
->data
+ data
->ofs
, len
);
257 /* read a uint8 from a ASN1 buffer */
258 bool asn1_read_uint8(ASN1_DATA
*data
, uint8
*v
)
260 return asn1_read(data
, v
, 1);
264 * Check thta the value of the ASN1 buffer at the current offset equals tag.
266 bool asn1_check_tag(ASN1_DATA
*data
, uint8 tag
)
268 if (data
->has_error
|| data
->ofs
>= data
->length
|| data
->ofs
< 0) {
269 data
->has_error
= true;
273 return (tag
== data
->data
[data
->ofs
]);
276 /* start reading a nested asn1 structure */
277 bool asn1_start_tag(ASN1_DATA
*data
, uint8 tag
)
280 struct nesting
*nesting
;
282 if (!asn1_read_uint8(data
, &b
))
286 data
->has_error
= true;
289 nesting
= SMB_MALLOC_P(struct nesting
);
291 data
->has_error
= true;
295 if (!asn1_read_uint8(data
, &b
)) {
302 if (!asn1_read_uint8(data
, &b
)) {
308 if (!asn1_read_uint8(data
, &b
)) {
312 nesting
->taglen
= (nesting
->taglen
<< 8) | b
;
318 nesting
->start
= data
->ofs
;
319 nesting
->next
= data
->nesting
;
320 data
->nesting
= nesting
;
321 return !data
->has_error
;
325 /* stop reading a tag */
326 bool asn1_end_tag(ASN1_DATA
*data
)
328 struct nesting
*nesting
;
330 /* make sure we read it all */
331 if (asn1_tag_remaining(data
) != 0) {
332 data
->has_error
= true;
336 nesting
= data
->nesting
;
339 data
->has_error
= true;
343 data
->nesting
= nesting
->next
;
348 /* work out how many bytes are left in this nested tag */
349 int asn1_tag_remaining(ASN1_DATA
*data
)
354 if (!data
->nesting
) {
355 data
->has_error
= true;
358 return data
->nesting
->taglen
- (data
->ofs
- data
->nesting
->start
);
361 /* read an object ID from a ASN1 buffer */
362 bool asn1_read_OID(ASN1_DATA
*data
, char **OID
)
365 char *oid_str
= NULL
;
369 if (!asn1_start_tag(data
, ASN1_OID
)) {
372 asn1_read_uint8(data
, &b
);
374 oid_str
= talloc_asprintf(NULL
,
378 data
->has_error
= true;
381 oid_str
= talloc_asprintf_append(oid_str
,
385 data
->has_error
= true;
389 while (asn1_tag_remaining(data
) > 0) {
392 asn1_read_uint8(data
, &b
);
393 v
= (v
<<7) | (b
&0x7f);
394 } while (!data
->has_error
&& b
& 0x80);
395 oid_str
= talloc_asprintf_append(oid_str
,
399 data
->has_error
= true;
408 if (!data
->has_error
) {
409 *OID
= SMB_STRDUP(oid_str
);
412 TALLOC_FREE(oid_str
);
414 return !data
->has_error
;
417 /* check that the next object ID is correct */
418 bool asn1_check_OID(ASN1_DATA
*data
, const char *OID
)
422 if (!asn1_read_OID(data
, &id
)) {
426 if (strcmp(id
, OID
) != 0) {
427 data
->has_error
= true;
435 /* read a GeneralString from a ASN1 buffer */
436 bool asn1_read_GeneralString(ASN1_DATA
*data
, char **s
)
443 if (!asn1_start_tag(data
, ASN1_GENERAL_STRING
)) {
446 len
= asn1_tag_remaining(data
);
448 data
->has_error
= true;
451 str
= SMB_MALLOC_ARRAY(char, len
+1);
453 data
->has_error
= true;
456 asn1_read(data
, str
, len
);
460 if (!data
->has_error
) {
463 return !data
->has_error
;
466 /* read a octet string blob */
467 bool asn1_read_OctetString(ASN1_DATA
*data
, DATA_BLOB
*blob
)
471 if (!asn1_start_tag(data
, ASN1_OCTET_STRING
)) return false;
472 len
= asn1_tag_remaining(data
);
474 data
->has_error
= true;
477 *blob
= data_blob(NULL
, len
);
478 asn1_read(data
, blob
->data
, len
);
480 return !data
->has_error
;
483 /* read an interger */
484 bool asn1_read_Integer(ASN1_DATA
*data
, int *i
)
489 if (!asn1_start_tag(data
, ASN1_INTEGER
)) return false;
490 while (asn1_tag_remaining(data
)>0) {
491 asn1_read_uint8(data
, &b
);
494 return asn1_end_tag(data
);
498 /* check a enumarted value is correct */
499 bool asn1_check_enumerated(ASN1_DATA
*data
, int v
)
502 if (!asn1_start_tag(data
, ASN1_ENUMERATED
)) return false;
503 asn1_read_uint8(data
, &b
);
507 data
->has_error
= false;
509 return !data
->has_error
;
512 /* write an enumarted value to the stream */
513 bool asn1_write_enumerated(ASN1_DATA
*data
, uint8 v
)
515 if (!asn1_push_tag(data
, ASN1_ENUMERATED
)) return false;
516 asn1_write_uint8(data
, v
);
518 return !data
->has_error
;
521 bool ber_write_OID_String(DATA_BLOB
*blob
, const char *OID
)
524 const char *p
= (const char *)OID
;
528 v
= strtoul(p
, &newp
, 10);
529 if (newp
[0] != '.') return false;
532 v2
= strtoul(p
, &newp
, 10);
533 if (newp
[0] != '.') return false;
536 /*the ber representation can't use more space then the string one */
537 *blob
= data_blob(NULL
, strlen(OID
));
538 if (!blob
->data
) return false;
540 blob
->data
[0] = 40*v
+ v2
;
544 v
= strtoul(p
, &newp
, 10);
545 if (newp
[0] == '.') {
547 } else if (newp
[0] == '\0') {
550 data_blob_free(blob
);
553 if (v
>= (1<<28)) blob
->data
[i
++] = (0x80 | ((v
>>28)&0x7f));
554 if (v
>= (1<<21)) blob
->data
[i
++] = (0x80 | ((v
>>21)&0x7f));
555 if (v
>= (1<<14)) blob
->data
[i
++] = (0x80 | ((v
>>14)&0x7f));
556 if (v
>= (1<<7)) blob
->data
[i
++] = (0x80 | ((v
>>7)&0x7f));
557 blob
->data
[i
++] = (v
&0x7f);
565 /* read an object ID from a data blob */
566 bool ber_read_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
, const char **OID
)
571 char *tmp_oid
= NULL
;
573 if (blob
.length
< 2) return false;
577 tmp_oid
= talloc_asprintf(mem_ctx
, "%u", b
[0]/40);
578 if (!tmp_oid
) goto nomem
;
579 tmp_oid
= talloc_asprintf_append_buffer(tmp_oid
, ".%u", b
[0]%40);
580 if (!tmp_oid
) goto nomem
;
582 for(i
= 1, v
= 0; i
< blob
.length
; i
++) {
583 v
= (v
<<7) | (b
[i
]&0x7f);
584 if ( ! (b
[i
] & 0x80)) {
585 tmp_oid
= talloc_asprintf_append_buffer(tmp_oid
, ".%u", v
);
588 if (!tmp_oid
) goto nomem
;
592 talloc_free(tmp_oid
);