blob: 60e866861b28b3861f1e482452dcde1c844e5253 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _BER_TLV_TAG_H_
6#define _BER_TLV_TAG_H_
7
vlm3a417582005-07-24 09:03:44 +00008#ifdef __cplusplus
9extern "C" {
10#endif
11
vlmfa67ddc2004-06-03 03:38:44 +000012enum asn_tag_class {
13 ASN_TAG_CLASS_UNIVERSAL = 0, /* 0b00 */
14 ASN_TAG_CLASS_APPLICATION = 1, /* 0b01 */
15 ASN_TAG_CLASS_CONTEXT = 2, /* 0b10 */
vlm6678cb12004-09-26 13:10:40 +000016 ASN_TAG_CLASS_PRIVATE = 3 /* 0b11 */
vlmfa67ddc2004-06-03 03:38:44 +000017};
18typedef unsigned ber_tlv_tag_t; /* BER TAG from Tag-Length-Value */
19
20/*
21 * Tag class is encoded together with tag value for optimization purposes.
22 */
23#define BER_TAG_CLASS(tag) ((tag) & 0x3)
24#define BER_TAG_VALUE(tag) ((tag) >> 2)
vlmb02dcc62005-03-10 18:52:02 +000025#define BER_TLV_CONSTRUCTED(tagptr) (((*(const uint8_t *)tagptr)&0x20)?1:0)
vlmfa67ddc2004-06-03 03:38:44 +000026
27#define BER_TAGS_EQUAL(tag1, tag2) ((tag1) == (tag2))
28
29/*
30 * Several functions for printing the TAG in the canonical form
31 * (i.e. "[PRIVATE 0]").
32 * Return values correspond to their libc counterparts (if any).
33 */
34ssize_t ber_tlv_tag_snprint(ber_tlv_tag_t tag, char *buf, size_t buflen);
35ssize_t ber_tlv_tag_fwrite(ber_tlv_tag_t tag, FILE *);
36char *ber_tlv_tag_string(ber_tlv_tag_t tag);
37
38
39/*
40 * This function tries to fetch the tag from the input stream.
41 * RETURN VALUES:
42 * 0: More data expected than bufptr contains.
43 * -1: Fatal error deciphering tag.
44 * >0: Number of bytes used from bufptr. tag_r will contain the tag.
45 */
vlmb02dcc62005-03-10 18:52:02 +000046ssize_t ber_fetch_tag(const void *bufptr, size_t size, ber_tlv_tag_t *tag_r);
vlmfa67ddc2004-06-03 03:38:44 +000047
48/*
vlm044e8d42004-08-19 13:27:34 +000049 * This function serializes the tag (T from TLV) in BER format.
vlm3326d452004-09-24 20:59:13 +000050 * It always returns number of bytes necessary to represent the tag,
vlmfa67ddc2004-06-03 03:38:44 +000051 * it is a caller's responsibility to check the return value
52 * against the supplied buffer's size.
53 */
vlm3326d452004-09-24 20:59:13 +000054size_t ber_tlv_tag_serialize(ber_tlv_tag_t tag, void *bufptr, size_t size);
vlmfa67ddc2004-06-03 03:38:44 +000055
vlm3a417582005-07-24 09:03:44 +000056#ifdef __cplusplus
57}
58#endif
59
vlmfa67ddc2004-06-03 03:38:44 +000060#endif /* _BER_TLV_TAG_H_ */