1 /* $NetBSD: gen_copy.c,v 1.1.1.2 2014/04/24 12:45:28 pettai Exp $ */
4 * Copyright (c) 1997 - 2005 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 copy_primitive (const char *typename
, const char *from
, const char *to
)
45 fprintf (codefile
, "if(der_copy_%s(%s, %s)) goto fail;\n",
51 copy_type (const char *from
, const char *to
, const Type
*t
, int preserve
)
56 copy_type (from
, to
, t
->symbol
->type
, preserve
);
58 fprintf (codefile
, "if(copy_%s(%s, %s)) goto fail;\n",
59 t
->symbol
->gen_name
, from
, to
);
63 if (t
->range
== NULL
&& t
->members
== NULL
) {
64 copy_primitive ("heim_integer", from
, to
);
69 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
72 copy_primitive ("octet_string", from
, to
);
75 if (ASN1_TAILQ_EMPTY(t
->members
))
76 copy_primitive ("bit_string", from
, to
);
78 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
83 Member
*m
, *have_ellipsis
= NULL
;
85 if(t
->members
== NULL
)
88 if ((t
->type
== TSequence
|| t
->type
== TChoice
) && preserve
) {
91 "ret = der_copy_octet_string(&(%s)->_save, &(%s)->_save);\n"
92 "if (ret) goto fail;\n"
98 if(t
->type
== TChoice
) {
99 fprintf(codefile
, "(%s)->element = (%s)->element;\n", to
, from
);
100 fprintf(codefile
, "switch((%s)->element) {\n", from
);
103 ASN1_TAILQ_FOREACH(m
, t
->members
, members
) {
112 if(t
->type
== TChoice
)
113 fprintf(codefile
, "case %s:\n", m
->label
);
115 if (asprintf (&fs
, "%s(%s)->%s%s",
116 m
->optional
? "" : "&", from
,
117 t
->type
== TChoice
? "u." : "", m
->gen_name
) < 0)
121 if (asprintf (&ts
, "%s(%s)->%s%s",
122 m
->optional
? "" : "&", to
,
123 t
->type
== TChoice
? "u." : "", m
->gen_name
) < 0)
128 fprintf(codefile
, "if(%s) {\n", fs
);
129 fprintf(codefile
, "%s = malloc(sizeof(*%s));\n", ts
, ts
);
130 fprintf(codefile
, "if(%s == NULL) goto fail;\n", ts
);
133 copy_type (fs
, ts
, m
->type
, FALSE
);
135 fprintf(codefile
, "}else\n");
136 fprintf(codefile
, "%s = NULL;\n", ts
);
140 if(t
->type
== TChoice
)
141 fprintf(codefile
, "break;\n");
143 if(t
->type
== TChoice
) {
145 fprintf(codefile
, "case %s: {\n"
147 "ret=der_copy_octet_string(&(%s)->u.%s, &(%s)->u.%s);\n"
148 "if (ret) goto fail;\n"
151 have_ellipsis
->label
,
152 from
, have_ellipsis
->gen_name
,
153 to
, have_ellipsis
->gen_name
);
156 fprintf(codefile
, "}\n");
162 char *f
= NULL
, *T
= NULL
;
164 fprintf (codefile
, "if(((%s)->val = "
165 "malloc((%s)->len * sizeof(*(%s)->val))) == NULL && (%s)->len != 0)\n",
167 fprintf (codefile
, "goto fail;\n");
170 "for((%s)->len = 0; (%s)->len < (%s)->len; (%s)->len++){\n",
172 if (asprintf(&f
, "&(%s)->val[(%s)->len]", from
, to
) < 0)
176 if (asprintf(&T
, "&(%s)->val[(%s)->len]", to
, to
) < 0)
180 copy_type(f
, T
, t
->subtype
, FALSE
);
181 fprintf(codefile
, "}\n");
186 case TGeneralizedTime
:
187 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
190 copy_primitive ("general_string", from
, to
);
193 copy_primitive ("general_string", from
, to
);
196 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
199 copy_primitive ("utf8string", from
, to
);
201 case TPrintableString
:
202 copy_primitive ("printable_string", from
, to
);
205 copy_primitive ("ia5_string", from
, to
);
208 copy_primitive ("bmp_string", from
, to
);
210 case TUniversalString
:
211 copy_primitive ("universal_string", from
, to
);
214 copy_primitive ("visible_string", from
, to
);
217 copy_type (from
, to
, t
->subtype
, preserve
);
220 copy_primitive ("oid", from
, to
);
230 generate_type_copy (const Symbol
*s
)
232 int preserve
= preserve_type(s
->name
) ? TRUE
: FALSE
;
236 fprintf (codefile
, "int ASN1CALL\n"
237 "copy_%s(const %s *from, %s *to)\n"
239 "memset(to, 0, sizeof(*to));\n",
240 s
->gen_name
, s
->gen_name
, s
->gen_name
);
241 copy_type ("from", "to", s
->type
, preserve
);
242 fprintf (codefile
, "return 0;\n");
245 fprintf (codefile
, "fail:\n"