blob: 9240e2c4b3929979ee4169d685f0b562eda8b258 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landley6eb1e412005-06-20 04:30:36 +00002/*
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +00003 * ipcrm.c - utility to allow removal of IPC objects and data structures.
Rob Landley6eb1e412005-06-20 04:30:36 +00004 *
5 * 01 Sept 2004 - Rodney Radford <rradford@mindspring.com>
6 * Adapted for busybox from util-linux-2.12a.
7 *
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Rob Landley6eb1e412005-06-20 04:30:36 +00009 */
10
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000011#include "busybox.h"
Rob Landley6eb1e412005-06-20 04:30:36 +000012
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000013/* X/OPEN tells us to use <sys/{types,ipc,sem}.h> for semctl() */
14/* X/OPEN tells us to use <sys/{types,ipc,msg}.h> for msgctl() */
Rob Landley6eb1e412005-06-20 04:30:36 +000015#include <sys/ipc.h>
16#include <sys/shm.h>
17#include <sys/msg.h>
18#include <sys/sem.h>
19
Rob Landley6eb1e412005-06-20 04:30:36 +000020#if defined (__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
21/* union semun is defined by including <sys/sem.h> */
22#else
23/* according to X/OPEN we have to define it ourselves */
24union semun {
25 int val;
26 struct semid_ds *buf;
27 unsigned short int *array;
28 struct seminfo *__buf;
29};
30#endif
31
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000032#ifndef CONFIG_IPCRM_DROP_LEGACY
33
Rob Landley6eb1e412005-06-20 04:30:36 +000034typedef enum type_id {
35 SHM,
36 SEM,
37 MSG
38} type_id;
39
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000040static int remove_ids(type_id type, int argc, char **argv)
41{
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +000042 unsigned long id;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000043 int ret = 0; /* silence gcc */
Rob Landley6eb1e412005-06-20 04:30:36 +000044 int nb_errors = 0;
45 union semun arg;
46
47 arg.val = 0;
48
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000049 while (argc) {
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +000050 id = bb_strtoul(argv[0], NULL, 10);
51 if (errno || id > INT_MAX) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000052 bb_error_msg("invalid id: %s", argv[0]);
53 nb_errors++;
Rob Landley6eb1e412005-06-20 04:30:36 +000054 } else {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000055 if (type == SEM)
56 ret = semctl(id, 0, IPC_RMID, arg);
57 else if (type == MSG)
58 ret = msgctl(id, IPC_RMID, NULL);
59 else if (type == SHM)
60 ret = shmctl(id, IPC_RMID, NULL);
Rob Landley6eb1e412005-06-20 04:30:36 +000061
62 if (ret) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000063 bb_perror_msg("cannot remove id %s", argv[0]);
64 nb_errors++;
Rob Landley6eb1e412005-06-20 04:30:36 +000065 }
66 }
67 argc--;
68 argv++;
69 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000070
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000071 return nb_errors;
Rob Landley6eb1e412005-06-20 04:30:36 +000072}
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000073#endif /* #ifndef CONFIG_IPCRM_DROP_LEGACY */
Rob Landley6eb1e412005-06-20 04:30:36 +000074
75
Denis Vlasenko06af2162007-02-03 17:28:39 +000076int ipcrm_main(int argc, char **argv);
Rob Landley6eb1e412005-06-20 04:30:36 +000077int ipcrm_main(int argc, char **argv)
78{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000079 int c;
80 int error = 0;
Rob Landley6eb1e412005-06-20 04:30:36 +000081
82 /* if the command is executed without parameters, do nothing */
83 if (argc == 1)
84 return 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000085#ifndef CONFIG_IPCRM_DROP_LEGACY
Rob Landley6eb1e412005-06-20 04:30:36 +000086 /* check to see if the command is being invoked in the old way if so
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000087 then run the old code. Valid commands are msg, shm, sem. */
88 {
89 type_id what = 0; /* silence gcc */
90 char w;
91
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +000092 w=argv[1][0];
93 if ( ((w == 'm' && argv[1][1] == 's' && argv[1][2] == 'g')
94 || (argv[1][0] == 's'
95 && ((w=argv[1][1]) == 'h' || w == 'e')
96 && argv[1][2] == 'm')
97 ) && argv[1][3] == '\0'
98 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000099
100 if (argc < 3)
101 bb_show_usage();
102
103 if (w == 'h')
104 what = SHM;
105 else if (w == 'm')
106 what = MSG;
107 else if (w == 'e')
108 what = SEM;
109
110 if (remove_ids(what, argc-2, &argv[2]))
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000111 fflush_stdout_and_exit(1);
112 printf("resource(s) deleted\n");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000113 return 0;
114 }
115 }
116#endif /* #ifndef CONFIG_IPCRM_DROP_LEGACY */
Rob Landley6eb1e412005-06-20 04:30:36 +0000117
118 /* process new syntax to conform with SYSV ipcrm */
119 while ((c = getopt(argc, argv, "q:m:s:Q:M:S:h?")) != -1) {
120 int result;
121 int id = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000122 int iskey = (isupper)(c);
Rob Landley6eb1e412005-06-20 04:30:36 +0000123
124 /* needed to delete semaphores */
125 union semun arg;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000126
Rob Landley6eb1e412005-06-20 04:30:36 +0000127 arg.val = 0;
128
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000129 if ((c == '?') || (c == 'h')) {
Rob Landley6eb1e412005-06-20 04:30:36 +0000130 bb_show_usage();
Rob Landley6eb1e412005-06-20 04:30:36 +0000131 }
132
133 /* we don't need case information any more */
134 c = tolower(c);
135
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000136 /* make sure the option is in range: allowed are q, m, s */
Rob Landley6eb1e412005-06-20 04:30:36 +0000137 if (c != 'q' && c != 'm' && c != 's') {
138 bb_show_usage();
Rob Landley6eb1e412005-06-20 04:30:36 +0000139 }
140
141 if (iskey) {
142 /* keys are in hex or decimal */
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000143 key_t key = xstrtoul(optarg, 0);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000144
Rob Landley6eb1e412005-06-20 04:30:36 +0000145 if (key == IPC_PRIVATE) {
146 error++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000147 bb_error_msg("illegal key (%s)", optarg);
Rob Landley6eb1e412005-06-20 04:30:36 +0000148 continue;
149 }
150
151 /* convert key to id */
152 id = ((c == 'q') ? msgget(key, 0) :
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000153 (c == 'm') ? shmget(key, 0, 0) : semget(key, 0, 0));
Rob Landley6eb1e412005-06-20 04:30:36 +0000154
155 if (id < 0) {
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000156 const char *errmsg;
157 const char *const what = "key";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000158
Rob Landley6eb1e412005-06-20 04:30:36 +0000159 error++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000160 switch (errno) {
Rob Landley6eb1e412005-06-20 04:30:36 +0000161 case EACCES:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000162 errmsg = "permission denied for";
Rob Landley6eb1e412005-06-20 04:30:36 +0000163 break;
164 case EIDRM:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000165 errmsg = "already removed";
Rob Landley6eb1e412005-06-20 04:30:36 +0000166 break;
167 case ENOENT:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000168 errmsg = "invalid";
Rob Landley6eb1e412005-06-20 04:30:36 +0000169 break;
170 default:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000171 errmsg = "unknown error in";
Rob Landley6eb1e412005-06-20 04:30:36 +0000172 break;
173 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000174 bb_error_msg("%s %s (%s)", errmsg, what, optarg);
Rob Landley6eb1e412005-06-20 04:30:36 +0000175 continue;
176 }
177 } else {
178 /* ids are in decimal */
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000179 id = xatoul(optarg);
Rob Landley6eb1e412005-06-20 04:30:36 +0000180 }
181
182 result = ((c == 'q') ? msgctl(id, IPC_RMID, NULL) :
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000183 (c == 'm') ? shmctl(id, IPC_RMID, NULL) :
184 semctl(id, 0, IPC_RMID, arg));
Rob Landley6eb1e412005-06-20 04:30:36 +0000185
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000186 if (result) {
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000187 const char *errmsg;
188 const char *const what = iskey ? "key" : "id";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000189
Rob Landley6eb1e412005-06-20 04:30:36 +0000190 error++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000191 switch (errno) {
Rob Landley6eb1e412005-06-20 04:30:36 +0000192 case EACCES:
193 case EPERM:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000194 errmsg = "permission denied for";
Rob Landley6eb1e412005-06-20 04:30:36 +0000195 break;
196 case EINVAL:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000197 errmsg = "invalid";
Rob Landley6eb1e412005-06-20 04:30:36 +0000198 break;
199 case EIDRM:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000200 errmsg = "already removed";
Rob Landley6eb1e412005-06-20 04:30:36 +0000201 break;
202 default:
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000203 errmsg = "unknown error in";
Rob Landley6eb1e412005-06-20 04:30:36 +0000204 break;
205 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000206 bb_error_msg("%s %s (%s)", errmsg, what, optarg);
Rob Landley6eb1e412005-06-20 04:30:36 +0000207 continue;
208 }
209 }
210
211 /* print usage if we still have some arguments left over */
212 if (optind != argc) {
213 bb_show_usage();
214 }
215
216 /* exit value reflects the number of errors encountered */
217 return error;
218}