blob: a63ed283d35fac89739ebe6f35ff113adcfa81dd [file] [log] [blame]
Petr Machatae99af272012-10-26 00:29:52 +02001/*
2 * This file is part of ltrace.
3 * Copyright (C) 2012 Petr Machata, Red Hat Inc.
4 * Copyright (C) 2009,2010 Joe Damato
5 * Copyright (C) 1998,1999,2002,2003,2004,2007,2008,2009 Juan Cespedes
6 * Copyright (C) 2006 Ian Wienand
7 * Copyright (C) 2006 Steve Fink
8 * Copyright (C) 2006 Paul Gilliam, IBM Corporation
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 * 02110-1301 USA
24 */
25
Juan Cespedesac3db291998-04-25 14:31:58 +020026#include "config.h"
Juan Cespedesac3db291998-04-25 14:31:58 +020027
Juan Cespedesce377d52008-12-16 19:38:10 +010028#include <sys/ioctl.h>
Petr Machata2b46cfc2012-02-18 11:17:29 +010029#include <assert.h>
Petr Machata1e4fed22012-04-01 00:45:22 +020030#include <errno.h>
Petr Machata1e4fed22012-04-01 00:45:22 +020031#include <fcntl.h>
32#include <getopt.h>
33#include <limits.h>
Petr Machatacc0e1e42012-04-25 13:42:07 +020034#include <stdio.h>
Petr Machata1e4fed22012-04-01 00:45:22 +020035#include <stdlib.h>
36#include <string.h>
37#include <unistd.h>
Juan Cespedesac3db291998-04-25 14:31:58 +020038
Juan Cespedesf7281232009-06-25 16:11:21 +020039#include "common.h"
Petr Machata1e4fed22012-04-01 00:45:22 +020040#include "filter.h"
41#include "glob.h"
Juan Cespedes5e01f651998-03-08 22:31:44 +010042
Steve Fink58c73a72006-07-17 23:18:35 +020043#ifndef SYSCONFDIR
44#define SYSCONFDIR "/etc"
45#endif
46
Olaf Heringe948e582006-10-12 23:53:44 +020047#define SYSTEM_CONFIG_FILE SYSCONFDIR "/ltrace.conf"
Steve Fink58c73a72006-07-17 23:18:35 +020048#define USER_CONFIG_FILE "~/.ltrace.conf"
49
Juan Cespedesce377d52008-12-16 19:38:10 +010050struct options_t options = {
Juan Cespedesda9b9532009-04-07 15:33:50 +020051 .align = DEFAULT_ALIGN, /* alignment column for results */
52 .user = NULL, /* username to run command as */
53 .syscalls = 0, /* display syscalls */
Juan Cespedesce377d52008-12-16 19:38:10 +010054#ifdef USE_DEMANGLE
Juan Cespedesda9b9532009-04-07 15:33:50 +020055 .demangle = 0, /* Demangle low-level symbol names */
Juan Cespedesce377d52008-12-16 19:38:10 +010056#endif
Juan Cespedesda9b9532009-04-07 15:33:50 +020057 .indent = 0, /* indent output according to program flow */
58 .output = NULL, /* output to a specific file */
Juan Cespedescc813cd2009-04-07 15:45:53 +020059 .summary = 0, /* Report a summary on program exit */
60 .debug = 0, /* debug */
61 .arraylen = DEFAULT_ARRAYLEN, /* maximum # array elements to print */
62 .strlen = DEFAULT_STRLEN, /* maximum # of bytes printed in strings */
63 .follow = 0, /* trace child processes */
Juan Cespedesce377d52008-12-16 19:38:10 +010064};
65
Juan Cespedesac3db291998-04-25 14:31:58 +020066static char *progname; /* Program name (`ltrace') */
Juan Cespedes5e01f651998-03-08 22:31:44 +010067int opt_i = 0; /* instruction pointer */
Juan Cespedesf666d191998-09-20 23:04:34 +020068int opt_r = 0; /* print relative timestamp */
Juan Cespedes5e0acdb1998-04-04 08:34:07 +020069int opt_t = 0; /* print absolute timestamp */
Juan Cespedesd65efa32003-02-03 00:22:30 +010070int opt_T = 0; /* show the time spent inside each call */
Juan Cespedes5e01f651998-03-08 22:31:44 +010071
72/* List of pids given to option -p: */
Ian Wienand2d45b1a2006-02-20 22:48:07 +010073struct opt_p_t *opt_p = NULL; /* attach to process with a given pid */
Juan Cespedes5e01f651998-03-08 22:31:44 +010074
Steve Fink58c73a72006-07-17 23:18:35 +020075/* List of filenames give to option -F: */
76struct opt_F_t *opt_F = NULL; /* alternate configuration file(s) */
77
Juan Cespedesf1350522008-12-16 18:19:58 +010078static void
Juan Cespedesc5c744a2009-07-23 18:22:58 +020079err_usage(void) {
Petr Machata20a411d2012-09-25 22:45:26 +020080 fprintf(stderr, "Try `%s --help' for more information.\n", progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +020081 exit(1);
82}
83
84static void
Juan Cespedesf1350522008-12-16 18:19:58 +010085usage(void) {
Juan Cespedesac3db291998-04-25 14:31:58 +020086 fprintf(stdout, "Usage: %s [option ...] [command [arg ...]]\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010087 "Trace library calls of a given program.\n\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010088 " -a, --align=COLUMN align return values in a secific column.\n"
Juan Cespedesaee09312007-08-31 18:49:48 +020089 " -A ARRAYLEN maximum number of array elements to print.\n"
Joe Damato59e3fb12009-11-06 19:45:10 -080090 " -b, --no-signals don't print signals.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010091 " -c count time and calls, and report a summary on exit.\n"
Juan Cespedesd914a202004-11-10 00:15:33 +010092# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +010093 " -C, --demangle decode low-level symbol names into user-level names.\n"
Juan Cespedesac3db291998-04-25 14:31:58 +020094# endif
Juan Cespedesc5c744a2009-07-23 18:22:58 +020095 " -D, --debug=LEVEL enable debugging (see -Dh or --debug=help).\n"
Juan Cespedesc5c744a2009-07-23 18:22:58 +020096 " -Dh, --debug=help show help on debugging.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +010097 " -e expr modify which events to trace.\n"
Juan Cespedesc4e53a92009-05-06 20:36:42 +020098 " -f trace children (fork() and clone()).\n"
Juan Cespedescc813cd2009-04-07 15:45:53 +020099 " -F, --config=FILE load alternate configuration file (may be repeated).\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100100 " -h, --help display this help and exit.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100101 " -i print instruction pointer at time of library call.\n"
Petr Machata51e74ac2012-09-27 23:43:25 +0200102 " -l, --library=FILE only trace symbols implemented by this library.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100103 " -L do NOT display library calls.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100104 " -n, --indent=NR indent output by NR spaces for each call level nesting.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100105 " -o, --output=FILE write the trace output to that file.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100106 " -p PID attach to the process with the process ID pid.\n"
107 " -r print relative timestamps.\n"
108 " -s STRLEN specify the maximum string size to print.\n"
109 " -S display system calls.\n"
110 " -t, -tt, -ttt print absolute timestamps.\n"
111 " -T show the time spent inside each call.\n"
112 " -u USERNAME run command with the userid, groupid of username.\n"
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100113 " -V, --version output version information and exit.\n"
Joe Damatoab3b72c2010-10-31 00:21:53 -0700114#if defined(HAVE_LIBUNWIND)
115 " -w=NR, --where=NR print backtrace showing NR stack frames at most.\n"
116#endif /* defined(HAVE_LIBUNWIND) */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100117 " -x NAME treat the global NAME like a library subroutine.\n"
Paul Gilliambe320772006-04-24 22:06:23 +0200118 "\nReport bugs to ltrace-devel@lists.alioth.debian.org\n",
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100119 progname);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100120}
121
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200122static void
123usage_debug(void) {
124 fprintf(stdout, "%s debugging option, --debug=<octal> or -D<octal>:\n", progname);
125 fprintf(stdout,
126 "\n"
127 " number ref. in source description\n"
128 " 1 general Generally helpful progress information\n"
129 " 10 event Shows every event received by a traced process\n"
130 " 20 process Shows actions carried upon a traced processes\n"
131 " 40 function Shows every entry to internal functions\n"
132 "\n"
133 "Debugging options are mixed using bitwise-or.\n"
134 "Note that the meanings and values are subject to change.\n"
135 );
136}
137
Juan Cespedesf1350522008-12-16 18:19:58 +0100138static char *
139search_for_command(char *filename) {
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100140 static char pathname[PATH_MAX];
Juan Cespedes5e01f651998-03-08 22:31:44 +0100141 char *path;
142 int m, n;
143
144 if (strchr(filename, '/')) {
145 return filename;
146 }
147 for (path = getenv("PATH"); path && *path; path += m) {
148 if (strchr(path, ':')) {
149 n = strchr(path, ':') - path;
150 m = n + 1;
151 } else {
152 m = n = strlen(path);
153 }
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100154 if (n + strlen(filename) + 1 >= PATH_MAX) {
Petr Machata20a411d2012-09-25 22:45:26 +0200155 fprintf(stderr, "Error: filename too long.\n");
Juan Cespedesf1bfe202002-03-27 00:22:23 +0100156 exit(1);
157 }
158 strncpy(pathname, path, n);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100159 if (n && pathname[n - 1] != '/') {
160 pathname[n++] = '/';
161 }
162 strcpy(pathname + n, filename);
163 if (!access(pathname, X_OK)) {
164 return pathname;
165 }
166 }
167 return filename;
168}
169
Juan Cespedesce377d52008-12-16 19:38:10 +0100170static void
171guess_cols(void) {
172 struct winsize ws;
173 char *c;
174
175 options.align = DEFAULT_ALIGN;
176 c = getenv("COLUMNS");
177 if (c && *c) {
178 char *endptr;
179 int cols;
180 cols = strtol(c, &endptr, 0);
181 if (cols > 0 && !*endptr) {
182 options.align = cols * 5 / 8;
183 }
184 } else if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) {
185 options.align = ws.ws_col * 5 / 8;
Juan Cespedes43739a62009-04-07 13:10:08 +0200186 } else if (ioctl(2, TIOCGWINSZ, &ws) != -1 && ws.ws_col > 0) {
187 options.align = ws.ws_col * 5 / 8;
Juan Cespedesce377d52008-12-16 19:38:10 +0100188 }
189}
190
Petr Machata02b96072012-09-25 23:10:14 +0200191static int
192compile_libname(const char *expr, const char *a_lib, int lib_re_p,
193 struct filter_lib_matcher *matcher)
194{
195 if (strcmp(a_lib, "MAIN") == 0) {
196 filter_lib_matcher_main_init(matcher);
197 } else {
198 /* Add ^ and $ to the library expression as well. */
199 char lib[strlen(a_lib) + 3];
200 sprintf(lib, "^%s$", a_lib);
201
202 enum filter_lib_matcher_type type
203 = lib[0] == '/' ? FLM_PATHNAME : FLM_SONAME;
204
205 regex_t lib_re;
206 int status = (lib_re_p ? regcomp : globcomp)(&lib_re, lib, 0);
Petr Machata03be6eb2012-11-09 16:42:36 +0100207 if (status != REG_NOERROR) {
Petr Machata02b96072012-09-25 23:10:14 +0200208 char buf[100];
209 regerror(status, &lib_re, buf, sizeof buf);
210 fprintf(stderr, "Rule near '%s' will be ignored: %s.\n",
211 expr, buf);
212 return -1;
213 }
214 filter_lib_matcher_name_init(matcher, type, lib_re);
215 }
216 return 0;
217}
218
Petr Machata1e4fed22012-04-01 00:45:22 +0200219static void
220add_filter_rule(struct filter *filt, const char *expr,
221 enum filter_rule_type type,
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200222 const char *a_sym, int sym_re_p,
223 const char *a_lib, int lib_re_p)
Petr Machata1e4fed22012-04-01 00:45:22 +0200224{
Petr Machata1e4fed22012-04-01 00:45:22 +0200225 struct filter_rule *rule = malloc(sizeof(*rule));
226 struct filter_lib_matcher *matcher = malloc(sizeof(*matcher));
227
228 if (rule == NULL || matcher == NULL) {
Petr Machata20a411d2012-09-25 22:45:26 +0200229 fprintf(stderr, "Rule near '%s' will be ignored: %s.\n",
Petr Machatacc0e1e42012-04-25 13:42:07 +0200230 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200231 fail:
232 free(rule);
233 free(matcher);
234 return;
235 }
236
237 regex_t symbol_re;
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200238 {
239 /* Add ^ to the start of expression and $ to the end, so that
240 * we match the whole symbol name. Let the user write the "*"
241 * explicitly if they wish. */
242 char sym[strlen(a_sym) + 3];
243 sprintf(sym, "^%s$", a_sym);
Petr Machata02b96072012-09-25 23:10:14 +0200244 int status = (sym_re_p ? regcomp : globcomp)
245 (&symbol_re, sym, 0);
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200246 if (status != 0) {
247 char buf[100];
248 regerror(status, &symbol_re, buf, sizeof buf);
Petr Machata20a411d2012-09-25 22:45:26 +0200249 fprintf(stderr, "Rule near '%s' will be ignored: %s.\n",
Petr Machatacc0e1e42012-04-25 13:42:07 +0200250 expr, buf);
Petr Machata5bc4e7f2012-04-06 22:28:24 +0200251 goto fail;
252 }
Petr Machata1e4fed22012-04-01 00:45:22 +0200253 }
254
Petr Machata02b96072012-09-25 23:10:14 +0200255 if (compile_libname(expr, a_lib, lib_re_p, matcher) < 0) {
256 regfree(&symbol_re);
257 goto fail;
Petr Machata1e4fed22012-04-01 00:45:22 +0200258 }
259
Petr Machata1e4fed22012-04-01 00:45:22 +0200260 filter_rule_init(rule, type, matcher, symbol_re);
Petr Machatae0973cb2012-04-01 19:36:41 +0200261 filter_add_rule(filt, rule);
Petr Machata1e4fed22012-04-01 00:45:22 +0200262}
263
264static int
Petr Machata02b96072012-09-25 23:10:14 +0200265grok_libname_pattern(char **libnamep, char **libendp)
266{
267 char *libname = *libnamep;
268 char *libend = *libendp;
269
270 if (libend[0] != '/')
271 return 0;
272
273 *libend-- = 0;
274 if (libname != libend && libname[0] == '/')
275 ++libname;
276 else
277 fprintf(stderr, "Unmatched '/' in library name.\n");
278
279 *libendp = libend;
280 *libnamep = libname;
281 return 1;
282}
283
284static int
Petr Machata51e74ac2012-09-27 23:43:25 +0200285parse_filter(struct filter *filt, char *expr, int operators)
Petr Machata1e4fed22012-04-01 00:45:22 +0200286{
Petr Machata02b96072012-09-25 23:10:14 +0200287 /* Filter is a chain of sym@lib rules separated by '-' or '+'.
288 * If the filter expression starts with '-', the missing
289 * initial rule is implicitly *@*. */
Petr Machata1e4fed22012-04-01 00:45:22 +0200290
291 enum filter_rule_type type = FR_ADD;
292
293 while (*expr != 0) {
Petr Machata51e74ac2012-09-27 23:43:25 +0200294 size_t s = strcspn(expr, "-+@" + (operators ? 0 : 2));
Petr Machata1e4fed22012-04-01 00:45:22 +0200295 char *symname = expr;
296 char *libname;
297 char *next = expr + s + 1;
298 enum filter_rule_type this_type = type;
299
300 if (expr[s] == 0) {
301 libname = "*";
302 expr = next - 1;
303
Petr Machata050fa7f2012-04-23 23:44:36 +0200304 } else if (expr[s] == '-' || expr[s] == '+') {
305 type = expr[s] == '-' ? FR_SUBTRACT : FR_ADD;
306 expr[s] = 0;
Petr Machata1e4fed22012-04-01 00:45:22 +0200307 libname = "*";
308 expr = next;
Petr Machata1e4fed22012-04-01 00:45:22 +0200309
310 } else {
311 assert(expr[s] == '@');
312 expr[s] = 0;
Petr Machata51e74ac2012-09-27 23:43:25 +0200313 s = strcspn(next, "-+" + (operators ? 0 : 2));
Petr Machata1e4fed22012-04-01 00:45:22 +0200314 if (s == 0) {
315 libname = "*";
316 expr = next;
317 } else if (next[s] == 0) {
318 expr = next + s;
319 libname = next;
Petr Machata1e4fed22012-04-01 00:45:22 +0200320 } else {
Petr Machata050fa7f2012-04-23 23:44:36 +0200321 assert(next[s] == '-' || next[s] == '+');
322 type = next[s] == '-' ? FR_SUBTRACT : FR_ADD;
Petr Machata1e4fed22012-04-01 00:45:22 +0200323 next[s] = 0;
324 expr = next + s + 1;
325 libname = next;
326 }
327 }
328
329 assert(*libname != 0);
330 char *symend = symname + strlen(symname) - 1;
331 char *libend = libname + strlen(libname) - 1;
332 int sym_is_re = 0;
333 int lib_is_re = 0;
334
335 /*
336 * /xxx/@... and ...@/xxx/ means that xxx are regular
337 * expressions. They are globs otherwise.
338 *
339 * /xxx@yyy/ is the same as /xxx/@/yyy/
340 *
341 * @/xxx matches library path name
342 * @.xxx matches library relative path name
343 */
344 if (symname[0] == '/') {
345 if (symname != symend && symend[0] == '/') {
346 ++symname;
347 *symend-- = 0;
348 sym_is_re = 1;
349
350 } else {
351 sym_is_re = 1;
352 lib_is_re = 1;
353 ++symname;
354
355 /* /XXX@YYY/ is the same as
356 * /XXX/@/YYY/. */
357 if (libend[0] != '/')
Petr Machata20a411d2012-09-25 22:45:26 +0200358 fprintf(stderr, "Unmatched '/'"
359 " in symbol name.\n");
Petr Machata1e4fed22012-04-01 00:45:22 +0200360 else
361 *libend-- = 0;
362 }
363 }
364
365 /* If libname ends in '/', then we expect '/' in the
366 * beginning too. Otherwise the initial '/' is part
367 * of absolute file name. */
Petr Machata02b96072012-09-25 23:10:14 +0200368 if (!lib_is_re)
369 lib_is_re = grok_libname_pattern(&libname, &libend);
Petr Machata1e4fed22012-04-01 00:45:22 +0200370
371 if (*symname == 0) /* /@AA/ */
372 symname = "*";
373 if (*libname == 0) /* /aa@/ */
374 libname = "*";
375
376 add_filter_rule(filt, expr, this_type,
377 symname, sym_is_re,
378 libname, lib_is_re);
379 }
380
381 return 0;
382}
383
384static struct filter *
Petr Machata51e74ac2012-09-27 23:43:25 +0200385recursive_parse_chain(char *expr, int operators)
Petr Machata1e4fed22012-04-01 00:45:22 +0200386{
Petr Machata1e4fed22012-04-01 00:45:22 +0200387 struct filter *filt = malloc(sizeof(*filt));
388 if (filt == NULL) {
Petr Machata20a411d2012-09-25 22:45:26 +0200389 fprintf(stderr, "(Part of) filter will be ignored: '%s': %s.\n",
Petr Machatacc0e1e42012-04-25 13:42:07 +0200390 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200391 return NULL;
392 }
393
Petr Machata35c88142012-04-04 00:54:43 +0200394 filter_init(filt);
Petr Machata51e74ac2012-09-27 23:43:25 +0200395 if (parse_filter(filt, expr, operators) < 0) {
Petr Machata050fa7f2012-04-23 23:44:36 +0200396 fprintf(stderr, "Filter '%s' will be ignored.\n", expr);
397 free(filt);
398 filt = NULL;
Petr Machata1e4fed22012-04-01 00:45:22 +0200399 }
Petr Machata050fa7f2012-04-23 23:44:36 +0200400
401 return filt;
Petr Machata1e4fed22012-04-01 00:45:22 +0200402}
403
Petr Machata51e74ac2012-09-27 23:43:25 +0200404static struct filter **
405slist_chase_end(struct filter **begin)
406{
407 for (; *begin != NULL; begin = &(*begin)->next)
408 ;
409 return begin;
410}
411
Petr Machata1e4fed22012-04-01 00:45:22 +0200412static void
Petr Machatab5f80ac2012-04-04 01:46:18 +0200413parse_filter_chain(const char *expr, struct filter **retp)
Petr Machata1e4fed22012-04-01 00:45:22 +0200414{
415 char *str = strdup(expr);
416 if (str == NULL) {
Petr Machata20a411d2012-09-25 22:45:26 +0200417 fprintf(stderr, "Filter '%s' will be ignored: %s.\n",
Petr Machatacc0e1e42012-04-25 13:42:07 +0200418 expr, strerror(errno));
Petr Machata1e4fed22012-04-01 00:45:22 +0200419 return;
420 }
Petr Machata25f319e2012-04-23 23:45:21 +0200421 /* Support initial '!' for backward compatibility. */
422 if (str[0] == '!')
423 str[0] = '-';
424
Petr Machata51e74ac2012-09-27 23:43:25 +0200425 *slist_chase_end(retp) = recursive_parse_chain(str, 1);
Petr Machatadd1ec842012-10-27 00:34:10 +0200426 free(str);
Petr Machata1e4fed22012-04-01 00:45:22 +0200427}
428
Juan Cespedesf1350522008-12-16 18:19:58 +0100429char **
Petr Machata67fa52f2012-04-05 02:11:39 +0200430process_options(int argc, char **argv)
431{
Juan Cespedesac3db291998-04-25 14:31:58 +0200432 progname = argv[0];
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100433 options.output = stderr;
Joe Damato59e3fb12009-11-06 19:45:10 -0800434 options.no_signals = 0;
Joe Damatoab3b72c2010-10-31 00:21:53 -0700435#if defined(HAVE_LIBUNWIND)
436 options.bt_depth = -1;
437#endif /* defined(HAVE_LIBUNWIND) */
Juan Cespedes5e01f651998-03-08 22:31:44 +0100438
Juan Cespedesce377d52008-12-16 19:38:10 +0100439 guess_cols();
440
Petr Machata67fa52f2012-04-05 02:11:39 +0200441 int libcalls = 1;
442
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100443 while (1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200444 int c;
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200445 char *p;
Juan Cespedesac3db291998-04-25 14:31:58 +0200446 int option_index = 0;
447 static struct option long_options[] = {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100448 {"align", 1, 0, 'a'},
Juan Cespedesaee09312007-08-31 18:49:48 +0200449 {"config", 1, 0, 'F'},
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200450 {"debug", 1, 0, 'D'},
Juan Cespedesd914a202004-11-10 00:15:33 +0100451# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100452 {"demangle", 0, 0, 'C'},
Juan Cespedes8e3e0821998-09-24 13:49:55 +0200453#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100454 {"indent", 1, 0, 'n'},
455 {"help", 0, 0, 'h'},
456 {"library", 1, 0, 'l'},
457 {"output", 1, 0, 'o'},
458 {"version", 0, 0, 'V'},
Joe Damato59e3fb12009-11-06 19:45:10 -0800459 {"no-signals", 0, 0, 'b'},
Joe Damatoab3b72c2010-10-31 00:21:53 -0700460#if defined(HAVE_LIBUNWIND)
461 {"where", 1, 0, 'w'},
462#endif /* defined(HAVE_LIBUNWIND) */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100463 {0, 0, 0, 0}
Juan Cespedesac3db291998-04-25 14:31:58 +0200464 };
Petr Machata796267f2012-04-04 19:09:37 +0200465 c = getopt_long(argc, argv, "+cfhiLrStTVb"
Juan Cespedesd914a202004-11-10 00:15:33 +0100466# ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100467 "C"
Juan Cespedesac3db291998-04-25 14:31:58 +0200468# endif
Joe Damatoab3b72c2010-10-31 00:21:53 -0700469#if defined(HAVE_LIBUNWIND)
470 "a:A:D:e:F:l:n:o:p:s:u:x:X:w:", long_options,
471#else /* !defined(HAVE_LIBUNWIND) */
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200472 "a:A:D:e:F:l:n:o:p:s:u:x:X:", long_options,
Joe Damatoab3b72c2010-10-31 00:21:53 -0700473#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100474 &option_index);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100475 if (c == -1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200476 break;
Juan Cespedes5e01f651998-03-08 22:31:44 +0100477 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100478 switch (c) {
479 case 'a':
Juan Cespedesce377d52008-12-16 19:38:10 +0100480 options.align = atoi(optarg);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100481 break;
Juan Cespedesaee09312007-08-31 18:49:48 +0200482 case 'A':
Juan Cespedesda9b9532009-04-07 15:33:50 +0200483 options.arraylen = atoi(optarg);
Steve Fink1150bc42006-08-07 06:04:43 +0200484 break;
Joe Damato535e7382010-11-08 15:47:43 -0800485 case 'b':
486 options.no_signals = 1;
487 break;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100488 case 'c':
Juan Cespedesda9b9532009-04-07 15:33:50 +0200489 options.summary++;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100490 break;
Juan Cespedesd914a202004-11-10 00:15:33 +0100491#ifdef USE_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100492 case 'C':
Juan Cespedesce377d52008-12-16 19:38:10 +0100493 options.demangle++;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100494 break;
Juan Cespedesac3db291998-04-25 14:31:58 +0200495#endif
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200496 case 'D':
497 if (optarg[0]=='h') {
498 usage_debug();
499 exit(0);
500 }
501 options.debug = strtoul(optarg,&p,8);
502 if (*p) {
503 fprintf(stderr, "%s: --debug requires an octal argument\n", progname);
504 err_usage();
505 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100506 break;
Petr Machata1e4fed22012-04-01 00:45:22 +0200507
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100508 case 'e':
Petr Machatab5f80ac2012-04-04 01:46:18 +0200509 parse_filter_chain(optarg, &options.plt_filter);
Petr Machata1e4fed22012-04-01 00:45:22 +0200510 break;
511
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100512 case 'f':
Juan Cespedescc813cd2009-04-07 15:45:53 +0200513 options.follow = 1;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100514 break;
Juan Cespedesaee09312007-08-31 18:49:48 +0200515 case 'F':
516 {
Petr Machata8a98e6f2012-10-27 00:30:13 +0200517 struct opt_F_t *tmp = malloc(sizeof(*tmp));
518 if (tmp == NULL) {
519 fail:
520 fprintf(stderr, "%s\n",
521 strerror(errno));
522 free(tmp);
Juan Cespedesaee09312007-08-31 18:49:48 +0200523 exit(1);
524 }
525 tmp->filename = strdup(optarg);
Petr Machata8a98e6f2012-10-27 00:30:13 +0200526 if (tmp->filename == NULL)
527 goto fail;
528 tmp->own_filename = 1;
Juan Cespedesaee09312007-08-31 18:49:48 +0200529 tmp->next = opt_F;
530 opt_F = tmp;
531 break;
532 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100533 case 'h':
534 usage();
535 exit(0);
536 case 'i':
537 opt_i++;
538 break;
Petr Machata51e74ac2012-09-27 23:43:25 +0200539
540 case 'l': {
541 size_t patlen = strlen(optarg);
542 char buf[patlen + 2];
543 sprintf(buf, "@%s", optarg);
544 *slist_chase_end(&options.export_filter)
545 = recursive_parse_chain(buf, 0);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100546 break;
Petr Machata51e74ac2012-09-27 23:43:25 +0200547 }
548
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100549 case 'L':
Petr Machata67fa52f2012-04-05 02:11:39 +0200550 libcalls = 0;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100551 break;
Petr Machata5bddfcc2012-05-03 18:40:20 +0200552 case 'n': {
553 char *endptr;
554 long int l = strtol(optarg, &endptr, 0);
555 /* Arbitrary cut-off. Nobody needs to indent
556 * more than, say, 8, anyway. */
557 if (l < 0 || l > 20 || *optarg == 0 || *endptr != 0) {
558 fprintf(stderr, "Invalid argument to -n: '%s'."
559 " Use integer 0..20.\n", optarg);
560 exit(1);
561 }
562 options.indent = (int)l;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100563 break;
Petr Machata5bddfcc2012-05-03 18:40:20 +0200564 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100565 case 'o':
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100566 options.output = fopen(optarg, "w");
567 if (!options.output) {
Petr Machatacc0e1e42012-04-25 13:42:07 +0200568 fprintf(stderr,
569 "can't open %s for writing: %s\n",
570 optarg, strerror(errno));
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100571 exit(1);
572 }
Juan Cespedesb65bdc52008-12-16 19:50:16 +0100573 setvbuf(options.output, (char *)NULL, _IOLBF, 0);
574 fcntl(fileno(options.output), F_SETFD, FD_CLOEXEC);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100575 break;
576 case 'p':
577 {
Juan Cespedesaee09312007-08-31 18:49:48 +0200578 struct opt_p_t *tmp = malloc(sizeof(struct opt_p_t));
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100579 if (!tmp) {
580 perror("ltrace: malloc");
581 exit(1);
582 }
583 tmp->pid = atoi(optarg);
584 tmp->next = opt_p;
585 opt_p = tmp;
586 break;
587 }
588 case 'r':
589 opt_r++;
590 break;
591 case 's':
Juan Cespedescc813cd2009-04-07 15:45:53 +0200592 options.strlen = atoi(optarg);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100593 break;
594 case 'S':
Juan Cespedesce377d52008-12-16 19:38:10 +0100595 options.syscalls = 1;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100596 break;
597 case 't':
598 opt_t++;
599 break;
600 case 'T':
601 opt_T++;
602 break;
603 case 'u':
Juan Cespedesce377d52008-12-16 19:38:10 +0100604 options.user = optarg;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100605 break;
606 case 'V':
607 printf("ltrace version " PACKAGE_VERSION ".\n"
Juan Cespedes1423f082009-04-07 00:45:33 +0200608 "Copyright (C) 1997-2009 Juan Cespedes <cespedes@debian.org>.\n"
Juan Cespedesaee09312007-08-31 18:49:48 +0200609 "This is free software; see the GNU General Public Licence\n"
610 "version 2 or later for copying conditions. There is NO warranty.\n");
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100611 exit(0);
Joe Damatofa2aefc2010-10-30 19:56:50 -0700612 break;
Joe Damato535e7382010-11-08 15:47:43 -0800613#if defined(HAVE_LIBUNWIND)
614 case 'w':
615 options.bt_depth = atoi(optarg);
Joe Damato59e3fb12009-11-06 19:45:10 -0800616 break;
Joe Damato535e7382010-11-08 15:47:43 -0800617#endif /* defined(HAVE_LIBUNWIND) */
Juan Cespedesac3db291998-04-25 14:31:58 +0200618
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100619 case 'x':
Petr Machatada3edbf2012-04-04 02:20:21 +0200620 parse_filter_chain(optarg, &options.static_filter);
621 break;
Ian Wienand9a2ad352006-02-20 22:44:45 +0100622
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100623 default:
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200624 err_usage();
Juan Cespedes5e01f651998-03-08 22:31:44 +0100625 }
626 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100627 argc -= optind;
628 argv += optind;
Juan Cespedes5e01f651998-03-08 22:31:44 +0100629
Juan Cespedesaee09312007-08-31 18:49:48 +0200630 if (!opt_F) {
631 opt_F = malloc(sizeof(struct opt_F_t));
632 opt_F->next = malloc(sizeof(struct opt_F_t));
633 opt_F->next->next = NULL;
634 opt_F->filename = USER_CONFIG_FILE;
Petr Machata8a98e6f2012-10-27 00:30:13 +0200635 opt_F->own_filename = 0;
Juan Cespedesaee09312007-08-31 18:49:48 +0200636 opt_F->next->filename = SYSTEM_CONFIG_FILE;
Petr Machata8a98e6f2012-10-27 00:30:13 +0200637 opt_F->next->own_filename = 0;
Juan Cespedesaee09312007-08-31 18:49:48 +0200638 }
Steve Fink58c73a72006-07-17 23:18:35 +0200639 /* Reverse the config file list since it was built by
640 * prepending, and it would make more sense to process the
641 * files in the order they were given. Probably it would make
642 * more sense to keep a tail pointer instead? */
643 {
Juan Cespedesaee09312007-08-31 18:49:48 +0200644 struct opt_F_t *egg = NULL;
645 struct opt_F_t *chicken;
646 while (opt_F) {
647 chicken = opt_F->next;
648 opt_F->next = egg;
649 egg = opt_F;
650 opt_F = chicken;
651 }
652 opt_F = egg;
Steve Fink58c73a72006-07-17 23:18:35 +0200653 }
654
Petr Machata51e74ac2012-09-27 23:43:25 +0200655 /* If neither -e, nor -l, nor -L are used, set default -e.
656 * Use @MAIN for now, as that's what ltrace used to have in
657 * the past. XXX Maybe we should make this "*" instead. */
658 if (libcalls
659 && options.plt_filter == NULL
660 && options.export_filter == NULL) {
Petr Machatab5f80ac2012-04-04 01:46:18 +0200661 parse_filter_chain("@MAIN", &options.plt_filter);
Petr Machata03673892012-04-03 13:51:09 +0200662 options.hide_caller = 1;
663 }
Petr Machata51e74ac2012-09-27 23:43:25 +0200664 if (!libcalls && options.plt_filter != NULL) {
665 fprintf(stderr,
666 "%s: Option -L can't be used with -e or -l.\n",
667 progname);
668 err_usage();
669 }
Petr Machatae0973cb2012-04-01 19:36:41 +0200670
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100671 if (!opt_p && argc < 1) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200672 fprintf(stderr, "%s: too few arguments\n", progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200673 err_usage();
Juan Cespedes5e01f651998-03-08 22:31:44 +0100674 }
Juan Cespedesf666d191998-09-20 23:04:34 +0200675 if (opt_r && opt_t) {
Petr Machata20a411d2012-09-25 22:45:26 +0200676 fprintf(stderr,
677 "%s: Options -r and -t can't be used together\n",
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100678 progname);
Juan Cespedesc5c744a2009-07-23 18:22:58 +0200679 err_usage();
Juan Cespedesf666d191998-09-20 23:04:34 +0200680 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100681 if (argc > 0) {
Juan Cespedesac3db291998-04-25 14:31:58 +0200682 command = search_for_command(argv[0]);
Juan Cespedes1fe93d51998-03-13 00:29:21 +0100683 }
Juan Cespedesac3db291998-04-25 14:31:58 +0200684 return &argv[0];
Juan Cespedes5e01f651998-03-08 22:31:44 +0100685}