blob: b4a6df92f957e94ebcce55454a38925806a47f00 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkina9cc46e2004-09-22 16:06:28 +00005#include <asn_internal.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00006#include <NumericString.h>
7
8/*
9 * NumericString basic type description.
10 */
11static ber_tlv_tag_t asn1_DEF_NumericString_tags[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (18 << 2)), /* [UNIVERSAL 18] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000014};
15asn1_TYPE_descriptor_t asn1_DEF_NumericString = {
16 "NumericString",
Lev Walkina9cc46e2004-09-22 16:06:28 +000017 OCTET_STRING_free,
18 OCTET_STRING_print_ascii, /* ASCII subset */
Lev Walkinf15320b2004-06-03 03:38:44 +000019 NumericString_constraint,
20 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
21 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
Lev Walkina9cc46e2004-09-22 16:06:28 +000022 0, /* Not implemented yet */
23 OCTET_STRING_encode_xer_ascii,/* Implemented in terms of OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000024 0, /* Use generic outmost tag fetcher */
25 asn1_DEF_NumericString_tags,
26 sizeof(asn1_DEF_NumericString_tags)
Lev Walkin188ed2c2004-09-13 08:31:01 +000027 / sizeof(asn1_DEF_NumericString_tags[0]) - 1,
28 asn1_DEF_NumericString_tags,
29 sizeof(asn1_DEF_NumericString_tags)
Lev Walkinf15320b2004-06-03 03:38:44 +000030 / sizeof(asn1_DEF_NumericString_tags[0]),
Lev Walkinf15320b2004-06-03 03:38:44 +000031 -1, /* Both ways are fine */
Lev Walkin449f8322004-08-20 13:23:42 +000032 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000033 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000034};
35
36int
37NumericString_constraint(asn1_TYPE_descriptor_t *td, const void *sptr,
38 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000039 const NumericString_t *st = (const NumericString_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000040
41 if(st && st->buf) {
42 uint8_t *buf = st->buf;
43 uint8_t *end = buf + st->size;
44
45 /*
46 * Check the alphabet of the NumericString.
47 * ASN.1:1984 (X.409)
48 */
49 for(; buf < end; buf++) {
50 switch(*buf) {
51 case 0x20:
52 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34:
53 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39:
54 continue;
55 }
Lev Walkinba4e5182004-08-11 09:44:13 +000056 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000057 "%s: value byte %d (%d) "
58 "not in NumericString alphabet (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000059 td->name,
60 (buf - st->buf) + 1,
Lev Walkin16835b62004-08-22 13:47:59 +000061 *buf,
62 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000063 return -1;
64 }
65 } else {
Lev Walkinba4e5182004-08-11 09:44:13 +000066 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000067 "%s: value not given (%s:%d)",
68 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000069 return -1;
70 }
71
72 return 0;
73}