blob: 60c10956bcfb283b81a6ebe93169d45c61b1bce4 [file] [log] [blame]
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00001/* vi: set sw=4 ts=4: */
Rob Landleyaa872762005-10-28 13:05:12 +00002/*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003 * tiny fuser implementation
4 *
Rob Landleyaa872762005-10-28 13:05:12 +00005 * Copyright 2004 Tony J. White
6 *
7 * May be distributed under the conditions of the
8 * GNU Library General Public License
9 */
10
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000011#include "libbb.h"
Rob Landleyaa872762005-10-28 13:05:12 +000012
13#define FUSER_PROC_DIR "/proc"
14#define FUSER_MAX_LINE 255
15
16#define FUSER_OPT_MOUNT 1
17#define FUSER_OPT_KILL 2
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000018#define FUSER_OPT_SILENT 4
19#define FUSER_OPT_IP6 8
20#define FUSER_OPT_IP4 16
Rob Landleyaa872762005-10-28 13:05:12 +000021
22typedef struct inode_list {
23 ino_t inode;
24 dev_t dev;
25 struct inode_list *next;
26} inode_list;
27
28typedef struct pid_list {
29 pid_t pid;
30 struct pid_list *next;
31} pid_list;
32
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000033static int fuser_option(char *option)
Rob Landleyaa872762005-10-28 13:05:12 +000034{
35 int opt = 0;
36
Denis Vlasenko50f7f442007-04-11 23:20:53 +000037 if (!option[0])
38 return 0;
39 if (option[0] != '-')
40 return 0;
Paul Foxf9d40d62006-01-20 21:48:06 +000041 ++option;
Denis Vlasenko50f7f442007-04-11 23:20:53 +000042 while (*option != '\0') {
43 if (*option == 'm') opt |= FUSER_OPT_MOUNT;
44 else if (*option == 'k') opt |= FUSER_OPT_KILL;
45 else if (*option == 's') opt |= FUSER_OPT_SILENT;
46 else if (*option == '6') opt |= FUSER_OPT_IP6;
47 else if (*option == '4') opt |= FUSER_OPT_IP4;
48 else
49 bb_error_msg_and_die("unsupported option '%c'", *option);
Paul Foxf9d40d62006-01-20 21:48:06 +000050 ++option;
Rob Landleyaa872762005-10-28 13:05:12 +000051 }
52 return opt;
53}
54
55static int fuser_file_to_dev_inode(const char *filename,
56 dev_t *dev, ino_t *inode)
57{
58 struct stat f_stat;
Denis Vlasenko50f7f442007-04-11 23:20:53 +000059 if ((stat(filename, &f_stat)) < 0)
60 return 0;
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +000061 *inode = f_stat.st_ino;
62 *dev = f_stat.st_dev;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000063 return 1;
Rob Landleyaa872762005-10-28 13:05:12 +000064}
65
Rob Landley31642d72006-03-14 21:45:38 +000066static int fuser_find_socket_dev(dev_t *dev)
67{
Rob Landleyaa872762005-10-28 13:05:12 +000068 int fd = socket(PF_INET, SOCK_DGRAM,0);
69 struct stat buf;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000070
Rob Landleyaa872762005-10-28 13:05:12 +000071 if (fd >= 0 && (fstat(fd, &buf)) == 0) {
Denis Vlasenko50f7f442007-04-11 23:20:53 +000072 *dev = buf.st_dev;
Rob Landleyaa872762005-10-28 13:05:12 +000073 close(fd);
74 return 1;
75 }
76 return 0;
77}
78
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000079static int fuser_parse_net_arg(const char *filename,
80 const char **proto, int *port)
Rob Landleyaa872762005-10-28 13:05:12 +000081{
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +000082 char path[sizeof(FUSER_PROC_DIR)+12], tproto[5];
Rob Landleyaa872762005-10-28 13:05:12 +000083
Denis Vlasenko50f7f442007-04-11 23:20:53 +000084 if ((sscanf(filename, "%d/%4s", port, tproto)) != 2)
85 return 0;
86 sprintf(path, FUSER_PROC_DIR "/net/%s", tproto);
87 if ((access(path, R_OK)) != 0)
88 return 0;
Rob Landley86b4d642006-08-03 17:58:17 +000089 *proto = xstrdup(tproto);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090 return 1;
Rob Landleyaa872762005-10-28 13:05:12 +000091}
92
93static int fuser_add_pid(pid_list *plist, pid_t pid)
94{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000095 pid_list *curr = NULL, *last = NULL;
96
Denis Vlasenko50f7f442007-04-11 23:20:53 +000097 if (plist->pid == 0)
98 plist->pid = pid;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000099 curr = plist;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000100 while (curr != NULL) {
101 if (curr->pid == pid)
102 return 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000103 last = curr;
104 curr = curr->next;
105 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000106 curr = xzalloc(sizeof(pid_list));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000107 last->next = curr;
108 curr->pid = pid;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000109 /*curr->next = NULL;*/
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000110 return 1;
Rob Landleyaa872762005-10-28 13:05:12 +0000111}
112
113static int fuser_add_inode(inode_list *ilist, dev_t dev, ino_t inode)
114{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000115 inode_list *curr = NULL, *last = NULL;
116
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000117 if (!ilist->inode && !ilist->dev) {
Rob Landleyaa872762005-10-28 13:05:12 +0000118 ilist->dev = dev;
119 ilist->inode = inode;
120 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000121 curr = ilist;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000122 while (curr != NULL) {
123 if (curr->inode == inode && curr->dev == dev)
124 return 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000125 last = curr;
126 curr = curr->next;
127 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000128 curr = xzalloc(sizeof(inode_list));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000129 last->next = curr;
130 curr->dev = dev;
131 curr->inode = inode;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000132 /*curr->next = NULL;*/
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000133 return 1;
Rob Landleyaa872762005-10-28 13:05:12 +0000134}
135
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000136static int fuser_scan_proc_net(int opts, const char *proto,
137 int port, inode_list *ilist)
Rob Landleyaa872762005-10-28 13:05:12 +0000138{
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +0000139 char path[sizeof(FUSER_PROC_DIR)+12], line[FUSER_MAX_LINE+1];
Rob Landleyaa872762005-10-28 13:05:12 +0000140 char addr[128];
141 ino_t tmp_inode;
142 dev_t tmp_dev;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000143 long long uint64_inode;
Rob Landleyaa872762005-10-28 13:05:12 +0000144 int tmp_port;
145 FILE *f;
146
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000147 if (!fuser_find_socket_dev(&tmp_dev))
148 tmp_dev = 0;
149 sprintf(path, FUSER_PROC_DIR "/net/%s", proto);
Rob Landleyaa872762005-10-28 13:05:12 +0000150
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000151 f = fopen(path, "r");
152 if (!f)
153 return 0;
154 while (fgets(line, FUSER_MAX_LINE, f)) {
155 if (sscanf(line, "%*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x "
156 "%*x:%*x %*x %*d %*d %llu",
157 addr, &tmp_port, &uint64_inode) == 3
158 ) {
159 if (strlen(addr) == 8 && (opts & FUSER_OPT_IP6))
160 continue;
161 if (strlen(addr) > 8 && (opts & FUSER_OPT_IP4))
162 continue;
163 if (tmp_port == port) {
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +0000164 tmp_inode = uint64_inode;
Rob Landleyaa872762005-10-28 13:05:12 +0000165 fuser_add_inode(ilist, tmp_dev, tmp_inode);
166 }
167 }
Rob Landleyaa872762005-10-28 13:05:12 +0000168 }
169 fclose(f);
170 return 1;
171}
172
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000173static int fuser_search_dev_inode(int opts, inode_list *ilist,
174 dev_t dev, ino_t inode)
Rob Landleyaa872762005-10-28 13:05:12 +0000175{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000176 inode_list *curr;
177 curr = ilist;
Rob Landleyaa872762005-10-28 13:05:12 +0000178
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000179 while (curr) {
180 if ((opts & FUSER_OPT_MOUNT) && curr->dev == dev)
Rob Landleyaa872762005-10-28 13:05:12 +0000181 return 1;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000182 if (curr->inode == inode && curr->dev == dev)
Rob Landleyaa872762005-10-28 13:05:12 +0000183 return 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000184 curr = curr->next;
185 }
186 return 0;
Rob Landleyaa872762005-10-28 13:05:12 +0000187}
188
189static int fuser_scan_pid_maps(int opts, const char *fname, pid_t pid,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000190 inode_list *ilist, pid_list *plist)
Rob Landleyaa872762005-10-28 13:05:12 +0000191{
192 FILE *file;
193 char line[FUSER_MAX_LINE + 1];
194 int major, minor;
195 ino_t inode;
Eric Andersena68ea1c2006-01-30 22:48:39 +0000196 long long uint64_inode;
Rob Landleyaa872762005-10-28 13:05:12 +0000197 dev_t dev;
198
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000199 file = fopen(fname, "r");
200 if (!file)
201 return 0;
Rob Landleyaa872762005-10-28 13:05:12 +0000202 while (fgets(line, FUSER_MAX_LINE, file)) {
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000203 if (sscanf(line, "%*s %*s %*s %x:%x %llu", &major, &minor, &uint64_inode) != 3)
204 continue;
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +0000205 inode = uint64_inode;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000206 if (major == 0 && minor == 0 && inode == 0)
207 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000208 dev = makedev(major, minor);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000209 if (fuser_search_dev_inode(opts, ilist, dev, inode)) {
Rob Landleyaa872762005-10-28 13:05:12 +0000210 fuser_add_pid(plist, pid);
211 }
Rob Landleyaa872762005-10-28 13:05:12 +0000212 }
213 fclose(file);
214 return 1;
215}
216
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000217static int fuser_scan_link(int opts, const char *lname, pid_t pid,
218 inode_list *ilist, pid_list *plist)
Rob Landleyaa872762005-10-28 13:05:12 +0000219{
220 ino_t inode;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000221 dev_t dev;
Rob Landleyaa872762005-10-28 13:05:12 +0000222
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000223 if (!fuser_file_to_dev_inode(lname, &dev, &inode))
224 return 0;
225 if (fuser_search_dev_inode(opts, ilist, dev, inode))
Rob Landleyaa872762005-10-28 13:05:12 +0000226 fuser_add_pid(plist, pid);
227 return 1;
228}
229
230static int fuser_scan_dir_links(int opts, const char *dname, pid_t pid,
231 inode_list *ilist, pid_list *plist)
232{
233 DIR *d;
234 struct dirent *de;
235 char *lname;
236
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000237 d = opendir(dname);
238 if (!d)
239 return 0;
240 while ((de = readdir(d)) != NULL) {
241 lname = concat_subpath_file(dname, de->d_name);
242 if (lname == NULL)
243 continue;
244 fuser_scan_link(opts, lname, pid, ilist, plist);
245 free(lname);
Rob Landleyaa872762005-10-28 13:05:12 +0000246 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000247 closedir(d);
Rob Landleyaa872762005-10-28 13:05:12 +0000248 return 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000249}
Rob Landleyaa872762005-10-28 13:05:12 +0000250
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000251static int fuser_scan_proc_pids(int opts, inode_list *ilist, pid_list *plist)
Rob Landleyaa872762005-10-28 13:05:12 +0000252{
253 DIR *d;
254 struct dirent *de;
255 pid_t pid;
256 char *dname;
257
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000258 d = opendir(FUSER_PROC_DIR);
259 if (!d)
260 return 0;
261 while ((de = readdir(d)) != NULL) {
Rob Landleyaa872762005-10-28 13:05:12 +0000262 pid = (pid_t)atoi(de->d_name);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000263 if (!pid)
264 continue;
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +0000265 dname = concat_subpath_file(FUSER_PROC_DIR, de->d_name);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000266 if (chdir(dname) < 0) {
Rob Landleyaa872762005-10-28 13:05:12 +0000267 free(dname);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000268 continue;
Rob Landleyaa872762005-10-28 13:05:12 +0000269 }
270 free(dname);
271 fuser_scan_link(opts, "cwd", pid, ilist, plist);
272 fuser_scan_link(opts, "exe", pid, ilist, plist);
273 fuser_scan_link(opts, "root", pid, ilist, plist);
274 fuser_scan_dir_links(opts, "fd", pid, ilist, plist);
275 fuser_scan_dir_links(opts, "lib", pid, ilist, plist);
276 fuser_scan_dir_links(opts, "mmap", pid, ilist, plist);
277 fuser_scan_pid_maps(opts, "maps", pid, ilist, plist);
"Vladimir N. Oleynik"7eb8e452005-10-28 16:08:47 +0000278 chdir("..");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000279 }
280 closedir(d);
Rob Landleyaa872762005-10-28 13:05:12 +0000281 return 1;
282}
283
Rob Landley31642d72006-03-14 21:45:38 +0000284static int fuser_print_pid_list(pid_list *plist)
285{
Paul Foxf9d40d62006-01-20 21:48:06 +0000286 pid_list *curr = plist;
Rob Landleyaa872762005-10-28 13:05:12 +0000287
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000288 if (plist == NULL)
289 return 0;
290 while (curr != NULL) {
291 if (curr->pid > 0)
292 printf("%d ", curr->pid);
Rob Landleyaa872762005-10-28 13:05:12 +0000293 curr = curr->next;
294 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000295 bb_putchar('\n');
Rob Landleyaa872762005-10-28 13:05:12 +0000296 return 1;
297}
298
Rob Landley31642d72006-03-14 21:45:38 +0000299static int fuser_kill_pid_list(pid_list *plist, int sig)
300{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000301 pid_list *curr = plist;
Rob Landleyaa872762005-10-28 13:05:12 +0000302 pid_t mypid = getpid();
303 int success = 1;
304
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000305 if (plist == NULL)
306 return 0;
307 while (curr != NULL) {
308 if (curr->pid > 0 && curr->pid != mypid) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309 if (kill(curr->pid, sig) != 0) {
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000310 bb_perror_msg("kill pid '%d'", curr->pid);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000311 success = 0;
Rob Landleyaa872762005-10-28 13:05:12 +0000312 }
313 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000314 curr = curr->next;
315 }
316 return success;
Rob Landleyaa872762005-10-28 13:05:12 +0000317}
318
Denis Vlasenko06af2162007-02-03 17:28:39 +0000319int fuser_main(int argc, char **argv);
Rob Landley31642d72006-03-14 21:45:38 +0000320int fuser_main(int argc, char **argv)
321{
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000322 /*static -- huh???*/ int opt = 0; /* FUSER_OPT_ */
323
Rob Landleyaa872762005-10-28 13:05:12 +0000324 int port, i, optn;
325 int* fni; /* file name indexes of argv */
326 int fnic = 0; /* file name index count */
327 const char *proto;
Rob Landleyaa872762005-10-28 13:05:12 +0000328 dev_t dev;
329 ino_t inode;
330 pid_list *pids;
331 inode_list *inodes;
332 int killsig = SIGTERM;
333 int success = 1;
334
Mike Frysinger70cbb6e2006-04-21 22:04:05 +0000335 if (argc < 2)
336 bb_show_usage();
337
Rob Landleyaa872762005-10-28 13:05:12 +0000338 fni = xmalloc(sizeof(int));
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000339 for (i = 1; i < argc; i++) {
Rob Landleyaa872762005-10-28 13:05:12 +0000340 optn = fuser_option(argv[i]);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000341 if (optn)
342 opt |= optn;
343 else if (argv[i][0] == '-') {
Denis Vlasenko2a813e22006-12-23 01:06:21 +0000344 killsig = get_signum(argv[i]+1);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000345 if (killsig < 0)
Rob Landleyaa872762005-10-28 13:05:12 +0000346 killsig = SIGTERM;
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000347 } else {
Rob Landleyaa872762005-10-28 13:05:12 +0000348 fni = xrealloc(fni, sizeof(int) * (fnic+2));
349 fni[fnic++] = i;
350 }
351 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000352
353 if (!fnic)
354 return 1;
Rob Landleyaa872762005-10-28 13:05:12 +0000355
Rob Landleyaa872762005-10-28 13:05:12 +0000356 inodes = xmalloc(sizeof(inode_list));
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000357 for (i = 0; i < fnic; i++) {
358 if (fuser_parse_net_arg(argv[fni[i]], &proto, &port)) {
Rob Landleyaa872762005-10-28 13:05:12 +0000359 fuser_scan_proc_net(opt, proto, port, inodes);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000360 } else {
361 if (!fuser_file_to_dev_inode(argv[fni[i]], &dev, &inode)) {
362 if (ENABLE_FEATURE_CLEAN_UP)
363 free(inodes);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000364 bb_perror_msg_and_die("cannot open '%s'", argv[fni[i]]);
Rob Landleyaa872762005-10-28 13:05:12 +0000365 }
366 fuser_add_inode(inodes, dev, inode);
367 }
368 }
Rob Landleyc9c1a412006-07-12 19:17:55 +0000369 pids = xmalloc(sizeof(pid_list));
Rob Landleyaa872762005-10-28 13:05:12 +0000370 success = fuser_scan_proc_pids(opt, inodes, pids);
371 /* if the first pid in the list is 0, none have been found */
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000372 if (pids->pid == 0)
373 success = 0;
374 if (success) {
375 if (opt & FUSER_OPT_KILL) {
Rob Landleyaa872762005-10-28 13:05:12 +0000376 success = fuser_kill_pid_list(pids, killsig);
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000377 } else if (!(opt & FUSER_OPT_SILENT)) {
Rob Landleyaa872762005-10-28 13:05:12 +0000378 success = fuser_print_pid_list(pids);
379 }
380 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000381 if (ENABLE_FEATURE_CLEAN_UP) {
382 free(pids);
383 free(inodes);
384 }
Rob Landleyaa872762005-10-28 13:05:12 +0000385 /* return 0 on (success == 1) 1 otherwise */
386 return (success != 1);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000387}