blob: 1c0c731d76424106711b20b9add9d569a1eca99d [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 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 <UTF8String.h>
7
8/*
9 * UTF8String basic type description.
10 */
Lev Walkin5e033762004-09-29 13:26:15 +000011static ber_tlv_tag_t asn_DEF_UTF8String_tags[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +000012 (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), /* [UNIVERSAL 12] 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_UTF8String = {
Lev Walkinf15320b2004-06-03 03:38:44 +000016 "UTF8String",
Lev Walkindc06f6b2004-10-20 15:50:55 +000017 "UTF8String",
Lev Walkina9cc46e2004-09-22 16:06:28 +000018 OCTET_STRING_free,
19 UTF8String_print,
Lev Walkinf15320b2004-06-03 03:38:44 +000020 UTF8String_constraint, /* Check for invalid codes, etc. */
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 Walkinf15320b2004-06-03 03:38:44 +000025 0, /* Use generic outmost tag fetcher */
Lev Walkin5e033762004-09-29 13:26:15 +000026 asn_DEF_UTF8String_tags,
27 sizeof(asn_DEF_UTF8String_tags)
28 / sizeof(asn_DEF_UTF8String_tags[0]) - 1,
29 asn_DEF_UTF8String_tags,
30 sizeof(asn_DEF_UTF8String_tags)
31 / sizeof(asn_DEF_UTF8String_tags[0]),
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
Lev Walkine18ca712004-10-02 11:37:38 +000036/*
37 * This is the table of length expectations.
38 * The second half of this table is only applicable to the long sequentes.
39 */
40static int UTF8String_ht[2][16] = {
41 { /* 0x0 ... 0x7 */
42 /* 0000..0111 */
43 1, 1, 1, 1, 1, 1, 1, 1,
44 /* 1000..1011(0), 1100..1101(2), 1110(3), 1111(-1) */
45 0, 0, 0, 0, 2, 2, 3, -1 },
46 { /* 0xF0 .. 0xF7 */
47 /* 11110000..11110111 */
48 4, 4, 4, 4, 4, 4, 4, 4,
49 5, 5, 5, 5, 6, 6, -1, -1 }
Lev Walkinf15320b2004-06-03 03:38:44 +000050};
Lev Walkinedc7d592004-10-02 15:55:07 +000051static int32_t UTF8String_mv[7] = { 0, 0,
52 0x00000080,
53 0x00000800,
54 0x00010000,
55 0x00200000,
56 0x04000000
57};
58
59/* Internal aliases for return codes */
60#define U8E_TRUNC -1 /* UTF-8 sequence truncated */
61#define U8E_ILLSTART -2 /* Illegal UTF-8 sequence start */
62#define U8E_NOTCONT -3 /* Continuation expectation failed */
63#define U8E_NOTMIN -4 /* Not minimal length encoding */
64#define U8E_EINVAL -5 /* Invalid arguments */
Lev Walkinf15320b2004-06-03 03:38:44 +000065
66int
Lev Walkin5e033762004-09-29 13:26:15 +000067UTF8String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkinf15320b2004-06-03 03:38:44 +000068 asn_app_consume_bytes_f *app_errlog, void *app_key) {
Lev Walkinedc7d592004-10-02 15:55:07 +000069 ssize_t len = UTF8String_length((const UTF8String_t *)sptr);
70 switch(len) {
71 case U8E_EINVAL:
72 _ASN_ERRLOG(app_errlog, app_key,
73 "%s: value not given", td->name);
74 break;
75 case U8E_TRUNC:
76 _ASN_ERRLOG(app_errlog, app_key,
77 "%s: truncated UTF-8 sequence (%s:%d)",
78 td->name, __FILE__, __LINE__);
79 break;
80 case U8E_ILLSTART:
81 _ASN_ERRLOG(app_errlog, app_key,
82 "%s: UTF-8 illegal start of encoding (%s:%d)",
83 td->name, __FILE__, __LINE__);
84 break;
85 case U8E_NOTCONT:
86 _ASN_ERRLOG(app_errlog, app_key,
87 "%s: UTF-8 not continuation (%s:%d)",
88 td->name, __FILE__, __LINE__);
89 break;
90 case U8E_NOTMIN:
91 _ASN_ERRLOG(app_errlog, app_key,
92 "%s: UTF-8 not minimal sequence (%s:%d)",
93 td->name, __FILE__, __LINE__);
94 break;
95 }
96 return (len < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +000097}
98
99ssize_t
Lev Walkinedc7d592004-10-02 15:55:07 +0000100UTF8String_length(const UTF8String_t *st) {
Lev Walkinf15320b2004-06-03 03:38:44 +0000101
102 if(st && st->buf) {
Lev Walkinbbd66b02004-10-02 12:29:44 +0000103 size_t length;
Lev Walkinf15320b2004-06-03 03:38:44 +0000104 uint8_t *buf = st->buf;
105 uint8_t *end = buf + st->size;
Lev Walkinf15320b2004-06-03 03:38:44 +0000106
Lev Walkinbbd66b02004-10-02 12:29:44 +0000107 for(length = 0; buf < end; length++) {
108 int ch = *buf;
Lev Walkinedc7d592004-10-02 15:55:07 +0000109 uint8_t *cend;
110 int32_t value;
111 int want;
112
113 /* Compute the sequence length */
114 want = UTF8String_ht[0][ch >> 4];
Lev Walkinbbd66b02004-10-02 12:29:44 +0000115 switch(want) {
Lev Walkinedc7d592004-10-02 15:55:07 +0000116 case -1:
117 /* Second half of the table, long sequence */
Lev Walkinbbd66b02004-10-02 12:29:44 +0000118 want = UTF8String_ht[1][ch & 0x0F];
Lev Walkinedc7d592004-10-02 15:55:07 +0000119 if(want != -1) break;
120 /* Fall through */
121 case 0:
122 return U8E_ILLSTART;
Lev Walkinf15320b2004-06-03 03:38:44 +0000123 }
Lev Walkinedc7d592004-10-02 15:55:07 +0000124
125 /* assert(want >= 1 && want <= 6) */
126
127 /* Check character sequence length */
128 if(buf + want > end) return U8E_TRUNC;
129
130 value = ch & (0xff >> (want + 1));
131 cend = buf + want;
132 for(buf++; buf < cend; buf++) {
133 ch = *buf;
134 if(ch < 0x80 || ch > 0xbf) return U8E_NOTCONT;
135 value = (value << 6) | (ch & 0x3F);
Lev Walkinbbd66b02004-10-02 12:29:44 +0000136 }
Lev Walkinedc7d592004-10-02 15:55:07 +0000137 if(value < UTF8String_mv[want])
138 return U8E_NOTMIN;
Lev Walkinf15320b2004-06-03 03:38:44 +0000139 }
140
141 return length;
142 } else {
Lev Walkinedc7d592004-10-02 15:55:07 +0000143 return U8E_EINVAL;
Lev Walkinf15320b2004-06-03 03:38:44 +0000144 }
145}
146
147int
Lev Walkin5e033762004-09-29 13:26:15 +0000148UTF8String_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
Lev Walkinf15320b2004-06-03 03:38:44 +0000149 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkinc2346572004-08-11 09:07:36 +0000150 const UTF8String_t *st = (const UTF8String_t *)sptr;
Lev Walkinf15320b2004-06-03 03:38:44 +0000151
Lev Walkind9bd7752004-06-05 08:17:50 +0000152 (void)td; /* Unused argument */
153 (void)ilevel; /* Unused argument */
154
Lev Walkinf15320b2004-06-03 03:38:44 +0000155 if(st && st->buf) {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000156 return (cb(st->buf, st->size, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000157 } else {
Lev Walkin8e8078a2004-09-26 13:10:40 +0000158 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
Lev Walkinf15320b2004-06-03 03:38:44 +0000159 }
160}