aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-05-31 01:49:05 +0200
committerMattias Andrée <maandree@kth.se>2020-05-31 01:49:05 +0200
commit95e29b0a681ef652e4d28e129bb89b79db410deb (patch)
tree7ae5327ab8de1588a4450dd021a08b15ed34342e
parentPrint signal names (diff)
downloadsctrace-95e29b0a681ef652e4d28e129bb89b79db410deb.tar.gz
sctrace-95e29b0a681ef652e4d28e129bb89b79db410deb.tar.bz2
sctrace-95e29b0a681ef652e4d28e129bb89b79db410deb.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--sctrace.c24
-rw-r--r--util.c3
2 files changed, 13 insertions, 14 deletions
diff --git a/sctrace.c b/sctrace.c
index 75b5507..7490a86 100644
--- a/sctrace.c
+++ b/sctrace.c
@@ -56,7 +56,7 @@ handle_syscall(struct process *proc)
if (ptrace(PTRACE_SETREGS, proc->pid, NULL, &regs))
eprintf("ptrace PTRACE_SETREGS %ju NULL <buffer>:", (uintmax_t)proc->pid);
if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
+ eprintf("ptrace PTRACE_SYSCALL %ju NULL 0:", (uintmax_t)proc->pid);
}
/* Print system call result */
@@ -64,22 +64,20 @@ handle_syscall(struct process *proc)
/* Make process continue and stop at next syscall */
if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
+ eprintf("ptrace PTRACE_SYSCALL %ju NULL 0:", (uintmax_t)proc->pid);
proc->state = Normal;
break;
case Exec:
if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
- if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
+ eprintf("ptrace PTRACE_SYSCALL %ju NULL 0:", (uintmax_t)proc->pid);
proc->state = Normal;
break;
case VforkParent:
if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
+ eprintf("ptrace PTRACE_SYSCALL %ju NULL 0:", (uintmax_t)proc->pid);
proc->state = Syscall;
break;
@@ -106,7 +104,7 @@ main(int argc, char **argv)
struct process *proc, *proc2;
unsigned long int event;
- /* TODO add option to trace signals (-s) */
+ /* TODO add option to trace signals with siginfo (-s) */
ARGBEGIN {
case '0':
with_argv0 = 1;
@@ -211,7 +209,7 @@ have_outfp:
proc2 = proc->continue_on_exit;
remove_process(proc);
if (proc2) {
- tprintf(proc2, "Process continues due to exit of vfork child\n");
+ tprintf(proc2, "\nProcess continues due to exit of vfork child\n");
handle_syscall(proc2);
}
@@ -258,7 +256,7 @@ have_outfp:
if (proc2) {
proc->continue_on_exit = NULL;
proc2->vfork_waiting_on = NULL;
- tprintf(proc2, "Process continues due to exec(2) of vfork child\n");
+ tprintf(proc2, "\nProcess continues due to exec(2) of vfork child\n");
handle_syscall(proc2);
}
break;
@@ -268,11 +266,11 @@ have_outfp:
}
} else {
print_signal:
- tprintf(proc, "\nProcess stopped by signal %i (%s: %s)\n", WSTOPSIG(status),
+ tprintf(proc, "\nProcess received signal %i (%s: %s)\n", WSTOPSIG(status),
get_signum_name(WSTOPSIG(status)), strsignal(WSTOPSIG(status)));
- /* TODO handle signals properly */
- if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, 0))
- eprintf("ptrace PTRACE_SYSCALL %ju NULL 0", (uintmax_t)proc->pid);
+ /* TODO handle signals properly (siginfo?, SIGSTOP &c does not stop the process) */
+ if (ptrace(PTRACE_SYSCALL, proc->pid, NULL, WSTOPSIG(status)))
+ eprintf("ptrace PTRACE_SYSCALL %ju NULL %i:", (uintmax_t)proc->pid, WSTOPSIG(status));
}
} else if (WIFCONTINUED(status)) {
diff --git a/util.c b/util.c
index 521f73a..2933fcc 100644
--- a/util.c
+++ b/util.c
@@ -22,7 +22,8 @@ tprintf(struct process *proc, const char *fmt, ...)
va_list ap;
if (fmt[0] == '\n' && fmt[1]) {
last_pid = 0;
- fmt = &fmt[1];
+ if (multiproctrace || last_char == '\n')
+ fmt = &fmt[1];
}
if (multiproctrace) {
if (proc->thread_group_leader) {