xref: /dragonfly/usr.bin/ipcrm/ipcrm.c (revision a444603f)
1 /*
2  * Copyright (c) 1994 Adam Glass
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by Adam Glass.
16  * 4. The name of the Author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL Adam Glass BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  * $FreeBSD: src/usr.bin/ipcrm/ipcrm.c,v 1.6 1999/08/28 01:02:14 peter Exp $
32  */
33 
34 #include <ctype.h>
35 #include <err.h>
36 #include <signal.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <unistd.h>
40 #include <sys/types.h>
41 #include <sys/ipc.h>
42 #include <sys/msg.h>
43 #include <sys/sem.h>
44 #include <sys/shm.h>
45 
46 #define IPC_TO_STR(x) (x == 'Q' ? "msq" : (x == 'M' ? "shm" : "sem"))
47 #define IPC_TO_STRING(x) (x == 'Q' ? "message queue" : \
48 	(x == 'M' ? "shared memory segment" : "semaphore"))
49 
50 volatile sig_atomic_t  signaled;
51 
52 static void	usage(void) __dead2;
53 static int	msgrm(key_t, int);
54 static int	shmrm(key_t, int);
55 static int	semrm(key_t, int);
56 static void	not_configured(int);
57 
58 static void
59 usage(void)
60 {
61 	fprintf(stderr, "%s\n%s\n",
62 		"usage: ipcrm [-q msqid] [-m shmid] [-s semid]",
63 		"             [-Q msgkey] [-M shmkey] [-S semkey] ...");
64 	exit(1);
65 }
66 
67 static int
68 msgrm(key_t key, int id)
69 {
70     if (key) {
71 	id = msgget(key, 0);
72 	if (id == -1)
73 	    return -1;
74     }
75     return msgctl(id, IPC_RMID, NULL);
76 }
77 
78 static int
79 shmrm(key_t key, int id)
80 {
81     if (key) {
82 	id = shmget(key, 0, 0);
83 	if (id == -1)
84 	    return -1;
85     }
86     return shmctl(id, IPC_RMID, NULL);
87 }
88 
89 static int
90 semrm(key_t key, int id)
91 {
92     if (key) {
93 	id = semget(key, 0, 0);
94 	if (id == -1)
95 	    return -1;
96     }
97     return semctl(id, 0, IPC_RMID);
98 }
99 
100 static void
101 not_configured(int signo __unused)
102 {
103     signaled++;
104 }
105 
106 int
107 main(int argc, char **argv)
108 {
109     int c, result, errflg, target_id;
110     key_t target_key;
111 
112     errflg = 0;
113     signal(SIGSYS, not_configured);
114     while ((c = getopt(argc, argv, ":q:m:s:Q:M:S:")) != -1) {
115 
116 	signaled = 0;
117 	switch (c) {
118 	case 'q':
119 	case 'm':
120 	case 's':
121 	    target_id = atoi(optarg);
122 	    if (c == 'q')
123 		result = msgrm(0, target_id);
124 	    else if (c == 'm')
125 		result = shmrm(0, target_id);
126 	    else
127 		result = semrm(0, target_id);
128 	    if (result < 0) {
129 		errflg++;
130 		if (!signaled)
131 		    warn("%sid(%d)", IPC_TO_STR(toupper(c)), target_id);
132 		else
133 		    warnx("%ss are not configured in the running kernel",
134 			  IPC_TO_STRING(toupper(c)));
135 	    }
136 	    break;
137 	case 'Q':
138 	case 'M':
139 	case 'S':
140 	    target_key = atol(optarg);
141 	    if (target_key == IPC_PRIVATE) {
142 		warnx("can't remove private %ss", IPC_TO_STRING(c));
143 		continue;
144 	    }
145 	    if (c == 'Q')
146 		result = msgrm(target_key, 0);
147 	    else if (c == 'M')
148 		result = shmrm(target_key, 0);
149 	    else
150 		result = semrm(target_key, 0);
151 	    if (result < 0) {
152 		errflg++;
153 		if (!signaled)
154 		    warn("%s key %ld aborted", IPC_TO_STR(c), target_key);
155 		else
156 		    warnx("%ss are not configured in the running kernel",
157 			  IPC_TO_STRING(c));
158 	    }
159 	    break;
160 	case ':':
161 	    warnx("option -%c requires an argument\n", optopt);
162 	    usage();
163 	case '?':
164 	    warnx("unrecognized option: -%c\n", optopt);
165 	    usage();
166 	}
167     }
168 
169     if (optind != argc) {
170 	    warnx("unknown argument: %s\n", argv[optind]);
171 	    usage();
172     }
173     exit(errflg);
174 }
175 
176