dc: fix a case where we can run off malloced space
[platform/upstream/busybox.git] / miscutils / inotifyd.c
1 /* 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  *
8  * Licensed under GPLv2, see file LICENSE in this source tree.
9  */
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
30 //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."
36 //usage:     "\nEvents:"
37 //usage:     "\n        a       File is accessed"
38 //usage:     "\n        c       File is modified"
39 //usage:     "\n        e       Metadata changed"
40 //usage:     "\n        w       Writable file is closed"
41 //usage:     "\n        0       Unwritable file is closed"
42 //usage:     "\n        r       File is opened"
43 //usage:     "\n        D       File is deleted"
44 //usage:     "\n        M       File is moved"
45 //usage:     "\n        u       Backing fs is unmounted"
46 //usage:     "\n        o       Event queue overflowed"
47 //usage:     "\n        x       File can't be watched anymore"
48 //usage:     "\nIf watching a directory:"
49 //usage:     "\n        m       Subfile is moved into dir"
50 //usage:     "\n        y       Subfile is moved out of dir"
51 //usage:     "\n        n       Subfile is created"
52 //usage:     "\n        d       Subfile is deleted"
53 //usage:     "\n"
54 //usage:     "\ninotifyd waits for PROG to exit."
55 //usage:     "\nWhen x event happens for all FILEs, inotifyd exits."
56
57 #include "libbb.h"
58 #include <sys/inotify.h>
59
60 static const char mask_names[] ALIGN1 =
61         "a"     // 0x00000001   File was accessed
62         "c"     // 0x00000002   File was modified
63         "e"     // 0x00000004   Metadata changed
64         "w"     // 0x00000008   Writable file was closed
65         "0"     // 0x00000010   Unwritable file closed
66         "r"     // 0x00000020   File was opened
67         "m"     // 0x00000040   File was moved from X
68         "y"     // 0x00000080   File was moved to Y
69         "n"     // 0x00000100   Subfile was created
70         "d"     // 0x00000200   Subfile was deleted
71         "D"     // 0x00000400   Self was deleted
72         "M"     // 0x00000800   Self was moved
73         "\0"    // 0x00001000   (unused)
74         // Kernel events, always reported:
75         "u"     // 0x00002000   Backing fs was unmounted
76         "o"     // 0x00004000   Event queued overflowed
77         "x"     // 0x00008000   File is no longer watched (usually deleted)
78 ;
79 enum {
80         MASK_BITS = sizeof(mask_names) - 1
81 };
82
83 int inotifyd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
84 int inotifyd_main(int argc, char **argv)
85 {
86         int n;
87         unsigned mask;
88         struct pollfd pfd;
89         char **watches; // names of files being watched
90         const char *args[5];
91
92         // sanity check: agent and at least one watch must be given
93         if (!argv[1] || !argv[2])
94                 bb_show_usage();
95
96         argv++;
97         // inotify_add_watch will number watched files
98         // starting from 1, thus watches[0] is unimportant,
99         // and 1st file name is watches[1].
100         watches = argv;
101         args[0] = *argv;
102         args[4] = NULL;
103         argc -= 2; // number of files we watch
104
105         // open inotify
106         pfd.fd = inotify_init();
107         if (pfd.fd < 0)
108                 bb_perror_msg_and_die("no kernel support");
109
110         // setup watches
111         while (*++argv) {
112                 char *path = *argv;
113                 char *masks = strchr(path, ':');
114
115                 mask = 0x0fff; // assuming we want all non-kernel events
116                 // if mask is specified ->
117                 if (masks) {
118                         *masks = '\0'; // split path and mask
119                         // convert mask names to mask bitset
120                         mask = 0;
121                         while (*++masks) {
122                                 const char *found;
123                                 found = memchr(mask_names, *masks, MASK_BITS);
124                                 if (found)
125                                         mask |= (1 << (found - mask_names));
126                         }
127                 }
128                 // add watch
129                 n = inotify_add_watch(pfd.fd, path, mask);
130                 if (n < 0)
131                         bb_perror_msg_and_die("add watch (%s) failed", path);
132                 //bb_error_msg("added %d [%s]:%4X", n, path, mask);
133         }
134
135         // setup signals
136         bb_signals(BB_FATAL_SIGS, record_signo);
137
138         // do watch
139         pfd.events = POLLIN;
140         while (1) {
141                 int len;
142                 void *buf;
143                 struct inotify_event *ie;
144  again:
145                 if (bb_got_signal)
146                         break;
147                 n = poll(&pfd, 1, -1);
148                 // Signal interrupted us?
149                 if (n < 0 && errno == EINTR)
150                         goto again;
151                 // Under Linux, above if() is not necessary.
152                 // Non-fatal signals, e.g. SIGCHLD, when set to SIG_DFL,
153                 // are not interrupting poll().
154                 // Thus we can just break if n <= 0 (see below),
155                 // because EINTR will happen only on SIGTERM et al.
156                 // But this might be not true under other Unixes,
157                 // and is generally way too subtle to depend on.
158                 if (n <= 0) // strange error?
159                         break;
160
161                 // read out all pending events
162                 // (NB: len must be int, not ssize_t or long!)
163                 xioctl(pfd.fd, FIONREAD, &len);
164 #define eventbuf bb_common_bufsiz1
165                 ie = buf = (len <= sizeof(eventbuf)) ? eventbuf : xmalloc(len);
166                 len = full_read(pfd.fd, buf, len);
167                 // process events. N.B. events may vary in length
168                 while (len > 0) {
169                         int i;
170                         // cache relevant events mask
171                         unsigned m = ie->mask & ((1 << MASK_BITS) - 1);
172                         if (m) {
173                                 char events[MASK_BITS + 1];
174                                 char *s = events;
175                                 for (i = 0; i < MASK_BITS; ++i, m >>= 1) {
176                                         if ((m & 1) && (mask_names[i] != '\0'))
177                                                 *s++ = mask_names[i];
178                                 }
179                                 *s = '\0';
180 //                              bb_error_msg("exec %s %08X\t%s\t%s\t%s", args[0],
181 //                                      ie->mask, events, watches[ie->wd], ie->len ? ie->name : "");
182                                 args[1] = events;
183                                 args[2] = watches[ie->wd];
184                                 args[3] = ie->len ? ie->name : NULL;
185                                 spawn_and_wait((char **)args);
186                                 // we are done if all files got final x event
187                                 if (ie->mask & 0x8000) {
188                                         if (--argc <= 0)
189                                                 goto done;
190                                         inotify_rm_watch(pfd.fd, ie->wd);
191                                 }
192                         }
193                         // next event
194                         i = sizeof(struct inotify_event) + ie->len;
195                         len -= i;
196                         ie = (void*)((char*)ie + i);
197                 }
198                 if (eventbuf != buf)
199                         free(buf);
200         } // while (1)
201  done:
202         return bb_got_signal;
203 }