2 * Copyright (c) 1997 - 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 RCSID("$Id: gen_copy.c,v 1.18 2006/10/14 05:34:19 lha Exp $");
41 copy_primitive (const char *typename
, const char *from
, const char *to
)
43 fprintf (codefile
, "if(der_copy_%s(%s, %s)) goto fail;\n",
49 copy_type (const char *from
, const char *to
, const Type
*t
, int preserve
)
54 copy_type (from
, to
, t
->symbol
->type
, preserve
);
56 fprintf (codefile
, "if(copy_%s(%s, %s)) goto fail;\n",
57 t
->symbol
->gen_name
, from
, to
);
61 if (t
->range
== NULL
&& t
->members
== NULL
) {
62 copy_primitive ("heim_integer", from
, to
);
67 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
70 copy_primitive ("octet_string", from
, to
);
73 if (ASN1_TAILQ_EMPTY(t
->members
))
74 copy_primitive ("bit_string", from
, to
);
76 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
81 Member
*m
, *have_ellipsis
= NULL
;
83 if(t
->members
== NULL
)
86 if ((t
->type
== TSequence
|| t
->type
== TChoice
) && preserve
) {
89 "ret = der_copy_octet_string(&(%s)->_save, &(%s)->_save);\n"
90 "if (ret) goto fail;\n"
96 if(t
->type
== TChoice
) {
97 fprintf(codefile
, "(%s)->element = (%s)->element;\n", to
, from
);
98 fprintf(codefile
, "switch((%s)->element) {\n", from
);
101 ASN1_TAILQ_FOREACH(m
, t
->members
, members
) {
110 if(t
->type
== TChoice
)
111 fprintf(codefile
, "case %s:\n", m
->label
);
113 asprintf (&fs
, "%s(%s)->%s%s",
114 m
->optional
? "" : "&", from
,
115 t
->type
== TChoice
? "u." : "", m
->gen_name
);
118 asprintf (&ts
, "%s(%s)->%s%s",
119 m
->optional
? "" : "&", to
,
120 t
->type
== TChoice
? "u." : "", m
->gen_name
);
124 fprintf(codefile
, "if(%s) {\n", fs
);
125 fprintf(codefile
, "%s = malloc(sizeof(*%s));\n", ts
, ts
);
126 fprintf(codefile
, "if(%s == NULL) goto fail;\n", ts
);
129 copy_type (fs
, ts
, m
->type
, FALSE
);
131 fprintf(codefile
, "}else\n");
132 fprintf(codefile
, "%s = NULL;\n", ts
);
136 if(t
->type
== TChoice
)
137 fprintf(codefile
, "break;\n");
139 if(t
->type
== TChoice
) {
141 fprintf(codefile
, "case %s: {\n"
143 "ret=der_copy_octet_string(&(%s)->u.%s, &(%s)->u.%s);\n"
144 "if (ret) goto fail;\n"
147 have_ellipsis
->label
,
148 from
, have_ellipsis
->gen_name
,
149 to
, have_ellipsis
->gen_name
);
152 fprintf(codefile
, "}\n");
161 fprintf (codefile
, "if(((%s)->val = "
162 "malloc((%s)->len * sizeof(*(%s)->val))) == NULL && (%s)->len != 0)\n",
164 fprintf (codefile
, "goto fail;\n");
167 "for((%s)->len = 0; (%s)->len < (%s)->len; (%s)->len++){\n",
169 asprintf(&f
, "&(%s)->val[(%s)->len]", from
, to
);
172 asprintf(&T
, "&(%s)->val[(%s)->len]", to
, to
);
175 copy_type(f
, T
, t
->subtype
, FALSE
);
176 fprintf(codefile
, "}\n");
181 case TGeneralizedTime
:
182 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
185 copy_primitive ("general_string", from
, to
);
188 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
191 copy_primitive ("utf8string", from
, to
);
193 case TPrintableString
:
194 copy_primitive ("printable_string", from
, to
);
197 copy_primitive ("ia5_string", from
, to
);
200 copy_primitive ("bmp_string", from
, to
);
202 case TUniversalString
:
203 copy_primitive ("universal_string", from
, to
);
206 copy_type (from
, to
, t
->subtype
, preserve
);
209 copy_primitive ("oid", from
, to
);
219 generate_type_copy (const Symbol
*s
)
221 int preserve
= preserve_type(s
->name
) ? TRUE
: FALSE
;
226 "int copy_%s (const %s *, %s *);\n",
227 s
->gen_name
, s
->gen_name
, s
->gen_name
);
229 fprintf (codefile
, "int\n"
230 "copy_%s(const %s *from, %s *to)\n"
232 "memset(to, 0, sizeof(*to));\n",
233 s
->gen_name
, s
->gen_name
, s
->gen_name
);
234 copy_type ("from", "to", s
->type
, preserve
);
235 fprintf (codefile
, "return 0;\n");
238 fprintf (codefile
, "fail:\n"