5 * Copyright (C) 2006 Dan Carpenter.
7 * Licensed under the Open Software License version 1.1
15 #include "check_list.h"
17 char *option_project_str
= (char *)"";
18 enum project_type option_project
= PROJ_NONE
;
20 int option_no_data
= 0;
21 int option_spammy
= 0;
24 int option_full_path
= 0;
25 int option_param_mapper
= 0;
26 int option_call_tree
= 0;
28 typedef void (*reg_func
) (int id
);
29 #define CK(_x) {.name = #_x, .func = &_x},
30 static struct reg_func_info
{
34 #include "check_list.h"
37 int num_checks
= ARRAY_SIZE(reg_funcs
);
39 const char *check_name(unsigned short id
)
41 if (id
> ARRAY_SIZE(reg_funcs
)) {
44 return reg_funcs
[id
- 1].name
;
47 int id_from_name(const char *name
)
51 for(i
= 0; i
< ARRAY_SIZE(reg_funcs
); i
++){
52 if (!strcmp(name
, reg_funcs
[i
].name
))
58 static void help(void)
60 printf("Usage: smatch [smatch arguments][sparse arguments] file.c\n");
61 printf("--project=<name> or -p=<name>: project specific tests\n");
62 printf("--spammy: print superfluous crap.\n");
63 printf("--rare: do checks for rare bugs.\n");
64 printf("--info: print info used to fill smatch_data/.\n");
65 printf("--debug: print lots of debug output.\n");
66 printf("--param-mapper: enable param_mapper output.\n");
67 printf("--no-data: do not use the /smatch_data/ directory.\n");
68 printf("--full-path: print the full pathname.\n");
69 printf("--debug-implied: print debug output about implications.\n");
70 printf("--oom <num>: number of mB memory to use before giving up.\n");
71 printf("--no-implied: ignore implications.\n");
72 printf("--assume-loops: assume loops always go through at least once.\n");
73 printf("--known-conditions: don't branch for known conditions.\n");
74 printf("--two-passes: use a two pass system for each function.\n");
75 printf("--help: print this helpfull message.\n");
79 static int match_option(const char *arg
, const char *option
)
85 str
= malloc(strlen(option
) + 3);
86 sprintf(str
, "--%s", option
);
93 if (!strcmp(arg
, str
))
99 #define OPTION(_x) do { \
100 if (!found && match_option((*argvp)[1], #_x)) { \
103 (*argvp)[1] = (*argvp)[0]; \
107 void parse_args(int *argcp
, char ***argvp
)
111 if (!strcmp((*argvp
)[1], "--help")) {
114 if (!found
&& !strncmp((*argvp
)[1], "--project=", 10)) {
115 option_project_str
= (*argvp
)[1] + 10;
116 (*argvp
)[1] = (*argvp
)[0];
119 if (!found
&& !strncmp((*argvp
)[1], "-p=", 3)) {
120 option_project_str
= (*argvp
)[1] + 3;
121 (*argvp
)[1] = (*argvp
)[0];
124 if (!found
&& !strcmp((*argvp
)[1], "--oom")) {
125 option_oom_kb
= atoi((*argvp
)[2]) * 1000;
126 (*argvp
)[2] = (*argvp
)[0];
134 OPTION(debug_implied
);
136 OPTION(assume_loops
);
137 OPTION(known_conditions
);
141 OPTION(param_mapper
);
149 if (!strcmp(option_project_str
, "kernel"))
150 option_project
= PROJ_KERNEL
;
151 if (!strcmp(option_project_str
, "wine"))
152 option_project
= PROJ_WINE
;
155 static char *get_data_dir(char *arg0
)
161 if (option_no_data
) {
164 bin_dir
= dirname(alloc_string(arg0
));
165 strncpy(buf
, bin_dir
, 254);
167 strncat(buf
, "/smatch_data/", 254 - strlen(buf
));
168 dir
= alloc_string(buf
);
169 if (!access(dir
, R_OK
))
172 snprintf(buf
, 254, "%s/smatch_data/", SMATCHDATADIR
);
173 dir
= alloc_string(buf
);
174 if (!access(dir
, R_OK
))
176 printf("Warning: %s is not accessible.\n", dir
);
177 printf("Use --no-data to suppress this message.\n");
181 int main(int argc
, char **argv
)
186 parse_args(&argc
, &argv
);
188 data_dir
= get_data_dir(argv
[0]);
190 create_function_hook_hash();
191 for(i
= 0; i
< ARRAY_SIZE(reg_funcs
); i
++){
192 func
= reg_funcs
[i
].func
;
193 /* The script IDs start at 1.
194 0 is used for internal stuff. */
197 register_function_hooks(-1);
200 free_string(data_dir
);