blob: 42eb17c4ac1b269d55b4ebe2823f80c1599c435c [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 <IA5String.h>
7
8/*
9 * IA5String basic type description.
10 */
Lev Walkin5e033762004-09-29 13:26:15 +000011static ber_tlv_tag_t asn_DEF_IA5String_tags[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (22 << 2)), /* [UNIVERSAL 22] 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_IA5String = {
Lev Walkinf15320b2004-06-03 03:38:44 +000016 "IA5String",
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 IA5String_constraint, /* Constraint on the alphabet */
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 */
Lev Walkin5e033762004-09-29 13:26:15 +000025 asn_DEF_IA5String_tags,
26 sizeof(asn_DEF_IA5String_tags)
27 / sizeof(asn_DEF_IA5String_tags[0]) - 1,
28 asn_DEF_IA5String_tags,
29 sizeof(asn_DEF_IA5String_tags)
30 / sizeof(asn_DEF_IA5String_tags[0]),
Lev Walkin449f8322004-08-20 13:23:42 +000031 0, 0, /* No members */
Lev Walkind9bd7752004-06-05 08:17:50 +000032 0 /* No specifics */
Lev Walkinf15320b2004-06-03 03:38:44 +000033};
34
35int
Lev Walkin5e033762004-09-29 13:26:15 +000036IA5String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkinf15320b2004-06-03 03:38:44 +000037 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +000038 const IA5String_t *st = (const IA5String_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +000039
40 if(st && st->buf) {
41 uint8_t *buf = st->buf;
42 uint8_t *end = buf + st->size;
43 /*
44 * IA5String is generally equivalent to 7bit ASCII.
45 * ISO/ITU-T T.50, 1963.
46 */
47 for(; buf < end; buf++) {
48 if(*buf > 0x7F) {
Lev Walkinba4e5182004-08-11 09:44:13 +000049 _ASN_ERRLOG(app_errlog, app_key,
50 "%s: value byte %d out of range: "
Lev Walkin16835b62004-08-22 13:47:59 +000051 "%d > 127 (%s:%d)",
Lev Walkinf15320b2004-06-03 03:38:44 +000052 td->name,
53 (buf - st->buf) + 1,
Lev Walkin16835b62004-08-22 13:47:59 +000054 *buf,
55 __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000056 return -1;
57 }
58 }
59 } else {
Lev Walkinba4e5182004-08-11 09:44:13 +000060 _ASN_ERRLOG(app_errlog, app_key,
Lev Walkin16835b62004-08-22 13:47:59 +000061 "%s: value not given (%s:%d)",
62 td->name, __FILE__, __LINE__);
Lev Walkinf15320b2004-06-03 03:38:44 +000063 return -1;
64 }
65
66 return 0;
67}
Lev Walkina9cc46e2004-09-22 16:06:28 +000068