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/>.
21 #include "../lib/util/asn1.h"
23 /* allocate an asn1 structure */
24 struct asn1_data
*asn1_init(TALLOC_CTX
*mem_ctx
)
26 struct asn1_data
*ret
= talloc_zero(mem_ctx
, struct asn1_data
);
28 DEBUG(0,("asn1_init failed! out of memory\n"));
33 /* free an asn1 structure */
34 void asn1_free(struct asn1_data
*data
)
39 /* write to the ASN1 buffer, advancing the buffer pointer */
40 bool asn1_write(struct asn1_data
*data
, const void *p
, int len
)
42 if (data
->has_error
) return false;
43 if (data
->length
< data
->ofs
+len
) {
45 newp
= talloc_realloc(data
, data
->data
, uint8_t, data
->ofs
+len
);
48 data
->has_error
= true;
52 data
->length
= data
->ofs
+len
;
54 memcpy(data
->data
+ data
->ofs
, p
, len
);
59 /* useful fn for writing a uint8_t */
60 bool asn1_write_uint8(struct asn1_data
*data
, uint8_t v
)
62 return asn1_write(data
, &v
, 1);
65 /* push a tag onto the asn1 data buffer. Used for nested structures */
66 bool asn1_push_tag(struct asn1_data
*data
, uint8_t tag
)
68 struct nesting
*nesting
;
70 asn1_write_uint8(data
, tag
);
71 nesting
= talloc(data
, struct nesting
);
73 data
->has_error
= true;
77 nesting
->start
= data
->ofs
;
78 nesting
->next
= data
->nesting
;
79 data
->nesting
= nesting
;
80 return asn1_write_uint8(data
, 0xff);
84 bool asn1_pop_tag(struct asn1_data
*data
)
86 struct nesting
*nesting
;
89 nesting
= data
->nesting
;
92 data
->has_error
= true;
95 len
= data
->ofs
- (nesting
->start
+1);
96 /* yes, this is ugly. We don't know in advance how many bytes the length
97 of a tag will take, so we assumed 1 byte. If we were wrong then we
98 need to correct our mistake */
100 data
->data
[nesting
->start
] = 0x84;
101 if (!asn1_write_uint8(data
, 0)) return false;
102 if (!asn1_write_uint8(data
, 0)) return false;
103 if (!asn1_write_uint8(data
, 0)) return false;
104 if (!asn1_write_uint8(data
, 0)) return false;
105 memmove(data
->data
+nesting
->start
+5, data
->data
+nesting
->start
+1, len
);
106 data
->data
[nesting
->start
+1] = (len
>>24) & 0xFF;
107 data
->data
[nesting
->start
+2] = (len
>>16) & 0xFF;
108 data
->data
[nesting
->start
+3] = (len
>>8) & 0xFF;
109 data
->data
[nesting
->start
+4] = len
&0xff;
110 } else if (len
> 0xFFFF) {
111 data
->data
[nesting
->start
] = 0x83;
112 if (!asn1_write_uint8(data
, 0)) return false;
113 if (!asn1_write_uint8(data
, 0)) return false;
114 if (!asn1_write_uint8(data
, 0)) return false;
115 memmove(data
->data
+nesting
->start
+4, data
->data
+nesting
->start
+1, len
);
116 data
->data
[nesting
->start
+1] = (len
>>16) & 0xFF;
117 data
->data
[nesting
->start
+2] = (len
>>8) & 0xFF;
118 data
->data
[nesting
->start
+3] = len
&0xff;
119 } else if (len
> 255) {
120 data
->data
[nesting
->start
] = 0x82;
121 if (!asn1_write_uint8(data
, 0)) return false;
122 if (!asn1_write_uint8(data
, 0)) return false;
123 memmove(data
->data
+nesting
->start
+3, data
->data
+nesting
->start
+1, len
);
124 data
->data
[nesting
->start
+1] = len
>>8;
125 data
->data
[nesting
->start
+2] = len
&0xff;
126 } else if (len
> 127) {
127 data
->data
[nesting
->start
] = 0x81;
128 if (!asn1_write_uint8(data
, 0)) return false;
129 memmove(data
->data
+nesting
->start
+2, data
->data
+nesting
->start
+1, len
);
130 data
->data
[nesting
->start
+1] = len
;
132 data
->data
[nesting
->start
] = len
;
135 data
->nesting
= nesting
->next
;
136 talloc_free(nesting
);
140 /* "i" is the one's complement representation, as is the normal result of an
141 * implicit signed->unsigned conversion */
143 static bool push_int_bigendian(struct asn1_data
*data
, unsigned int i
, bool negative
)
145 uint8_t lowest
= i
& 0xFF;
149 if (!push_int_bigendian(data
, i
, negative
))
152 if (data
->nesting
->start
+1 == data
->ofs
) {
154 /* We did not write anything yet, looking at the highest
158 /* Don't write leading 0xff's */
162 if ((lowest
& 0x80) == 0) {
163 /* The only exception for a leading 0xff is if
164 * the highest bit is 0, which would indicate
165 * a positive value */
166 if (!asn1_write_uint8(data
, 0xff))
171 /* The highest bit of a positive integer is 1,
172 * this would indicate a negative number. Push
173 * a 0 to indicate a positive one */
174 if (!asn1_write_uint8(data
, 0))
180 return asn1_write_uint8(data
, lowest
);
183 /* write an Integer without the tag framing. Needed for example for the LDAP
184 * Abandon Operation */
186 bool asn1_write_implicit_Integer(struct asn1_data
*data
, int i
)
189 /* -1 is special as it consists of all-0xff bytes. In
190 push_int_bigendian this is the only case that is not
191 properly handled, as all 0xff bytes would be handled as
192 leading ones to be ignored. */
193 return asn1_write_uint8(data
, 0xff);
195 return push_int_bigendian(data
, i
, i
<0);
200 /* write an integer */
201 bool asn1_write_Integer(struct asn1_data
*data
, int i
)
203 if (!asn1_push_tag(data
, ASN1_INTEGER
)) return false;
204 if (!asn1_write_implicit_Integer(data
, i
)) return false;
205 return asn1_pop_tag(data
);
208 /* write a BIT STRING */
209 bool asn1_write_BitString(struct asn1_data
*data
, const void *p
, size_t length
, uint8_t padding
)
211 if (!asn1_push_tag(data
, ASN1_BIT_STRING
)) return false;
212 if (!asn1_write_uint8(data
, padding
)) return false;
213 if (!asn1_write(data
, p
, length
)) return false;
214 return asn1_pop_tag(data
);
217 bool ber_write_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, const char *OID
)
220 const char *p
= (const char *)OID
;
224 if (!isdigit(*p
)) return false;
225 v
= strtoul(p
, &newp
, 10);
226 if (newp
[0] != '.') return false;
229 if (!isdigit(*p
)) return false;
230 v2
= strtoul(p
, &newp
, 10);
231 if (newp
[0] != '.') return false;
234 /*the ber representation can't use more space then the string one */
235 *blob
= data_blob_talloc(mem_ctx
, NULL
, strlen(OID
));
236 if (!blob
->data
) return false;
238 blob
->data
[0] = 40*v
+ v2
;
242 if (!isdigit(*p
)) return false;
243 v
= strtoul(p
, &newp
, 10);
244 if (newp
[0] == '.') {
246 /* check for empty last component */
247 if (!*p
) return false;
248 } else if (newp
[0] == '\0') {
251 data_blob_free(blob
);
254 if (v
>= (1<<28)) blob
->data
[i
++] = (0x80 | ((v
>>28)&0x7f));
255 if (v
>= (1<<21)) blob
->data
[i
++] = (0x80 | ((v
>>21)&0x7f));
256 if (v
>= (1<<14)) blob
->data
[i
++] = (0x80 | ((v
>>14)&0x7f));
257 if (v
>= (1<<7)) blob
->data
[i
++] = (0x80 | ((v
>>7)&0x7f));
258 blob
->data
[i
++] = (v
&0x7f);
267 * Serialize partial OID string.
268 * Partial OIDs are in the form:
272 bool ber_write_partial_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, const char *partial_oid
)
274 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
275 char *oid
= talloc_strdup(tmp_ctx
, partial_oid
);
278 /* truncate partial part so ber_write_OID_String() works */
279 p
= strchr(oid
, ':');
285 if (!ber_write_OID_String(mem_ctx
, blob
, oid
)) {
286 talloc_free(tmp_ctx
);
290 /* Add partially encoded sub-identifier */
292 DATA_BLOB tmp_blob
= strhex_to_data_blob(tmp_ctx
, p
);
293 data_blob_append(mem_ctx
, blob
, tmp_blob
.data
, tmp_blob
.length
);
296 talloc_free(tmp_ctx
);
301 /* write an object ID to a ASN1 buffer */
302 bool asn1_write_OID(struct asn1_data
*data
, const char *OID
)
306 if (!asn1_push_tag(data
, ASN1_OID
)) return false;
308 if (!ber_write_OID_String(NULL
, &blob
, OID
)) {
309 data
->has_error
= true;
313 if (!asn1_write(data
, blob
.data
, blob
.length
)) {
314 data_blob_free(&blob
);
315 data
->has_error
= true;
318 data_blob_free(&blob
);
319 return asn1_pop_tag(data
);
322 /* write an octet string */
323 bool asn1_write_OctetString(struct asn1_data
*data
, const void *p
, size_t length
)
325 asn1_push_tag(data
, ASN1_OCTET_STRING
);
326 asn1_write(data
, p
, length
);
328 return !data
->has_error
;
331 /* write a LDAP string */
332 bool asn1_write_LDAPString(struct asn1_data
*data
, const char *s
)
334 asn1_write(data
, s
, strlen(s
));
335 return !data
->has_error
;
338 /* write a LDAP string from a DATA_BLOB */
339 bool asn1_write_DATA_BLOB_LDAPString(struct asn1_data
*data
, const DATA_BLOB
*s
)
341 asn1_write(data
, s
->data
, s
->length
);
342 return !data
->has_error
;
345 /* write a general string */
346 bool asn1_write_GeneralString(struct asn1_data
*data
, const char *s
)
348 asn1_push_tag(data
, ASN1_GENERAL_STRING
);
349 asn1_write_LDAPString(data
, s
);
351 return !data
->has_error
;
354 bool asn1_write_ContextSimple(struct asn1_data
*data
, uint8_t num
, DATA_BLOB
*blob
)
356 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(num
));
357 asn1_write(data
, blob
->data
, blob
->length
);
359 return !data
->has_error
;
362 /* write a BOOLEAN */
363 bool asn1_write_BOOLEAN(struct asn1_data
*data
, bool v
)
365 asn1_push_tag(data
, ASN1_BOOLEAN
);
366 asn1_write_uint8(data
, v
? 0xFF : 0);
368 return !data
->has_error
;
371 bool asn1_read_BOOLEAN(struct asn1_data
*data
, bool *v
)
374 asn1_start_tag(data
, ASN1_BOOLEAN
);
375 asn1_read_uint8(data
, &tmp
);
382 return !data
->has_error
;
385 /* write a BOOLEAN in a simple context */
386 bool asn1_write_BOOLEAN_context(struct asn1_data
*data
, bool v
, int context
)
388 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(context
));
389 asn1_write_uint8(data
, v
? 0xFF : 0);
391 return !data
->has_error
;
394 bool asn1_read_BOOLEAN_context(struct asn1_data
*data
, bool *v
, int context
)
397 asn1_start_tag(data
, ASN1_CONTEXT_SIMPLE(context
));
398 asn1_read_uint8(data
, &tmp
);
405 return !data
->has_error
;
408 /* check a BOOLEAN */
409 bool asn1_check_BOOLEAN(struct asn1_data
*data
, bool v
)
413 asn1_read_uint8(data
, &b
);
414 if (b
!= ASN1_BOOLEAN
) {
415 data
->has_error
= true;
418 asn1_read_uint8(data
, &b
);
420 data
->has_error
= true;
423 return !data
->has_error
;
427 /* load a struct asn1_data structure with a lump of data, ready to be parsed */
428 bool asn1_load(struct asn1_data
*data
, DATA_BLOB blob
)
431 data
->data
= (uint8_t *)talloc_memdup(data
, blob
.data
, blob
.length
);
433 data
->has_error
= true;
436 data
->length
= blob
.length
;
440 /* Peek into an ASN1 buffer, not advancing the pointer */
441 bool asn1_peek(struct asn1_data
*data
, void *p
, int len
)
446 if (len
< 0 || data
->ofs
+ len
< data
->ofs
|| data
->ofs
+ len
< len
)
449 if (data
->ofs
+ len
> data
->length
) {
450 /* we need to mark the buffer as consumed, so the caller knows
451 this was an out of data error, and not a decode error */
452 data
->ofs
= data
->length
;
456 memcpy(p
, data
->data
+ data
->ofs
, len
);
460 /* read from a ASN1 buffer, advancing the buffer pointer */
461 bool asn1_read(struct asn1_data
*data
, void *p
, int len
)
463 if (!asn1_peek(data
, p
, len
)) {
464 data
->has_error
= true;
472 /* read a uint8_t from a ASN1 buffer */
473 bool asn1_read_uint8(struct asn1_data
*data
, uint8_t *v
)
475 return asn1_read(data
, v
, 1);
478 bool asn1_peek_uint8(struct asn1_data
*data
, uint8_t *v
)
480 return asn1_peek(data
, v
, 1);
483 bool asn1_peek_tag(struct asn1_data
*data
, uint8_t tag
)
487 if (asn1_tag_remaining(data
) <= 0) {
491 if (!asn1_peek_uint8(data
, &b
))
498 * just get the needed size the tag would consume
500 bool asn1_peek_tag_needed_size(struct asn1_data
*data
, uint8_t tag
, size_t *size
)
502 off_t start_ofs
= data
->ofs
;
506 if (data
->has_error
) {
510 if (!asn1_read_uint8(data
, &b
)) {
511 data
->ofs
= start_ofs
;
512 data
->has_error
= false;
517 data
->ofs
= start_ofs
;
518 data
->has_error
= false;
522 if (!asn1_read_uint8(data
, &b
)) {
523 data
->ofs
= start_ofs
;
524 data
->has_error
= false;
530 if (!asn1_read_uint8(data
, &b
)) {
531 data
->ofs
= start_ofs
;
532 data
->has_error
= false;
537 * We should not allow more than 4 bytes
538 * for the encoding of the tag length.
540 * Otherwise we'd overflow the taglen
541 * variable on 32 bit systems.
543 data
->ofs
= start_ofs
;
544 data
->has_error
= false;
549 if (!asn1_read_uint8(data
, &b
)) {
550 data
->ofs
= start_ofs
;
551 data
->has_error
= false;
554 taglen
= (taglen
<< 8) | b
;
561 *size
= (data
->ofs
- start_ofs
) + taglen
;
563 data
->ofs
= start_ofs
;
564 data
->has_error
= false;
568 /* start reading a nested asn1 structure */
569 bool asn1_start_tag(struct asn1_data
*data
, uint8_t tag
)
572 struct nesting
*nesting
;
574 if (!asn1_read_uint8(data
, &b
))
578 data
->has_error
= true;
581 nesting
= talloc(data
, struct nesting
);
583 data
->has_error
= true;
587 if (!asn1_read_uint8(data
, &b
)) {
593 if (!asn1_read_uint8(data
, &b
))
597 if (!asn1_read_uint8(data
, &b
))
599 nesting
->taglen
= (nesting
->taglen
<< 8) | b
;
605 nesting
->start
= data
->ofs
;
606 nesting
->next
= data
->nesting
;
607 data
->nesting
= nesting
;
608 if (asn1_tag_remaining(data
) == -1) {
611 return !data
->has_error
;
614 /* stop reading a tag */
615 bool asn1_end_tag(struct asn1_data
*data
)
617 struct nesting
*nesting
;
619 /* make sure we read it all */
620 if (asn1_tag_remaining(data
) != 0) {
621 data
->has_error
= true;
625 nesting
= data
->nesting
;
628 data
->has_error
= true;
632 data
->nesting
= nesting
->next
;
633 talloc_free(nesting
);
637 /* work out how many bytes are left in this nested tag */
638 int asn1_tag_remaining(struct asn1_data
*data
)
641 if (data
->has_error
) {
645 if (!data
->nesting
) {
646 data
->has_error
= true;
649 remaining
= data
->nesting
->taglen
- (data
->ofs
- data
->nesting
->start
);
650 if (remaining
> (data
->length
- data
->ofs
)) {
651 data
->has_error
= true;
658 * Internal implementation for reading binary OIDs
659 * Reading is done as far in the buffer as valid OID
660 * till buffer ends or not valid sub-identifier is found.
662 static bool _ber_read_OID_String_impl(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
,
663 const char **OID
, size_t *bytes_eaten
)
668 char *tmp_oid
= NULL
;
670 if (blob
.length
< 2) return false;
674 tmp_oid
= talloc_asprintf(mem_ctx
, "%u", b
[0]/40);
675 if (!tmp_oid
) goto nomem
;
676 tmp_oid
= talloc_asprintf_append_buffer(tmp_oid
, ".%u", b
[0]%40);
677 if (!tmp_oid
) goto nomem
;
679 if (bytes_eaten
!= NULL
) {
683 for(i
= 1, v
= 0; i
< blob
.length
; i
++) {
684 v
= (v
<<7) | (b
[i
]&0x7f);
685 if ( ! (b
[i
] & 0x80)) {
686 tmp_oid
= talloc_asprintf_append_buffer(tmp_oid
, ".%u", v
);
691 if (!tmp_oid
) goto nomem
;
701 /* read an object ID from a data blob */
702 bool ber_read_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
, const char **OID
)
706 if (!_ber_read_OID_String_impl(mem_ctx
, blob
, OID
, &bytes_eaten
))
709 return (bytes_eaten
== blob
.length
);
713 * Deserialize partial OID string.
714 * Partial OIDs are in the form:
718 bool ber_read_partial_OID_String(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
, const char **partial_oid
)
722 char *identifier
= NULL
;
723 char *tmp_oid
= NULL
;
725 if (!_ber_read_OID_String_impl(mem_ctx
, blob
, (const char **)&tmp_oid
, &bytes_eaten
))
728 if (bytes_eaten
< blob
.length
) {
729 bytes_left
= blob
.length
- bytes_eaten
;
730 identifier
= hex_encode_talloc(mem_ctx
, &blob
.data
[bytes_eaten
], bytes_left
);
731 if (!identifier
) goto nomem
;
733 *partial_oid
= talloc_asprintf_append_buffer(tmp_oid
, ":0x%s", identifier
);
734 if (!*partial_oid
) goto nomem
;
735 TALLOC_FREE(identifier
);
737 *partial_oid
= tmp_oid
;
743 TALLOC_FREE(identifier
);
744 TALLOC_FREE(tmp_oid
);
748 /* read an object ID from a ASN1 buffer */
749 bool asn1_read_OID(struct asn1_data
*data
, TALLOC_CTX
*mem_ctx
, const char **OID
)
754 if (!asn1_start_tag(data
, ASN1_OID
)) return false;
756 len
= asn1_tag_remaining(data
);
758 data
->has_error
= true;
762 blob
= data_blob(NULL
, len
);
764 data
->has_error
= true;
768 asn1_read(data
, blob
.data
, len
);
770 if (data
->has_error
) {
771 data_blob_free(&blob
);
775 if (!ber_read_OID_String(mem_ctx
, blob
, OID
)) {
776 data
->has_error
= true;
777 data_blob_free(&blob
);
781 data_blob_free(&blob
);
785 /* check that the next object ID is correct */
786 bool asn1_check_OID(struct asn1_data
*data
, const char *OID
)
790 if (!asn1_read_OID(data
, data
, &id
)) return false;
792 if (strcmp(id
, OID
) != 0) {
793 talloc_free(discard_const(id
));
794 data
->has_error
= true;
797 talloc_free(discard_const(id
));
801 /* read a LDAPString from a ASN1 buffer */
802 bool asn1_read_LDAPString(struct asn1_data
*data
, TALLOC_CTX
*mem_ctx
, char **s
)
805 len
= asn1_tag_remaining(data
);
807 data
->has_error
= true;
810 *s
= talloc_array(mem_ctx
, char, len
+1);
812 data
->has_error
= true;
815 asn1_read(data
, *s
, len
);
817 return !data
->has_error
;
821 /* read a GeneralString from a ASN1 buffer */
822 bool asn1_read_GeneralString(struct asn1_data
*data
, TALLOC_CTX
*mem_ctx
, char **s
)
824 if (!asn1_start_tag(data
, ASN1_GENERAL_STRING
)) return false;
825 if (!asn1_read_LDAPString(data
, mem_ctx
, s
)) return false;
826 return asn1_end_tag(data
);
830 /* read a octet string blob */
831 bool asn1_read_OctetString(struct asn1_data
*data
, TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
)
835 if (!asn1_start_tag(data
, ASN1_OCTET_STRING
)) return false;
836 len
= asn1_tag_remaining(data
);
838 data
->has_error
= true;
841 *blob
= data_blob_talloc(mem_ctx
, NULL
, len
+1);
843 data
->has_error
= true;
846 asn1_read(data
, blob
->data
, len
);
851 if (data
->has_error
) {
852 data_blob_free(blob
);
853 *blob
= data_blob_null
;
859 bool asn1_read_ContextSimple(struct asn1_data
*data
, uint8_t num
, DATA_BLOB
*blob
)
863 if (!asn1_start_tag(data
, ASN1_CONTEXT_SIMPLE(num
))) return false;
864 len
= asn1_tag_remaining(data
);
866 data
->has_error
= true;
869 *blob
= data_blob(NULL
, len
);
870 if ((len
!= 0) && (!blob
->data
)) {
871 data
->has_error
= true;
874 asn1_read(data
, blob
->data
, len
);
876 return !data
->has_error
;
879 /* read an integer without tag*/
880 bool asn1_read_implicit_Integer(struct asn1_data
*data
, int *i
)
885 while (!data
->has_error
&& asn1_tag_remaining(data
)>0) {
886 if (!asn1_read_uint8(data
, &b
)) return false;
889 return !data
->has_error
;
893 /* read an integer */
894 bool asn1_read_Integer(struct asn1_data
*data
, int *i
)
898 if (!asn1_start_tag(data
, ASN1_INTEGER
)) return false;
899 if (!asn1_read_implicit_Integer(data
, i
)) return false;
900 return asn1_end_tag(data
);
903 /* read a BIT STRING */
904 bool asn1_read_BitString(struct asn1_data
*data
, TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, uint8_t *padding
)
908 if (!asn1_start_tag(data
, ASN1_BIT_STRING
)) return false;
909 len
= asn1_tag_remaining(data
);
911 data
->has_error
= true;
914 if (!asn1_read_uint8(data
, padding
)) return false;
916 *blob
= data_blob_talloc(mem_ctx
, NULL
, len
);
918 data
->has_error
= true;
921 if (asn1_read(data
, blob
->data
, len
- 1)) {
927 if (data
->has_error
) {
928 data_blob_free(blob
);
929 *blob
= data_blob_null
;
936 /* read an integer */
937 bool asn1_read_enumerated(struct asn1_data
*data
, int *v
)
941 if (!asn1_start_tag(data
, ASN1_ENUMERATED
)) return false;
942 while (!data
->has_error
&& asn1_tag_remaining(data
)>0) {
944 asn1_read_uint8(data
, &b
);
947 return asn1_end_tag(data
);
950 /* check a enumerated value is correct */
951 bool asn1_check_enumerated(struct asn1_data
*data
, int v
)
954 if (!asn1_start_tag(data
, ASN1_ENUMERATED
)) return false;
955 asn1_read_uint8(data
, &b
);
959 data
->has_error
= false;
961 return !data
->has_error
;
964 /* write an enumerated value to the stream */
965 bool asn1_write_enumerated(struct asn1_data
*data
, uint8_t v
)
967 if (!asn1_push_tag(data
, ASN1_ENUMERATED
)) return false;
968 asn1_write_uint8(data
, v
);
970 return !data
->has_error
;
974 Get us the data just written without copying
976 bool asn1_blob(const struct asn1_data
*asn1
, DATA_BLOB
*blob
)
978 if (asn1
->has_error
) {
981 if (asn1
->nesting
!= NULL
) {
984 blob
->data
= asn1
->data
;
985 blob
->length
= asn1
->length
;
990 Fill in an asn1 struct without making a copy
992 void asn1_load_nocopy(struct asn1_data
*data
, uint8_t *buf
, size_t len
)
1000 check if a ASN.1 blob is a full tag
1002 NTSTATUS
asn1_full_tag(DATA_BLOB blob
, uint8_t tag
, size_t *packet_size
)
1004 struct asn1_data
*asn1
= asn1_init(NULL
);
1007 NT_STATUS_HAVE_NO_MEMORY(asn1
);
1009 asn1
->data
= blob
.data
;
1010 asn1
->length
= blob
.length
;
1011 asn1_start_tag(asn1
, tag
);
1012 if (asn1
->has_error
) {
1014 return STATUS_MORE_ENTRIES
;
1016 size
= asn1_tag_remaining(asn1
) + asn1
->ofs
;
1020 if (size
> blob
.length
) {
1021 return STATUS_MORE_ENTRIES
;
1024 *packet_size
= size
;
1025 return NT_STATUS_OK
;
1028 NTSTATUS
asn1_peek_full_tag(DATA_BLOB blob
, uint8_t tag
, size_t *packet_size
)
1030 struct asn1_data asn1
;
1035 asn1
.data
= blob
.data
;
1036 asn1
.length
= blob
.length
;
1038 ok
= asn1_peek_tag_needed_size(&asn1
, tag
, &size
);
1040 return NT_STATUS_INVALID_BUFFER_SIZE
;
1043 if (size
> blob
.length
) {
1044 *packet_size
= size
;
1045 return STATUS_MORE_ENTRIES
;
1048 *packet_size
= size
;
1049 return NT_STATUS_OK
;