blob: 1ac2a5ef0d90ea16bf8a3e1d5725fe921a34b3d5 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
Lev Walkin20696a42017-10-17 21:27:33 -07002 * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkinf15320b2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _BER_DECODER_H_
6#define _BER_DECODER_H_
7
Lev Walkin11c3e172004-09-24 21:00:50 +00008#include <asn_application.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00009
Lev Walkin21b41ac2005-07-24 09:03:44 +000010#ifdef __cplusplus
11extern "C" {
12#endif
13
Lev Walkin1cbd2222004-09-29 13:24:10 +000014struct asn_TYPE_descriptor_s; /* Forward declaration */
15struct asn_codec_ctx_s; /* Forward declaration */
Lev Walkinf15320b2004-06-03 03:38:44 +000016
17/*
Lev Walkinf15320b2004-06-03 03:38:44 +000018 * The BER decoder of any type.
19 * This function may be invoked directly from the application.
Lev Walkin28647742017-09-12 11:07:06 -070020 * Decodes BER, DER and CER data (DER and CER are different subsets of BER).
21 *
22 * NOTE: Use the der_encode() function (der_encoder.h) to produce encoding
23 * which is compliant with ber_decode().
Lev Walkinf15320b2004-06-03 03:38:44 +000024 */
Lev Walkin20696a42017-10-17 21:27:33 -070025asn_dec_rval_t ber_decode(
26 const struct asn_codec_ctx_s *opt_codec_ctx,
27 const struct asn_TYPE_descriptor_s *type_descriptor,
28 void **struct_ptr, /* Pointer to a target structure's pointer */
29 const void *buffer, /* Data to be decoded */
30 size_t size /* Size of that buffer */
31);
Lev Walkinf15320b2004-06-03 03:38:44 +000032
33/*
34 * Type of generic function which decodes the byte stream into the structure.
35 */
Lev Walkin20696a42017-10-17 21:27:33 -070036typedef asn_dec_rval_t(ber_type_decoder_f)(
37 const struct asn_codec_ctx_s *opt_codec_ctx,
38 const struct asn_TYPE_descriptor_s *type_descriptor, void **struct_ptr,
39 const void *buf_ptr, size_t size, int tag_mode);
Lev Walkinf15320b2004-06-03 03:38:44 +000040
41/*******************************
42 * INTERNALLY USEFUL FUNCTIONS *
43 *******************************/
44
45/*
46 * Check that all tags correspond to the type definition (as given in head).
47 * On return, last_length would contain either a non-negative length of the
48 * value part of the last TLV, or the negative number of expected
49 * "end of content" sequences. The number may only be negative if the
50 * head->last_tag_form is non-zero.
51 */
Lev Walkindc06f6b2004-10-20 15:50:55 +000052asn_dec_rval_t ber_check_tags(
Lev Walkin20696a42017-10-17 21:27:33 -070053 const struct asn_codec_ctx_s *opt_codec_ctx, /* codec options */
54 const struct asn_TYPE_descriptor_s *type_descriptor,
55 asn_struct_ctx_t *opt_ctx, /* saved decoding context */
56 const void *ptr, size_t size,
57 int tag_mode, /* {-1,0,1}: IMPLICIT, no, EXPLICIT */
58 int last_tag_form, /* {-1,0:1}: any, primitive, constr */
59 ber_tlv_len_t *last_length, int *opt_tlv_form /* optional tag form */
60);
Lev Walkinf15320b2004-06-03 03:38:44 +000061
Lev Walkin21b41ac2005-07-24 09:03:44 +000062#ifdef __cplusplus
63}
64#endif
65
Lev Walkinf15320b2004-06-03 03:38:44 +000066#endif /* _BER_DECODER_H_ */