2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #include <asn_internal.h>
8 static ssize_t der_write_TL(ber_tlv_tag_t tag, ber_tlv_len_t len,
9 asn_app_consume_bytes_f *cb, void *app_key, int constructed);
12 * The DER encoder of any type.
15 der_encode(asn_TYPE_descriptor_t *type_descriptor, void *struct_ptr,
16 asn_app_consume_bytes_f *consume_bytes, void *app_key) {
18 ASN_DEBUG("DER encoder invoked for %s",
19 type_descriptor->name);
22 * Invoke type-specific encoder.
24 return type_descriptor->der_encoder(type_descriptor,
25 struct_ptr, /* Pointer to the destination structure */
27 consume_bytes, app_key);
31 * Argument type and callback necessary for der_encode_to_buffer().
33 typedef struct enc_to_buf_arg {
37 static int encode_to_buffer_cb(const void *buffer, size_t size, void *key) {
38 enc_to_buf_arg *arg = (enc_to_buf_arg *)key;
41 return -1; /* Data exceeds the available buffer size */
43 memcpy(arg->buffer, buffer, size);
44 arg->buffer = ((char *)arg->buffer) + size;
51 * A variant of the der_encode() which encodes the data into the provided buffer
54 der_encode_to_buffer(asn_TYPE_descriptor_t *type_descriptor, void *struct_ptr,
55 void *buffer, size_t buffer_size) {
60 arg.left = buffer_size;
62 ec = type_descriptor->der_encoder(type_descriptor,
63 struct_ptr, /* Pointer to the destination structure */
64 0, 0, encode_to_buffer_cb, &arg);
65 if(ec.encoded != -1) {
66 assert(ec.encoded == (ssize_t)(buffer_size - arg.left));
67 /* Return the encoded contents size */
74 * Write out leading TL[v] sequence according to the type definition.
77 der_write_tags(asn_TYPE_descriptor_t *sd,
79 int tag_mode, int last_tag_form,
80 ber_tlv_tag_t tag, /* EXPLICIT or IMPLICIT tag */
81 asn_app_consume_bytes_f *cb,
83 const ber_tlv_tag_t *tags; /* Copy of tags stream */
84 int tags_count; /* Number of tags */
85 size_t overall_length;
89 ASN_DEBUG("Writing tags (%s, tm=%d, tc=%d, tag=%s, mtc=%d)",
90 sd->name, tag_mode, sd->tags_count,
91 ber_tlv_tag_string(tag),
94 -((tag_mode == -1) && sd->tags_count))
100 * Instead of doing shaman dance like we do in ber_check_tags(),
101 * allocate a small array on the stack
102 * and initialize it appropriately.
105 ber_tlv_tag_t *tags_buf;
106 tags_buf = (ber_tlv_tag_t *)alloca((sd->tags_count + 1) * sizeof(ber_tlv_tag_t));
107 if(!tags_buf) { /* Can fail on !x86 */
111 tags_count = sd->tags_count
112 + 1 /* EXPLICIT or IMPLICIT tag is given */
113 - ((tag_mode == -1) && sd->tags_count);
116 stag_offset = -1 + ((tag_mode == -1) && sd->tags_count);
117 for(i = 1; i < tags_count; i++)
118 tags_buf[i] = sd->tags[i + stag_offset];
122 tags_count = sd->tags_count;
125 /* No tags to write */
129 lens = (ssize_t *)alloca(tags_count * sizeof(lens[0]));
136 * Array of tags is initialized.
137 * Now, compute the size of the TLV pairs, from right to left.
139 overall_length = struct_length;
140 for(i = tags_count - 1; i >= 0; --i) {
141 lens[i] = der_write_TL(tags[i], overall_length, 0, 0, 0);
142 if(lens[i] == -1) return -1;
143 overall_length += lens[i];
144 lens[i] = overall_length - lens[i];
147 if(!cb) return overall_length - struct_length;
149 ASN_DEBUG("%s %s TL sequence (%d elements)",
150 cb?"Encoding":"Estimating", sd->name, tags_count);
153 * Encode the TL sequence for real.
155 for(i = 0; i < tags_count; i++) {
159 /* Check if this tag happens to be constructed */
160 _constr = (last_tag_form || i < (tags_count - 1));
162 len = der_write_TL(tags[i], lens[i], cb, app_key, _constr);
163 if(len == -1) return -1;
166 return overall_length - struct_length;
170 der_write_TL(ber_tlv_tag_t tag, ber_tlv_len_t len,
171 asn_app_consume_bytes_f *cb, void *app_key,
175 int buf_size = cb?sizeof(buf):0;
178 /* Serialize tag (T from TLV) into possibly zero-length buffer */
179 tmp = ber_tlv_tag_serialize(tag, buf, buf_size);
180 if(tmp == -1 || tmp > (ssize_t)sizeof(buf)) return -1;
183 /* Serialize length (L from TLV) into possibly zero-length buffer */
184 tmp = der_tlv_length_serialize(len, buf+size, buf_size?buf_size-size:0);
185 if(tmp == -1) return -1;
188 if(size > sizeof(buf))
192 * If callback is specified, invoke it, and check its return value.
195 if(constructed) *buf |= 0x20;
196 if(cb(buf, size, app_key) < 0)