blob: 859e6858d31893dcbd902d77bdcda746b9f26870 [file] [log] [blame]
Petr Machata940ec062012-01-06 22:43:51 +01001/*
2 * This file is part of ltrace.
3 * Copyright (C) 2011,2012 Petr Machata, Red Hat Inc.
4 * Copyright (C) 1998,2004,2007,2008,2009 Juan Cespedes
5 * Copyright (C) 2006 Steve Fink
6 * Copyright (C) 2006 Ian Wienand
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 */
23
24#include <assert.h>
25#include <stdlib.h>
26
27#include "printf.h"
28#include "type.h"
29#include "value.h"
30#include "expr.h"
31#include "zero.h"
32#include "param.h"
Petr Machatae3f4a982012-01-09 04:27:26 +010033#include "lens_default.h"
Petr Machata940ec062012-01-06 22:43:51 +010034
35struct param_enum {
36 struct value array;
37 int percent;
38 size_t *future_length;
39 char *format;
40 char const *ptr;
41 char const *end;
42};
43
44static struct param_enum *
45param_printf_init(struct value *cb_args, size_t nargs,
46 struct value_dict *arguments)
47{
48 assert(nargs == 1);
49
50 /* We expect a char array pointer. */
Petr Machatae3f4a982012-01-09 04:27:26 +010051 if (cb_args->type->type != ARGTYPE_POINTER
52 || cb_args->type->u.ptr_info.info->type != ARGTYPE_ARRAY
53 || (cb_args->type->u.ptr_info.info->u.array_info.elt_type->type
54 != ARGTYPE_CHAR))
Petr Machata940ec062012-01-06 22:43:51 +010055 return NULL;
56
57 struct param_enum *self = malloc(sizeof(*self));
58 if (self == NULL) {
59 fail:
60 free(self);
61 return NULL;
62 }
63
Petr Machatae3f4a982012-01-09 04:27:26 +010064 if (value_init_deref(&self->array, cb_args) < 0)
Petr Machata940ec062012-01-06 22:43:51 +010065 goto fail;
66
67 assert(self->array.type->type == ARGTYPE_ARRAY);
68
69 self->format = (char *)value_get_data(&self->array, arguments);
Petr Machata43417842012-10-29 17:59:17 +010070 if (self->format == NULL) {
71 value_destroy(&self->array);
Petr Machata940ec062012-01-06 22:43:51 +010072 goto fail;
Petr Machata43417842012-10-29 17:59:17 +010073 }
Petr Machata940ec062012-01-06 22:43:51 +010074
75 size_t size = value_size(&self->array, arguments);
Petr Machata43417842012-10-29 17:59:17 +010076 if (size == (size_t)-1) {
77 value_destroy(&self->array);
Petr Machata940ec062012-01-06 22:43:51 +010078 goto fail;
Petr Machata43417842012-10-29 17:59:17 +010079 }
Petr Machata940ec062012-01-06 22:43:51 +010080
81 self->percent = 0;
82 self->ptr = self->format;
83 self->end = self->format + size;
84 self->future_length = NULL;
85 return self;
86}
87
88static void
89drop_future_length(struct param_enum *self)
90{
91 if (self->future_length != NULL) {
92 free(self->future_length);
93 self->future_length = NULL;
94 }
95}
96
97static int
98form_next_param(struct param_enum *self,
99 enum arg_type format_type, enum arg_type elt_type,
100 unsigned hlf, unsigned lng, char *len_buf, size_t len_buf_len,
101 struct arg_type_info *infop)
102{
103 /* XXX note: Some types are wrong because we lack
104 ARGTYPE_LONGLONG, ARGTYPE_UCHAR and ARGTYPE_SCHAR. */
105 assert(lng <= 2);
106 assert(hlf <= 2);
107 static enum arg_type ints[] =
108 { ARGTYPE_CHAR, ARGTYPE_SHORT, ARGTYPE_INT,
109 ARGTYPE_LONG, ARGTYPE_ULONG };
110 static enum arg_type uints[] =
111 { ARGTYPE_CHAR, ARGTYPE_USHORT, ARGTYPE_UINT,
112 ARGTYPE_ULONG, ARGTYPE_ULONG };
113
114 struct arg_type_info *elt_info = NULL;
Petr Machatab7819162012-01-09 04:26:15 +0100115 if (format_type == ARGTYPE_ARRAY || format_type == ARGTYPE_POINTER)
Petr Machata940ec062012-01-06 22:43:51 +0100116 elt_info = type_get_simple(elt_type);
Petr Machatab7819162012-01-09 04:26:15 +0100117 else if (format_type == ARGTYPE_INT)
Petr Machata940ec062012-01-06 22:43:51 +0100118 format_type = ints[2 + lng - hlf];
119 else if (format_type == ARGTYPE_UINT)
120 format_type = uints[2 + lng - hlf];
121
122
123 if (format_type == ARGTYPE_ARRAY) {
124 struct expr_node *node = NULL;
125 if (len_buf_len != 0
126 || self->future_length != NULL) {
127 struct tmp {
128 struct expr_node node;
129 struct arg_type_info type;
130 };
131 struct tmp *len = malloc(sizeof(*len));
132 if (len == NULL) {
133 fail:
134 free(len);
135 return -1;
136 }
137
Petr Machata16804482012-10-30 00:19:36 +0100138 len->type = *type_get_simple(ARGTYPE_LONG);
Petr Machata940ec062012-01-06 22:43:51 +0100139
140 long l;
141 if (self->future_length != NULL) {
142 l = *self->future_length;
143 drop_future_length(self);
144 } else {
145 l = atol(len_buf);
146 }
147
148 expr_init_const_word(&len->node, l, &len->type, 0);
149
150 node = build_zero_w_arg(&len->node, 1);
151 if (node == NULL)
152 goto fail;
153
154 } else {
155 node = expr_node_zero();
156 }
157
158 assert(node != NULL);
159 type_init_array(infop, elt_info, 0, node, 1);
160
161 } else if (format_type == ARGTYPE_POINTER) {
162 type_init_pointer(infop, elt_info, 1);
163
164 } else {
165 *infop = *type_get_simple(format_type);
166 }
167
168 return 0;
169}
170
171static int
172param_printf_next(struct param_enum *self, struct arg_type_info *infop,
173 int *insert_stop)
174{
175 unsigned hlf = 0;
176 unsigned lng = 0;
Petr Machatab7819162012-01-09 04:26:15 +0100177 enum arg_type format_type = ARGTYPE_VOID;
178 enum arg_type elt_type = ARGTYPE_VOID;
Petr Machata940ec062012-01-06 22:43:51 +0100179 char len_buf[25] = {};
180 size_t len_buf_len = 0;
Petr Machata31af32c2012-01-08 02:36:50 +0100181 struct lens *lens = NULL;
Petr Machata940ec062012-01-06 22:43:51 +0100182
183 for (; self->ptr < self->end; ++self->ptr) {
184 if (!self->percent) {
185 if (*self->ptr == '%')
186 self->percent = 1;
187 continue;
188 }
189
190 switch (*self->ptr) {
191 case '#': case ' ': case '-':
192 case '+': case 'I': case '\'':
193 /* These are only important for formatting,
194 * not for interpreting the type. */
195 continue;
196
197 case '*':
198 /* Length parameter given in the next
199 * argument. */
200 if (self->future_length == NULL)
201 /* This should really be an assert,
202 * but we can't just fail on invalid
203 * format string. */
204 self->future_length
205 = malloc(sizeof(*self->future_length));
206
207 if (self->future_length != NULL) {
208 ++self->ptr;
209 format_type = ARGTYPE_INT;
210 break;
211 }
212
213 case '0':
214 case '1': case '2': case '3':
215 case '4': case '5': case '6':
216 case '7': case '8': case '9':
217 /* Field length likewise, but we need to parse
218 * this to attach the appropriate string
219 * length expression. */
220 if (len_buf_len < sizeof(len_buf) - 1)
221 len_buf[len_buf_len++] = *self->ptr;
222 continue;
223
224 case 'h':
225 if (hlf < 2)
226 hlf++;
227 continue;
228
229 case 'l':
230 if (lng < 2)
231 lng++;
232 continue;
233
234 case 'q':
235 lng = 2;
236 continue;
237
238 case 'L': /* long double */
239 lng = 1;
240 continue;
241
242 case 'j': /* intmax_t */
243 /* XXX ABI should know */
244 lng = 2;
245 continue;
246
247 case 't': /* ptrdiff_t */
248 case 'Z': case 'z': /* size_t */
249 lng = 1; /* XXX ABI should tell */
250 continue;
251
252 case 'd':
253 case 'i':
254 format_type = ARGTYPE_INT;
255 self->percent = 0;
256 break;
257
Petr Machata940ec062012-01-06 22:43:51 +0100258 case 'o':
Petr Machatac70b1952012-04-27 21:00:26 +0200259 lens = &octal_lens;
260 goto uint;
261
Petr Machata940ec062012-01-06 22:43:51 +0100262 case 'x': case 'X':
Petr Machatac70b1952012-04-27 21:00:26 +0200263 lens = &hex_lens;
264 case 'u':
265 uint:
Petr Machata940ec062012-01-06 22:43:51 +0100266 format_type = ARGTYPE_UINT;
267 self->percent = 0;
268 break;
269
270 case 'e': case 'E':
271 case 'f': case 'F':
272 case 'g': case 'G':
273 case 'a': case 'A':
274 format_type = ARGTYPE_DOUBLE;
275 self->percent = 0;
276 break;
277
278 case 'C': /* like "lc" */
279 if (lng == 0)
280 lng++;
281 case 'c':
282 /* XXX "lc" means wchar_t string. */
283 format_type = ARGTYPE_CHAR;
284 self->percent = 0;
285 break;
286
287 case 'S': /* like "ls" */
288 if (lng == 0)
289 lng++;
290 case 's':
291 format_type = ARGTYPE_ARRAY;
292 /* XXX "ls" means wchar_t string. */
293 elt_type = ARGTYPE_CHAR;
294 self->percent = 0;
Petr Machatae3f4a982012-01-09 04:27:26 +0100295 lens = &string_lens;
Petr Machata940ec062012-01-06 22:43:51 +0100296 break;
297
298 case 'p':
299 case 'n': /* int* where to store no. of printed chars. */
300 format_type = ARGTYPE_POINTER;
301 elt_type = ARGTYPE_VOID;
302 self->percent = 0;
303 break;
304
305 case 'm': /* (glibc) print argument of errno */
306 case '%':
307 lng = 0;
308 hlf = 0;
309 self->percent = 0;
310 continue;
311
312 default:
313 continue;
314 }
315
316 /* If we got here, the type must have been set. */
Petr Machatab7819162012-01-09 04:26:15 +0100317 assert(format_type != ARGTYPE_VOID);
Petr Machata940ec062012-01-06 22:43:51 +0100318
319 if (form_next_param(self, format_type, elt_type, hlf, lng,
320 len_buf, len_buf_len, infop) < 0)
321 return -1;
322
Petr Machata31af32c2012-01-08 02:36:50 +0100323 infop->lens = lens;
324 infop->own_lens = 0;
325
Petr Machata940ec062012-01-06 22:43:51 +0100326 return 0;
327 }
328
Petr Machata16804482012-10-30 00:19:36 +0100329 *infop = *type_get_simple(ARGTYPE_VOID);
Petr Machata940ec062012-01-06 22:43:51 +0100330 return 0;
331}
332
333static enum param_status
334param_printf_stop(struct param_enum *self, struct value *value)
335{
336 if (self->future_length != NULL
337 && value_extract_word(value, (long *)self->future_length, NULL) < 0)
338 drop_future_length(self);
339
340 return PPCB_CONT;
341}
342
343static void
344param_printf_done(struct param_enum *context)
345{
Petr Machata43417842012-10-29 17:59:17 +0100346 value_destroy(&context->array);
Petr Machata940ec062012-01-06 22:43:51 +0100347 free(context);
348}
349
350void
351param_pack_init_printf(struct param *param, struct expr_node *arg, int own_arg)
352{
Petr Machatae36298a2012-09-13 17:12:41 +0200353 param_init_pack(param, PARAM_PACK_VARARGS, arg, 1, own_arg,
Petr Machata940ec062012-01-06 22:43:51 +0100354 &param_printf_init, &param_printf_next,
355 &param_printf_stop, &param_printf_done);
356}