1 /* tlv.c - Tag-Length-Value Utilities
2 * Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG 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 * GnuPG 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
29 #if GNUPG_MAJOR_VERSION == 1
30 #define GPG_ERR_EOF (-1)
31 #define GPG_ERR_BAD_BER (1) /*G10ERR_GENERAL*/
32 #define GPG_ERR_INV_SEXP (45) /*G10ERR_INV_ARG*/
33 typedef int gpg_error_t
;
34 #define gpg_error(n) (n)
36 #include <gpg-error.h>
41 static const unsigned char *
42 do_find_tlv (const unsigned char *buffer
, size_t length
,
43 int tag
, size_t *nbytes
, int nestlevel
)
45 const unsigned char *s
= buffer
;
55 return NULL
; /* Buffer definitely too short for tag and length. */
56 if (!*s
|| *s
== 0xff)
57 { /* Skip optional filler between TLV objects. */
62 composite
= !!(*s
& 0x20);
63 if ((*s
& 0x1f) == 0x1f)
64 { /* more tag bytes to follow */
68 return NULL
; /* buffer definitely too short for tag and length. */
69 if ((*s
& 0x1f) == 0x1f)
70 return NULL
; /* We support only up to 2 bytes. */
71 this_tag
= (s
[-1] << 8) | (s
[0] & 0x7f);
80 { /* One byte length follows. */
82 return NULL
; /* we expected 1 more bytes with the length. */
87 { /* Two byte length follows. */
89 return NULL
; /* We expected 2 more bytes with the length. */
90 len
= (s
[0] << 8) | s
[1];
94 return NULL
; /* APDU limit is 65535, thus it does not make
95 sense to assume longer length fields. */
97 if (composite
&& nestlevel
< 100)
98 { /* Dive into this composite DO after checking for a too deep
100 const unsigned char *tmp_s
;
103 tmp_s
= do_find_tlv (s
, len
, tag
, &tmp_len
, nestlevel
+1);
117 return NULL
; /* Buffer too short to skip to the next tag. */
123 /* Locate a TLV encoded data object in BUFFER of LENGTH and
124 return a pointer to value as well as its length in NBYTES. Return
125 NULL if it was not found or if the object does not fit into the buffer. */
126 const unsigned char *
127 find_tlv (const unsigned char *buffer
, size_t length
,
128 int tag
, size_t *nbytes
)
130 const unsigned char *p
;
132 p
= do_find_tlv (buffer
, length
, tag
, nbytes
, 0);
133 if (p
&& *nbytes
> (length
- (p
-buffer
)))
134 p
= NULL
; /* Object longer than buffer. */
140 /* Locate a TLV encoded data object in BUFFER of LENGTH and
141 return a pointer to value as well as its length in NBYTES. Return
142 NULL if it was not found. Note, that the function does not check
143 whether the value fits into the provided buffer. */
144 const unsigned char *
145 find_tlv_unchecked (const unsigned char *buffer
, size_t length
,
146 int tag
, size_t *nbytes
)
148 return do_find_tlv (buffer
, length
, tag
, nbytes
, 0);
152 /* ASN.1 BER parser: Parse BUFFER of length SIZE and return the tag
153 and the length part from the TLV triplet. Update BUFFER and SIZE
156 parse_ber_header (unsigned char const **buffer
, size_t *size
,
157 int *r_class
, int *r_tag
,
158 int *r_constructed
, int *r_ndef
,
159 size_t *r_length
, size_t *r_nhdr
)
163 const unsigned char *buf
= *buffer
;
164 size_t length
= *size
;
172 return gpg_error (GPG_ERR_EOF
);
173 c
= *buf
++; length
--; ++*r_nhdr
;
175 *r_class
= (c
& 0xc0) >> 6;
176 *r_constructed
= !!(c
& 0x20);
186 return gpg_error (GPG_ERR_EOF
);
187 c
= *buf
++; length
--; ++*r_nhdr
;
195 /* Get the length. */
197 return gpg_error (GPG_ERR_EOF
);
198 c
= *buf
++; length
--; ++*r_nhdr
;
205 return gpg_error (GPG_ERR_BAD_BER
);
208 unsigned long len
= 0;
209 int count
= c
& 0x7f;
211 if (count
> sizeof (len
) || count
> sizeof (size_t))
212 return gpg_error (GPG_ERR_BAD_BER
);
214 for (; count
; count
--)
218 return gpg_error (GPG_ERR_EOF
);
219 c
= *buf
++; length
--; ++*r_nhdr
;
225 /* Without this kludge some example certs can't be parsed. */
226 if (*r_class
== CLASS_UNIVERSAL
&& !*r_tag
)
235 /* FIXME: The following function should not go into this file but for
236 now it is easier to keep it here. */
238 /* Return the next token of an canconical encoded S-expression. BUF
239 is the pointer to the S-expression and BUFLEN is a pointer to the
240 length of this S-expression (used to validate the syntax). Both
241 are updated to reflect the new position. The token itself is
242 returned as a pointer into the orginal buffer at TOK and TOKLEN.
243 If a parentheses is the next token, TOK will be set to NULL.
244 TOKLEN is checked to be within the bounds. On error a error code
245 is returned and all pointers should are not guaranteed to point to
246 a meanigful value. DEPTH should be initialized to 0 and will
247 reflect on return the actual depth of the tree. To detect the end
248 of the S-expression it is advisable to check DEPTH after a
252 while (!(err = parse_sexp (&buf, &buflen, &depth, &tok, &toklen))
254 process_token (tok, toklen);
259 parse_sexp (unsigned char const **buf
, size_t *buflen
,
260 int *depth
, unsigned char const **tok
, size_t *toklen
)
262 const unsigned char *s
;
270 return *depth
? gpg_error (GPG_ERR_INV_SEXP
) : 0;
282 return gpg_error (GPG_ERR_INV_SEXP
);
290 for (vlen
=0; n
&& *s
&& *s
!= ':' && (*s
>= '0' && *s
<= '9'); s
++, n
--)
291 vlen
= vlen
*10 + (*s
- '0');
293 return gpg_error (GPG_ERR_INV_SEXP
);
296 return gpg_error (GPG_ERR_INV_SEXP
);