2 * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
7 * NASA Ames Research Center.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the NetBSD
20 * Foundation, Inc. and its contributors.
21 * 4. Neither the name of The NetBSD Foundation nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
37 * Obtained from: $NetBSD: semtest.c,v 1.4 2002/07/20 08:36:25 grant Exp $
38 * $DragonFly: src/tools/regression/sysvsem/semtest.c,v 1.1 2003/10/18 12:13:01 hmp Exp $
42 * Test the SVID-compatible Semaphore facility.
45 #include <sys/param.h>
59 int main (int, char *[]);
60 void print_semid_ds (struct semid_ds
*, mode_t
);
61 void sigsys_handler (int);
62 void sigchld_handler(int);
67 int sender_semid
= -1;
70 int signal_was_sigchld
;
75 * This is the original semun union used by the sysvsem utility.
76 * It is deliberately kept here under #if 0'ed condition for future
77 * reference. PLEASE DO NOT REMOVE. The {SET,GET}ALL in DragonFly
78 * are signed values, so the default version in sys/sem.h suffices.
82 int val
; /* value for SETVAL */
83 struct semid_ds
*buf
; /* buffer for IPC_{STAT,SET} */
84 u_short
*array
; /* array for GETALL & SETALL */
89 main(int argc
, char *argv
[])
101 * Install a SIGSYS handler so that we can exit gracefully if
102 * System V Semaphore support isn't in the kernel.
104 sa
.sa_handler
= sigsys_handler
;
105 sigemptyset(&sa
.sa_mask
);
107 if (sigaction(SIGSYS
, &sa
, NULL
) == -1)
108 err(1, "sigaction SIGSYS");
111 * Install and SIGCHLD handler to deal with all possible exit
112 * conditions of the receiver.
114 sa
.sa_handler
= sigchld_handler
;
115 sigemptyset(&sa
.sa_mask
);
117 if (sigaction(SIGCHLD
, &sa
, NULL
) == -1)
118 err(1, "sigaction SIGCHLD");
120 semkey
= ftok(argv
[1], 4160);
123 * Initialize child_pid to ourselves to that the cleanup function
124 * works before we create the receiver.
126 child_pid
= getpid();
129 * Make sure that when the sender exits, the message queue is
132 if (atexit(cleanup
) == -1)
135 if ((sender_semid
= semget(semkey
, 1, IPC_CREAT
| 0640)) == -1)
140 if (semctl(sender_semid
, 0, IPC_STAT
, sun
) == -1)
141 err(1, "semctl IPC_STAT");
143 print_semid_ds(&s_ds
, 0640);
145 s_ds
.sem_perm
.mode
= (s_ds
.sem_perm
.mode
& ~0777) | 0600;
148 if (semctl(sender_semid
, 0, IPC_SET
, sun
) == -1)
149 err(1, "semctl IPC_SET");
151 memset(&s_ds
, 0, sizeof(s_ds
));
154 if (semctl(sender_semid
, 0, IPC_STAT
, sun
) == -1)
155 err(1, "semctl IPC_STAT");
157 if ((s_ds
.sem_perm
.mode
& 0777) != 0600)
158 err(1, "IPC_SET of mode didn't hold");
160 print_semid_ds(&s_ds
, 0600);
162 for (child_count
= 0; child_count
< 5; child_count
++) {
163 switch ((child_pid
= fork())) {
178 * Wait for all of the waiters to be attempting to acquire the
182 i
= semctl(sender_semid
, 0, GETNCNT
);
184 err(1, "semctl GETNCNT");
190 * Now set the thundering herd in motion by initializing the
191 * semaphore to the value 1.
194 if (semctl(sender_semid
, 0, SETVAL
, sun
) == -1)
195 err(1, "sender: semctl SETVAL to 1");
198 * Suspend forever; when we get SIGCHLD, the handler will exit.
200 sigemptyset(&sigmask
);
202 (void) sigsuspend(&sigmask
);
203 if (signal_was_sigchld
)
204 signal_was_sigchld
= 0;
210 * ...and any other signal is an unexpected error.
212 errx(1, "sender: received unexpected signal");
216 sigsys_handler(int signo
)
219 errx(1, "System V Semaphore support is not present in the kernel");
223 sigchld_handler(int signo
)
226 struct semid_ds s_ds
;
230 * Reap the child; if it exited successfully, then we're on the
233 if (wait(&cstatus
) == -1)
236 if (WIFEXITED(cstatus
) == 0)
237 errx(1, "receiver exited abnormally");
239 if (WEXITSTATUS(cstatus
) != 0)
240 errx(1, "receiver exited with status %d",
241 WEXITSTATUS(cstatus
));
244 * If we get here, the child has exited normally, and we should
245 * decrement the child count. If the child_count reaches 0, we
250 if (semctl(sender_semid
, 0, IPC_STAT
, sun
) == -1)
251 err(1, "semctl IPC_STAT");
253 print_semid_ds(&s_ds
, 0600);
255 if (--child_count
!= 0) {
256 signal_was_sigchld
= 1;
268 * If we're the sender, and it exists, remove the message queue.
270 if (child_pid
!= 0 && sender_semid
!= -1) {
271 if (semctl(sender_semid
, 0, IPC_RMID
) == -1)
272 warn("semctl IPC_RMID");
277 print_semid_ds(struct semid_ds
*sp
, mode_t mode
)
279 uid_t uid
= geteuid();
280 gid_t gid
= getegid();
282 printf("PERM: uid %d, gid %d, cuid %d, cgid %d, mode 0%o\n",
283 sp
->sem_perm
.uid
, sp
->sem_perm
.gid
,
284 sp
->sem_perm
.cuid
, sp
->sem_perm
.cgid
,
285 sp
->sem_perm
.mode
& 0777);
287 printf("nsems %u\n", sp
->sem_nsems
);
289 printf("otime: %s", ctime(&sp
->sem_otime
));
290 printf("ctime: %s", ctime(&sp
->sem_ctime
));
293 * Sanity check a few things.
296 if (sp
->sem_perm
.uid
!= uid
|| sp
->sem_perm
.cuid
!= uid
)
297 errx(1, "uid mismatch");
299 if (sp
->sem_perm
.gid
!= gid
|| sp
->sem_perm
.cgid
!= gid
)
300 errx(1, "gid mismatch");
302 if ((sp
->sem_perm
.mode
& 0777) != mode
)
303 errx(1, "mode mismatch %o != %o",
304 (sp
->sem_perm
.mode
& 0777), mode
);
311 fprintf(stderr
, "usage: %s keypath\n", getprogname());
321 if ((semid
= semget(semkey
, 1, 0)) == -1)
322 err(1, "waiter: semget");
325 * Attempt to acquire the semaphore.
329 s
.sem_flg
= SEM_UNDO
;
331 if (semop(semid
, &s
, 1) == -1)
332 err(1, "waiter: semop -1");
334 printf("WOO! GOT THE SEMAPHORE!\n");
338 * Release the semaphore and exit.
342 s
.sem_flg
= SEM_UNDO
;
344 if (semop(semid
, &s
, 1) == -1)
345 err(1, "waiter: semop +1");