blob: aab4a2e951b0200cfcd0f48f6c4fac7211184850 [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 "
vlmfa67ddc2004-06-03 03:38:44 +000066 "failed at byte %d",
67 opt_type_name,
68 (buf - st->buf) + 1);
69 return -1;
70 }
71 want--;
72 } else {
73 switch(w) {
74 case -1: /* Long UTF-8 */
75 w = _UTF8String_h2[ch & 0xF0];
76 if(w != -1)
77 break;
78 /* Fall through */
79 case 0:
vlme3f0f282004-08-11 09:44:13 +000080 _ASN_ERRLOG(app_errlog, app_key,
vlmfa67ddc2004-06-03 03:38:44 +000081 "%s: UTF-8 expectation"
82 "failed at byte %d",
83 opt_type_name,
84 (buf - st->buf) + 1);
85 return -1;
86 }
87 want = w - 1; /* Expect this much */
88 }
89 if(!want) length++;
90 }
91
92 /* If still want something, then something is wrong */
93 if(want) {
vlme3f0f282004-08-11 09:44:13 +000094 _ASN_ERRLOG(app_errlog, app_key,
95 "%s: truncated UTF-8 sequence",
vlmfa67ddc2004-06-03 03:38:44 +000096 opt_type_name);
97 return -1;
98 }
99
100 return length;
101 } else {
vlme3f0f282004-08-11 09:44:13 +0000102 _ASN_ERRLOG(app_errlog, app_key,
103 "%s: value not given", opt_type_name);
vlmfa67ddc2004-06-03 03:38:44 +0000104 return -1;
105 }
106}
107
108int
109UTF8String_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
110 asn_app_consume_bytes_f *cb, void *app_key) {
vlmda674682004-08-11 09:07:36 +0000111 const UTF8String_t *st = (const UTF8String_t *)sptr;
vlmfa67ddc2004-06-03 03:38:44 +0000112
vlmb42843a2004-06-05 08:17:50 +0000113 (void)td; /* Unused argument */
114 (void)ilevel; /* Unused argument */
115
vlmfa67ddc2004-06-03 03:38:44 +0000116 if(st && st->buf) {
117 return cb(st->buf, st->size, app_key);
118 } else {
119 return cb("<absent>", 8, app_key);
120 }
121}