blob: f980dcdc82b14c05f25f702499efcd970a5f2334 [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 */
Lev Walkin5e033762004-09-29 13:26:15 +000011static ber_tlv_tag_t asn_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};
Lev Walkin5e033762004-09-29 13:26:15 +000015asn_TYPE_descriptor_t asn_DEF_NumericString = {
Lev Walkinf15320b2004-06-03 03:38:44 +000016 "NumericString",
Lev Walkindc06f6b2004-10-20 15:50:55 +000017 "NumericString",
Lev Walkina9cc46e2004-09-22 16:06:28 +000018 OCTET_STRING_free,
Lev Walkindc06f6b2004-10-20 15:50:55 +000019 OCTET_STRING_print_utf8, /* ASCII subset */
Lev Walkinf15320b2004-06-03 03:38:44 +000020 NumericString_constraint,
21 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
Lev Walkindc06f6b2004-10-20 15:50:55 +000022 OCTET_STRING_encode_der,
23 OCTET_STRING_decode_xer_utf8,
24 OCTET_STRING_encode_xer_utf8,
Lev Walkin59b176e2005-11-26 11:25:14 +000025 0,
Lev Walkinf15320b2004-06-03 03:38:44 +000026 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000027 asn_DEF_NumericString_tags,
28 sizeof(asn_DEF_NumericString_tags)
29 / sizeof(asn_DEF_NumericString_tags[0]) - 1,
30 asn_DEF_NumericString_tags,
31 sizeof(asn_DEF_NumericString_tags)
32 / sizeof(asn_DEF_NumericString_tags[0]),
Lev Walkin59b176e2005-11-26 11:25:14 +000033 0, /* No PER visible constraints */
Lev Walkin449f8322004-08-20 13:23:42 +000034 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000035 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000036};
37
38int
Lev Walkin5e033762004-09-29 13:26:15 +000039NumericString_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +000040 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000041 const NumericString_t *st = (const NumericString_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000042
43 if(st && st->buf) {
44 uint8_t *buf = st->buf;
45 uint8_t *end = buf + st->size;
46
47 /*
48 * Check the alphabet of the NumericString.
49 * ASN.1:1984 (X.409)
50 */
51 for(; buf < end; buf++) {
52 switch(*buf) {
53 case 0x20:
54 case 0x30: case 0x31: case 0x32: case 0x33: case 0x34:
55 case 0x35: case 0x36: case 0x37: case 0x38: case 0x39:
56 continue;
57 }
Lev Walkin1eded352006-07-13 11:19:01 +000058 _ASN_CTFAIL(app_key, td,
Lev Walkin426b0982004-10-26 09:59:42 +000059 "%s: value byte %ld (%d) "
Lev Walkin16835b62004-08-22 13:47:59 +000060 "not in NumericString alphabet (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000061 td->name,
Lev Walkin426b0982004-10-26 09:59:42 +000062 (long)((buf - st->buf) + 1),
Lev Walkin16835b62004-08-22 13:47:59 +000063 *buf,
64 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000065 return -1;
66 }
67 } else {
Lev Walkin1eded352006-07-13 11:19:01 +000068 _ASN_CTFAIL(app_key, td,
Lev Walkin16835b62004-08-22 13:47:59 +000069 "%s: value not given (%s:%d)",
70 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000071 return -1;
72 }
73
74 return 0;
75}