blob: d5edc1a8abcbe11497629fe1d48110113673cf6d [file] [log] [blame]
Juan Cespedesac3db291998-04-25 14:31:58 +02001#include "config.h"
Juan Cespedesac3db291998-04-25 14:31:58 +02002
Juan Cespedesce377d52008-12-16 19:38:10 +01003#include <sys/ioctl.h>
Petr Machata2b46cfc2012-02-18 11:17:29 +01004#include <assert.h>
Petr Machata1e4fed22012-04-01 00:45:22 +02005#include <errno.h>
Petr Machata1e4fed22012-04-01 00:45:22 +02006#include <fcntl.h>
7#include <getopt.h>
8#include <limits.h>
Petr Machatacc0e1e42012-04-25 13:42:07 +02009#include <stdio.h>
Petr Machata1e4fed22012-04-01 00:45:22 +020010#include <stdlib.h>
11#include <string.h>
12#include <unistd.h>
Juan Cespedesac3db291998-04-25 14:31:58 +020013
Juan Cespedesf7281232009-06-25 16:11:21 +020014#include "common.h"
Petr Machata1e4fed22012-04-01 00:45:22 +020015#include "filter.h"
16#include "glob.h"
Juan Cespedes5e01f651998-03-08 22:31:44 +010017
Steve Fink58c73a72006-07-17 23:18:35 +020018#ifndef SYSCONFDIR
19#define SYSCONFDIR "/etc"
20#endif
21
Olaf Heringe948e582006-10-12 23:53:44 +020022#define SYSTEM_CONFIG_FILE SYSCONFDIR "/ltrace.conf"
Steve Fink58c73a72006-07-17 23:18:35 +020023#define USER_CONFIG_FILE "~/.ltrace.conf"
24
Juan Cespedesce377d52008-12-16 19:38:10 +010025struct options_t options = {
Juan Cespedesda9b9532009-04-07 15:33:50 +020026 .align = DEFAULT_ALIGN, /* alignment column for results */
27 .user = NULL, /* username to run command as */
28 .syscalls = 0, /* display syscalls */
Juan Cespedesce377d52008-12-16 19:38:10 +010029#ifdef USE_DEMANGLE
Juan Cespedesda9b9532009-04-07 15:33:50 +020030 .demangle = 0, /* Demangle low-level symbol names */
Juan Cespedesce377d52008-12-16 19:38:10 +010031#endif
Juan Cespedesda9b9532009-04-07 15:33:50 +020032 .indent = 0, /* indent output according to program flow */
33 .output = NULL, /* output to a specific file */
Juan Cespedescc813cd2009-04-07 15:45:53 +020034 .summary = 0, /* Report a summary on program exit */
35 .debug = 0, /* debug */
36 .arraylen = DEFAULT_ARRAYLEN, /* maximum # array elements to print */
37 .strlen = DEFAULT_STRLEN, /* maximum # of bytes printed in strings */
38 .follow = 0, /* trace child processes */
Juan Cespedesce377d52008-12-16 19:38:10 +010039};
40
Juan Cespedesac3db291998-04-25 14:31:58 +020041static char *progname; /* Program name (`ltrace') */
Juan Cespedes5e01f651998-03-08 22:31:44 +010042int opt_i = 0; /* instruction pointer */
Juan Cespedesf666d191998-09-20 23:04:34 +020043int opt_r = 0; /* print relative timestamp */
Juan Cespedes5e0acdb1998-04-04 08:34:07 +020044int opt_t = 0; /* print absolute timestamp */
Juan Cespedesd65efa32003-02-03 00:22:30 +010045int opt_T = 0; /* show the time spent inside each call */
Juan Cespedes5e01f651998-03-08 22:31:44 +010046
47/* List of pids given to option -p: */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010048struct opt_p_t *opt_p = NULL; /* attach to process with a given pid */
Juan Cespedes5e01f651998-03-08 22:31:44 +010049
Steve Fink58c73a72006-07-17 23:18:35 +020050/* List of filenames give to option -F: */
51struct opt_F_t *opt_F = NULL; /* alternate configuration file(s) */
52
Paul Gilliambe320772006-04-24 22:06:23 +020053#ifdef PLT_REINITALISATION_BP
Ian Wienand9a2ad352006-02-20 22:44:45 +010054/* Set a break on the routine named here in order to re-initialize breakpoints
55 after all the PLTs have been initialzed */
Paul Gilliambe320772006-04-24 22:06:23 +020056char *PLTs_initialized_by_here = PLT_REINITALISATION_BP;
57#endif
Ian Wienand9a2ad352006-02-20 22:44:45 +010058
Juan Cespedesf1350522008-12-16 18:19:58 +010059static void
Juan Cespedesc5c744a2009-07-23 18:22:58 +020060err_usage(void) {
Juan Cespedesc5c744a2009-07-23 18:22:58 +020061 fprintf(stderr, "Try `%s --help' for more information\n", progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +020062 exit(1);
63}
64
65static void
Juan Cespedesf1350522008-12-16 18:19:58 +010066usage(void) {
Juan Cespedesac3db291998-04-25 14:31:58 +020067 fprintf(stdout, "Usage: %s [option ...] [command [arg ...]]\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010068 "Trace library calls of a given program.\n\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010069 " -a, --align=COLUMN align return values in a secific column.\n"
Juan Cespedesaee09312007-08-31 18:49:48 +020070 " -A ARRAYLEN maximum number of array elements to print.\n"
Joe Damato59e3fb12009-11-06 19:45:10 -080071 " -b, --no-signals don't print signals.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010072 " -c count time and calls, and report a summary on exit.\n"
Juan Cespedesd914a202004-11-10 00:15:33 +010073# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +010074 " -C, --demangle decode low-level symbol names into user-level names.\n"
Juan Cespedesac3db291998-04-25 14:31:58 +020075# endif
Juan Cespedesc5c744a2009-07-23 18:22:58 +020076 " -D, --debug=LEVEL enable debugging (see -Dh or --debug=help).\n"
Juan Cespedesc5c744a2009-07-23 18:22:58 +020077 " -Dh, --debug=help show help on debugging.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010078 " -e expr modify which events to trace.\n"
Juan Cespedesc4e53a92009-05-06 20:36:42 +020079 " -f trace children (fork() and clone()).\n"
Juan Cespedescc813cd2009-04-07 15:45:53 +020080 " -F, --config=FILE load alternate configuration file (may be repeated).\n"
Joe Damatofa2aefc2010-10-30 19:56:50 -070081 " -g, --no-plt disable breakpoints on PLT entries.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010082 " -h, --help display this help and exit.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010083 " -i print instruction pointer at time of library call.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010084 " -l, --library=FILE print library calls from this library only.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010085 " -L do NOT display library calls.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010086 " -n, --indent=NR indent output by NR spaces for each call level nesting.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010087 " -o, --output=FILE write the trace output to that file.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010088 " -p PID attach to the process with the process ID pid.\n"
89 " -r print relative timestamps.\n"
90 " -s STRLEN specify the maximum string size to print.\n"
91 " -S display system calls.\n"
92 " -t, -tt, -ttt print absolute timestamps.\n"
93 " -T show the time spent inside each call.\n"
94 " -u USERNAME run command with the userid, groupid of username.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010095 " -V, --version output version information and exit.\n"
Joe Damatoab3b72c2010-10-31 00:21:53 -070096#if defined(HAVE_LIBUNWIND)
97 " -w=NR, --where=NR print backtrace showing NR stack frames at most.\n"
98#endif /* defined(HAVE_LIBUNWIND) */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010099 " -x NAME treat the global NAME like a library subroutine.\n"
Paul Gilliambe320772006-04-24 22:06:23 +0200100#ifdef PLT_REINITALISATION_BP
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100101 " -X NAME same as -x; and PLT's will be initialized by here.\n"
Paul Gilliambe320772006-04-24 22:06:23 +0200102#endif
103 "\nReport bugs to ltrace-devel@lists.alioth.debian.org\n",
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100104 progname);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100105}
106
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200107static void
108usage_debug(void) {
109 fprintf(stdout, "%s debugging option, --debug=<octal> or -D<octal>:\n", progname);
110 fprintf(stdout,
111 "\n"
112 " number ref. in source description\n"
113 " 1 general Generally helpful progress information\n"
114 " 10 event Shows every event received by a traced process\n"
115 " 20 process Shows actions carried upon a traced processes\n"
116 " 40 function Shows every entry to internal functions\n"
117 "\n"
118 "Debugging options are mixed using bitwise-or.\n"
119 "Note that the meanings and values are subject to change.\n"
120 );
121}
122
Juan Cespedesf1350522008-12-16 18:19:58 +0100123static char *
124search_for_command(char *filename) {
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100125 static char pathname[PATH_MAX];
Juan Cespedes5e01f651998-03-08 22:31:44 +0100126 char *path;
127 int m, n;
128
129 if (strchr(filename, '/')) {
130 return filename;
131 }
132 for (path = getenv("PATH"); path && *path; path += m) {
133 if (strchr(path, ':')) {
134 n = strchr(path, ':') - path;
135 m = n + 1;
136 } else {
137 m = n = strlen(path);
138 }
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100139 if (n + strlen(filename) + 1 >= PATH_MAX) {
140 fprintf(stderr, "Error: filename too long\n");
141 exit(1);
142 }
143 strncpy(pathname, path, n);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100144 if (n && pathname[n - 1] != '/') {
145 pathname[n++] = '/';
146 }
147 strcpy(pathname + n, filename);
148 if (!access(pathname, X_OK)) {
149 return pathname;
150 }
151 }
152 return filename;
153}
154
Juan Cespedesce377d52008-12-16 19:38:10 +0100155static void
156guess_cols(void) {
157 struct winsize ws;
158 char *c;
159
160 options.align = DEFAULT_ALIGN;
161 c = getenv("COLUMNS");
162 if (c && *c) {
163 char *endptr;
164 int cols;
165 cols = strtol(c, &endptr, 0);
166 if (cols > 0 && !*endptr) {
167 options.align = cols * 5 / 8;
168 }
169 } else if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) {
170 options.align = ws.ws_col * 5 / 8;
Juan Cespedes43739a62009-04-07 13:10:08 +0200171 } else if (ioctl(2, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) {
172 options.align = ws.ws_col * 5 / 8;
Juan Cespedesce377d52008-12-16 19:38:10 +0100173 }
174}
175
Petr Machata1e4fed22012-04-01 00:45:22 +0200176static void
177add_filter_rule(struct filter *filt, const char *expr,
178 enum filter_rule_type type,
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200179 const char *a_sym, int sym_re_p,
180 const char *a_lib, int lib_re_p)
Petr Machata1e4fed22012-04-01 00:45:22 +0200181{
Petr Machata1e4fed22012-04-01 00:45:22 +0200182 struct filter_rule *rule = malloc(sizeof(*rule));
183 struct filter_lib_matcher *matcher = malloc(sizeof(*matcher));
184
185 if (rule == NULL || matcher == NULL) {
Petr Machatacc0e1e42012-04-25 13:42:07 +0200186 fprintf(stderr, "rule near '%s' will be ignored: %s\n",
187 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200188 fail:
189 free(rule);
190 free(matcher);
191 return;
192 }
193
194 regex_t symbol_re;
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200195 int status;
196 {
197 /* Add ^ to the start of expression and $ to the end, so that
198 * we match the whole symbol name. Let the user write the "*"
199 * explicitly if they wish. */
200 char sym[strlen(a_sym) + 3];
201 sprintf(sym, "^%s$", a_sym);
202 status = (sym_re_p ? regcomp : globcomp)(&symbol_re, sym, 0);
203 if (status != 0) {
204 char buf[100];
205 regerror(status, &symbol_re, buf, sizeof buf);
Petr Machatacc0e1e42012-04-25 13:42:07 +0200206 fprintf(stderr, "rule near '%s' will be ignored: %s\n",
207 expr, buf);
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200208 goto fail;
209 }
Petr Machata1e4fed22012-04-01 00:45:22 +0200210 }
211
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200212 if (strcmp(a_lib, "MAIN") == 0) {
Petr Machata0b55b582012-04-02 00:38:46 +0200213 filter_lib_matcher_main_init(matcher);
214 } else {
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200215 /* Add ^ and $ to the library expression as well. */
216 char lib[strlen(a_lib) + 3];
217 sprintf(lib, "^%s$", a_lib);
218
Petr Machata0b55b582012-04-02 00:38:46 +0200219 enum filter_lib_matcher_type type
220 = lib[0] == '/' ? FLM_PATHNAME : FLM_SONAME;
Petr Machata1e4fed22012-04-01 00:45:22 +0200221
Petr Machata0b55b582012-04-02 00:38:46 +0200222 regex_t lib_re;
223 status = (lib_re_p ? regcomp : globcomp)(&lib_re, lib, 0);
224 if (status != 0) {
225 char buf[100];
226 regerror(status, &lib_re, buf, sizeof buf);
Petr Machatacc0e1e42012-04-25 13:42:07 +0200227 fprintf(stderr, "rule near '%s' will be ignored: %s\n",
228 expr, buf);
Petr Machata0b55b582012-04-02 00:38:46 +0200229
230 regfree(&symbol_re);
231 goto fail;
232 }
233 filter_lib_matcher_name_init(matcher, type, lib_re);
Petr Machata1e4fed22012-04-01 00:45:22 +0200234 }
235
Petr Machata1e4fed22012-04-01 00:45:22 +0200236 filter_rule_init(rule, type, matcher, symbol_re);
Petr Machatae0973cb2012-04-01 19:36:41 +0200237 filter_add_rule(filt, rule);
Petr Machata1e4fed22012-04-01 00:45:22 +0200238}
239
240static int
241parse_filter(struct filter *filt, char *expr)
242{
Petr Machata1e4fed22012-04-01 00:45:22 +0200243 /* Filter is a chain of sym@lib rules separated by '-'. If
244 * the filter expression starts with '-', the missing initial
245 * rule is implicitly *@*. */
246
247 enum filter_rule_type type = FR_ADD;
248
249 while (*expr != 0) {
Petr Machata050fa7f2012-04-23 23:44:36 +0200250 size_t s = strcspn(expr, "@-+");
Petr Machata1e4fed22012-04-01 00:45:22 +0200251 char *symname = expr;
252 char *libname;
253 char *next = expr + s + 1;
254 enum filter_rule_type this_type = type;
255
256 if (expr[s] == 0) {
257 libname = "*";
258 expr = next - 1;
259
Petr Machata050fa7f2012-04-23 23:44:36 +0200260 } else if (expr[s] == '-' || expr[s] == '+') {
261 type = expr[s] == '-' ? FR_SUBTRACT : FR_ADD;
262 expr[s] = 0;
Petr Machata1e4fed22012-04-01 00:45:22 +0200263 libname = "*";
264 expr = next;
Petr Machata1e4fed22012-04-01 00:45:22 +0200265
266 } else {
267 assert(expr[s] == '@');
268 expr[s] = 0;
Petr Machata050fa7f2012-04-23 23:44:36 +0200269 s = strcspn(next, "-+");
Petr Machata1e4fed22012-04-01 00:45:22 +0200270 if (s == 0) {
271 libname = "*";
272 expr = next;
273 } else if (next[s] == 0) {
274 expr = next + s;
275 libname = next;
Petr Machata1e4fed22012-04-01 00:45:22 +0200276 } else {
Petr Machata050fa7f2012-04-23 23:44:36 +0200277 assert(next[s] == '-' || next[s] == '+');
278 type = next[s] == '-' ? FR_SUBTRACT : FR_ADD;
Petr Machata1e4fed22012-04-01 00:45:22 +0200279 next[s] = 0;
280 expr = next + s + 1;
281 libname = next;
282 }
283 }
284
285 assert(*libname != 0);
286 char *symend = symname + strlen(symname) - 1;
287 char *libend = libname + strlen(libname) - 1;
288 int sym_is_re = 0;
289 int lib_is_re = 0;
290
291 /*
292 * /xxx/@... and ...@/xxx/ means that xxx are regular
293 * expressions. They are globs otherwise.
294 *
295 * /xxx@yyy/ is the same as /xxx/@/yyy/
296 *
297 * @/xxx matches library path name
298 * @.xxx matches library relative path name
299 */
300 if (symname[0] == '/') {
301 if (symname != symend && symend[0] == '/') {
302 ++symname;
303 *symend-- = 0;
304 sym_is_re = 1;
305
306 } else {
307 sym_is_re = 1;
308 lib_is_re = 1;
309 ++symname;
310
311 /* /XXX@YYY/ is the same as
312 * /XXX/@/YYY/. */
313 if (libend[0] != '/')
Petr Machatacc0e1e42012-04-25 13:42:07 +0200314 fprintf(stderr, "unmatched '/'"
315 " in symbol name\n");
Petr Machata1e4fed22012-04-01 00:45:22 +0200316 else
317 *libend-- = 0;
318 }
319 }
320
321 /* If libname ends in '/', then we expect '/' in the
322 * beginning too. Otherwise the initial '/' is part
323 * of absolute file name. */
324 if (!lib_is_re && libend[0] == '/') {
325 lib_is_re = 1;
326 *libend-- = 0;
327 if (libname != libend && libname[0] == '/')
328 ++libname;
329 else
Petr Machatacc0e1e42012-04-25 13:42:07 +0200330 fprintf(stderr, "unmatched '/'"
331 " in library name\n");
Petr Machata1e4fed22012-04-01 00:45:22 +0200332 }
333
334 if (*symname == 0) /* /@AA/ */
335 symname = "*";
336 if (*libname == 0) /* /aa@/ */
337 libname = "*";
338
339 add_filter_rule(filt, expr, this_type,
340 symname, sym_is_re,
341 libname, lib_is_re);
342 }
343
344 return 0;
345}
346
347static struct filter *
348recursive_parse_chain(char *expr)
349{
Petr Machata1e4fed22012-04-01 00:45:22 +0200350 struct filter *filt = malloc(sizeof(*filt));
351 if (filt == NULL) {
Petr Machatacc0e1e42012-04-25 13:42:07 +0200352 fprintf(stderr, "(part of) filter will be ignored: '%s': %s\n",
353 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200354 return NULL;
355 }
356
Petr Machata35c88142012-04-04 00:54:43 +0200357 filter_init(filt);
Petr Machata050fa7f2012-04-23 23:44:36 +0200358 if (parse_filter(filt, expr) < 0) {
359 fprintf(stderr, "Filter '%s' will be ignored.\n", expr);
360 free(filt);
361 filt = NULL;
Petr Machata1e4fed22012-04-01 00:45:22 +0200362 }
Petr Machata050fa7f2012-04-23 23:44:36 +0200363
364 return filt;
Petr Machata1e4fed22012-04-01 00:45:22 +0200365}
366
367static void
Petr Machatab5f80ac2012-04-04 01:46:18 +0200368parse_filter_chain(const char *expr, struct filter **retp)
Petr Machata1e4fed22012-04-01 00:45:22 +0200369{
370 char *str = strdup(expr);
371 if (str == NULL) {
Petr Machatacc0e1e42012-04-25 13:42:07 +0200372 fprintf(stderr, "filter '%s' will be ignored: %s\n",
373 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200374 return;
375 }
Petr Machata25f319e2012-04-23 23:45:21 +0200376 /* Support initial '!' for backward compatibility. */
377 if (str[0] == '!')
378 str[0] = '-';
379
Petr Machata391318f2012-04-19 02:28:13 +0200380 struct filter **tailp;
381 for (tailp = retp; *tailp != NULL; tailp = &(*tailp)->next)
382 ;
383 *tailp = recursive_parse_chain(str);
Petr Machata1e4fed22012-04-01 00:45:22 +0200384}
385
Juan Cespedesf1350522008-12-16 18:19:58 +0100386char **
Petr Machata67fa52f2012-04-05 02:11:39 +0200387process_options(int argc, char **argv)
388{
Juan Cespedesac3db291998-04-25 14:31:58 +0200389 progname = argv[0];
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100390 options.output = stderr;
Joe Damato59e3fb12009-11-06 19:45:10 -0800391 options.no_signals = 0;
Joe Damatoab3b72c2010-10-31 00:21:53 -0700392#if defined(HAVE_LIBUNWIND)
393 options.bt_depth = -1;
394#endif /* defined(HAVE_LIBUNWIND) */
Juan Cespedes5e01f651998-03-08 22:31:44 +0100395
Juan Cespedesce377d52008-12-16 19:38:10 +0100396 guess_cols();
397
Petr Machata67fa52f2012-04-05 02:11:39 +0200398 int libcalls = 1;
399
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100400 while (1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200401 int c;
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200402 char *p;
Juan Cespedesac3db291998-04-25 14:31:58 +0200403 int option_index = 0;
404 static struct option long_options[] = {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100405 {"align", 1, 0, 'a'},
Juan Cespedesaee09312007-08-31 18:49:48 +0200406 {"config", 1, 0, 'F'},
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200407 {"debug", 1, 0, 'D'},
Juan Cespedesd914a202004-11-10 00:15:33 +0100408# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100409 {"demangle", 0, 0, 'C'},
Juan Cespedes8e3e0821998-09-24 13:49:55 +0200410#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100411 {"indent", 1, 0, 'n'},
412 {"help", 0, 0, 'h'},
413 {"library", 1, 0, 'l'},
414 {"output", 1, 0, 'o'},
415 {"version", 0, 0, 'V'},
Joe Damato59e3fb12009-11-06 19:45:10 -0800416 {"no-signals", 0, 0, 'b'},
Joe Damatoab3b72c2010-10-31 00:21:53 -0700417#if defined(HAVE_LIBUNWIND)
418 {"where", 1, 0, 'w'},
419#endif /* defined(HAVE_LIBUNWIND) */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100420 {0, 0, 0, 0}
Juan Cespedesac3db291998-04-25 14:31:58 +0200421 };
Petr Machata796267f2012-04-04 19:09:37 +0200422 c = getopt_long(argc, argv, "+cfhiLrStTVb"
Juan Cespedesd914a202004-11-10 00:15:33 +0100423# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100424 "C"
Juan Cespedesac3db291998-04-25 14:31:58 +0200425# endif
Joe Damatoab3b72c2010-10-31 00:21:53 -0700426#if defined(HAVE_LIBUNWIND)
427 "a:A:D:e:F:l:n:o:p:s:u:x:X:w:", long_options,
428#else /* !defined(HAVE_LIBUNWIND) */
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200429 "a:A:D:e:F:l:n:o:p:s:u:x:X:", long_options,
Joe Damatoab3b72c2010-10-31 00:21:53 -0700430#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100431 &option_index);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100432 if (c == -1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200433 break;
Juan Cespedes5e01f651998-03-08 22:31:44 +0100434 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100435 switch (c) {
436 case 'a':
Juan Cespedesce377d52008-12-16 19:38:10 +0100437 options.align = atoi(optarg);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100438 break;
Juan Cespedesaee09312007-08-31 18:49:48 +0200439 case 'A':
Juan Cespedesda9b9532009-04-07 15:33:50 +0200440 options.arraylen = atoi(optarg);
Steve Fink1150bc42006-08-07 06:04:43 +0200441 break;
Joe Damato535e7382010-11-08 15:47:43 -0800442 case 'b':
443 options.no_signals = 1;
444 break;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100445 case 'c':
Juan Cespedesda9b9532009-04-07 15:33:50 +0200446 options.summary++;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100447 break;
Juan Cespedesd914a202004-11-10 00:15:33 +0100448#ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100449 case 'C':
Juan Cespedesce377d52008-12-16 19:38:10 +0100450 options.demangle++;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100451 break;
Juan Cespedesac3db291998-04-25 14:31:58 +0200452#endif
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200453 case 'D':
454 if (optarg[0]=='h') {
455 usage_debug();
456 exit(0);
457 }
458 options.debug = strtoul(optarg,&p,8);
459 if (*p) {
460 fprintf(stderr, "%s: --debug requires an octal argument\n", progname);
461 err_usage();
462 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100463 break;
Petr Machata1e4fed22012-04-01 00:45:22 +0200464
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100465 case 'e':
Petr Machatab5f80ac2012-04-04 01:46:18 +0200466 parse_filter_chain(optarg, &options.plt_filter);
Petr Machata1e4fed22012-04-01 00:45:22 +0200467 break;
468
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100469 case 'f':
Juan Cespedescc813cd2009-04-07 15:45:53 +0200470 options.follow = 1;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100471 break;
Juan Cespedesaee09312007-08-31 18:49:48 +0200472 case 'F':
473 {
474 struct opt_F_t *tmp = malloc(sizeof(struct opt_F_t));
475 if (!tmp) {
476 perror("ltrace: malloc");
477 exit(1);
478 }
479 tmp->filename = strdup(optarg);
480 tmp->next = opt_F;
481 opt_F = tmp;
482 break;
483 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100484 case 'h':
485 usage();
486 exit(0);
487 case 'i':
488 opt_i++;
489 break;
490 case 'l':
Petr Machataa16a0c22012-04-17 01:19:25 +0200491 // XXX TODO
492 fprintf(stderr, "-l support not yet implemented\n");
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100493 break;
494 case 'L':
Petr Machata67fa52f2012-04-05 02:11:39 +0200495 libcalls = 0;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100496 break;
497 case 'n':
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100498 options.indent = atoi(optarg);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100499 break;
500 case 'o':
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100501 options.output = fopen(optarg, "w");
502 if (!options.output) {
Petr Machatacc0e1e42012-04-25 13:42:07 +0200503 fprintf(stderr,
504 "can't open %s for writing: %s\n",
505 optarg, strerror(errno));
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100506 exit(1);
507 }
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100508 setvbuf(options.output, (char *)NULL, _IOLBF, 0);
509 fcntl(fileno(options.output), F_SETFD, FD_CLOEXEC);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100510 break;
511 case 'p':
512 {
Juan Cespedesaee09312007-08-31 18:49:48 +0200513 struct opt_p_t *tmp = malloc(sizeof(struct opt_p_t));
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100514 if (!tmp) {
515 perror("ltrace: malloc");
516 exit(1);
517 }
518 tmp->pid = atoi(optarg);
519 tmp->next = opt_p;
520 opt_p = tmp;
521 break;
522 }
523 case 'r':
524 opt_r++;
525 break;
526 case 's':
Juan Cespedescc813cd2009-04-07 15:45:53 +0200527 options.strlen = atoi(optarg);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100528 break;
529 case 'S':
Juan Cespedesce377d52008-12-16 19:38:10 +0100530 options.syscalls = 1;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100531 break;
532 case 't':
533 opt_t++;
534 break;
535 case 'T':
536 opt_T++;
537 break;
538 case 'u':
Juan Cespedesce377d52008-12-16 19:38:10 +0100539 options.user = optarg;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100540 break;
541 case 'V':
542 printf("ltrace version " PACKAGE_VERSION ".\n"
Juan Cespedes1423f082009-04-07 00:45:33 +0200543 "Copyright (C) 1997-2009 Juan Cespedes <cespedes@debian.org>.\n"
Juan Cespedesaee09312007-08-31 18:49:48 +0200544 "This is free software; see the GNU General Public Licence\n"
545 "version 2 or later for copying conditions. There is NO warranty.\n");
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100546 exit(0);
Joe Damatofa2aefc2010-10-30 19:56:50 -0700547 break;
Joe Damato535e7382010-11-08 15:47:43 -0800548#if defined(HAVE_LIBUNWIND)
549 case 'w':
550 options.bt_depth = atoi(optarg);
Joe Damato59e3fb12009-11-06 19:45:10 -0800551 break;
Joe Damato535e7382010-11-08 15:47:43 -0800552#endif /* defined(HAVE_LIBUNWIND) */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100553 case 'X':
Paul Gilliambe320772006-04-24 22:06:23 +0200554#ifdef PLT_REINITALISATION_BP
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100555 PLTs_initialized_by_here = optarg;
Paul Gilliambe320772006-04-24 22:06:23 +0200556#else
Juan Cespedesaee09312007-08-31 18:49:48 +0200557 fprintf(stderr, "WARNING: \"-X\" not used for this "
Paul Gilliambe320772006-04-24 22:06:23 +0200558 "architecture: assuming you meant \"-x\"\n");
559#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100560 /* Fall Thru */
Juan Cespedesac3db291998-04-25 14:31:58 +0200561
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100562 case 'x':
Petr Machatada3edbf2012-04-04 02:20:21 +0200563 parse_filter_chain(optarg, &options.static_filter);
564 break;
Ian Wienand9a2ad352006-02-20 22:44:45 +0100565
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100566 default:
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200567 err_usage();
Juan Cespedes5e01f651998-03-08 22:31:44 +0100568 }
569 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100570 argc -= optind;
571 argv += optind;
Juan Cespedes5e01f651998-03-08 22:31:44 +0100572
Juan Cespedesaee09312007-08-31 18:49:48 +0200573 if (!opt_F) {
574 opt_F = malloc(sizeof(struct opt_F_t));
575 opt_F->next = malloc(sizeof(struct opt_F_t));
576 opt_F->next->next = NULL;
577 opt_F->filename = USER_CONFIG_FILE;
578 opt_F->next->filename = SYSTEM_CONFIG_FILE;
579 }
Steve Fink58c73a72006-07-17 23:18:35 +0200580 /* Reverse the config file list since it was built by
581 * prepending, and it would make more sense to process the
582 * files in the order they were given. Probably it would make
583 * more sense to keep a tail pointer instead? */
584 {
Juan Cespedesaee09312007-08-31 18:49:48 +0200585 struct opt_F_t *egg = NULL;
586 struct opt_F_t *chicken;
587 while (opt_F) {
588 chicken = opt_F->next;
589 opt_F->next = egg;
590 egg = opt_F;
591 opt_F = chicken;
592 }
593 opt_F = egg;
Steve Fink58c73a72006-07-17 23:18:35 +0200594 }
595
Petr Machata0b55b582012-04-02 00:38:46 +0200596 /* Set default filter. Use @MAIN for now, as that's what
597 * ltrace used to have in the past. XXX Maybe we should make
598 * this "*" instead. */
Petr Machata67fa52f2012-04-05 02:11:39 +0200599 if (options.plt_filter == NULL && libcalls) {
Petr Machatab5f80ac2012-04-04 01:46:18 +0200600 parse_filter_chain("@MAIN", &options.plt_filter);
Petr Machata03673892012-04-03 13:51:09 +0200601 options.hide_caller = 1;
602 }
Petr Machatae0973cb2012-04-01 19:36:41 +0200603
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100604 if (!opt_p && argc < 1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200605 fprintf(stderr, "%s: too few arguments\n", progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200606 err_usage();
Juan Cespedes5e01f651998-03-08 22:31:44 +0100607 }
Juan Cespedesf666d191998-09-20 23:04:34 +0200608 if (opt_r && opt_t) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100609 fprintf(stderr, "%s: Incompatible options -r and -t\n",
610 progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200611 err_usage();
Juan Cespedesf666d191998-09-20 23:04:34 +0200612 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100613 if (argc > 0) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200614 command = search_for_command(argv[0]);
Juan Cespedes1fe93d51998-03-13 00:29:21 +0100615 }
Juan Cespedesac3db291998-04-25 14:31:58 +0200616 return &argv[0];
Juan Cespedes5e01f651998-03-08 22:31:44 +0100617}