Unleashed v1.4
[unleashed.git] / kernel / syscall / sigqueue.c
blobdaa3ed82568eb37a9b4bac7058b3125d22264bac
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
29 #include <sys/param.h>
30 #include <sys/types.h>
31 #include <sys/sysmacros.h>
32 #include <sys/systm.h>
33 #include <sys/errno.h>
34 #include <sys/proc.h>
35 #include <sys/procset.h>
36 #include <sys/fault.h>
37 #include <sys/signal.h>
38 #include <sys/siginfo.h>
39 #include <sys/debug.h>
41 extern rctl_hndl_t rc_process_sigqueue;
43 static int
44 sigqkill(pid_t pid, sigsend_t *sigsend)
46 proc_t *p;
47 int error;
49 if ((uint_t)sigsend->sig >= NSIG)
50 return (EINVAL);
52 if (pid == -1) {
53 procset_t set;
55 setprocset(&set, POP_AND, P_ALL, P_MYID, P_ALL, P_MYID);
56 error = sigsendset(&set, sigsend);
57 } else if (pid > 0) {
58 mutex_enter(&pidlock);
59 if ((p = prfind(pid)) == NULL || p->p_stat == SIDL)
60 error = ESRCH;
61 else {
62 error = sigsendproc(p, sigsend);
63 if (error == 0 && sigsend->perm == 0)
64 error = EPERM;
66 mutex_exit(&pidlock);
67 } else {
68 int nfound = 0;
69 pid_t pgid;
71 if (pid == 0)
72 pgid = ttoproc(curthread)->p_pgrp;
73 else
74 pgid = -pid;
76 error = 0;
77 mutex_enter(&pidlock);
78 for (p = pgfind(pgid); p && !error; p = p->p_pglink) {
79 if (p->p_stat != SIDL) {
80 nfound++;
81 error = sigsendproc(p, sigsend);
84 mutex_exit(&pidlock);
85 if (nfound == 0)
86 error = ESRCH;
87 else if (error == 0 && sigsend->perm == 0)
88 error = EPERM;
91 return (error);
96 * for implementations that don't require binary compatibility,
97 * the kill system call may be made into a library call to the
98 * sigsend system call
101 kill(pid_t pid, int sig)
103 int error;
104 sigsend_t v;
106 bzero(&v, sizeof (v));
107 v.sig = sig;
108 v.checkperm = 1;
109 v.sicode = SI_USER;
110 if ((error = sigqkill(pid, &v)) != 0)
111 return (set_errno(error));
112 return (0);
116 * The handling of small unions, like the sigval argument to sigqueue,
117 * is architecture dependent. We have adopted the convention that the
118 * value itself is passed in the storage which crosses the kernel
119 * protection boundary. This procedure will accept a scalar argument,
120 * and store it in the appropriate value member of the sigsend_t structure.
123 sigqueue(pid_t pid, int sig, /* union sigval */ void *value,
124 int si_code, int block)
126 int error;
127 sigsend_t v;
128 sigqhdr_t *sqh;
129 proc_t *p = curproc;
131 /* The si_code value must indicate the signal will be queued */
132 if (pid <= 0 || !sigwillqueue(sig, si_code))
133 return (set_errno(EINVAL));
135 if ((sqh = p->p_sigqhdr) == NULL) {
136 rlim_t sigqsz_max;
138 mutex_enter(&p->p_lock);
139 sigqsz_max = rctl_enforced_value(rc_process_sigqueue,
140 p->p_rctls, p);
141 mutex_exit(&p->p_lock);
143 /* Allocate sigqueue pool first time */
144 sqh = sigqhdralloc(sizeof (sigqueue_t), (uint_t)sigqsz_max);
145 mutex_enter(&p->p_lock);
146 if (p->p_sigqhdr == NULL) {
147 /* hang the pool head on proc */
148 p->p_sigqhdr = sqh;
149 } else {
150 /* another lwp allocated the pool, free ours */
151 sigqhdrfree(sqh);
152 sqh = p->p_sigqhdr;
154 mutex_exit(&p->p_lock);
157 do {
158 bzero(&v, sizeof (v));
159 v.sig = sig;
160 v.checkperm = 1;
161 v.sicode = si_code;
162 v.value.sival_ptr = value;
163 if ((error = sigqkill(pid, &v)) != EAGAIN || !block)
164 break;
165 /* block waiting for another chance to allocate a sigqueue_t */
166 mutex_enter(&sqh->sqb_lock);
167 while (sqh->sqb_count == 0) {
168 if (!cv_wait_sig(&sqh->sqb_cv, &sqh->sqb_lock)) {
169 error = EINTR;
170 break;
173 mutex_exit(&sqh->sqb_lock);
174 } while (error == EAGAIN);
176 if (error)
177 return (set_errno(error));
178 return (0);
181 #ifdef _SYSCALL32_IMPL
183 * sigqueue32 - System call entry point for 32-bit callers on LP64 kernel,
184 * needed to handle the 32-bit sigvals as correctly as we can. We always
185 * assume that a 32-bit caller is passing an int. A 64-bit recipient
186 * that expects an int will therefore get it correctly. A 32-bit
187 * recipient will also get it correctly since siginfo_kto32() uses
188 * sival_int in the conversion. Since a 32-bit pointer has the same
189 * size and address in the sigval, it also converts correctly so that
190 * two 32-bit apps can exchange a pointer value. However, this means
191 * that a pointer sent by a 32-bit caller will be seen in the upper half
192 * by a 64-bit recipient, and only the upper half of a 64-bit pointer will
193 * be seen by a 32-bit recipient. This is the best solution that does
194 * not require severe hacking of the sigval union. Anyways, what it
195 * means to be sending pointers between processes with dissimilar
196 * models is unclear.
199 sigqueue32(pid_t pid, int sig, /* union sigval32 */ caddr32_t value,
200 int si_code, int block)
202 union sigval sv;
204 bzero(&sv, sizeof (sv));
205 sv.sival_int = (int)value;
206 return (sigqueue(pid, sig, sv.sival_ptr, si_code, block));
208 #endif