blob: c96c71a4e9c2068855f4fff5cc63770b8f5aa4cc [file] [log] [blame]
vlmfa67ddc2004-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 */
5#include <UTF8String.h>
6
7/*
8 * UTF8String basic type description.
9 */
10static ber_tlv_tag_t asn1_DEF_UTF8String_tags[] = {
11 (ASN_TAG_CLASS_UNIVERSAL | (12 << 2))
12};
13asn1_TYPE_descriptor_t asn1_DEF_UTF8String = {
14 "UTF8String",
15 UTF8String_constraint, /* Check for invalid codes, etc. */
16 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
17 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
18 UTF8String_print,
19 OCTET_STRING_free,
20 0, /* Use generic outmost tag fetcher */
21 asn1_DEF_UTF8String_tags,
22 sizeof(asn1_DEF_UTF8String_tags)
23 / sizeof(asn1_DEF_UTF8String_tags[0]),
24 1, /* Single UNIVERSAL tag may be implicitly overriden */
25 -1, /* Both ways are fine */
vlme413c122004-08-20 13:23:42 +000026 0, 0, /* No members */
vlmb42843a2004-06-05 08:17:50 +000027 0 /* No specifics */
vlmfa67ddc2004-06-03 03:38:44 +000028};
29
30static int _UTF8String_h1[16] = {
31 1, 1, 1, 1, 1, 1, 1, 1, /* 0x0 ... 0x7 */
32 0, 0, 0, 0, 2, 2, 3, -1
33};
34static int _UTF8String_h2[16] = {
35 4, 4, 4, 4, 4, 4, 4, 4, /* 0xF0 .. 0xF7 */
36 5, 5, 5, 5, 6, 6, -1, -1
37};
38
39int
40UTF8String_constraint(asn1_TYPE_descriptor_t *td, const void *sptr,
41 asn_app_consume_bytes_f *app_errlog, void *app_key) {
42 ssize_t len;
vlmda674682004-08-11 09:07:36 +000043 len = UTF8String_length((const UTF8String_t *)sptr, td->name,
44 app_errlog, app_key);
vlmfa67ddc2004-06-03 03:38:44 +000045 if(len > 0) len = 0;
46 return len;
47}
48
49ssize_t
50UTF8String_length(const UTF8String_t *st, const char *opt_type_name,
51 asn_app_consume_bytes_f *app_errlog, void *app_key) {
52
53 if(st && st->buf) {
54 size_t length = 0;
55 uint8_t *buf = st->buf;
56 uint8_t *end = buf + st->size;
57 int want; /* Number of bytes wanted */
58
59 for(want = 0; buf < end; buf++) {
60 uint8_t ch = *buf;
61 int w = _UTF8String_h1[ch >> 4];
62 if(want) { /* Continuation expected */
63 if(w) {
vlme3f0f282004-08-11 09:44:13 +000064 _ASN_ERRLOG(app_errlog, app_key,
65 "%s: UTF-8 expectation "
vlm758530a2004-08-22 13:47:59 +000066 "failed at byte %d (%s:%d)",
vlmfa67ddc2004-06-03 03:38:44 +000067 opt_type_name,
vlm758530a2004-08-22 13:47:59 +000068 (buf - st->buf) + 1,
69 __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000070 return -1;
71 }
72 want--;
73 } else {
74 switch(w) {
75 case -1: /* Long UTF-8 */
76 w = _UTF8String_h2[ch & 0xF0];
77 if(w != -1)
78 break;
79 /* Fall through */
80 case 0:
vlme3f0f282004-08-11 09:44:13 +000081 _ASN_ERRLOG(app_errlog, app_key,
vlmfa67ddc2004-06-03 03:38:44 +000082 "%s: UTF-8 expectation"
vlm758530a2004-08-22 13:47:59 +000083 "failed at byte %d (%s:%d)",
vlmfa67ddc2004-06-03 03:38:44 +000084 opt_type_name,
vlm758530a2004-08-22 13:47:59 +000085 (buf - st->buf) + 1,
86 __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000087 return -1;
88 }
89 want = w - 1; /* Expect this much */
90 }
91 if(!want) length++;
92 }
93
94 /* If still want something, then something is wrong */
95 if(want) {
vlme3f0f282004-08-11 09:44:13 +000096 _ASN_ERRLOG(app_errlog, app_key,
vlm758530a2004-08-22 13:47:59 +000097 "%s: truncated UTF-8 sequence (%s:%d)",
98 opt_type_name, __FILE__, __LINE__);
vlmfa67ddc2004-06-03 03:38:44 +000099 return -1;
100 }
101
102 return length;
103 } else {
vlme3f0f282004-08-11 09:44:13 +0000104 _ASN_ERRLOG(app_errlog, app_key,
105 "%s: value not given", opt_type_name);
vlmfa67ddc2004-06-03 03:38:44 +0000106 return -1;
107 }
108}
109
110int
111UTF8String_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
112 asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +0000113 const UTF8String_t *st = (const UTF8String_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +0000114
vlmb42843a2004-06-05 08:17:50 +0000115 (void)td; /* Unused argument */
116 (void)ilevel; /* Unused argument */
117
vlmfa67ddc2004-06-03 03:38:44 +0000118 if(st && st->buf) {
119 return cb(st->buf, st->size, app_key);
120 } else {
121 return cb("<absent>", 8, app_key);
122 }
123}