blob: 98fee965d72339b4ec6088102576d82029bde77e [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * Please read the NativeInteger.h for the explanation wrt. differences between
7 * INTEGER and NativeInteger.
8 * Basically, both are decoders and encoders of ASN.1 INTEGER type, but this
9 * implementation deals with the standard (machine-specific) representation
10 * of them instead of using the platform-independent buffer.
11 */
12#include <NativeInteger.h>
13#include <INTEGER.h>
14#include <assert.h>
15
16/*
17 * NativeInteger basic type description.
18 */
19static ber_tlv_tag_t asn1_DEF_NativeInteger_tags[] = {
20 (ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
21};
22asn1_TYPE_descriptor_t asn1_DEF_NativeInteger = {
23 "INTEGER", /* The ASN.1 type is still INTEGER */
24 asn_generic_no_constraint,
25 NativeInteger_decode_ber,
26 NativeInteger_encode_der,
27 NativeInteger_print,
28 NativeInteger_free,
29 0, /* Use generic outmost tag fetcher */
30 asn1_DEF_NativeInteger_tags,
vlm72425de2004-09-13 08:31:01 +000031 sizeof(asn1_DEF_NativeInteger_tags) / sizeof(asn1_DEF_NativeInteger_tags[0]),
32 asn1_DEF_NativeInteger_tags, /* Same as above */
33 sizeof(asn1_DEF_NativeInteger_tags) / sizeof(asn1_DEF_NativeInteger_tags[0]),
vlmb42843a2004-06-05 08:17:50 +000034 0, /* Always in primitive form */
vlme413c122004-08-20 13:23:42 +000035 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000036 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000037};
38
39/*
40 * Decode INTEGER type.
41 */
42ber_dec_rval_t
43NativeInteger_decode_ber(asn1_TYPE_descriptor_t *td,
44 void **int_ptr, void *buf_ptr, size_t size, int tag_mode) {
vlmda674682004-08-11 09:07:36 +000045 int *Int = (int *)*int_ptr;
vlmfa67ddc2004-06-03 03:38:44 +000046 ber_dec_rval_t rval;
vlmb42843a2004-06-05 08:17:50 +000047 ber_dec_ctx_t ctx = { 0, 0, 0, 0 };
vlmfa67ddc2004-06-03 03:38:44 +000048 ber_tlv_len_t length;
49
50 /*
51 * If the structure is not there, allocate it.
52 */
53 if(Int == NULL) {
vlmda674682004-08-11 09:07:36 +000054 (void *)Int = *int_ptr = CALLOC(1, sizeof(*Int));
vlmfa67ddc2004-06-03 03:38:44 +000055 if(Int == NULL) {
56 rval.code = RC_FAIL;
57 rval.consumed = 0;
58 return rval;
59 }
60 }
61
62 ASN_DEBUG("Decoding %s as INTEGER (tm=%d)",
63 td->name, tag_mode);
64
65 /*
66 * Check tags.
67 */
68 rval = ber_check_tags(td, &ctx,
69 buf_ptr, size, tag_mode, &length, 0);
70 if(rval.code != RC_OK)
71 return rval;
72
73 ASN_DEBUG("%s length is %d bytes", td->name, (int)length);
74
75 /*
76 * Make sure we have this length.
77 */
vlmd86c9252004-08-25 01:34:11 +000078 buf_ptr = ((char *)buf_ptr) + rval.consumed;
vlmfa67ddc2004-06-03 03:38:44 +000079 size -= rval.consumed;
vlmb42843a2004-06-05 08:17:50 +000080 if(length > (ber_tlv_len_t)size) {
vlmfa67ddc2004-06-03 03:38:44 +000081 rval.code = RC_WMORE;
82 rval.consumed = 0;
83 return rval;
84 }
85
86 /*
87 * ASN.1 encoded INTEGER: buf_ptr, length
88 * Fill the Int, at the same time checking for overflow.
89 * If overflow occured, return with RC_FAIL.
90 */
91 {
92 INTEGER_t tmp;
93 long l;
vlmda674682004-08-11 09:07:36 +000094 tmp.buf = (uint8_t *)buf_ptr;
vlmfa67ddc2004-06-03 03:38:44 +000095 tmp.size = length;
96
97 if(asn1_INTEGER2long(&tmp, &l)) {
98 rval.code = RC_FAIL;
99 rval.consumed = 0;
100 return rval;
101 }
102
103 *Int = l;
104
105 /*
106 * Note that int might be shorter than long.
107 * This expression hopefully will be optimized away
108 * by compiler.
109 */
110 if(sizeof(int) != sizeof(long) && (*Int != l)) {
111 *Int = 0; /* Safe value */
112 rval.code = RC_FAIL;
113 rval.consumed = 0;
114 return rval;
115 }
116 }
117
118 rval.code = RC_OK;
119 rval.consumed += length;
120
121 ASN_DEBUG("Took %ld/%ld bytes to encode %s (%d)",
122 (long)rval.consumed, (long)length, td->name, *Int);
123
124 return rval;
125}
126
127/*
128 * Encode the NativeInteger using the standard INTEGER type DER encoder.
129 */
130der_enc_rval_t
131NativeInteger_encode_der(asn1_TYPE_descriptor_t *sd, void *ptr,
132 int tag_mode, ber_tlv_tag_t tag,
133 asn_app_consume_bytes_f *cb, void *app_key) {
134 unsigned int Int = *(unsigned int *)ptr; /* Disable sign ext. */
135 der_enc_rval_t erval;
136 INTEGER_t tmp;
137
138#ifdef WORDS_BIGENDIAN /* Opportunistic optimization */
139
140 tmp.buf = &Int;
141 tmp.size = sizeof(Int);
142
143#else /* Works even if WORDS_BIGENDIAN is not set where should've been */
144 uint8_t buf[sizeof(int)];
145 uint8_t *p;
146
147 /* Prepare fake INTEGER */
148 for(p = buf + sizeof(buf) - 1; p >= buf; p--, Int >>= 8)
149 *p = Int & 0xff;
150
151 tmp.buf = buf;
152 tmp.size = sizeof(buf);
153#endif /* WORDS_BIGENDIAN */
154
155 /* Encode fake INTEGER */
156 erval = INTEGER_encode_der(sd, &tmp, tag_mode, tag, cb, app_key);
157 if(erval.encoded == -1) {
158 assert(erval.structure_ptr == &tmp);
159 erval.structure_ptr = ptr;
160 }
161 return erval;
162}
163
164/*
165 * INTEGER specific human-readable output.
166 */
167int
168NativeInteger_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
169 asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +0000170 const int *Int = (const int *)sptr;
vlm7d278c42004-07-19 17:30:25 +0000171 char scratch[32]; /* Enough for 64-bit int */
vlmfa67ddc2004-06-03 03:38:44 +0000172 int ret;
173
vlmb42843a2004-06-05 08:17:50 +0000174 (void)td; /* Unused argument */
175 (void)ilevel; /* Unused argument */
176
vlmfa67ddc2004-06-03 03:38:44 +0000177 if(Int) {
178 ret = snprintf(scratch, sizeof(scratch), "%d", *Int);
vlmb42843a2004-06-05 08:17:50 +0000179 assert(ret > 0 && ret < (int)sizeof(scratch));
vlmfa67ddc2004-06-03 03:38:44 +0000180 return cb(scratch, ret, app_key);
181 } else {
182 return cb("<absent>", 8, app_key);
183 }
184}
185
186void
187NativeInteger_free(asn1_TYPE_descriptor_t *td, void *ptr, int contents_only) {
188
189 if(!td || !ptr)
190 return;
191
192 ASN_DEBUG("Freeing %s as INTEGER (%d, %p, Native)",
193 td->name, contents_only, ptr);
194
195 if(!contents_only) {
196 FREEMEM(ptr);
197 }
198}
199