2004-01-27 17:40:42 +01:00
|
|
|
/* tlv.h - Tag-Length-Value Utilities
|
|
|
|
* Copyright (C) 2004 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* This file is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of either
|
2004-01-27 17:40:42 +01:00
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful,
|
2004-01-27 17:40:42 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2004-01-27 17:40:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCD_TLV_H
|
|
|
|
#define SCD_TLV_H 1
|
|
|
|
|
|
|
|
|
|
|
|
enum tlv_tag_class {
|
|
|
|
CLASS_UNIVERSAL = 0,
|
|
|
|
CLASS_APPLICATION = 1,
|
|
|
|
CLASS_CONTEXT = 2,
|
|
|
|
CLASS_PRIVATE =3
|
|
|
|
};
|
|
|
|
|
|
|
|
enum tlv_tag_type {
|
|
|
|
TAG_NONE = 0,
|
|
|
|
TAG_BOOLEAN = 1,
|
|
|
|
TAG_INTEGER = 2,
|
|
|
|
TAG_BIT_STRING = 3,
|
|
|
|
TAG_OCTET_STRING = 4,
|
|
|
|
TAG_NULL = 5,
|
|
|
|
TAG_OBJECT_ID = 6,
|
|
|
|
TAG_OBJECT_DESCRIPTOR = 7,
|
|
|
|
TAG_EXTERNAL = 8,
|
|
|
|
TAG_REAL = 9,
|
|
|
|
TAG_ENUMERATED = 10,
|
|
|
|
TAG_EMBEDDED_PDV = 11,
|
|
|
|
TAG_UTF8_STRING = 12,
|
|
|
|
TAG_REALTIVE_OID = 13,
|
|
|
|
TAG_SEQUENCE = 16,
|
|
|
|
TAG_SET = 17,
|
|
|
|
TAG_NUMERIC_STRING = 18,
|
|
|
|
TAG_PRINTABLE_STRING = 19,
|
|
|
|
TAG_TELETEX_STRING = 20,
|
|
|
|
TAG_VIDEOTEX_STRING = 21,
|
|
|
|
TAG_IA5_STRING = 22,
|
|
|
|
TAG_UTC_TIME = 23,
|
|
|
|
TAG_GENERALIZED_TIME = 24,
|
|
|
|
TAG_GRAPHIC_STRING = 25,
|
|
|
|
TAG_VISIBLE_STRING = 26,
|
|
|
|
TAG_GENERAL_STRING = 27,
|
|
|
|
TAG_UNIVERSAL_STRING = 28,
|
|
|
|
TAG_CHARACTER_STRING = 29,
|
|
|
|
TAG_BMP_STRING = 30
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
/* Locate a TLV encoded data object in BUFFER of LENGTH and return a
|
|
|
|
pointer to value as well as its length in NBYTES. Return NULL if
|
|
|
|
it was not found or if the object does not fit into the buffer. */
|
|
|
|
const unsigned char *find_tlv (const unsigned char *buffer, size_t length,
|
|
|
|
int tag, size_t *nbytes);
|
|
|
|
|
2004-01-27 17:40:42 +01:00
|
|
|
|
|
|
|
/* Locate a TLV encoded data object in BUFFER of LENGTH and return a
|
|
|
|
pointer to value as well as its length in NBYTES. Return NULL if
|
|
|
|
it was not found. Note, that the function does not check whether
|
|
|
|
the value fits into the provided buffer.*/
|
2005-04-27 21:47:53 +02:00
|
|
|
const unsigned char *find_tlv_unchecked (const unsigned char *buffer,
|
|
|
|
size_t length,
|
|
|
|
int tag, size_t *nbytes);
|
2004-01-27 17:40:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* ASN.1 BER parser: Parse BUFFER of length SIZE and return the tag
|
|
|
|
and the length part from the TLV triplet. Update BUFFER and SIZE
|
|
|
|
on success. */
|
2012-02-07 10:15:57 +01:00
|
|
|
gpg_error_t parse_ber_header (unsigned char const **buffer, size_t *size,
|
2011-02-04 12:57:53 +01:00
|
|
|
int *r_class, int *r_tag,
|
2007-08-10 18:52:05 +02:00
|
|
|
int *r_constructed,
|
2012-02-07 10:15:57 +01:00
|
|
|
int *r_ndef, size_t *r_length, size_t *r_nhdr);
|
2004-01-27 17:40:42 +01:00
|
|
|
|
|
|
|
|
2011-03-01 14:22:41 +01:00
|
|
|
/* Return the next token of an canonical encoded S-expression. BUF
|
2005-05-20 22:39:36 +02:00
|
|
|
is the pointer to the S-expression and BUFLEN is a pointer to the
|
|
|
|
length of this S-expression (used to validate the syntax). Both
|
|
|
|
are updated to reflect the new position. The token itself is
|
2011-03-01 14:22:41 +01:00
|
|
|
returned as a pointer into the original buffer at TOK and TOKLEN.
|
2005-05-20 22:39:36 +02:00
|
|
|
If a parentheses is the next token, TOK will be set to NULL.
|
2011-03-01 14:22:41 +01:00
|
|
|
TOKLEN is checked to be within the bounds. On error an error code
|
|
|
|
is returned and no pointer is not guaranteed to point to
|
|
|
|
a meaningful value. DEPTH should be initialized to 0 and will
|
2005-05-20 22:39:36 +02:00
|
|
|
reflect on return the actual depth of the tree. To detect the end
|
|
|
|
of the S-expression it is advisable to check DEPTH after a
|
|
|
|
successful return. */
|
2012-02-07 10:15:57 +01:00
|
|
|
gpg_error_t parse_sexp (unsigned char const **buf, size_t *buflen,
|
|
|
|
int *depth, unsigned char const **tok, size_t *toklen);
|
2005-05-20 22:39:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2004-01-27 17:40:42 +01:00
|
|
|
#endif /* SCD_TLV_H */
|