blob: 7a1a6a2e533442bb77e5e642206169a86c62d6a3 [file] [log] [blame]
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +00001/* vi: set sw=4 ts=4: */
2/*
3 * simple inotify daemon
4 * reports filesystem changes via userspace agent
5 *
6 * Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
7 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +00009 */
10
11/*
12 * Use as follows:
13 * # inotifyd /user/space/agent dir/or/file/being/watched[:mask] ...
14 *
15 * When a filesystem event matching the specified mask is occured on specified file (or directory)
16 * a userspace agent is spawned and given the following parameters:
17 * $1. actual event(s)
18 * $2. file (or directory) name
19 * $3. name of subfile (if any), in case of watching a directory
20 *
21 * E.g. inotifyd ./dev-watcher /dev:n
22 *
23 * ./dev-watcher can be, say:
24 * #!/bin/sh
25 * echo "We have new device in here! Hello, $3!"
26 *
27 * See below for mask names explanation.
28 */
29
Pere Orga5bc8c002011-04-11 03:29:49 +020030//usage:#define inotifyd_trivial_usage
31//usage: "PROG FILE1[:MASK]..."
32//usage:#define inotifyd_full_usage "\n\n"
33//usage: "Run PROG on filesystem changes."
34//usage: "\nWhen a filesystem event matching MASK occurs on FILEn,"
35//usage: "\nPROG ACTUAL_EVENTS FILEn [SUBFILE] is run."
Flemming Madsenecccbac2011-10-10 20:24:02 +020036//usage: "\nIf PROG is -, events are sent to stdout."
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage: "\nEvents:"
38//usage: "\n a File is accessed"
39//usage: "\n c File is modified"
40//usage: "\n e Metadata changed"
41//usage: "\n w Writable file is closed"
42//usage: "\n 0 Unwritable file is closed"
43//usage: "\n r File is opened"
44//usage: "\n D File is deleted"
45//usage: "\n M File is moved"
46//usage: "\n u Backing fs is unmounted"
47//usage: "\n o Event queue overflowed"
48//usage: "\n x File can't be watched anymore"
49//usage: "\nIf watching a directory:"
50//usage: "\n m Subfile is moved into dir"
51//usage: "\n y Subfile is moved out of dir"
52//usage: "\n n Subfile is created"
53//usage: "\n d Subfile is deleted"
54//usage: "\n"
55//usage: "\ninotifyd waits for PROG to exit."
56//usage: "\nWhen x event happens for all FILEs, inotifyd exits."
57
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000058#include "libbb.h"
Bernhard Reutner-Fischer01ea9712008-10-21 17:26:10 +000059#include <sys/inotify.h>
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000060
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000061static const char mask_names[] ALIGN1 =
62 "a" // 0x00000001 File was accessed
63 "c" // 0x00000002 File was modified
64 "e" // 0x00000004 Metadata changed
Denys Vlasenko5370bfb2009-09-06 02:58:59 +020065 "w" // 0x00000008 Writable file was closed
66 "0" // 0x00000010 Unwritable file closed
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000067 "r" // 0x00000020 File was opened
68 "m" // 0x00000040 File was moved from X
69 "y" // 0x00000080 File was moved to Y
70 "n" // 0x00000100 Subfile was created
71 "d" // 0x00000200 Subfile was deleted
72 "D" // 0x00000400 Self was deleted
73 "M" // 0x00000800 Self was moved
Denis Vlasenkoa09a42c2008-11-17 22:19:18 +000074 "\0" // 0x00001000 (unused)
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000075 // Kernel events, always reported:
Denis Vlasenkoa09a42c2008-11-17 22:19:18 +000076 "u" // 0x00002000 Backing fs was unmounted
77 "o" // 0x00004000 Event queued overflowed
78 "x" // 0x00008000 File is no longer watched (usually deleted)
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000079;
Denis Vlasenkoa09a42c2008-11-17 22:19:18 +000080enum {
81 MASK_BITS = sizeof(mask_names) - 1
82};
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000083
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000084int inotifyd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000085int inotifyd_main(int argc, char **argv)
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000086{
Denis Vlasenkob0e5d422008-11-14 21:34:13 +000087 int n;
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000088 unsigned mask;
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000089 struct pollfd pfd;
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000090 char **watches; // names of files being watched
91 const char *args[5];
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000092
93 // sanity check: agent and at least one watch must be given
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000094 if (!argv[1] || !argv[2])
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +000095 bb_show_usage();
96
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +000097 argv++;
98 // inotify_add_watch will number watched files
99 // starting from 1, thus watches[0] is unimportant,
100 // and 1st file name is watches[1].
101 watches = argv;
102 args[0] = *argv;
103 args[4] = NULL;
104 argc -= 2; // number of files we watch
105
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000106 // open inotify
107 pfd.fd = inotify_init();
108 if (pfd.fd < 0)
109 bb_perror_msg_and_die("no kernel support");
110
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000111 // setup watches
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000112 while (*++argv) {
113 char *path = *argv;
114 char *masks = strchr(path, ':');
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000115
116 mask = 0x0fff; // assuming we want all non-kernel events
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000117 // if mask is specified ->
118 if (masks) {
119 *masks = '\0'; // split path and mask
120 // convert mask names to mask bitset
121 mask = 0;
122 while (*++masks) {
Denis Vlasenkoa09a42c2008-11-17 22:19:18 +0000123 const char *found;
124 found = memchr(mask_names, *masks, MASK_BITS);
125 if (found)
126 mask |= (1 << (found - mask_names));
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000127 }
128 }
129 // add watch
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000130 n = inotify_add_watch(pfd.fd, path, mask);
131 if (n < 0)
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000132 bb_perror_msg_and_die("add watch (%s) failed", path);
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000133 //bb_error_msg("added %d [%s]:%4X", n, path, mask);
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000134 }
135
136 // setup signals
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000137 bb_signals(BB_FATAL_SIGS, record_signo);
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000138
139 // do watch
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000140 pfd.events = POLLIN;
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000141 while (1) {
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000142 int len;
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000143 void *buf;
144 struct inotify_event *ie;
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000145 again:
146 if (bb_got_signal)
147 break;
148 n = poll(&pfd, 1, -1);
Denis Vlasenko289ff0e2008-11-14 21:52:16 +0000149 // Signal interrupted us?
Denis Vlasenkob0e5d422008-11-14 21:34:13 +0000150 if (n < 0 && errno == EINTR)
151 goto again;
152 // Under Linux, above if() is not necessary.
153 // Non-fatal signals, e.g. SIGCHLD, when set to SIG_DFL,
154 // are not interrupting poll().
155 // Thus we can just break if n <= 0 (see below),
156 // because EINTR will happen only on SIGTERM et al.
157 // But this might be not true under other Unixes,
158 // and is generally way too subtle to depend on.
159 if (n <= 0) // strange error?
160 break;
161
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000162 // read out all pending events
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000163 // (NB: len must be int, not ssize_t or long!)
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000164 xioctl(pfd.fd, FIONREAD, &len);
165#define eventbuf bb_common_bufsiz1
166 ie = buf = (len <= sizeof(eventbuf)) ? eventbuf : xmalloc(len);
167 len = full_read(pfd.fd, buf, len);
168 // process events. N.B. events may vary in length
169 while (len > 0) {
170 int i;
Denis Vlasenkoa09a42c2008-11-17 22:19:18 +0000171 // cache relevant events mask
172 unsigned m = ie->mask & ((1 << MASK_BITS) - 1);
173 if (m) {
174 char events[MASK_BITS + 1];
175 char *s = events;
176 for (i = 0; i < MASK_BITS; ++i, m >>= 1) {
177 if ((m & 1) && (mask_names[i] != '\0'))
178 *s++ = mask_names[i];
179 }
180 *s = '\0';
Flemming Madsenecccbac2011-10-10 20:24:02 +0200181 if (LONE_CHAR(args[0], '-')) {
182 /* "inotifyd - FILE": built-in echo */
183 printf(ie->len ? "%s\t%s\t%s\n" : "%s\t%s\n", events,
184 watches[ie->wd],
185 ie->name);
186 fflush(stdout);
187 } else {
188// bb_error_msg("exec %s %08X\t%s\t%s\t%s", args[0],
189// ie->mask, events, watches[ie->wd], ie->len ? ie->name : "");
190 args[1] = events;
191 args[2] = watches[ie->wd];
192 args[3] = ie->len ? ie->name : NULL;
193 spawn_and_wait((char **)args);
194 }
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000195 // we are done if all files got final x event
Denis Vlasenkod723fb12008-11-29 09:07:24 +0000196 if (ie->mask & 0x8000) {
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000197 if (--argc <= 0)
198 goto done;
Denis Vlasenkod723fb12008-11-29 09:07:24 +0000199 inotify_rm_watch(pfd.fd, ie->wd);
200 }
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000201 }
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000202 // next event
203 i = sizeof(struct inotify_event) + ie->len;
204 len -= i;
205 ie = (void*)((char*)ie + i);
206 }
207 if (eventbuf != buf)
208 free(buf);
Denis Vlasenko9a4c0d52008-11-20 01:24:39 +0000209 } // while (1)
210 done:
211 return bb_got_signal;
Denis Vlasenko8e2c9e12008-05-24 20:47:18 +0000212}