[PATCH] avoid segafult after parse errors in casts
[smatch.git] / lib.c
blob0bcf8e2503130fb23d8fed024c495aeeb5ca4f7f
1 /*
2 * 'sparse' library helper routines.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
8 */
9 #include <ctype.h>
10 #include <fcntl.h>
11 #include <stdarg.h>
12 #include <stddef.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <unistd.h>
17 #include <assert.h>
19 #include <sys/types.h>
21 #include "lib.h"
22 #include "allocate.h"
23 #include "token.h"
24 #include "parse.h"
25 #include "symbol.h"
26 #include "expression.h"
27 #include "scope.h"
28 #include "linearize.h"
29 #include "target.h"
31 int verbose, optimize, preprocessing;
33 #ifndef __GNUC__
34 # define __GNUC__ 2
35 # define __GNUC_MINOR__ 95
36 #endif
38 int gcc_major = __GNUC__;
39 int gcc_minor = __GNUC_MINOR__;
41 struct token *skip_to(struct token *token, int op)
43 while (!match_op(token, op) && !eof_token(token))
44 token = token->next;
45 return token;
48 struct token *expect(struct token *token, int op, const char *where)
50 if (!match_op(token, op)) {
51 static struct token bad_token;
52 if (token != &bad_token) {
53 bad_token.next = token;
54 warning(token->pos, "Expected %s %s", show_special(op), where);
55 warning(token->pos, "got %s", show_token(token));
57 if (op == ';')
58 return skip_to(token, op);
59 return &bad_token;
61 return token->next;
64 unsigned int hexval(unsigned int c)
66 int retval = 256;
67 switch (c) {
68 case '0'...'9':
69 retval = c - '0';
70 break;
71 case 'a'...'f':
72 retval = c - 'a' + 10;
73 break;
74 case 'A'...'F':
75 retval = c - 'A' + 10;
76 break;
78 return retval;
81 static void do_warn(const char *type, struct position pos, const char * fmt, va_list args)
83 static char buffer[512];
84 const char *name;
86 vsprintf(buffer, fmt, args);
87 name = stream_name(pos.stream);
89 fprintf(stderr, "%s:%d:%d: %s%s\n",
90 name, pos.line, pos.pos, type, buffer);
93 static int max_warnings = 100;
95 void info(struct position pos, const char * fmt, ...)
97 va_list args;
99 if (!max_warnings)
100 return;
101 va_start(args, fmt);
102 do_warn("", pos, fmt, args);
103 va_end(args);
106 void warning(struct position pos, const char * fmt, ...)
108 va_list args;
110 if (!max_warnings)
111 return;
113 if (!--max_warnings)
114 fmt = "too many warnings";
116 va_start(args, fmt);
117 do_warn("warning: ", pos, fmt, args);
118 va_end(args);
121 void error(struct position pos, const char * fmt, ...)
123 static int errors = 0;
124 va_list args;
126 /* Shut up warnings after an error */
127 max_warnings = 0;
128 if (errors > 100) {
129 static int once = 0;
130 if (once)
131 return;
132 fmt = "too many errors";
133 once = 1;
136 va_start(args, fmt);
137 do_warn("error: ", pos, fmt, args);
138 va_end(args);
139 errors++;
142 void error_die(struct position pos, const char * fmt, ...)
144 va_list args;
145 va_start(args, fmt);
146 do_warn("error: ", pos, fmt, args);
147 va_end(args);
148 exit(1);
151 void die(const char *fmt, ...)
153 va_list args;
154 static char buffer[512];
156 va_start(args, fmt);
157 vsnprintf(buffer, sizeof(buffer), fmt, args);
158 va_end(args);
160 fprintf(stderr, "%s\n", buffer);
161 exit(1);
164 unsigned int pre_buffer_size;
165 unsigned char pre_buffer[8192];
167 int Wdefault_bitfield_sign = 0;
168 int Wbitwise = 0;
169 int Wtypesign = 0;
170 int Wcontext = 0;
171 int Wundefined_preprocessor = 0;
172 int Wptr_subtraction_blows = 0;
173 int Wtransparent_union = 1;
174 int preprocess_only;
175 char *include;
176 int include_fd = -1;
178 void add_pre_buffer(const char *fmt, ...)
180 va_list args;
181 unsigned int size;
183 va_start(args, fmt);
184 size = pre_buffer_size;
185 size += vsnprintf(pre_buffer + size,
186 sizeof(pre_buffer) - size,
187 fmt, args);
188 pre_buffer_size = size;
189 va_end(args);
192 static char **handle_switch_D(char *arg, char **next)
194 const char *name = arg + 1;
195 const char *value = "1";
196 for (;;) {
197 char c;
198 c = *++arg;
199 if (!c)
200 break;
201 if (isspace((unsigned char)c) || c == '=') {
202 *arg = '\0';
203 value = arg + 1;
204 break;
207 add_pre_buffer("#define %s %s\n", name, value);
208 return next;
211 static char **handle_switch_E(char *arg, char **next)
213 preprocess_only = 1;
214 return next;
217 static char **handle_switch_v(char *arg, char **next)
219 do {
220 verbose++;
221 } while (*++arg == 'v');
222 return next;
225 static char **handle_switch_I(char *arg, char **next)
227 char *path = arg+1;
229 switch (arg[1]) {
230 case '-':
231 add_pre_buffer("#split_include\n");
232 break;
234 case '\0': /* Plain "-I" */
235 path = *++next;
236 if (!path)
237 die("missing argument for -I option");
238 /* Fallthrough */
239 default:
240 add_pre_buffer("#add_include \"%s/\"\n", path);
242 return next;
245 static char **handle_switch_i(char *arg, char **next)
247 if (*next && !strcmp(arg, "include")) {
248 char *name = *++next;
249 int fd = open(name, O_RDONLY);
251 include_fd = fd;
252 include = name;
253 if (fd < 0)
254 perror(name);
256 else if (*next && !strcmp(arg, "isystem")) {
257 char *path = *++next;
258 if (!path)
259 die("missing argument for -isystem option");
260 add_pre_buffer("#add_isystem \"%s/\"\n", path);
262 return next;
265 static char **handle_switch_M(char *arg, char **next)
267 if (!strcmp(arg, "MF") || !strcmp(arg,"MQ") || !strcmp(arg,"MT")) {
268 if (!*next)
269 die("missing argument for -%s option", arg);
270 return next + 1;
272 return next;
275 static char **handle_switch_m(char *arg, char **next)
277 if (!strcmp(arg, "m64")) {
278 bits_in_long = 64;
279 max_int_alignment = 8;
280 bits_in_pointer = 64;
281 pointer_alignment = 8;
283 return next;
286 static char **handle_switch_o(char *arg, char **next)
288 if (!strcmp (arg, "o") && *next)
289 return next + 1; // "-o foo"
290 else
291 return next; // "-ofoo" or (bogus) terminal "-o"
294 static const struct warning {
295 const char *name;
296 int *flag;
297 } warnings[] = {
298 { "ptr-subtraction-blows", &Wptr_subtraction_blows },
299 { "default-bitfield-sign", &Wdefault_bitfield_sign },
300 { "undef", &Wundefined_preprocessor },
301 { "bitwise", &Wbitwise },
302 { "typesign", &Wtypesign },
303 { "context", &Wcontext },
304 { "transparent-union", &Wtransparent_union },
308 static char **handle_switch_W(char *arg, char **next)
310 int no = 0;
311 char *p = arg + 1;
312 unsigned i;
314 // Prefixes "no" and "no-" mean to turn warning off.
315 if (p[0] == 'n' && p[1] == 'o') {
316 p += 2;
317 if (p[0] == '-')
318 p++;
319 no = 1;
322 for (i = 0; i < sizeof(warnings) / sizeof(warnings[0]); i++) {
323 if (!strcmp(p,warnings[i].name)) {
324 *warnings[i].flag = !no;
325 return next;
329 // Unknown.
330 return next;
333 static char **handle_switch_U(char *arg, char **next)
335 const char *name = arg + 1;
336 add_pre_buffer ("#undef %s\n", name);
337 return next;
340 static char **handle_switch_O(char *arg, char **next)
342 int level = 1;
343 if (arg[1] >= '0' && arg[1] <= '9')
344 level = arg[1] - '0';
345 optimize = level;
346 return next;
349 static char **handle_nostdinc(char *arg, char **next)
351 add_pre_buffer("#nostdinc\n");
352 return next;
355 static char **handle_dirafter(char *arg, char **next)
357 char *path = *++next;
358 if (!path)
359 die("missing argument for -dirafter option");
360 add_pre_buffer("#add_dirafter \"%s/\"\n", path);
361 return next;
364 struct switches {
365 const char *name;
366 char **(*fn)(char *, char**);
369 char **handle_switch(char *arg, char **next)
371 char **rc = next;
372 static struct switches cmd[] = {
373 { "nostdinc", handle_nostdinc },
374 { "dirafter", handle_dirafter },
375 { NULL, NULL }
377 struct switches *s;
379 switch (*arg) {
380 case 'D': rc = handle_switch_D(arg, next); break;
381 case 'E': rc = handle_switch_E(arg, next); break;
382 case 'I': rc = handle_switch_I(arg, next); break;
383 case 'i': rc = handle_switch_i(arg, next); break;
384 case 'M': rc = handle_switch_M(arg, next); break;
385 case 'm': rc = handle_switch_m(arg, next); break;
386 case 'o': rc = handle_switch_o(arg, next); break;
387 case 'U': rc = handle_switch_U(arg, next); break;
388 case 'v': rc = handle_switch_v(arg, next); break;
389 case 'W': rc = handle_switch_W(arg, next); break;
390 case 'O': rc = handle_switch_O(arg, next); break;
391 default:
392 break;
395 s = cmd;
396 while (s->name) {
397 if (!strcmp(s->name, arg))
398 return s->fn(arg, next);
399 s++;
403 * Ignore unknown command line options:
404 * they're probably gcc switches
406 return rc;
409 void declare_builtin_functions(void)
411 add_pre_buffer("extern void *__builtin_memcpy(void *, const void *, __SIZE_TYPE__);\n");
412 add_pre_buffer("extern void *__builtin_return_address(unsigned int);\n");
413 add_pre_buffer("extern void *__builtin_frame_address(unsigned int);\n");
414 add_pre_buffer("extern void *__builtin_memset(void *, int, __SIZE_TYPE__);\n");
415 add_pre_buffer("extern void __builtin_trap(void);\n");
416 add_pre_buffer("extern int __builtin_ffs(int);\n");
417 add_pre_buffer("extern void *__builtin_alloca(__SIZE_TYPE__);\n");
420 void create_builtin_stream(void)
422 add_pre_buffer("#define __GNUC__ %d\n", gcc_major);
423 add_pre_buffer("#define __GNUC_MINOR__ %d\n", gcc_minor);
424 add_pre_buffer("#define __extension__\n");
425 add_pre_buffer("#define __pragma__\n");
427 // gcc defines __SIZE_TYPE__ to be size_t. For linux/i86 and
428 // solaris/sparc that is really "unsigned int" and for linux/x86_64
429 // it is "long unsigned int". In either case we can probably
430 // get away with this. We need the #ifndef as cgcc will define
431 // the right __SIZE_TYPE__.
432 add_pre_buffer("#weak_define __SIZE_TYPE__ long unsigned int\n");
433 add_pre_buffer("#weak_define __STDC__ 1\n");
435 add_pre_buffer("#define __builtin_stdarg_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
436 add_pre_buffer("#define __builtin_va_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
437 add_pre_buffer("#define __builtin_va_arg(arg,type) ({ type __va_arg_ret = *(type *)(arg); arg += sizeof(type); __va_arg_ret; })\n");
438 add_pre_buffer("#define __builtin_va_alist (*(void *)0)\n");
439 add_pre_buffer("#define __builtin_va_arg_incr(x) ((x) + 1)\n");
440 add_pre_buffer("#define __builtin_va_end(arg)\n");
443 static void do_predefined(char *filename)
445 add_pre_buffer("#define __BASE_FILE__ \"%s\"\n", filename);
446 add_pre_buffer("#define __DATE__ \"??? ?? ????\"\n");
447 add_pre_buffer("#define __TIME__ \"??:??:??\"\n");
450 struct symbol_list *sparse(int argc, char **argv)
452 int fd;
453 char *filename = NULL, **args;
454 struct token *token;
456 // Initialize symbol stream first, so that we can add defines etc
457 init_symbols();
459 args = argv;
460 for (;;) {
461 char *arg = *++args;
462 if (!arg)
463 break;
464 if (arg[0] == '-' && arg[1]) {
465 args = handle_switch(arg+1, args);
466 continue;
468 filename = arg;
471 if (!filename)
472 die("no input files given");
474 // Initialize type system
475 init_ctype();
477 create_builtin_stream();
478 add_pre_buffer("#define __CHECKER__ 1\n");
479 if (!preprocess_only)
480 declare_builtin_functions();
482 do_predefined(filename);
484 if (strcmp (filename, "-") == 0) {
485 fd = 0;
486 } else {
487 fd = open(filename, O_RDONLY);
488 if (fd < 0)
489 die("No such file: %s", filename);
492 // Tokenize the input stream
493 token = tokenize(filename, fd, NULL, includepath);
494 close(fd);
496 // Prepend any "include" file to the stream.
497 if (include_fd >= 0)
498 token = tokenize(include, include_fd, token, includepath);
500 // Prepend the initial built-in stream
501 token = tokenize_buffer(pre_buffer, pre_buffer_size, token);
503 // Pre-process the stream
504 token = preprocess(token);
506 if (preprocess_only) {
507 while (!eof_token(token)) {
508 int prec = 1;
509 struct token *next = token->next;
510 const char *separator = "";
511 if (next->pos.whitespace)
512 separator = " ";
513 if (next->pos.newline) {
514 separator = "\n\t\t\t\t\t";
515 prec = next->pos.pos;
516 if (prec > 4)
517 prec = 4;
519 printf("%s%.*s", show_token(token), prec, separator);
520 token = next;
522 putchar('\n');
524 return NULL;
527 // Parse the resulting C code
528 return translation_unit(token);