1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
|
/* $OpenBSD: linux_signal.c,v 1.12 2003/02/25 09:10:27 tedu Exp $ */
/* $NetBSD: linux_signal.c,v 1.10 1996/04/04 23:51:36 christos Exp $ */
/*
* Copyright (c) 1995 Frank van der Linden
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed for the NetBSD Project
* by Frank van der Linden
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* heavily from: svr4_signal.c,v 1.7 1995/01/09 01:04:21 christos Exp
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/kernel.h>
#include <sys/signal.h>
#include <sys/signalvar.h>
#include <sys/malloc.h>
#include <sys/syscallargs.h>
#include <compat/linux/linux_types.h>
#include <compat/linux/linux_signal.h>
#include <compat/linux/linux_syscallargs.h>
#include <compat/linux/linux_util.h>
#define sigemptyset(s) bzero((s), sizeof(*(s)))
#define sigismember(s, n) (*(s) & sigmask(n))
#define sigaddset(s, n) (*(s) |= sigmask(n))
/* Locally used defines (in bsd<->linux conversion functions): */
#define linux_sigmask(n) (1 << ((n) - 1))
#define linux_sigemptyset(s) bzero((s), sizeof(*(s)))
#define linux_sigismember(s, n) ((s)->sig[((n) - 1) / LINUX__NSIG_BPW] \
& (1 << ((n) - 1) % LINUX__NSIG_BPW))
#define linux_sigaddset(s, n) ((s)->sig[((n) - 1) / LINUX__NSIG_BPW] \
|= (1 << ((n) - 1) % LINUX__NSIG_BPW))
int bsd_to_linux_sig[NSIG] = {
0,
LINUX_SIGHUP,
LINUX_SIGINT,
LINUX_SIGQUIT,
LINUX_SIGILL,
LINUX_SIGTRAP,
LINUX_SIGABRT,
LINUX_NSIG, /* XXX Kludge to get RT signal #32 to work */
LINUX_SIGFPE,
LINUX_SIGKILL,
LINUX_SIGBUS,
LINUX_SIGSEGV,
LINUX_NSIG + 1, /* XXX Kludge to get RT signal #32 to work */
LINUX_SIGPIPE,
LINUX_SIGALRM,
LINUX_SIGTERM,
LINUX_SIGURG,
LINUX_SIGSTOP,
LINUX_SIGTSTP,
LINUX_SIGCONT,
LINUX_SIGCHLD,
LINUX_SIGTTIN,
LINUX_SIGTTOU,
LINUX_SIGIO,
LINUX_SIGXCPU,
LINUX_SIGXFSZ,
LINUX_SIGVTALRM,
LINUX_SIGPROF,
LINUX_SIGWINCH,
0, /* SIGINFO */
LINUX_SIGUSR1,
LINUX_SIGUSR2,
};
int linux_to_bsd_sig[LINUX__NSIG] = {
0,
SIGHUP,
SIGINT,
SIGQUIT,
SIGILL,
SIGTRAP,
SIGABRT,
SIGBUS,
SIGFPE,
SIGKILL,
SIGUSR1,
SIGSEGV,
SIGUSR2,
SIGPIPE,
SIGALRM,
SIGTERM,
0, /* SIGSTKFLT */
SIGCHLD,
SIGCONT,
SIGSTOP,
SIGTSTP,
SIGTTIN,
SIGTTOU,
SIGURG,
SIGXCPU,
SIGXFSZ,
SIGVTALRM,
SIGPROF,
SIGWINCH,
SIGIO,
0, /* SIGUNUSED */
0,
SIGEMT, /* XXX Gruesome hack for linuxthreads: */
SIGSYS, /* Map 1st 2 RT signals onto ones we handle. */
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
/*
* Convert between Linux and BSD signal sets.
*/
void
linux_old_to_bsd_sigset(lss, bss)
const linux_old_sigset_t *lss;
sigset_t *bss;
{
linux_old_extra_to_bsd_sigset(lss, (const unsigned long *) 0, bss);
}
void
bsd_to_linux_old_sigset(bss, lss)
const sigset_t *bss;
linux_old_sigset_t *lss;
{
bsd_to_linux_old_extra_sigset(bss, lss, (unsigned long *) 0);
}
void
linux_old_extra_to_bsd_sigset(lss, extra, bss)
const linux_old_sigset_t *lss;
const unsigned long *extra;
sigset_t *bss;
{
linux_sigset_t lsnew;
/* convert old sigset to new sigset */
linux_sigemptyset(&lsnew);
lsnew.sig[0] = *lss;
if (extra)
bcopy(extra, &lsnew.sig[1],
sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
linux_to_bsd_sigset(&lsnew, bss);
}
void
bsd_to_linux_old_extra_sigset(bss, lss, extra)
const sigset_t *bss;
linux_old_sigset_t *lss;
unsigned long *extra;
{
linux_sigset_t lsnew;
bsd_to_linux_sigset(bss, &lsnew);
/* convert new sigset to old sigset */
*lss = lsnew.sig[0];
if (extra)
bcopy(&lsnew.sig[1], extra,
sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
}
void
linux_to_bsd_sigset(lss, bss)
const linux_sigset_t *lss;
sigset_t *bss;
{
int i, newsig;
sigemptyset(bss);
for (i = 1; i < LINUX__NSIG; i++) {
if (linux_sigismember(lss, i)) {
newsig = linux_to_bsd_sig[i];
if (newsig)
sigaddset(bss, newsig);
}
}
}
void
bsd_to_linux_sigset(bss, lss)
const sigset_t *bss;
linux_sigset_t *lss;
{
int i, newsig;
linux_sigemptyset(lss);
for (i = 1; i < NSIG; i++) {
if (sigismember(bss, i)) {
newsig = bsd_to_linux_sig[i];
if (newsig)
linux_sigaddset(lss, newsig);
}
}
}
/*
* Convert between Linux and BSD sigaction structures. Linux has
* one extra field (sa_restorer) which we don't support.
*/
void
linux_old_to_bsd_sigaction(lsa, bsa)
struct linux_old_sigaction *lsa;
struct sigaction *bsa;
{
bsa->sa_handler = lsa->sa__handler;
linux_old_to_bsd_sigset(&lsa->sa_mask, &bsa->sa_mask);
bsa->sa_flags = 0;
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
bsa->sa_flags |= SA_ONSTACK;
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
bsa->sa_flags |= SA_RESTART;
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
bsa->sa_flags |= SA_RESETHAND;
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
bsa->sa_flags |= SA_NOCLDSTOP;
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
bsa->sa_flags |= SA_NODEFER;
}
void
bsd_to_linux_old_sigaction(bsa, lsa)
struct sigaction *bsa;
struct linux_old_sigaction *lsa;
{
lsa->sa__handler = bsa->sa_handler;
bsd_to_linux_old_sigset(&bsa->sa_mask, &lsa->sa_mask);
lsa->sa_flags = 0;
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
if ((bsa->sa_flags & SA_ONSTACK) != 0)
lsa->sa_flags |= LINUX_SA_ONSTACK;
if ((bsa->sa_flags & SA_RESTART) != 0)
lsa->sa_flags |= LINUX_SA_RESTART;
if ((bsa->sa_flags & SA_NODEFER) != 0)
lsa->sa_flags |= LINUX_SA_NOMASK;
if ((bsa->sa_flags & SA_RESETHAND) != 0)
lsa->sa_flags |= LINUX_SA_ONESHOT;
lsa->sa_restorer = NULL;
}
void
linux_to_bsd_sigaction(lsa, bsa)
struct linux_sigaction *lsa;
struct sigaction *bsa;
{
bsa->sa_handler = lsa->sa__handler;
linux_to_bsd_sigset(&lsa->sa_mask, &bsa->sa_mask);
bsa->sa_flags = 0;
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
bsa->sa_flags |= SA_NOCLDSTOP;
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
bsa->sa_flags |= SA_ONSTACK;
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
bsa->sa_flags |= SA_RESTART;
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
bsa->sa_flags |= SA_RESETHAND;
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
bsa->sa_flags |= SA_NODEFER;
if ((lsa->sa_flags & LINUX_SA_SIGINFO) != 0)
bsa->sa_flags |= SA_SIGINFO;
}
void
bsd_to_linux_sigaction(bsa, lsa)
struct sigaction *bsa;
struct linux_sigaction *lsa;
{
/* Clear sa_flags and sa_restorer (if it exists) */
bzero(lsa, sizeof(struct linux_sigaction));
/* ...and fill in the mask and flags */
bsd_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
if ((bsa->sa_flags & SA_ONSTACK) != 0)
lsa->sa_flags |= LINUX_SA_ONSTACK;
if ((bsa->sa_flags & SA_RESTART) != 0)
lsa->sa_flags |= LINUX_SA_RESTART;
if ((bsa->sa_flags & SA_NODEFER) != 0)
lsa->sa_flags |= LINUX_SA_NOMASK;
if ((bsa->sa_flags & SA_RESETHAND) != 0)
lsa->sa_flags |= LINUX_SA_ONESHOT;
if ((bsa->sa_flags & SA_SIGINFO) != 0)
lsa->sa_flags |= LINUX_SA_SIGINFO;
lsa->sa__handler = bsa->sa_handler;
}
int
linux_to_bsd_signal(int linuxsig, int *bsdsig)
{
if (linuxsig < 0 || linuxsig >= LINUX__NSIG)
return (EINVAL);
*bsdsig = linux_to_bsd_sig[linuxsig];
return (0);
}
int
bsd_to_linux_signal(int bsdsig, int *linuxsig)
{
if (bsdsig < 0 || bsdsig >= NSIG)
return (EINVAL);
*linuxsig = bsd_to_linux_sig[bsdsig];
return (0);
}
/*
* The Linux sigaction() system call. Do the usual conversions,
* and just call sigaction(). Some flags and values are silently
* ignored (see above).
*/
int
linux_sys_sigaction(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigaction_args /* {
syscallarg(int) signum;
syscallarg(struct linux_old_sigaction *) nsa;
syscallarg(struct linux_old_sigaction *) osa;
} */ *uap = v;
struct linux_old_sigaction *nlsa, *olsa, tmplsa;
struct sigaction *nbsa, *obsa, tmpbsa;
struct sys_sigaction_args sa;
caddr_t sg;
int error;
if (SCARG(uap, signum) < 0 || SCARG(uap, signum) >= LINUX__NSIG)
return (EINVAL);
sg = stackgap_init(p->p_emul);
nlsa = SCARG(uap, nsa);
olsa = SCARG(uap, osa);
if (olsa != NULL)
obsa = stackgap_alloc(&sg, sizeof(struct sigaction));
else
obsa = NULL;
if (nlsa != NULL) {
nbsa = stackgap_alloc(&sg, sizeof(struct sigaction));
if ((error = copyin(nlsa, &tmplsa, sizeof(tmplsa))) != 0)
return (error);
linux_old_to_bsd_sigaction(&tmplsa, &tmpbsa);
if ((error = copyout(&tmpbsa, nbsa, sizeof(tmpbsa))) != 0)
return (error);
} else
nbsa = NULL;
SCARG(&sa, signum) = linux_to_bsd_sig[SCARG(uap, signum)];
SCARG(&sa, nsa) = nbsa;
SCARG(&sa, osa) = obsa;
/* Silently ignore unknown signals */
if (SCARG(&sa, signum) == 0) {
if (obsa != NULL) {
obsa->sa_handler = SIG_IGN;
sigemptyset(&obsa->sa_mask);
obsa->sa_flags = 0;
}
}
else {
if ((error = sys_sigaction(p, &sa, retval)) != 0)
return (error);
}
if (olsa != NULL) {
if ((error = copyin(obsa, &tmpbsa, sizeof(tmpbsa))) != 0)
return (error);
bsd_to_linux_old_sigaction(&tmpbsa, &tmplsa);
if ((error = copyout(&tmplsa, olsa, sizeof(tmplsa))) != 0)
return (error);
}
return (0);
}
int
linux_sys_rt_sigaction(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_rt_sigaction_args /* {
syscallarg(int) signum;
syscallarg(struct linux_sigaction *) nsa;
syscallarg(struct linux_sigaction *) osa;
syscallarg(size_t) sigsetsize;
} */ *uap = v;
struct linux_sigaction *nlsa, *olsa, tmplsa;
struct sigaction *nbsa, *obsa, tmpbsa;
struct sys_sigaction_args sa;
caddr_t sg;
int error;
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
return (EINVAL);
if (SCARG(uap, signum) < 0 || SCARG(uap, signum) >= LINUX__NSIG)
return (EINVAL);
sg = stackgap_init(p->p_emul);
nlsa = SCARG(uap, nsa);
olsa = SCARG(uap, osa);
if (olsa != NULL)
obsa = stackgap_alloc(&sg, sizeof(struct sigaction));
else
obsa = NULL;
if (nlsa != NULL) {
nbsa = stackgap_alloc(&sg, sizeof(struct sigaction));
if ((error = copyin(nlsa, &tmplsa, sizeof(tmplsa))) != 0)
return (error);
linux_to_bsd_sigaction(&tmplsa, &tmpbsa);
if ((error = copyout(&tmpbsa, nbsa, sizeof(tmpbsa))) != 0)
return (error);
}
else
nbsa = NULL;
SCARG(&sa, signum) = linux_to_bsd_sig[SCARG(uap, signum)];
SCARG(&sa, nsa) = nbsa;
SCARG(&sa, osa) = obsa;
/* Silently ignore unknown signals */
if (SCARG(&sa, signum) == 0) {
if (obsa != NULL) {
obsa->sa_handler = SIG_IGN;
sigemptyset(&obsa->sa_mask);
obsa->sa_flags = 0;
}
}
else {
if ((error = sys_sigaction(p, &sa, retval)) != 0)
return (error);
}
if (olsa != NULL) {
if ((error = copyin(obsa, &tmpbsa, sizeof(tmpbsa))) != 0)
return (error);
bsd_to_linux_sigaction(&tmpbsa, &tmplsa);
if ((error = copyout(&tmplsa, olsa, sizeof(tmplsa))) != 0)
return (error);
}
return (0);
}
/*
* The Linux signal() system call. I think that the signal() in the C
* library actually calls sigaction, so I doubt this one is ever used.
* But hey, it can't hurt having it here. The same restrictions as for
* sigaction() apply.
*/
int
linux_sys_signal(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_signal_args /* {
syscallarg(int) sig;
syscallarg(linux_handler_t) handler;
} */ *uap = v;
caddr_t sg;
struct sys_sigaction_args sa_args;
struct sigaction *osa, *nsa, tmpsa;
int error;
if (SCARG(uap, sig) < 0 || SCARG(uap, sig) >= LINUX__NSIG)
return (EINVAL);
sg = stackgap_init(p->p_emul);
nsa = stackgap_alloc(&sg, sizeof *nsa);
osa = stackgap_alloc(&sg, sizeof *osa);
tmpsa.sa_handler = SCARG(uap, handler);
tmpsa.sa_mask = (sigset_t) 0;
tmpsa.sa_flags = SA_RESETHAND | SA_NODEFER;
if ((error = copyout(&tmpsa, nsa, sizeof tmpsa)))
return (error);
SCARG(&sa_args, signum) = linux_to_bsd_sig[SCARG(uap, sig)];
SCARG(&sa_args, osa) = osa;
SCARG(&sa_args, nsa) = nsa;
/* Silently ignore unknown signals */
if (SCARG(&sa_args, signum) != 0) {
if ((error = sys_sigaction(p, &sa_args, retval)))
return (error);
}
if ((error = copyin(osa, &tmpsa, sizeof *osa)))
return (error);
retval[0] = (register_t) tmpsa.sa_handler;
return (0);
}
/*
* This is just a copy of the svr4 compat one. I feel so creative now.
*/
int
linux_sys_sigprocmask(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigprocmask_args /* {
syscallarg(int) how;
syscallarg(linux_old_sigset_t *) set;
syscallarg(linux_old_sigset_t *) oset;
} */ *uap = v;
linux_old_sigset_t ss;
sigset_t bs;
int error = 0;
*retval = 0;
if (SCARG(uap, oset) != NULL) {
/* Fix the return value first if needed */
bsd_to_linux_old_sigset(&p->p_sigmask, &ss);
if ((error = copyout(&ss, SCARG(uap, oset), sizeof(ss))) != 0)
return (error);
}
if (SCARG(uap, set) == NULL)
/* Just examine */
return (0);
if ((error = copyin(SCARG(uap, set), &ss, sizeof(ss))) != 0)
return (error);
linux_old_to_bsd_sigset(&ss, &bs);
(void) splhigh();
switch (SCARG(uap, how)) {
case LINUX_SIG_BLOCK:
p->p_sigmask |= bs & ~sigcantmask;
break;
case LINUX_SIG_UNBLOCK:
p->p_sigmask &= ~bs;
break;
case LINUX_SIG_SETMASK:
p->p_sigmask = bs & ~sigcantmask;
break;
default:
error = EINVAL;
break;
}
(void) spl0();
return (error);
}
int
linux_sys_rt_sigprocmask(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_rt_sigprocmask_args /* {
syscallarg(int) how;
syscallarg(const linux_sigset_t *) set;
syscallarg(linux_sigset_t *) oset;
syscallarg(size_t) sigsetsize;
} */ *uap = v;
linux_sigset_t ls;
sigset_t bs;
int error = 0;
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
return (EINVAL);
*retval = 0;
if (SCARG(uap, oset) != NULL) {
/* Fix the return value first if needed */
bsd_to_linux_sigset(&p->p_sigmask, &ls);
if ((error = copyout(&ls, SCARG(uap, oset), sizeof(ls))) != 0)
return (error);
}
if (SCARG(uap, set) == NULL)
/* Just examine */
return (0);
if ((error = copyin(SCARG(uap, set), &ls, sizeof(ls))) != 0)
return (error);
linux_to_bsd_sigset(&ls, &bs);
(void) splhigh();
switch (SCARG(uap, how)) {
case LINUX_SIG_BLOCK:
p->p_sigmask |= bs & ~sigcantmask;
break;
case LINUX_SIG_UNBLOCK:
p->p_sigmask &= ~bs;
break;
case LINUX_SIG_SETMASK:
p->p_sigmask = bs & ~sigcantmask;
break;
default:
error = EINVAL;
break;
}
(void) spl0();
return (error);
}
/*
* The functions below really make no distinction between an int
* and [linux_]sigset_t. This is ok for now, but it might break
* sometime. Then again, sigset_t is trusted to be an int everywhere
* else in the kernel too.
*/
/* ARGSUSED */
int
linux_sys_siggetmask(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
bsd_to_linux_old_sigset(&p->p_sigmask, (linux_old_sigset_t *)retval);
return (0);
}
/*
* The following three functions fiddle with a process' signal mask.
* Convert the signal masks because of the different signal
* values for Linux. The need for this is the reason why
* they are here, and have not been mapped directly.
*/
int
linux_sys_sigsetmask(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigsetmask_args /* {
syscallarg(linux_old_sigset_t) mask;
} */ *uap = v;
linux_old_sigset_t mask;
sigset_t bsdsig;
bsd_to_linux_old_sigset(&p->p_sigmask, (linux_old_sigset_t *)retval);
mask = SCARG(uap, mask);
bsd_to_linux_old_sigset(&bsdsig, &mask);
splhigh();
p->p_sigmask = bsdsig & ~sigcantmask;
spl0();
return (0);
}
int
linux_sys_sigpending(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigpending_args /* {
syscallarg(linux_old_sigset_t *) mask;
} */ *uap = v;
sigset_t bs;
linux_old_sigset_t ls;
bs = p->p_siglist & p->p_sigmask;
bsd_to_linux_old_sigset(&bs, &ls);
return (copyout(&ls, SCARG(uap, mask), sizeof ls));
}
int
linux_sys_rt_sigpending(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_rt_sigpending_args /* {
syscallarg(linux_sigset_t *) set;
syscallarg(size_t) sigsetsize;
} */ *uap = v;
sigset_t bs;
linux_sigset_t ls;
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
return (EINVAL);
bs = p->p_siglist & p->p_sigmask;
bsd_to_linux_sigset(&bs, &ls);
return (copyout(&ls, SCARG(uap, set), sizeof ls));
}
int
linux_sys_sigsuspend(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigsuspend_args /* {
syscallarg(caddr_t) restart;
syscallarg(int) oldmask;
syscallarg(int) mask;
} */ *uap = v;
struct sys_sigsuspend_args sa;
linux_old_sigset_t mask = SCARG(uap, mask);
linux_old_to_bsd_sigset(&mask, &SCARG(&sa, mask));
return (sys_sigsuspend(p, &sa, retval));
}
int
linux_sys_rt_sigsuspend(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_rt_sigsuspend_args /* {
syscallarg(sigset_t *) unewset;
syscallarg(size_t) sigsetsize;
} */ *uap = v;
struct sys_sigsuspend_args sa;
linux_sigset_t mask;
int error;
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
return (EINVAL);
error = copyin(SCARG(uap, unewset), &mask, sizeof mask);
if (error)
return (error);
linux_to_bsd_sigset(&mask, &SCARG(&sa, mask));
return (sys_sigsuspend(p, &sa, retval));
}
/*
* Linux' sigaltstack structure is just of a different order than BSD's
* so just shuffle the fields around and call our version.
*/
int
linux_sys_sigaltstack(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_sigaltstack_args /* {
syscallarg(const struct linux_sigaltstack *) nss;
syscallarg(struct linux_sigaltstack *) oss;
} */ *uap = v;
struct linux_sigaltstack linux_ss;
struct sigaltstack *bsd_nss, *bsd_oss;
struct sys_sigaltstack_args sa;
int error;
caddr_t sg;
sg = stackgap_init(p->p_emul);
if (SCARG(uap, nss) != NULL) {
bsd_nss = stackgap_alloc(&sg, sizeof *bsd_nss);
error = copyin(SCARG(uap, nss), &linux_ss, sizeof linux_ss);
if (error)
return (error);
bsd_nss->ss_sp = linux_ss.ss_sp;
bsd_nss->ss_size = linux_ss.ss_size;
bsd_nss->ss_flags = (linux_ss.ss_flags & LINUX_SS_DISABLE) ?
SS_DISABLE : 0;
SCARG(&sa, nss) = bsd_nss;
} else
SCARG(&sa, nss) = NULL;
if (SCARG(uap, oss) == NULL) {
SCARG(&sa, oss) = NULL;
return (sys_sigaltstack(p, &sa, retval));
}
SCARG(&sa, oss) = bsd_oss = stackgap_alloc(&sg, sizeof *bsd_oss);
error = sys_sigaltstack(p, &sa, retval);
if (error)
return (error);
linux_ss.ss_sp = bsd_oss->ss_sp;
linux_ss.ss_size = bsd_oss->ss_size;
linux_ss.ss_flags = 0;
if (bsd_oss->ss_flags & SS_ONSTACK)
linux_ss.ss_flags |= LINUX_SS_ONSTACK;
if (bsd_oss->ss_flags & SS_DISABLE)
linux_ss.ss_flags |= LINUX_SS_DISABLE;
return (copyout(&linux_ss, SCARG(uap, oss), sizeof linux_ss));
}
/*
* The deprecated pause(2), which is really just an instance
* of sigsuspend(2).
*/
int
linux_sys_pause(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct sys_sigsuspend_args bsa;
SCARG(&bsa, mask) = p->p_sigmask;
return (sys_sigsuspend(p, &bsa, retval));
}
/*
* Once more: only a signal conversion is needed.
*/
int
linux_sys_kill(p, v, retval)
register struct proc *p;
void *v;
register_t *retval;
{
struct linux_sys_kill_args /* {
syscallarg(int) pid;
syscallarg(int) signum;
} */ *uap = v;
struct sys_kill_args ka;
SCARG(&ka, pid) = SCARG(uap, pid);
if (SCARG(uap, signum) < 0 || SCARG(uap, signum) >= LINUX__NSIG)
return (EINVAL);
SCARG(&ka, signum) = linux_to_bsd_sig[SCARG(uap, signum)];
return (sys_kill(p, &ka, retval));
}
|