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("$Heimdal: gen_copy.c 19539 2006-12-28 17:15:05Z lha $"
42 copy_primitive (const char *typename
, const char *from
, const char *to
)
44 fprintf (codefile
, "if(der_copy_%s(%s, %s)) goto fail;\n",
50 copy_type (const char *from
, const char *to
, const Type
*t
, int preserve
)
55 copy_type (from
, to
, t
->symbol
->type
, preserve
);
57 fprintf (codefile
, "if(copy_%s(%s, %s)) goto fail;\n",
58 t
->symbol
->gen_name
, from
, to
);
62 if (t
->range
== NULL
&& t
->members
== NULL
) {
63 copy_primitive ("heim_integer", from
, to
);
68 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
71 copy_primitive ("octet_string", from
, to
);
74 if (ASN1_TAILQ_EMPTY(t
->members
))
75 copy_primitive ("bit_string", from
, to
);
77 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
82 Member
*m
, *have_ellipsis
= NULL
;
84 if(t
->members
== NULL
)
87 if ((t
->type
== TSequence
|| t
->type
== TChoice
) && preserve
) {
90 "ret = der_copy_octet_string(&(%s)->_save, &(%s)->_save);\n"
91 "if (ret) goto fail;\n"
97 if(t
->type
== TChoice
) {
98 fprintf(codefile
, "(%s)->element = (%s)->element;\n", to
, from
);
99 fprintf(codefile
, "switch((%s)->element) {\n", from
);
102 ASN1_TAILQ_FOREACH(m
, t
->members
, members
) {
111 if(t
->type
== TChoice
)
112 fprintf(codefile
, "case %s:\n", m
->label
);
114 asprintf (&fs
, "%s(%s)->%s%s",
115 m
->optional
? "" : "&", from
,
116 t
->type
== TChoice
? "u." : "", m
->gen_name
);
119 asprintf (&ts
, "%s(%s)->%s%s",
120 m
->optional
? "" : "&", to
,
121 t
->type
== TChoice
? "u." : "", m
->gen_name
);
125 fprintf(codefile
, "if(%s) {\n", fs
);
126 fprintf(codefile
, "%s = malloc(sizeof(*%s));\n", ts
, ts
);
127 fprintf(codefile
, "if(%s == NULL) goto fail;\n", ts
);
130 copy_type (fs
, ts
, m
->type
, FALSE
);
132 fprintf(codefile
, "}else\n");
133 fprintf(codefile
, "%s = NULL;\n", ts
);
137 if(t
->type
== TChoice
)
138 fprintf(codefile
, "break;\n");
140 if(t
->type
== TChoice
) {
142 fprintf(codefile
, "case %s: {\n"
144 "ret=der_copy_octet_string(&(%s)->u.%s, &(%s)->u.%s);\n"
145 "if (ret) goto fail;\n"
148 have_ellipsis
->label
,
149 from
, have_ellipsis
->gen_name
,
150 to
, have_ellipsis
->gen_name
);
153 fprintf(codefile
, "}\n");
162 fprintf (codefile
, "if(((%s)->val = "
163 "malloc((%s)->len * sizeof(*(%s)->val))) == NULL && (%s)->len != 0)\n",
165 fprintf (codefile
, "goto fail;\n");
168 "for((%s)->len = 0; (%s)->len < (%s)->len; (%s)->len++){\n",
170 asprintf(&f
, "&(%s)->val[(%s)->len]", from
, to
);
173 asprintf(&T
, "&(%s)->val[(%s)->len]", to
, to
);
176 copy_type(f
, T
, t
->subtype
, FALSE
);
177 fprintf(codefile
, "}\n");
182 case TGeneralizedTime
:
183 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
186 copy_primitive ("general_string", from
, to
);
189 fprintf(codefile
, "*(%s) = *(%s);\n", to
, from
);
192 copy_primitive ("utf8string", from
, to
);
194 case TPrintableString
:
195 copy_primitive ("printable_string", from
, to
);
198 copy_primitive ("ia5_string", from
, to
);
201 copy_primitive ("bmp_string", from
, to
);
203 case TUniversalString
:
204 copy_primitive ("universal_string", from
, to
);
207 copy_primitive ("visible_string", from
, to
);
210 copy_type (from
, to
, t
->subtype
, preserve
);
213 copy_primitive ("oid", from
, to
);
223 generate_type_copy (const Symbol
*s
)
225 int preserve
= preserve_type(s
->name
) ? TRUE
: FALSE
;
230 "int copy_%s (const %s *, %s *);\n",
231 s
->gen_name
, s
->gen_name
, s
->gen_name
);
233 fprintf (codefile
, "int\n"
234 "copy_%s(const %s *from, %s *to)\n"
236 "memset(to, 0, sizeof(*to));\n",
237 s
->gen_name
, s
->gen_name
, s
->gen_name
);
238 copy_type ("from", "to", s
->type
, preserve
);
239 fprintf (codefile
, "return 0;\n");
242 fprintf (codefile
, "fail:\n"