blob: 164bf3f6da162c55cfdf9eb4a7c5139d69df48af [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
vlm80a48592005-02-25 12:10:27 +00002 * Copyright (c) 2003, 2004, 2005 Lev Walkin <vlm@lionet.info>.
3 * All rights reserved.
vlmfa67ddc2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
vlm39ba4c42004-09-22 16:06:28 +00006#include <asn_internal.h>
vlmfa67ddc2004-06-03 03:38:44 +00007#include <INTEGER.h>
vlma4799a62004-10-21 11:21:25 +00008#include <asn_codecs_prim.h> /* Encoder and decoder of a primitive type */
vlmfa67ddc2004-06-03 03:38:44 +00009#include <assert.h>
10#include <errno.h>
11
12/*
13 * INTEGER basic type description.
14 */
vlmef6355b2004-09-29 13:26:15 +000015static ber_tlv_tag_t asn_DEF_INTEGER_tags[] = {
vlmfa67ddc2004-06-03 03:38:44 +000016 (ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
17};
vlmef6355b2004-09-29 13:26:15 +000018asn_TYPE_descriptor_t asn_DEF_INTEGER = {
vlmfa67ddc2004-06-03 03:38:44 +000019 "INTEGER",
vlm9de248e2004-10-20 15:50:55 +000020 "INTEGER",
vlm6678cb12004-09-26 13:10:40 +000021 ASN__PRIMITIVE_TYPE_free,
vlm39ba4c42004-09-22 16:06:28 +000022 INTEGER_print,
vlmfa67ddc2004-06-03 03:38:44 +000023 asn_generic_no_constraint,
vlm6678cb12004-09-26 13:10:40 +000024 ber_decode_primitive,
vlmfa67ddc2004-06-03 03:38:44 +000025 INTEGER_encode_der,
vlma4799a62004-10-21 11:21:25 +000026 INTEGER_decode_xer,
vlm39ba4c42004-09-22 16:06:28 +000027 INTEGER_encode_xer,
vlmfa67ddc2004-06-03 03:38:44 +000028 0, /* Use generic outmost tag fetcher */
vlmef6355b2004-09-29 13:26:15 +000029 asn_DEF_INTEGER_tags,
30 sizeof(asn_DEF_INTEGER_tags) / sizeof(asn_DEF_INTEGER_tags[0]),
31 asn_DEF_INTEGER_tags, /* Same as above */
32 sizeof(asn_DEF_INTEGER_tags) / sizeof(asn_DEF_INTEGER_tags[0]),
vlme413c122004-08-20 13:23:42 +000033 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000034 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000035};
36
37/*
vlmfa67ddc2004-06-03 03:38:44 +000038 * Encode INTEGER type using DER.
39 */
vlm39ba4c42004-09-22 16:06:28 +000040asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +000041INTEGER_encode_der(asn_TYPE_descriptor_t *td, void *sptr,
vlmfa67ddc2004-06-03 03:38:44 +000042 int tag_mode, ber_tlv_tag_t tag,
43 asn_app_consume_bytes_f *cb, void *app_key) {
vlm6678cb12004-09-26 13:10:40 +000044 INTEGER_t *st = (INTEGER_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +000045
46 ASN_DEBUG("%s %s as INTEGER (tm=%d)",
vlm6678cb12004-09-26 13:10:40 +000047 cb?"Encoding":"Estimating", td->name, tag_mode);
vlmfa67ddc2004-06-03 03:38:44 +000048
49 /*
50 * Canonicalize integer in the buffer.
51 * (Remove too long sign extension, remove some first 0x00 bytes)
52 */
53 if(st->buf) {
54 uint8_t *buf = st->buf;
55 uint8_t *end1 = buf + st->size - 1;
56 int shift;
57
58 /* Compute the number of superfluous leading bytes */
59 for(; buf < end1; buf++) {
60 /*
61 * If the contents octets of an integer value encoding
62 * consist of more than one octet, then the bits of the
63 * first octet and bit 8 of the second octet:
64 * a) shall not all be ones; and
65 * b) shall not all be zero.
66 */
67 switch(*buf) {
68 case 0x00: if((buf[1] & 0x80) == 0)
69 continue;
70 break;
71 case 0xff: if((buf[1] & 0x80))
72 continue;
73 break;
74 }
75 break;
76 }
77
78 /* Remove leading superfluous bytes from the integer */
79 shift = buf - st->buf;
80 if(shift) {
81 uint8_t *nb = st->buf;
82 uint8_t *end;
83
84 st->size -= shift; /* New size, minus bad bytes */
85 end = nb + st->size;
86
87 for(; nb < end; nb++, buf++)
88 *nb = *buf;
89 }
90
91 } /* if(1) */
92
vlm6678cb12004-09-26 13:10:40 +000093 return der_encode_primitive(td, sptr, tag_mode, tag, cb, app_key);
vlmfa67ddc2004-06-03 03:38:44 +000094}
95
vlm80a48592005-02-25 12:10:27 +000096static const asn_INTEGER_enum_map_t *INTEGER__map_value2enum(asn_INTEGER_specifics_t *specs, long value);
97static const asn_INTEGER_enum_map_t *INTEGER__map_enum2value(asn_INTEGER_specifics_t *specs, const char *lstart, const char *lstop);
98
vlmfa67ddc2004-06-03 03:38:44 +000099/*
100 * INTEGER specific human-readable output.
101 */
vlm39ba4c42004-09-22 16:06:28 +0000102static ssize_t
vlm80a48592005-02-25 12:10:27 +0000103INTEGER__dump(asn_TYPE_descriptor_t *td, const INTEGER_t *st, asn_app_consume_bytes_f *cb, void *app_key, int plainOrXER) {
104 asn_INTEGER_specifics_t *specs=(asn_INTEGER_specifics_t *)td->specifics;
vlm7d278c42004-07-19 17:30:25 +0000105 char scratch[32]; /* Enough for 64-bit integer */
vlmfa67ddc2004-06-03 03:38:44 +0000106 uint8_t *buf = st->buf;
107 uint8_t *buf_end = st->buf + st->size;
108 signed long accum;
vlm39ba4c42004-09-22 16:06:28 +0000109 ssize_t wrote = 0;
vlmfa67ddc2004-06-03 03:38:44 +0000110 char *p;
111 int ret;
112
vlm7d278c42004-07-19 17:30:25 +0000113 /*
114 * Advance buf pointer until the start of the value's body.
115 * This will make us able to process large integers using simple case,
116 * when the actual value is small
117 * (0x0000000000abcdef would yield a fine 0x00abcdef)
118 */
119 /* Skip the insignificant leading bytes */
120 for(; buf < buf_end-1; buf++) {
121 switch(*buf) {
122 case 0x00: if((buf[1] & 0x80) == 0) continue; break;
123 case 0xff: if((buf[1] & 0x80) != 0) continue; break;
124 }
125 break;
126 }
127
vlmfa67ddc2004-06-03 03:38:44 +0000128 /* Simple case: the integer size is small */
vlm7d278c42004-07-19 17:30:25 +0000129 if((size_t)(buf_end - buf) <= sizeof(accum)) {
vlm80a48592005-02-25 12:10:27 +0000130 const asn_INTEGER_enum_map_t *el;
131 size_t scrsize;
132 char *scr;
133
134 if(buf == buf_end) {
135 accum = 0;
136 } else {
137 accum = (*buf & 0x80) ? -1 : 0;
138 for(; buf < buf_end; buf++)
139 accum = (accum << 8) | *buf;
140 }
141
142 el = INTEGER__map_value2enum(specs, accum);
143 if(el) {
144 scrsize = el->enum_len + 32;
145 scr = (char *)alloca(scrsize);
146 if(plainOrXER == 0)
147 ret = snprintf(scr, scrsize,
148 "%ld (%s)", accum, el->enum_name);
149 else
150 ret = snprintf(scr, scrsize,
151 "<%s/>", el->enum_name);
152 } else if(plainOrXER && specs && specs->strict_enumeration) {
153 ASN_DEBUG("ASN.1 forbids dealing with "
154 "unknown value of ENUMERATED type");
155 errno = EPERM;
156 return -1;
157 } else {
158 scrsize = sizeof(scratch);
159 scr = scratch;
160 ret = snprintf(scr, scrsize, "%ld", accum);
161 }
162 assert(ret > 0 && (size_t)ret < scrsize);
163 return (cb(scr, ret, app_key) < 0) ? -1 : ret;
164 } else if(plainOrXER && specs && specs->strict_enumeration) {
165 /*
166 * Here and earlier, we cannot encode the ENUMERATED values
167 * if there is no corresponding identifier.
168 */
169 ASN_DEBUG("ASN.1 forbids dealing with "
170 "unknown value of ENUMERATED type");
171 errno = EPERM;
172 return -1;
vlmfa67ddc2004-06-03 03:38:44 +0000173 }
174
175 /* Output in the long xx:yy:zz... format */
vlm7d278c42004-07-19 17:30:25 +0000176 /* TODO: replace with generic algorithm (Knuth TAOCP Vol 2, 4.3.1) */
vlmfa67ddc2004-06-03 03:38:44 +0000177 for(p = scratch; buf < buf_end; buf++) {
vlm1ff928d2004-08-11 08:10:13 +0000178 static const char *h2c = "0123456789ABCDEF";
vlm7d278c42004-07-19 17:30:25 +0000179 if((p - scratch) >= (ssize_t)(sizeof(scratch) - 4)) {
vlmfa67ddc2004-06-03 03:38:44 +0000180 /* Flush buffer */
vlm39ba4c42004-09-22 16:06:28 +0000181 if(cb(scratch, p - scratch, app_key) < 0)
vlmfa67ddc2004-06-03 03:38:44 +0000182 return -1;
vlm39ba4c42004-09-22 16:06:28 +0000183 wrote += p - scratch;
vlmfa67ddc2004-06-03 03:38:44 +0000184 p = scratch;
185 }
186 *p++ = h2c[*buf >> 4];
187 *p++ = h2c[*buf & 0x0F];
vlmef6355b2004-09-29 13:26:15 +0000188 *p++ = 0x3a; /* ":" */
vlmfa67ddc2004-06-03 03:38:44 +0000189 }
vlm7d278c42004-07-19 17:30:25 +0000190 if(p != scratch)
vlmef6355b2004-09-29 13:26:15 +0000191 p--; /* Remove the last ":" */
vlmfa67ddc2004-06-03 03:38:44 +0000192
vlm39ba4c42004-09-22 16:06:28 +0000193 wrote += p - scratch;
194 return (cb(scratch, p - scratch, app_key) < 0) ? -1 : wrote;
195}
196
197/*
198 * INTEGER specific human-readable output.
199 */
200int
vlmef6355b2004-09-29 13:26:15 +0000201INTEGER_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
vlm39ba4c42004-09-22 16:06:28 +0000202 asn_app_consume_bytes_f *cb, void *app_key) {
203 const INTEGER_t *st = (const INTEGER_t *)sptr;
vlm6678cb12004-09-26 13:10:40 +0000204 ssize_t ret;
vlm39ba4c42004-09-22 16:06:28 +0000205
206 (void)td;
207 (void)ilevel;
208
vlm6678cb12004-09-26 13:10:40 +0000209 if(!st && !st->buf)
210 ret = cb("<absent>", 8, app_key);
211 else
vlm80a48592005-02-25 12:10:27 +0000212 ret = INTEGER__dump(td, st, cb, app_key, 0);
vlm39ba4c42004-09-22 16:06:28 +0000213
vlm6678cb12004-09-26 13:10:40 +0000214 return (ret < 0) ? -1 : 0;
vlm39ba4c42004-09-22 16:06:28 +0000215}
216
vlm80a48592005-02-25 12:10:27 +0000217struct e2v_key {
218 const char *start;
219 const char *stop;
220 asn_INTEGER_enum_map_t *vemap;
221 unsigned int *evmap;
222};
223static int
224INTEGER__compar_enum2value(const void *kp, const void *am) {
225 const struct e2v_key *key = (const struct e2v_key *)kp;
226 const asn_INTEGER_enum_map_t *el = (const asn_INTEGER_enum_map_t *)am;
227 const char *ptr, *end, *name;
228
229 /* Remap the element (sort by different criterion) */
230 el = key->vemap + key->evmap[el - key->vemap];
231
232 /* Compare strings */
233 for(ptr = key->start, end = key->stop, name = el->enum_name;
234 ptr < end; ptr++, name++) {
235 if(*ptr != *name)
236 return *(const unsigned char *)ptr
237 - *(const unsigned char *)name;
238 }
239 return name[0] ? -1 : 0;
240}
241
242static const asn_INTEGER_enum_map_t *
243INTEGER__map_enum2value(asn_INTEGER_specifics_t *specs, const char *lstart, const char *lstop) {
vlme26febf2005-03-04 11:18:44 +0000244 asn_INTEGER_enum_map_t *el_found;
vlm80a48592005-02-25 12:10:27 +0000245 int count = specs ? specs->map_count : 0;
246 struct e2v_key key;
247 const char *lp;
248
249 if(!count) return NULL;
250
251 /* Guaranteed: assert(lstart < lstop); */
252 /* Figure out the tag name */
253 for(lstart++, lp = lstart; lp < lstop; lp++) {
254 switch(*lp) {
255 case 9: case 10: case 11: case 12: case 13: case 32: /* WSP */
256 case 0x2f: /* '/' */ case 0x3e: /* '>' */
257 break;
258 default:
259 continue;
260 }
261 break;
262 }
263 if(lp == lstop) return NULL; /* No tag found */
264 lstop = lp;
265
266 key.start = lstart;
267 key.stop = lstop;
268 key.vemap = specs->value2enum;
269 key.evmap = specs->enum2value;
vlme26febf2005-03-04 11:18:44 +0000270 el_found = (asn_INTEGER_enum_map_t *)bsearch(&key,
271 specs->value2enum, count, sizeof(specs->value2enum[0]),
272 INTEGER__compar_enum2value);
273 if(el_found) {
274 /* Remap enum2value into value2enum */
275 el_found = key.vemap + key.evmap[el_found - key.vemap];
276 }
277 return el_found;
vlm80a48592005-02-25 12:10:27 +0000278}
279
280static int
281INTEGER__compar_value2enum(const void *kp, const void *am) {
282 long a = *(const long *)kp;
283 const asn_INTEGER_enum_map_t *el = (const asn_INTEGER_enum_map_t *)am;
284 long b = el->nat_value;
285 if(a < b) return -1;
286 else if(a == b) return 0;
287 else return 1;
288}
289
290static const asn_INTEGER_enum_map_t *
291INTEGER__map_value2enum(asn_INTEGER_specifics_t *specs, long value) {
292 int count = specs ? specs->map_count : 0;
293 if(!count) return 0;
294 return (asn_INTEGER_enum_map_t *)bsearch(&value, specs->value2enum,
295 count, sizeof(specs->value2enum[0]),
296 INTEGER__compar_value2enum);
297}
298
vlma4799a62004-10-21 11:21:25 +0000299/*
300 * Decode the chunk of XML text encoding INTEGER.
301 */
vlm4df9cc12005-03-09 22:19:25 +0000302static enum xer_pbd_rval
303INTEGER__xer_body_decode(asn_TYPE_descriptor_t *td, void *sptr, const void *chunk_buf, size_t chunk_size) {
vlmb848b2a2004-10-21 14:02:19 +0000304 INTEGER_t *st = (INTEGER_t *)sptr;
vlma4799a62004-10-21 11:21:25 +0000305 long sign = 1;
306 long value;
vlm80a48592005-02-25 12:10:27 +0000307 const char *lp;
308 const char *lstart = (const char *)chunk_buf;
309 const char *lstop = lstart + chunk_size;
vlma4799a62004-10-21 11:21:25 +0000310 enum {
311 ST_SKIPSPACE,
312 ST_WAITDIGITS,
313 ST_DIGITS,
vlm585e79f2005-03-09 22:31:22 +0000314 ST_EXTRASTUFF,
vlma4799a62004-10-21 11:21:25 +0000315 } state = ST_SKIPSPACE;
vlme4f9cac2004-10-21 12:11:57 +0000316
vlma4799a62004-10-21 11:21:25 +0000317 /*
vlm80a48592005-02-25 12:10:27 +0000318 * We may have received a tag here. It will be processed inline.
319 * Use strtoul()-like code and serialize the result.
vlma4799a62004-10-21 11:21:25 +0000320 */
vlme4f9cac2004-10-21 12:11:57 +0000321 for(value = 0, lp = lstart; lp < lstop; lp++) {
322 int lv = *lp;
vlma4799a62004-10-21 11:21:25 +0000323 switch(lv) {
324 case 0x09: case 0x0a: case 0x0d: case 0x20:
325 if(state == ST_SKIPSPACE) continue;
326 break;
327 case 0x2d: /* '-' */
328 if(state == ST_SKIPSPACE) {
329 sign = -1;
330 state = ST_WAITDIGITS;
331 continue;
332 }
333 break;
334 case 0x2b: /* '+' */
335 if(state == ST_SKIPSPACE) {
336 state = ST_WAITDIGITS;
337 continue;
338 }
339 break;
340 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34:
341 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39:
342 if(state != ST_DIGITS) state = ST_DIGITS;
343
vlme4f9cac2004-10-21 12:11:57 +0000344 {
345 long new_value = value * 10;
346
347 if(new_value / 10 != value)
348 /* Overflow */
vlm4df9cc12005-03-09 22:19:25 +0000349 return XPBD_DECODER_LIMIT;
vlme4f9cac2004-10-21 12:11:57 +0000350
351 value = new_value + (lv - 0x30);
vlma4799a62004-10-21 11:21:25 +0000352 /* Check for two's complement overflow */
353 if(value < 0) {
354 /* Check whether it is a LONG_MIN */
355 if(sign == -1
vlmb848b2a2004-10-21 14:02:19 +0000356 && (unsigned long)value
357 == ~((unsigned long)-1 >> 1)) {
vlme4f9cac2004-10-21 12:11:57 +0000358 sign = 1;
vlma4799a62004-10-21 11:21:25 +0000359 } else {
360 /* Overflow */
vlm4df9cc12005-03-09 22:19:25 +0000361 return XPBD_DECODER_LIMIT;
vlma4799a62004-10-21 11:21:25 +0000362 }
363 }
vlme4f9cac2004-10-21 12:11:57 +0000364 }
vlma4799a62004-10-21 11:21:25 +0000365 continue;
vlm80a48592005-02-25 12:10:27 +0000366 case 0x3c: /* '<' */
367 if(state == ST_SKIPSPACE) {
368 const asn_INTEGER_enum_map_t *el;
369 el = INTEGER__map_enum2value(
370 (asn_INTEGER_specifics_t *)
371 td->specifics, lstart, lstop);
372 if(el) {
373 ASN_DEBUG("Found \"%s\" => %ld",
374 el->enum_name, el->nat_value);
375 state = ST_DIGITS;
376 value = el->nat_value;
vlm585e79f2005-03-09 22:31:22 +0000377 lp = lstop - 1;
378 continue;
vlm80a48592005-02-25 12:10:27 +0000379 }
380 ASN_DEBUG("Unknown identifier for INTEGER");
381 }
vlm4df9cc12005-03-09 22:19:25 +0000382 return XPBD_BROKEN_ENCODING;
vlma4799a62004-10-21 11:21:25 +0000383 }
vlm585e79f2005-03-09 22:31:22 +0000384
385 /* Found extra non-numeric stuff */
386 state = ST_EXTRASTUFF;
vlme4f9cac2004-10-21 12:11:57 +0000387 break;
vlma4799a62004-10-21 11:21:25 +0000388 }
389
vlm4df9cc12005-03-09 22:19:25 +0000390 if(state != ST_DIGITS) {
vlm585e79f2005-03-09 22:31:22 +0000391 if(xer_is_whitespace(lp, lstop - lp)) {
392 if(state != ST_EXTRASTUFF)
393 return XPBD_NOT_BODY_IGNORE;
394 /* Fall through */
vlm4df9cc12005-03-09 22:19:25 +0000395 } else {
396 ASN_DEBUG("No useful digits in output");
397 return XPBD_BROKEN_ENCODING; /* No digits */
398 }
399 }
vlma4799a62004-10-21 11:21:25 +0000400
401 value *= sign; /* Change sign, if needed */
402
403 if(asn_long2INTEGER(st, value))
vlm4df9cc12005-03-09 22:19:25 +0000404 return XPBD_SYSTEM_FAILURE;
vlma4799a62004-10-21 11:21:25 +0000405
vlm4df9cc12005-03-09 22:19:25 +0000406 return XPBD_BODY_CONSUMED;
vlma4799a62004-10-21 11:21:25 +0000407}
408
409asn_dec_rval_t
410INTEGER_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
411 asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
412 void *buf_ptr, size_t size) {
413
414 return xer_decode_primitive(opt_codec_ctx, td,
vlmb848b2a2004-10-21 14:02:19 +0000415 sptr, sizeof(INTEGER_t), opt_mname,
vlma4799a62004-10-21 11:21:25 +0000416 buf_ptr, size, INTEGER__xer_body_decode);
417}
418
vlm39ba4c42004-09-22 16:06:28 +0000419asn_enc_rval_t
vlmef6355b2004-09-29 13:26:15 +0000420INTEGER_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
vlm39ba4c42004-09-22 16:06:28 +0000421 int ilevel, enum xer_encoder_flags_e flags,
422 asn_app_consume_bytes_f *cb, void *app_key) {
423 const INTEGER_t *st = (const INTEGER_t *)sptr;
424 asn_enc_rval_t er;
425
426 (void)ilevel;
427 (void)flags;
428
429 if(!st && !st->buf)
430 _ASN_ENCODE_FAILED;
431
vlm80a48592005-02-25 12:10:27 +0000432 er.encoded = INTEGER__dump(td, st, cb, app_key, 1);
vlm39ba4c42004-09-22 16:06:28 +0000433 if(er.encoded < 0) _ASN_ENCODE_FAILED;
434
435 return er;
vlmfa67ddc2004-06-03 03:38:44 +0000436}
437
vlmfa67ddc2004-06-03 03:38:44 +0000438int
vlmef6355b2004-09-29 13:26:15 +0000439asn_INTEGER2long(const INTEGER_t *iptr, long *lptr) {
vlmfa67ddc2004-06-03 03:38:44 +0000440 uint8_t *b, *end;
441 size_t size;
442 long l;
443
444 /* Sanity checking */
445 if(!iptr || !iptr->buf || !lptr) {
446 errno = EINVAL;
447 return -1;
448 }
449
450 /* Cache the begin/end of the buffer */
451 b = iptr->buf; /* Start of the INTEGER buffer */
452 size = iptr->size;
453 end = b + size; /* Where to stop */
454
455 if(size > sizeof(long)) {
456 uint8_t *end1 = end - 1;
457 /*
458 * Slightly more advanced processing,
459 * able to >sizeof(long) bytes,
460 * when the actual value is small
461 * (0x0000000000abcdef would yield a fine 0x00abcdef)
462 */
463 /* Skip out the insignificant leading bytes */
464 for(; b < end1; b++) {
465 switch(*b) {
466 case 0x00: if((b[1] & 0x80) == 0) continue; break;
467 case 0xff: if((b[1] & 0x80) != 0) continue; break;
468 }
469 break;
470 }
471
472 size = end - b;
473 if(size > sizeof(long)) {
474 /* Still cannot fit the long */
475 errno = ERANGE;
476 return -1;
477 }
478 }
479
480 /* Shortcut processing of a corner case */
481 if(end == b) {
482 *lptr = 0;
483 return 0;
484 }
485
486 /* Perform the sign initialization */
487 /* Actually l = -(*b >> 7); gains nothing, yet unreadable! */
488 if((*b >> 7)) l = -1; else l = 0;
489
490 /* Conversion engine */
491 for(; b < end; b++)
492 l = (l << 8) | *b;
493
494 *lptr = l;
495 return 0;
496}
vlma4799a62004-10-21 11:21:25 +0000497
498int
499asn_long2INTEGER(INTEGER_t *st, long value) {
500 uint8_t *buf, *bp;
501 uint8_t *p;
502 uint8_t *pstart;
503 uint8_t *pend1;
vlm96a4e462004-10-26 08:20:46 +0000504 int littleEndian = 1; /* Run-time detection */
505 int add;
vlma4799a62004-10-21 11:21:25 +0000506
507 if(!st) {
508 errno = EINVAL;
509 return -1;
510 }
511
vlmb848b2a2004-10-21 14:02:19 +0000512 buf = (uint8_t *)MALLOC(sizeof(value));
vlma4799a62004-10-21 11:21:25 +0000513 if(!buf) return -1;
514
vlm96a4e462004-10-26 08:20:46 +0000515 if(*(char *)&littleEndian) {
516 pstart = (uint8_t *)&value + sizeof(value) - 1;
517 pend1 = (uint8_t *)&value;
518 add = -1;
519 } else {
520 pstart = (uint8_t *)&value;
521 pend1 = pstart + sizeof(value) - 1;
522 add = 1;
523 }
524
vlma4799a62004-10-21 11:21:25 +0000525 /*
526 * If the contents octet consists of more than one octet,
527 * then bits of the first octet and bit 8 of the second octet:
528 * a) shall not all be ones; and
529 * b) shall not all be zero.
530 */
vlm6c593842004-10-26 09:03:31 +0000531 for(p = pstart; p != pend1; p += add) {
vlma4799a62004-10-21 11:21:25 +0000532 switch(*p) {
vlm6c593842004-10-26 09:03:31 +0000533 case 0x00: if((*(p+add) & 0x80) == 0)
vlma4799a62004-10-21 11:21:25 +0000534 continue;
535 break;
vlm6c593842004-10-26 09:03:31 +0000536 case 0xff: if((*(p+add) & 0x80))
vlma4799a62004-10-21 11:21:25 +0000537 continue;
538 break;
539 }
540 break;
541 }
542 /* Copy the integer body */
vlm6c593842004-10-26 09:03:31 +0000543 for(pstart = p, bp = buf, pend1 += add; p != pend1; p += add)
544 *bp++ = *p;
vlma4799a62004-10-21 11:21:25 +0000545
546 if(st->buf) FREEMEM(st->buf);
547 st->buf = buf;
vlm6c593842004-10-26 09:03:31 +0000548 st->size = bp - buf;
vlma4799a62004-10-21 11:21:25 +0000549
550 return 0;
551}