14
0
Fork 0
mirror of https://gerrit.osmocom.org/asn1c synced 2024-08-19 13:06:40 +00:00
asn1c/skeletons/UTF8String.c

129 lines
3.3 KiB
C
Raw Normal View History

2004-06-03 03:38:44 +00:00
/*-
* Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
2004-09-22 16:06:28 +00:00
#include <asn_internal.h>
2004-06-03 03:38:44 +00:00
#include <UTF8String.h>
/*
* UTF8String basic type description.
*/
2004-09-29 13:26:15 +00:00
static ber_tlv_tag_t asn_DEF_UTF8String_tags[] = {
(ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), /* [UNIVERSAL 12] IMPLICIT ...*/
(ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), /* ... OCTET STRING */
2004-06-03 03:38:44 +00:00
};
2004-09-29 13:26:15 +00:00
asn_TYPE_descriptor_t asn_DEF_UTF8String = {
2004-06-03 03:38:44 +00:00
"UTF8String",
2004-09-22 16:06:28 +00:00
OCTET_STRING_free,
UTF8String_print,
2004-06-03 03:38:44 +00:00
UTF8String_constraint, /* Check for invalid codes, etc. */
OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
2004-09-22 16:06:28 +00:00
0, /* Not implemented yet */
OCTET_STRING_encode_xer_ascii, /* Already in UTF-8 format */
2004-06-03 03:38:44 +00:00
0, /* Use generic outmost tag fetcher */
2004-09-29 13:26:15 +00:00
asn_DEF_UTF8String_tags,
sizeof(asn_DEF_UTF8String_tags)
/ sizeof(asn_DEF_UTF8String_tags[0]) - 1,
asn_DEF_UTF8String_tags,
sizeof(asn_DEF_UTF8String_tags)
/ sizeof(asn_DEF_UTF8String_tags[0]),
2004-08-20 13:23:42 +00:00
0, 0, /* No members */
2004-06-05 08:17:50 +00:00
0 /* No specifics */
2004-06-03 03:38:44 +00:00
};
static int _UTF8String_h1[16] = {
1, 1, 1, 1, 1, 1, 1, 1, /* 0x0 ... 0x7 */
0, 0, 0, 0, 2, 2, 3, -1
};
static int _UTF8String_h2[16] = {
4, 4, 4, 4, 4, 4, 4, 4, /* 0xF0 .. 0xF7 */
5, 5, 5, 5, 6, 6, -1, -1
};
int
2004-09-29 13:26:15 +00:00
UTF8String_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
2004-06-03 03:38:44 +00:00
asn_app_consume_bytes_f *app_errlog, void *app_key) {
ssize_t len;
2004-08-11 09:07:36 +00:00
len = UTF8String_length((const UTF8String_t *)sptr, td->name,
app_errlog, app_key);
2004-06-03 03:38:44 +00:00
if(len > 0) len = 0;
return len;
}
ssize_t
UTF8String_length(const UTF8String_t *st, const char *opt_type_name,
asn_app_consume_bytes_f *app_errlog, void *app_key) {
if(st && st->buf) {
size_t length = 0;
uint8_t *buf = st->buf;
uint8_t *end = buf + st->size;
int want; /* Number of bytes wanted */
for(want = 0; buf < end; buf++) {
uint8_t ch = *buf;
int w = _UTF8String_h1[ch >> 4];
if(want) { /* Continuation expected */
if(w) {
2004-08-11 09:44:13 +00:00
_ASN_ERRLOG(app_errlog, app_key,
"%s: UTF-8 expectation "
2004-08-22 13:47:59 +00:00
"failed at byte %d (%s:%d)",
2004-06-03 03:38:44 +00:00
opt_type_name,
2004-08-22 13:47:59 +00:00
(buf - st->buf) + 1,
__FILE__, __LINE__);
2004-06-03 03:38:44 +00:00
return -1;
}
want--;
} else {
switch(w) {
case -1: /* Long UTF-8 */
w = _UTF8String_h2[ch & 0xF0];
if(w != -1)
break;
/* Fall through */
case 0:
2004-08-11 09:44:13 +00:00
_ASN_ERRLOG(app_errlog, app_key,
2004-06-03 03:38:44 +00:00
"%s: UTF-8 expectation"
2004-08-22 13:47:59 +00:00
"failed at byte %d (%s:%d)",
2004-06-03 03:38:44 +00:00
opt_type_name,
2004-08-22 13:47:59 +00:00
(buf - st->buf) + 1,
__FILE__, __LINE__);
2004-06-03 03:38:44 +00:00
return -1;
}
want = w - 1; /* Expect this much */
}
if(!want) length++;
}
/* If still want something, then something is wrong */
if(want) {
2004-08-11 09:44:13 +00:00
_ASN_ERRLOG(app_errlog, app_key,
2004-08-22 13:47:59 +00:00
"%s: truncated UTF-8 sequence (%s:%d)",
opt_type_name, __FILE__, __LINE__);
2004-06-03 03:38:44 +00:00
return -1;
}
return length;
} else {
2004-08-11 09:44:13 +00:00
_ASN_ERRLOG(app_errlog, app_key,
"%s: value not given", opt_type_name);
2004-06-03 03:38:44 +00:00
return -1;
}
}
int
2004-09-29 13:26:15 +00:00
UTF8String_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
2004-06-03 03:38:44 +00:00
asn_app_consume_bytes_f *cb, void *app_key) {
2004-08-11 09:07:36 +00:00
const UTF8String_t *st = (const UTF8String_t *)sptr;
2004-06-03 03:38:44 +00:00
2004-06-05 08:17:50 +00:00
(void)td; /* Unused argument */
(void)ilevel; /* Unused argument */
2004-06-03 03:38:44 +00:00
if(st && st->buf) {
return (cb(st->buf, st->size, app_key) < 0) ? -1 : 0;
2004-06-03 03:38:44 +00:00
} else {
return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
2004-06-03 03:38:44 +00:00
}
}