blob: b786edf98d71d2702ddc4b44597d594775cd644f [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Linux for s390 port by D.J. Barrow
8 * <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $Id$
34 */
35
36#include "defs.h"
37
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000038#include <signal.h>
39#include <sys/user.h>
40#include <fcntl.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000041
42#ifdef SVR4
43#include <sys/ucontext.h>
44#endif /* SVR4 */
45
Wichert Akkerman36915a11999-07-13 15:45:02 +000046#ifdef HAVE_SYS_REG_H
47# include <sys/reg.h>
Wichert Akkerman15dea971999-10-06 13:06:34 +000048#ifndef PTRACE_PEEKUSR
Wichert Akkerman36915a11999-07-13 15:45:02 +000049# define PTRACE_PEEKUSR PTRACE_PEEKUSER
Wichert Akkerman15dea971999-10-06 13:06:34 +000050#endif
51#ifndef PTRACE_POKEUSR
Wichert Akkerman36915a11999-07-13 15:45:02 +000052# define PTRACE_POKEUSR PTRACE_POKEUSER
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000053#endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000054#elif defined(HAVE_LINUX_PTRACE_H)
55#undef PTRACE_SYSCALL
56#include <linux/ptrace.h>
Wichert Akkerman15dea971999-10-06 13:06:34 +000057#endif
Wichert Akkerman36915a11999-07-13 15:45:02 +000058
Wichert Akkermanfaf72222000-02-19 23:59:03 +000059
Wichert Akkerman36915a11999-07-13 15:45:02 +000060#ifdef LINUX
61
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000062#ifdef IA64
63# include <asm/ptrace_offsets.h>
64#endif /* !IA64 */
65
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000066#ifdef HAVE_ASM_SIGCONTEXT_H
67#include <asm/sigcontext.h>
68#ifdef SPARC
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000069#include <asm/reg.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000070typedef struct {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000071 struct regs si_regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000072 int si_mask;
73} m_siginfo_t;
74#endif
75#else /* !HAVE_ASM_SIGCONTEXT_H */
76#ifdef I386
77struct sigcontext_struct {
78 unsigned short gs, __gsh;
79 unsigned short fs, __fsh;
80 unsigned short es, __esh;
81 unsigned short ds, __dsh;
82 unsigned long edi;
83 unsigned long esi;
84 unsigned long ebp;
85 unsigned long esp;
86 unsigned long ebx;
87 unsigned long edx;
88 unsigned long ecx;
89 unsigned long eax;
90 unsigned long trapno;
91 unsigned long err;
92 unsigned long eip;
93 unsigned short cs, __csh;
94 unsigned long eflags;
95 unsigned long esp_at_signal;
96 unsigned short ss, __ssh;
97 unsigned long i387;
98 unsigned long oldmask;
99 unsigned long cr2;
100};
101#else /* !I386 */
102#ifdef M68K
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000103struct sigcontext
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000104{
105 unsigned long sc_mask;
106 unsigned long sc_usp;
107 unsigned long sc_d0;
108 unsigned long sc_d1;
109 unsigned long sc_a0;
110 unsigned long sc_a1;
111 unsigned short sc_sr;
112 unsigned long sc_pc;
113 unsigned short sc_formatvec;
114};
115#endif /* M68K */
116#endif /* !I386 */
117#endif /* !HAVE_ASM_SIGCONTEXT_H */
118#ifndef NSIG
119#define NSIG 32
120#endif
121#ifdef ARM
122#undef NSIG
123#define NSIG 32
124#endif
125#endif /* LINUX */
126
127char *signalent0[] = {
128#include "signalent.h"
129};
130int nsignals0 = sizeof signalent0 / sizeof signalent0[0];
131
132#if SUPPORTED_PERSONALITIES >= 2
133char *signalent1[] = {
134#include "signalent1.h"
135};
136int nsignals1 = sizeof signalent1 / sizeof signalent1[0];
137#endif /* SUPPORTED_PERSONALITIES >= 2 */
138
139#if SUPPORTED_PERSONALITIES >= 3
140char *signalent2[] = {
141#include "signalent2.h"
142};
143int nsignals2 = sizeof signalent2 / sizeof signalent2[0];
144#endif /* SUPPORTED_PERSONALITIES >= 3 */
145
146char **signalent;
147int nsignals;
148
149#ifdef SUNOS4
150
151static struct xlat sigvec_flags[] = {
152 { SV_ONSTACK, "SV_ONSTACK" },
153 { SV_INTERRUPT, "SV_INTERRUPT" },
154 { SV_RESETHAND, "SV_RESETHAND" },
155 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
156 { 0, NULL },
157};
158
159#endif /* SUNOS4 */
160
161#ifdef HAVE_SIGACTION
162
163static struct xlat sigact_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000164#ifdef SA_RESTORER
165 { SA_RESTORER, "SA_RESTORER" },
166#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000167#ifdef SA_STACK
168 { SA_STACK, "SA_STACK" },
169#endif
170#ifdef SA_RESTART
171 { SA_RESTART, "SA_RESTART" },
172#endif
173#ifdef SA_INTERRUPT
174 { SA_INTERRUPT, "SA_INTERRUPT" },
175#endif
176#ifdef SA_NOMASK
177 { SA_NOMASK, "SA_NOMASK" },
178#endif
179#ifdef SA_ONESHOT
180 { SA_ONESHOT, "SA_ONESHOT" },
181#endif
182#ifdef SA_SIGINFO
183 { SA_SIGINFO, "SA_SIGINFO" },
184#endif
185#ifdef SA_RESETHAND
186 { SA_RESETHAND, "SA_RESETHAND" },
187#endif
188#ifdef SA_ONSTACK
189 { SA_ONSTACK, "SA_ONSTACK" },
190#endif
191#ifdef SA_NODEFER
192 { SA_NODEFER, "SA_NODEFER" },
193#endif
194#ifdef SA_NOCLDSTOP
195 { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
196#endif
197#ifdef SA_NOCLDWAIT
198 { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
199#endif
200#ifdef _SA_BSDCALL
201 { _SA_BSDCALL, "_SA_BSDCALL" },
202#endif
203 { 0, NULL },
204};
205
206static struct xlat sigprocmaskcmds[] = {
207 { SIG_BLOCK, "SIG_BLOCK" },
208 { SIG_UNBLOCK, "SIG_UNBLOCK" },
209 { SIG_SETMASK, "SIG_SETMASK" },
210#ifdef SIG_SETMASK32
211 { SIG_SETMASK32,"SIG_SETMASK32" },
212#endif
213 { 0, NULL },
214};
215
216#endif /* HAVE_SIGACTION */
217
Nate Sammonsce780fc1999-03-29 23:23:13 +0000218/* Anonymous realtime signals. */
219/* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a
220 constant. This is what we want. Otherwise, just use SIGRTMIN. */
221#ifdef SIGRTMIN
222#ifndef __SIGRTMIN
223#define __SIGRTMIN SIGRTMIN
224#define __SIGRTMAX SIGRTMAX /* likewise */
225#endif
226#endif
227
228char *
229signame(sig)
230int sig;
231{
232 static char buf[30];
233 if (sig < nsignals) {
234 return signalent[sig];
235#ifdef SIGRTMIN
Nate Sammons3080aa41999-03-30 00:16:41 +0000236 } else if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000237 sprintf(buf, "SIGRT_%ld", (long)(sig - __SIGRTMIN));
Nate Sammonsce780fc1999-03-29 23:23:13 +0000238 return buf;
239#endif /* SIGRTMIN */
240 } else {
241 sprintf(buf, "%d", sig);
242 return buf;
243 }
244}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000245
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000246#ifndef UNIXWARE
Nate Sammons4a121431999-04-06 01:19:39 +0000247static void
248long_to_sigset(l, s)
249long l;
250sigset_t *s;
251{
252 sigemptyset(s);
253 *(long *)s = l;
254}
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000255#endif
Nate Sammons4a121431999-04-06 01:19:39 +0000256
257static int
258copy_sigset_len(tcp, addr, s, len)
259struct tcb *tcp;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000260long addr;
Nate Sammons4a121431999-04-06 01:19:39 +0000261sigset_t *s;
262int len;
263{
264 if (len > sizeof(*s))
265 len = sizeof(*s);
266 sigemptyset(s);
267 if (umoven(tcp, addr, len, (char *)s) < 0)
268 return -1;
269 return 0;
270}
271
272#ifdef LINUX
273/* Original sigset is unsigned long */
274#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
275#else
276#define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(sigset_t))
277#endif
278
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279static char *
Nate Sammons4a121431999-04-06 01:19:39 +0000280sprintsigmask(s, mask, rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281char *s;
282sigset_t *mask;
Nate Sammons4a121431999-04-06 01:19:39 +0000283int rt; /* set might include realtime sigs */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284{
285 int i, nsigs;
Nate Sammons4a121431999-04-06 01:19:39 +0000286 int maxsigs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000287 char *format;
288 static char outstr[256];
289
290 strcpy(outstr, s);
291 s = outstr + strlen(outstr);
292 nsigs = 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000293 maxsigs = nsignals;
294#ifdef __SIGRTMAX
295 if (rt)
296 maxsigs = __SIGRTMAX; /* instead */
297#endif
298 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000299 if (sigismember(mask, i) == 1)
300 nsigs++;
301 }
302 if (nsigs >= nsignals * 2 / 3) {
303 *s++ = '~';
Nate Sammons4a121431999-04-06 01:19:39 +0000304 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000305 switch (sigismember(mask, i)) {
306 case 1:
307 sigdelset(mask, i);
308 break;
309 case 0:
310 sigaddset(mask, i);
311 break;
312 }
313 }
314 }
315 format = "%s";
316 *s++ = '[';
Nate Sammons4a121431999-04-06 01:19:39 +0000317 for (i = 1; i < maxsigs; i++) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000318 if (sigismember(mask, i) == 1) {
Nate Sammonsce780fc1999-03-29 23:23:13 +0000319 sprintf(s, format, signame(i) + 3); s += strlen(s);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000320 format = " %s";
321 }
322 }
323 *s++ = ']';
324 *s = '\0';
325 return outstr;
326}
327
328static void
Nate Sammons4a121431999-04-06 01:19:39 +0000329printsigmask(mask, rt)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000330sigset_t *mask;
Nate Sammons4a121431999-04-06 01:19:39 +0000331int rt;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000332{
Nate Sammons4a121431999-04-06 01:19:39 +0000333 tprintf("%s", sprintsigmask("", mask, rt));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000334}
335
336void
337printsignal(nr)
338int nr;
339{
Nate Sammonsce780fc1999-03-29 23:23:13 +0000340 tprintf(signame(nr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000341}
342
343/*
344 * Check process TCP for the disposition of signal SIG.
345 * Return 1 if the process would somehow manage to survive signal SIG,
346 * else return 0. This routine will never be called with SIGKILL.
347 */
348int
349sigishandled(tcp, sig)
350struct tcb *tcp;
351int sig;
352{
353#ifdef LINUX
354 int sfd;
355 char sname[32];
356 char buf[1024];
357 char *s;
358 int i;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000359 unsigned int signalled, blocked, ignored, caught;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000360
361 /* This is incredibly costly but it's worth it. */
362 sprintf(sname, "/proc/%d/stat", tcp->pid);
363 if ((sfd = open(sname, O_RDONLY)) == -1) {
364 perror(sname);
365 return 1;
366 }
367 i = read(sfd, buf, 1024);
368 buf[i] = '\0';
369 close(sfd);
370 /*
371 * Skip the extraneous fields. This loses if the
372 * command name has any spaces in it. So be it.
373 */
374 for (i = 0, s = buf; i < 30; i++) {
375 while (*++s != ' ') {
376 if (!*s)
377 break;
378 }
379 }
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000380 if (sscanf(s, "%u%u%u%u",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000381 &signalled, &blocked, &ignored, &caught) != 4) {
382 fprintf(stderr, "/proc/pid/stat format error\n");
383 return 1;
384 }
385#ifdef DEBUG
386 fprintf(stderr, "sigs: %08x %08x %08x %08x\n",
387 signalled, blocked, ignored, caught);
388#endif
389 if ((ignored & sigmask(sig)) || (caught & sigmask(sig)))
390 return 1;
391#endif /* LINUX */
392
393#ifdef SUNOS4
394 void (*u_signal)();
395
396 if (upeek(tcp->pid, uoff(u_signal[0]) + sig*sizeof(u_signal),
397 (long *) &u_signal) < 0) {
398 return 0;
399 }
400 if (u_signal != SIG_DFL)
401 return 1;
402#endif /* SUNOS4 */
403
404#ifdef SVR4
405 /*
406 * Since procfs doesn't interfere with wait I think it is safe
407 * to punt on this question. If not, the information is there.
408 */
409 return 1;
410#else /* !SVR4 */
411 switch (sig) {
412 case SIGCONT:
413 case SIGSTOP:
414 case SIGTSTP:
415 case SIGTTIN:
416 case SIGTTOU:
417 case SIGCHLD:
418 case SIGIO:
419#if defined(SIGURG) && SIGURG != SIGIO
420 case SIGURG:
421#endif
422 case SIGWINCH:
423 /* Gloria Gaynor says ... */
424 return 1;
425 default:
426 break;
427 }
428 return 0;
429#endif /* !SVR4 */
430}
431
432#if defined(SUNOS4)
433
434int
435sys_sigvec(tcp)
436struct tcb *tcp;
437{
438 struct sigvec sv;
439 long addr;
440
441 if (entering(tcp)) {
442 printsignal(tcp->u_arg[0]);
443 tprintf(", ");
444 addr = tcp->u_arg[1];
445 } else {
446 addr = tcp->u_arg[2];
447 }
448 if (addr == 0)
449 tprintf("NULL");
450 else if (!verbose(tcp))
451 tprintf("%#lx", addr);
452 else if (umove(tcp, addr, &sv) < 0)
453 tprintf("{...}");
454 else {
455 switch ((int) sv.sv_handler) {
456 case (int) SIG_ERR:
457 tprintf("{SIG_ERR}");
458 break;
459 case (int) SIG_DFL:
460 tprintf("{SIG_DFL}");
461 break;
462 case (int) SIG_IGN:
463 if (tcp->u_arg[0] == SIGTRAP) {
464 tcp->flags |= TCB_SIGTRAPPED;
465 kill(tcp->pid, SIGSTOP);
466 }
467 tprintf("{SIG_IGN}");
468 break;
469 case (int) SIG_HOLD:
470 if (tcp->u_arg[0] == SIGTRAP) {
471 tcp->flags |= TCB_SIGTRAPPED;
472 kill(tcp->pid, SIGSTOP);
473 }
474 tprintf("SIG_HOLD");
475 break;
476 default:
477 if (tcp->u_arg[0] == SIGTRAP) {
478 tcp->flags |= TCB_SIGTRAPPED;
479 kill(tcp->pid, SIGSTOP);
480 }
481 tprintf("{%#lx, ", (unsigned long) sv.sv_handler);
Nate Sammons4a121431999-04-06 01:19:39 +0000482 printsigmask(&sv.sv_mask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000483 tprintf(", ");
484 if (!printflags(sigvec_flags, sv.sv_flags))
485 tprintf("0");
486 tprintf("}");
487 }
488 }
489 if (entering(tcp))
490 tprintf(", ");
491 return 0;
492}
493
494int
495sys_sigpause(tcp)
496struct tcb *tcp;
497{
498 if (entering(tcp)) { /* WTA: UD had a bug here: he forgot the braces */
Nate Sammons4a121431999-04-06 01:19:39 +0000499 sigset_t sigm;
500 long_to_sigset(tcp->u_arg[0], &sigm);
501 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000502 }
503 return 0;
504}
505
506int
507sys_sigstack(tcp)
508struct tcb *tcp;
509{
510 struct sigstack ss;
511 long addr;
512
513 if (entering(tcp))
514 addr = tcp->u_arg[0];
515 else
516 addr = tcp->u_arg[1];
517 if (addr == 0)
518 tprintf("NULL");
519 else if (umove(tcp, addr, &ss) < 0)
520 tprintf("%#lx", addr);
521 else {
522 tprintf("{ss_sp %#lx ", (unsigned long) ss.ss_sp);
523 tprintf("ss_onstack %s}", ss.ss_onstack ? "YES" : "NO");
524 }
525 if (entering(tcp))
526 tprintf(", ");
527 return 0;
528}
529
530int
531sys_sigcleanup(tcp)
532struct tcb *tcp;
533{
534 return 0;
535}
536
537#endif /* SUNOS4 */
538
539#ifndef SVR4
540
541int
542sys_sigsetmask(tcp)
543struct tcb *tcp;
544{
545 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000547 long_to_sigset(tcp->u_arg[0], &sigm);
548 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000549 if ((tcp->u_arg[0] & sigmask(SIGTRAP))) {
550 /* Mark attempt to block SIGTRAP */
551 tcp->flags |= TCB_SIGTRAPPED;
552 /* Send unblockable signal */
553 kill(tcp->pid, SIGSTOP);
554 }
555 }
556 else if (!syserror(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000557 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000558 long_to_sigset(tcp->u_rval, &sigm);
559 tcp->auxstr = sprintsigmask("old mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560
561 return RVAL_HEX | RVAL_STR;
562 }
563 return 0;
564}
565
566int
567sys_sigblock(tcp)
568struct tcb *tcp;
569{
570 return sys_sigsetmask(tcp);
571}
572
573#endif /* !SVR4 */
574
575#ifdef HAVE_SIGACTION
576
577#ifdef LINUX
578struct old_sigaction {
579 __sighandler_t __sa_handler;
580 unsigned long sa_mask;
581 unsigned long sa_flags;
582 void (*sa_restorer)(void);
583};
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000584#define SA_HANDLER __sa_handler
585#endif /* LINUX */
586
587#ifndef SA_HANDLER
588#define SA_HANDLER sa_handler
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000589#endif
590
591int
592sys_sigaction(tcp)
593struct tcb *tcp;
594{
595 long addr;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000596 sigset_t sigset;
Nate Sammons4a121431999-04-06 01:19:39 +0000597#ifdef LINUX
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000598 struct old_sigaction sa;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000599#else
600 struct sigaction sa;
601#endif
602
603
604 if (entering(tcp)) {
605 printsignal(tcp->u_arg[0]);
606 tprintf(", ");
607 addr = tcp->u_arg[1];
608 } else
609 addr = tcp->u_arg[2];
610 if (addr == 0)
611 tprintf("NULL");
612 else if (!verbose(tcp))
613 tprintf("%#lx", addr);
614 else if (umove(tcp, addr, &sa) < 0)
615 tprintf("{...}");
616 else {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000617 switch ((long) sa.SA_HANDLER) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000618 case (long) SIG_ERR:
619 tprintf("{SIG_ERR}");
620 break;
621 case (long) SIG_DFL:
622 tprintf("{SIG_DFL}");
623 break;
624 case (long) SIG_IGN:
625#ifndef SVR4
626 if (tcp->u_arg[0] == SIGTRAP) {
627 tcp->flags |= TCB_SIGTRAPPED;
628 kill(tcp->pid, SIGSTOP);
629 }
630#endif /* !SVR4 */
631 tprintf("{SIG_IGN}");
632 break;
633 default:
634#ifndef SVR4
635 if (tcp->u_arg[0] == SIGTRAP) {
636 tcp->flags |= TCB_SIGTRAPPED;
637 kill(tcp->pid, SIGSTOP);
638 }
639#endif /* !SVR4 */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000640 tprintf("{%#lx, ", (long) sa.SA_HANDLER);
Wichert Akkerman48214be1999-11-26 09:55:42 +0000641#ifndef LINUX
642 printsigmask (&sa.sa_mask, 0);
643#else
Nate Sammons4a121431999-04-06 01:19:39 +0000644 long_to_sigset(sa.sa_mask, &sigset);
645 printsigmask(&sigset, 0);
Wichert Akkerman48214be1999-11-26 09:55:42 +0000646#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000647 tprintf(", ");
648 if (!printflags(sigact_flags, sa.sa_flags))
649 tprintf("0");
650 tprintf("}");
651 }
652 }
653 if (entering(tcp))
654 tprintf(", ");
655#ifdef LINUX
656 else
657 tprintf(", %#lx", (unsigned long) sa.sa_restorer);
658#endif
659 return 0;
660}
661
662int
663sys_signal(tcp)
664struct tcb *tcp;
665{
666 if (entering(tcp)) {
667 printsignal(tcp->u_arg[0]);
668 switch (tcp->u_arg[1]) {
669 case (int) SIG_ERR:
670 tprintf("SIG_ERR");
671 break;
672 case (int) SIG_DFL:
673 tprintf("SIG_DFL");
674 break;
675 case (int) SIG_IGN:
676#ifndef SVR4
677 if (tcp->u_arg[0] == SIGTRAP) {
678 tcp->flags |= TCB_SIGTRAPPED;
679 kill(tcp->pid, SIGSTOP);
680 }
681#endif /* !SVR4 */
682 tprintf("SIG_IGN");
683 break;
684 default:
685#ifndef SVR4
686 if (tcp->u_arg[0] == SIGTRAP) {
687 tcp->flags |= TCB_SIGTRAPPED;
688 kill(tcp->pid, SIGSTOP);
689 }
690#endif /* !SVR4 */
691 tprintf("%#lx", tcp->u_arg[1]);
692 }
693 }
694 return 0;
695}
696
697#endif /* HAVE_SIGACTION */
698
699#ifdef LINUX
700
701int
702sys_sigreturn(tcp)
703struct tcb *tcp;
704{
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000705#ifdef S390
706 long usp;
707 struct sigcontext_struct sc;
708
709 if (entering(tcp)) {
710 tcp->u_arg[0] = 0;
711 if (upeek(tcp->pid,PT_GPR15,&usp)<0)
712 return 0;
713 if (umove(tcp, usp+__SIGNAL_FRAMESIZE, &sc) < 0)
714 return 0;
715 tcp->u_arg[0] = 1;
716 memcpy(&tcp->u_arg[1],&sc.oldmask[0],sizeof(sigset_t));
717 } else {
718 tcp->u_rval = tcp->u_error = 0;
719 if (tcp->u_arg[0] == 0)
720 return 0;
721 tcp->auxstr = sprintsigmask("mask now ",(sigset_t *)&tcp->u_arg[1]);
722 return RVAL_NONE | RVAL_STR;
723 }
724 return 0;
725#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000726#ifdef I386
727 long esp;
728 struct sigcontext_struct sc;
729
730 if (entering(tcp)) {
731 tcp->u_arg[0] = 0;
732 if (upeek(tcp->pid, 4*UESP, &esp) < 0)
733 return 0;
734 if (umove(tcp, esp, &sc) < 0)
735 return 0;
736 tcp->u_arg[0] = 1;
737 tcp->u_arg[1] = sc.oldmask;
738 }
739 else {
740 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000741 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000742 tcp->u_rval = tcp->u_error = 0;
743 if (tcp->u_arg[0] == 0)
744 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000745 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000746 return RVAL_NONE | RVAL_STR;
747 }
748 return 0;
749#else /* !I386 */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000750#ifdef IA64
751 struct sigcontext sc;
752 long sp;
753
754 if (entering(tcp)) {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000755 /* offset of sigcontext in the kernel's sigframe structure: */
756# define SIGFRAME_SC_OFFSET 0x90
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000757 tcp->u_arg[0] = 0;
758 if (upeek(tcp->pid, PT_R12, &sp) < 0)
759 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000760 if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000761 return 0;
762 tcp->u_arg[0] = 1;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000763 memcpy(tcp->u_arg + 1, &sc.sc_mask, sizeof(sc.sc_mask));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000764 }
765 else {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000766 sigset_t sigm;
767
768 memcpy(&sigm, tcp->u_arg + 1, sizeof (sigm));
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000769 tcp->u_rval = tcp->u_error = 0;
770 if (tcp->u_arg[0] == 0)
771 return 0;
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000772 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000773 return RVAL_NONE | RVAL_STR;
774 }
775 return 0;
776#else /* !IA64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000777#ifdef POWERPC
778 long esp;
779 struct sigcontext_struct sc;
780
781 if (entering(tcp)) {
782 tcp->u_arg[0] = 0;
783 if (upeek(tcp->pid, 4*PT_R1, &esp) < 0)
784 return 0;
785 if (umove(tcp, esp, &sc) < 0)
786 return 0;
787 tcp->u_arg[0] = 1;
788 tcp->u_arg[1] = sc.oldmask;
789 }
790 else {
791 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000792 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000793 tcp->u_rval = tcp->u_error = 0;
794 if (tcp->u_arg[0] == 0)
795 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000796 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000797 return RVAL_NONE | RVAL_STR;
798 }
799 return 0;
800#else /* !POWERPC */
801#ifdef M68K
802 long usp;
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000803 struct sigcontext sc;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000804
805 if (entering(tcp)) {
806 tcp->u_arg[0] = 0;
807 if (upeek(tcp->pid, 4*PT_USP, &usp) < 0)
808 return 0;
809 if (umove(tcp, usp, &sc) < 0)
810 return 0;
811 tcp->u_arg[0] = 1;
812 tcp->u_arg[1] = sc.sc_mask;
813 }
814 else {
815 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000816 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000817 tcp->u_rval = tcp->u_error = 0;
818 if (tcp->u_arg[0] == 0)
819 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000820 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000821 return RVAL_NONE | RVAL_STR;
822 }
823 return 0;
824#else /* !M68K */
825#ifdef ALPHA
826 long fp;
827 struct sigcontext_struct sc;
828
829 if (entering(tcp)) {
830 tcp->u_arg[0] = 0;
831 if (upeek(tcp->pid, REG_FP, &fp) < 0)
832 return 0;
833 if (umove(tcp, fp, &sc) < 0)
834 return 0;
835 tcp->u_arg[0] = 1;
836 tcp->u_arg[1] = sc.sc_mask;
837 }
838 else {
839 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000840 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000841 tcp->u_rval = tcp->u_error = 0;
842 if (tcp->u_arg[0] == 0)
843 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000844 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000845 return RVAL_NONE | RVAL_STR;
846 }
847 return 0;
848#else
849#ifdef SPARC
850 long i1;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000851 struct regs regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000852 m_siginfo_t si;
853
854 if(ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0) {
855 perror("sigreturn: PTRACE_GETREGS ");
856 return 0;
857 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000858 if(entering(tcp)) {
859 tcp->u_arg[0] = 0;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000860 i1 = regs.r_o1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000861 if(umove(tcp, i1, &si) < 0) {
862 perror("sigreturn: umove ");
863 return 0;
864 }
865 tcp->u_arg[0] = 1;
866 tcp->u_arg[1] = si.si_mask;
867 } else {
868 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000869 long_to_sigset(tcp->u_arg[1], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000870 tcp->u_rval = tcp->u_error = 0;
871 if(tcp->u_arg[0] == 0)
872 return 0;
Nate Sammons4a121431999-04-06 01:19:39 +0000873 tcp->auxstr = sprintsigmask("mask now ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000874 return RVAL_NONE | RVAL_STR;
875 }
876 return 0;
Wichert Akkermanf90da011999-10-31 21:15:38 +0000877#else
878#ifdef MIPS
879 long sp;
880 struct sigcontext sc;
881
882 if(entering(tcp)) {
883 tcp->u_arg[0] = 0;
884 if (upeek(tcp->pid, REG_SP, &sp) < 0)
885 return 0;
886 if (umove(tcp, sp, &sc) < 0)
887 return 0;
888 tcp->u_arg[0] = 1;
889 tcp->u_arg[1] = sc.sc_sigset;
890 } else {
891 tcp->u_rval = tcp->u_error = 0;
892 if(tcp->u_arg[0] == 0)
893 return 0;
894 tcp->auxstr = sprintsigmask("mask now ", tcp->u_arg[1]);
895 return RVAL_NONE | RVAL_STR;
896 }
897 return 0;
898#endif /* MIPS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000899#endif /* SPARC */
900#endif /* ALPHA */
901#endif /* !M68K */
902#endif /* !POWERPC */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000903#endif /* !IA64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000904#endif /* !I386 */
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000905#endif /* S390 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000906}
907
908int
909sys_siggetmask(tcp)
910struct tcb *tcp;
911{
912 if (exiting(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000913 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000914 long_to_sigset(tcp->u_rval, &sigm);
915 tcp->auxstr = sprintsigmask("mask ", &sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000916 }
917 return RVAL_HEX | RVAL_STR;
918}
919
920int
921sys_sigsuspend(tcp)
922struct tcb *tcp;
923{
924 if (entering(tcp)) {
925 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +0000926 long_to_sigset(tcp->u_arg[2], &sigm);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000927#if 0
928 /* first two are not really arguments, but print them anyway */
929 /* nevermind, they are an anachronism now, too bad... */
930 tprintf("%d, %#x, ", tcp->u_arg[0], tcp->u_arg[1]);
931#endif
Nate Sammons4a121431999-04-06 01:19:39 +0000932 printsigmask(&sigm, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000933 }
934 return 0;
935}
936
937#endif /* LINUX */
938
939#ifdef SVR4
940
941int
942sys_sigsuspend(tcp)
943struct tcb *tcp;
944{
945 sigset_t sigset;
946
947 if (entering(tcp)) {
948 if (umove(tcp, tcp->u_arg[0], &sigset) < 0)
949 tprintf("[?]");
950 else
Wichert Akkerman46956571999-11-26 10:12:59 +0000951 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000952 }
953 return 0;
954}
955static struct xlat ucontext_flags[] = {
956 { UC_SIGMASK, "UC_SIGMASK" },
957 { UC_STACK, "UC_STACK" },
958 { UC_CPU, "UC_CPU" },
959#ifdef UC_FPU
960 { UC_FPU, "UC_FPU" },
961#endif
962#ifdef UC_INTR
963 { UC_INTR, "UC_INTR" },
964#endif
965 { 0, NULL },
966};
967
968#endif
969
970#if defined SVR4 || defined LINUX
971#if defined LINUX && !defined SS_ONSTACK
972#define SS_ONSTACK 1
973#define SS_DISABLE 2
974#if __GLIBC_MINOR__ == 0
975typedef struct
976{
977 __ptr_t ss_sp;
978 int ss_flags;
979 size_t ss_size;
980} stack_t;
981#endif
982#endif
983
984static struct xlat sigaltstack_flags[] = {
985 { SS_ONSTACK, "SS_ONSTACK" },
986 { SS_DISABLE, "SS_DISABLE" },
987 { 0, NULL },
988};
989#endif
990
991#ifdef SVR4
992static void
993printcontext(tcp, ucp)
994struct tcb *tcp;
995ucontext_t *ucp;
996{
997 tprintf("{");
998 if (!abbrev(tcp)) {
999 tprintf("uc_flags=");
1000 if (!printflags(ucontext_flags, ucp->uc_flags))
1001 tprintf("0");
1002 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1003 }
1004 tprintf("uc_sigmask=");
Nate Sammons4a121431999-04-06 01:19:39 +00001005 printsigmask(ucp->uc_sigmask, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001006 if (!abbrev(tcp)) {
1007 tprintf(", uc_stack={ss_sp=%#lx, ss_size=%d, ss_flags=",
1008 (unsigned long) ucp->uc_stack.ss_sp,
1009 ucp->uc_stack.ss_size);
1010 if (!printflags(sigaltstack_flags, ucp->uc_stack.ss_flags))
1011 tprintf("0");
1012 tprintf("}");
1013 }
1014 tprintf(", ...}");
1015}
1016
1017int
1018sys_getcontext(tcp)
1019struct tcb *tcp;
1020{
1021 ucontext_t uc;
1022
1023 if (entering(tcp)) {
1024 if (!tcp->u_arg[0])
1025 tprintf("NULL");
1026 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1027 tprintf("{...}");
1028 else
1029 printcontext(tcp, &uc);
1030 }
1031 return 0;
1032}
1033
1034int
1035sys_setcontext(tcp)
1036struct tcb *tcp;
1037{
1038 ucontext_t uc;
1039
1040 if (entering(tcp)) {
1041 if (!tcp->u_arg[0])
1042 tprintf("NULL");
1043 else if (umove(tcp, tcp->u_arg[0], &uc) < 0)
1044 tprintf("{...}");
1045 else
1046 printcontext(tcp, &uc);
1047 }
1048 else {
1049 tcp->u_rval = tcp->u_error = 0;
1050 if (tcp->u_arg[0] == 0)
1051 return 0;
1052 return RVAL_NONE;
1053 }
1054 return 0;
1055}
1056
1057#endif /* SVR4 */
1058
1059#ifdef LINUX
1060
1061static int
1062print_stack_t(tcp, addr)
1063struct tcb *tcp;
1064unsigned long addr;
1065{
1066 stack_t ss;
1067 if (umove(tcp, addr, &ss) < 0)
1068 return -1;
1069 tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp);
1070 if (!printflags(sigaltstack_flags, ss.ss_flags))
1071 tprintf("0");
1072 tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size);
1073 return 0;
1074}
1075
1076int
1077sys_sigaltstack(tcp)
1078 struct tcb *tcp;
1079{
1080 if (entering(tcp)) {
1081 if (tcp->u_arg[0] == 0)
1082 tprintf("NULL");
1083 else if (print_stack_t(tcp, tcp->u_arg[0]) < 0)
1084 return -1;
1085 }
1086 else {
1087 tprintf(", ");
1088 if (tcp->u_arg[1] == 0)
1089 tprintf("NULL");
1090 else if (print_stack_t(tcp, tcp->u_arg[1]) < 0)
1091 return -1;
1092 }
1093 return 0;
1094}
1095#endif
1096
1097#ifdef HAVE_SIGACTION
1098
1099int
1100sys_sigprocmask(tcp)
1101struct tcb *tcp;
1102{
1103#ifdef ALPHA
1104 if (entering(tcp)) {
1105 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1106 tprintf(", ");
Nate Sammons4a121431999-04-06 01:19:39 +00001107 printsigmask(tcp->u_arg[1], 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001108 }
1109 else if (!syserror(tcp)) {
Nate Sammons4a121431999-04-06 01:19:39 +00001110 tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001111 return RVAL_HEX | RVAL_STR;
1112 }
1113#else /* !ALPHA */
1114 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115
1116 if (entering(tcp)) {
1117#ifdef SVR4
1118 if (tcp->u_arg[0] == 0)
1119 tprintf("0");
1120 else
1121#endif /* SVR4 */
1122 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1123 tprintf(", ");
1124 if (!tcp->u_arg[1])
1125 tprintf("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001126 else if (copy_sigset(tcp, tcp->u_arg[1], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001127 tprintf("%#lx, ", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001128 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001129 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001130 tprintf(", ");
1131 }
1132 }
1133 else {
1134 if (!tcp->u_arg[2])
1135 tprintf("NULL");
1136 else if (syserror(tcp))
1137 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001138 else if (copy_sigset(tcp, tcp->u_arg[2], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001139 tprintf("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001140 else
Nate Sammons4a121431999-04-06 01:19:39 +00001141 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001142 }
1143#endif /* !ALPHA */
1144 return 0;
1145}
1146
1147#endif /* HAVE_SIGACTION */
1148
1149int
1150sys_kill(tcp)
1151struct tcb *tcp;
1152{
1153 if (entering(tcp)) {
Nate Sammonsce780fc1999-03-29 23:23:13 +00001154 tprintf("%ld, %s", tcp->u_arg[0], signame(tcp->u_arg[1]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001155 }
1156 return 0;
1157}
1158
1159int
1160sys_killpg(tcp)
1161struct tcb *tcp;
1162{
1163 return sys_kill(tcp);
1164}
1165
1166int
1167sys_sigpending(tcp)
1168struct tcb *tcp;
1169{
1170 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001171
1172 if (exiting(tcp)) {
1173 if (syserror(tcp))
1174 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001175 else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001176 tprintf("[?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001177 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001178 printsigmask(&sigset, 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001179 }
1180 return 0;
1181}
1182
1183#ifdef LINUX
1184
1185 int
1186sys_rt_sigprocmask(tcp)
1187 struct tcb *tcp;
1188{
1189 sigset_t sigset;
1190
Nate Sammons4a121431999-04-06 01:19:39 +00001191 /* Note: arg[3] is the length of the sigset. */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001192 if (entering(tcp)) {
1193 printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???");
1194 tprintf(", ");
1195 if (!tcp->u_arg[1])
1196 tprintf("NULL, ");
Nate Sammons4a121431999-04-06 01:19:39 +00001197 else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001198 tprintf("%#lx, ", tcp->u_arg[1]);
1199 else {
Nate Sammons4a121431999-04-06 01:19:39 +00001200 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001201 tprintf(", ");
1202 }
1203 }
1204 else {
1205 if (!tcp->u_arg[2])
1206
1207 tprintf("NULL");
1208 else if (syserror(tcp))
1209 tprintf("%#lx", tcp->u_arg[2]);
Nate Sammons4a121431999-04-06 01:19:39 +00001210 else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001211 tprintf("[?]");
1212 else
Nate Sammons4a121431999-04-06 01:19:39 +00001213 printsigmask(&sigset, 1);
Nate Sammonsdab325a1999-03-29 23:33:35 +00001214 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001215 }
1216 return 0;
1217}
1218
1219#if __GLIBC_MINOR__ < 1
1220/* Type for data associated with a signal. */
1221typedef union sigval
1222{
1223 int sival_int;
1224 void *sival_ptr;
1225} sigval_t;
1226
1227# define __SI_MAX_SIZE 128
1228# define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
1229
1230typedef struct siginfo
1231{
1232 int si_signo; /* Signal number. */
1233 int si_errno; /* If non-zero, an errno value associated with
1234 this signal, as defined in <errno.h>. */
1235 int si_code; /* Signal code. */
1236
1237 union
1238 {
1239 int _pad[__SI_PAD_SIZE];
1240
1241 /* kill(). */
1242 struct
1243 {
1244 __pid_t si_pid; /* Sending process ID. */
1245 __uid_t si_uid; /* Real user ID of sending process. */
1246 } _kill;
1247
1248 /* POSIX.1b timers. */
1249 struct
1250 {
1251 unsigned int _timer1;
1252 unsigned int _timer2;
1253 } _timer;
1254
1255 /* POSIX.1b signals. */
1256 struct
1257 {
1258 __pid_t si_pid; /* Sending process ID. */
1259 __uid_t si_uid; /* Real user ID of sending process. */
1260 sigval_t si_sigval; /* Signal value. */
1261 } _rt;
1262
1263 /* SIGCHLD. */
1264 struct
1265 {
1266 __pid_t si_pid; /* Which child. */
1267 int si_status; /* Exit value or signal. */
1268 __clock_t si_utime;
1269 __clock_t si_stime;
1270 } _sigchld;
1271
1272 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
1273 struct
1274 {
1275 void *si_addr; /* Faulting insn/memory ref. */
1276 } _sigfault;
1277
1278 /* SIGPOLL. */
1279 struct
1280 {
1281 int si_band; /* Band event for SIGPOLL. */
1282 int si_fd;
1283 } _sigpoll;
1284 } _sifields;
1285} siginfo_t;
1286#endif
1287
1288/* Structure describing the action to be taken when a signal arrives. */
1289struct new_sigaction
1290{
1291 union
1292 {
1293 __sighandler_t __sa_handler;
1294 void (*__sa_sigaction) (int, siginfo_t *, void *);
1295 }
1296 __sigaction_handler;
1297 unsigned long sa_flags;
1298 void (*sa_restorer) (void);
1299 unsigned long int sa_mask[2];
1300};
1301
1302
1303 int
1304sys_rt_sigaction(tcp)
1305 struct tcb *tcp;
1306{
1307 struct new_sigaction sa;
1308 sigset_t sigset;
1309 long addr;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001310
1311 if (entering(tcp)) {
1312 printsignal(tcp->u_arg[0]);
1313 tprintf(", ");
1314 addr = tcp->u_arg[1];
1315 } else
1316 addr = tcp->u_arg[2];
1317 if (addr == 0)
1318 tprintf("NULL");
1319 else if (!verbose(tcp))
1320 tprintf("%#lx", addr);
1321 else if (umove(tcp, addr, &sa) < 0)
1322 tprintf("{...}");
1323 else {
1324 switch ((long) sa.__sigaction_handler.__sa_handler) {
1325 case (long) SIG_ERR:
1326 tprintf("{SIG_ERR}");
1327 break;
1328 case (long) SIG_DFL:
1329 tprintf("{SIG_DFL}");
1330 break;
1331 case (long) SIG_IGN:
1332 tprintf("{SIG_IGN}");
1333 break;
1334 default:
1335 tprintf("{%#lx, ",
1336 (long) sa.__sigaction_handler.__sa_handler);
Nate Sammons4a121431999-04-06 01:19:39 +00001337 sigemptyset(&sigset);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001338#ifdef LINUXSPARC
1339 if (tcp->u_arg[4] <= sizeof(sigset))
1340 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]);
1341#else
Nate Sammons4a121431999-04-06 01:19:39 +00001342 if (tcp->u_arg[3] <= sizeof(sigset))
1343 memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001344#endif
Nate Sammons4a121431999-04-06 01:19:39 +00001345 else
1346 memcpy(&sigset, &sa.sa_mask, sizeof(sigset));
1347 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001348 tprintf(", ");
1349 if (!printflags(sigact_flags, sa.sa_flags))
1350 tprintf("0");
1351 tprintf("}");
1352 }
1353 }
1354 if (entering(tcp))
1355 tprintf(", ");
1356 else
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001357#ifdef LINUXSPARC
1358 tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]);
1359#elif defined(ALPHA)
1360 tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]);
1361#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001362 tprintf(", %lu", addr = tcp->u_arg[3]);
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001363#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001364 return 0;
1365}
1366
1367 int
1368sys_rt_sigpending(tcp)
1369 struct tcb *tcp;
1370{
1371 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001372
1373 if (exiting(tcp)) {
1374 if (syserror(tcp))
1375 tprintf("%#lx", tcp->u_arg[0]);
Nate Sammons4a121431999-04-06 01:19:39 +00001376 else if (copy_sigset_len(tcp, tcp->u_arg[0],
1377 &sigset, tcp->u_arg[1]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001378 tprintf("[?]");
1379 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001380 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001381 }
1382 return 0;
1383}
1384 int
1385sys_rt_sigsuspend(tcp)
1386 struct tcb *tcp;
1387{
1388 if (entering(tcp)) {
1389 sigset_t sigm;
Nate Sammons4a121431999-04-06 01:19:39 +00001390 if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0)
1391 tprintf("[?]");
1392 else
1393 printsigmask(&sigm, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001394 }
1395 return 0;
1396}
1397#ifndef ILL_ILLOPC
1398#define ILL_ILLOPC 1 /* illegal opcode */
1399#define ILL_ILLOPN 2 /* illegal operand */
1400#define ILL_ILLADR 3 /* illegal addressing mode */
1401#define ILL_ILLTRP 4 /* illegal trap */
1402#define ILL_PRVOPC 5 /* privileged opcode */
1403#define ILL_PRVREG 6 /* privileged register */
1404#define ILL_COPROC 7 /* coprocessor error */
1405#define ILL_BADSTK 8 /* internal stack error */
1406#define FPE_INTDIV 1 /* integer divide by zero */
1407#define FPE_INTOVF 2 /* integer overflow */
1408#define FPE_FLTDIV 3 /* floating point divide by zero */
1409#define FPE_FLTOVF 4 /* floating point overflow */
1410#define FPE_FLTUND 5 /* floating point underflow */
1411#define FPE_FLTRES 6 /* floating point inexact result */
1412#define FPE_FLTINV 7 /* floating point invalid operation */
1413#define FPE_FLTSUB 8 /* subscript out of range */
1414#define SEGV_MAPERR 1 /* address not mapped to object */
1415#define SEGV_ACCERR 2 /* invalid permissions for mapped object */
1416#define BUS_ADRALN 1 /* invalid address alignment */
1417#define BUS_ADRERR 2 /* non-existant physical address */
1418#define BUS_OBJERR 3 /* object specific hardware error */
1419#define TRAP_BRKPT 1 /* process breakpoint */
1420#define TRAP_TRACE 2 /* process trace trap */
1421#define CLD_EXITED 1 /* child has exited */
1422#define CLD_KILLED 2 /* child was killed */
1423#define CLD_DUMPED 3 /* child terminated abnormally */
1424#define CLD_TRAPPED 4 /* traced child has trapped */
1425#define CLD_STOPPED 5 /* child has stopped */
1426#define CLD_CONTINUED 6 /* stopped child has continued */
1427#define POLL_IN 1 /* data input available */
1428#define POLL_OUT 2 /* output buffers available */
1429#define POLL_MSG 3 /* input message available */
1430#define POLL_ERR 4 /* i/o error */
1431#define POLL_PRI 5 /* high priority input available */
1432#define POLL_HUP 6 /* device disconnected */
1433#define SI_USER 0 /* sent by kill, sigsend, raise */
1434#define SI_QUEUE -1 /* sent by sigqueue */
1435#define SI_TIMER -2 /* sent by timer expiration */
1436#define SI_MESGQ -3 /* sent by real time mesq state change */
1437#define SI_ASYNCIO -4 /* sent by AIO completion */
1438#else
1439#undef si_pid
1440#undef si_uid
1441#undef si_status
1442#undef si_utime
1443#undef si_stime
1444#undef si_value
1445#undef si_int
1446#undef si_ptr
1447#undef si_addr
1448#undef si_band
1449#undef si_fd
1450#endif
1451
1452static struct xlat sigill_flags[] = {
1453 {ILL_ILLOPC, "ILL_ILLOPC"},
1454 {ILL_ILLOPN, "ILL_ILLOPN"},
1455 {ILL_ILLADR, "ILL_ILLADR"},
1456 {ILL_ILLTRP, "ILL_ILLTRP"},
1457 {ILL_PRVOPC, "ILL_PRVOPC"},
1458 {ILL_PRVREG, "ILL_PRVREG"},
1459 {ILL_COPROC, "ILL_COPROC"},
1460 {ILL_BADSTK, "ILL_BADSTK"},
1461 {0, NULL}
1462};
1463
1464static struct xlat sigfpe_flags[] = {
1465 {FPE_INTDIV, "FPE_INTDIV"},
1466 {FPE_INTOVF, "FPE_INTOVF"},
1467 {FPE_FLTDIV, "FPE_FLTDIV"},
1468 {FPE_FLTOVF, "FPE_FLTOVF"},
1469 {FPE_FLTUND, "FPE_FLTUND"},
1470 {FPE_FLTRES, "FPE_FLTRES"},
1471 {FPE_FLTINV, "FPE_FLTINV"},
1472 {FPE_FLTSUB, "FPE_FLTSUB"},
1473 {0, NULL}
1474};
1475
1476static struct xlat sigsegv_flags[] = {
1477 {SEGV_MAPERR, "SEGV_MAPERR"},
1478 {SEGV_ACCERR, "SEGV_ACCERR"},
1479 {0, NULL}
1480};
1481
1482static struct xlat sigbus_flags[] = {
1483 {BUS_ADRALN, "BUS_ADRALN"},
1484 {BUS_ADRERR, "BUS_ADRERR"},
1485 {BUS_OBJERR, "BUS_OBJERR"},
1486 {0, NULL}
1487};
1488
1489static struct xlat sigtrap_flags[] = {
1490 {TRAP_BRKPT, "TRAP_BRKPT"},
1491 {TRAP_TRACE, "TRAP_TRACE"},
1492 {0, NULL}
1493};
1494
1495static struct xlat sigchld_flags[] = {
1496 {CLD_EXITED, "CLD_EXITED"},
1497 {CLD_KILLED, "CLD_KILLED"},
1498 {CLD_DUMPED, "CLD_DUMPED"},
1499 {CLD_TRAPPED, "CLD_TRAPPED"},
1500 {CLD_STOPPED, "CLD_STOPPED"},
1501 {CLD_CONTINUED, "CLD_CONTINUED"},
1502 {0, NULL}
1503};
1504
1505static struct xlat sigpoll_flags[] = {
1506 {POLL_IN, "POLL_IN"},
1507 {POLL_OUT, "POLL_OUT"},
1508 {POLL_MSG, "POLL_MSG"},
1509 {POLL_ERR, "POLL_ERR"},
1510 {POLL_PRI, "POLL_PRI"},
1511 {POLL_HUP, "POLL_HUP"},
1512 {0, NULL}
1513};
1514
1515static struct xlat siginfo_flags[] = {
1516 {SI_USER, "SI_USER"},
1517 {SI_QUEUE, "SI_QUEUE"},
1518 {SI_TIMER, "SI_TIMER"},
1519 {SI_MESGQ, "SI_MESGQ"},
1520 {SI_ASYNCIO, "SI_ASYNCIO"},
1521 {0, NULL}
1522};
1523
1524 static void
1525printsiginfo(tcp, si)
1526 struct tcb *tcp;
1527 siginfo_t *si;
1528{
1529 tprintf("{si_signo=");
1530 printsignal(si->si_signo);
1531 tprintf(", si_errno=%d, si_code=", si->si_errno);
1532 switch(si->si_signo)
1533 {
1534 case SIGILL:
1535 if (!printflags(sigill_flags, si->si_code))
1536 tprintf("%d /* ILL_??? */", si->si_code);
1537 tprintf(", si_addr=%lx",
1538 (unsigned long) si->_sifields._sigfault.si_addr);
1539 break;
1540 case SIGFPE:
1541 if (!printflags(sigfpe_flags, si->si_code))
1542 tprintf("%d /* FPE_??? */", si->si_code);
1543 tprintf(", si_addr=%lx",
1544 (unsigned long) si->_sifields._sigfault.si_addr);
1545 break;
1546 case SIGSEGV:
1547 if (!printflags(sigsegv_flags, si->si_code))
1548 tprintf("%d /* SEGV_??? */", si->si_code);
1549 tprintf(", si_addr=%lx",
1550 (unsigned long) si->_sifields._sigfault.si_addr);
1551 break;
1552 case SIGBUS:
1553 if (!printflags(sigbus_flags, si->si_code))
1554 tprintf("%d /* BUS_??? */", si->si_code);
1555 tprintf(", si_addr=%lx",
1556 (unsigned long) si->_sifields._sigfault.si_addr);
1557 break;
1558 case SIGTRAP:
1559 if (!printflags(sigtrap_flags, si->si_code))
1560 tprintf("%d /* TRAP_??? */", si->si_code);
1561 break;
1562 case SIGCHLD:
1563 if (!printflags(sigchld_flags, si->si_code))
1564 tprintf("%d /* CLD_??? */", si->si_code);
1565 if (!verbose(tcp))
1566 tprintf(", ...");
1567 else
1568 tprintf(", si_pid=%d, si_uid=%d, si_status=%d, si_utime=%lu, si_stime=%lu",
1569 si->_sifields._kill.si_pid,
1570 si->_sifields._kill.si_uid,
1571 si->_sifields._sigchld.si_status,
1572 si->_sifields._sigchld.si_utime,
1573 si->_sifields._sigchld.si_stime);
1574 break;
1575 case SIGPOLL:
1576 if (!printflags(sigpoll_flags, si->si_code))
1577 tprintf("%d /* POLL_??? */", si->si_code);
1578 if (si->si_code == POLL_IN
1579 || si->si_code == POLL_OUT
1580 || si->si_code == POLL_MSG)
1581 tprintf(", si_bind=%lu, si_fd=%d",
1582 (unsigned long) si->_sifields._sigpoll.si_band,
1583 si->_sifields._sigpoll.si_fd);
1584 break;
1585 default:
1586 if (!printflags(siginfo_flags, si->si_code))
1587 tprintf("%d /* SI_??? */", si->si_code);
1588 tprintf(", si_pid=%lu, si_uid=%lu, si_value={",
1589 (unsigned long) si->_sifields._rt.si_pid,
1590 (unsigned long) si->_sifields._rt.si_uid);
1591 if (!verbose(tcp))
1592 tprintf("...");
1593 else {
1594 tprintf("sival_int=%u, sival_ptr=%#lx",
1595 si->_sifields._rt.si_sigval.sival_int,
1596 (unsigned long) si->_sifields._rt.si_sigval.sival_ptr);
1597 }
1598 tprintf("}");
1599 break;
1600 }
1601 tprintf("}");
1602}
1603
1604 int
1605sys_rt_sigqueueinfo(tcp)
1606 struct tcb *tcp;
1607{
1608 if (entering(tcp)) {
1609 siginfo_t si;
1610 tprintf("%lu, ", tcp->u_arg[0]);
1611 printsignal(tcp->u_arg[1]);
1612 tprintf(", ");
1613 if (umove(tcp, tcp->u_arg[2], &si) < 0)
1614 tprintf("%#lx", tcp->u_arg[2]);
1615 else
1616 printsiginfo(&si);
1617 }
1618 return 0;
1619}
1620
1621int sys_rt_sigtimedwait(tcp)
1622 struct tcb *tcp;
1623{
1624 if (entering(tcp)) {
1625 sigset_t sigset;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001626
Nate Sammons4a121431999-04-06 01:19:39 +00001627 if (copy_sigset_len(tcp, tcp->u_arg[0],
1628 &sigset, tcp->u_arg[3]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001629 tprintf("[?]");
1630 else
Wichert Akkerman46956571999-11-26 10:12:59 +00001631 printsigmask(&sigset, 1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001632 tprintf(", ");
1633 }
1634 else {
1635 if (syserror(tcp))
1636 tprintf("%#lx", tcp->u_arg[0]);
1637 else {
1638 siginfo_t si;
1639 if (umove(tcp, tcp->u_arg[1], &si) < 0)
1640 tprintf("%#lx", tcp->u_arg[1]);
1641 else
1642 printsiginfo(&si);
1643 /* XXX For now */
1644 tprintf(", %#lx", tcp->u_arg[2]);
1645 tprintf(", %d", (int) tcp->u_arg[3]);
1646 }
1647 }
1648 return 0;
1649};
1650
1651#endif /* LINUX */
1652