Always remove, invalidate and free watches before closing watched sockets
[platform/upstream/dbus.git] / bus / dir-watch-inotify.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dir-watch-inotify.c  OS specific directory change notification for message bus
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *           (c) 2006 Mandriva
6  *
7  * Licensed under the Academic Free License version 2.1
8  * 
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #include <config.h>
26
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <fcntl.h>
30 #include <sys/inotify.h>
31 #include <sys/types.h>
32 #include <signal.h>
33 #include <errno.h>
34
35 #include <dbus/dbus-internals.h>
36 #include <dbus/dbus-list.h>
37 #include <dbus/dbus-watch.h>
38 #include "dir-watch.h"
39
40 #define MAX_DIRS_TO_WATCH 128
41 #define INOTIFY_EVENT_SIZE (sizeof(struct inotify_event))
42 #define INOTIFY_BUF_LEN (1024 * (INOTIFY_EVENT_SIZE + 16))
43
44 /* use a static array to avoid handling OOM */
45 static int wds[MAX_DIRS_TO_WATCH];
46 static char *dirs[MAX_DIRS_TO_WATCH];
47 static int num_wds = 0;
48 static int inotify_fd = -1;
49 static DBusWatch *watch = NULL;
50 static DBusLoop *loop = NULL;
51
52 static dbus_bool_t
53 _inotify_watch_callback (DBusWatch *watch, unsigned int condition, void *data)
54 {
55   return dbus_watch_handle (watch, condition);
56 }
57
58 static dbus_bool_t
59 _handle_inotify_watch (DBusWatch *passed_watch, unsigned int flags, void *data)
60 {
61   char buffer[INOTIFY_BUF_LEN];
62   ssize_t ret = 0;
63   int i = 0;
64   pid_t pid;
65   dbus_bool_t have_change = FALSE;
66
67   ret = read (inotify_fd, buffer, INOTIFY_BUF_LEN);
68   if (ret < 0)
69     _dbus_verbose ("Error reading inotify event: '%s'\n", _dbus_strerror(errno));
70   else if (!ret)
71     _dbus_verbose ("Error reading inotify event: buffer too small\n");
72
73   while (i < ret)
74     {
75       struct inotify_event *ev;
76       pid = _dbus_getpid ();
77
78       ev = (struct inotify_event *) &buffer[i];
79       i += INOTIFY_EVENT_SIZE + ev->len;
80 #ifdef DBUS_ENABLE_VERBOSE_MODE
81       if (ev->len)
82         _dbus_verbose ("event name: '%s'\n", ev->name);
83       _dbus_verbose ("inotify event: wd=%d mask=%u cookie=%u len=%u\n", ev->wd, ev->mask, ev->cookie, ev->len);
84 #endif
85       _dbus_verbose ("Sending SIGHUP signal on reception of a inotify event\n");
86       have_change = TRUE;
87     }
88   if (have_change)
89     (void) kill (pid, SIGHUP);
90
91   return TRUE;
92 }
93
94 #include <stdio.h>
95
96 static void
97 _set_watched_dirs_internal (DBusList **directories)
98 {
99   int new_wds[MAX_DIRS_TO_WATCH];
100   char *new_dirs[MAX_DIRS_TO_WATCH];
101   DBusList *link;
102   int i, j, wd;
103
104   for (i = 0; i < MAX_DIRS_TO_WATCH; i++)
105     {
106       new_wds[i] = -1;
107       new_dirs[i] = NULL;
108     }
109
110   i = 0;
111   link = _dbus_list_get_first_link (directories);
112   while (link != NULL)
113     {
114       new_dirs[i++] = (char *)link->data;
115       link = _dbus_list_get_next_link (directories, link);
116     }
117
118   /* Look for directories in both the old and new sets, if
119    * we find one, move its data into the new set.
120    */
121   for (i = 0; new_dirs[i]; i++)
122     {
123       for (j = 0; j < num_wds; j++)
124         {
125           if (dirs[j] && strcmp (new_dirs[i], dirs[j]) == 0)
126             {
127               new_wds[i] = wds[j];
128               new_dirs[i] = dirs[j];
129               wds[j] = -1;
130               dirs[j] = NULL;
131               break;
132             }
133         }
134     }
135
136   /* Any directories we find in "wds" with a nonzero fd must
137    * not be in the new set, so perform cleanup now.
138    */
139   for (j = 0; j < num_wds; j++)
140     {
141       if (wds[j] != -1)
142         {
143           inotify_rm_watch (inotify_fd, wds[j]);
144           dbus_free (dirs[j]);
145           wds[j] = -1;
146           dirs[j] = NULL;
147         }
148     }
149
150   for (i = 0; new_dirs[i]; i++)
151     {
152       if (new_wds[i] == -1)
153         {
154           /* FIXME - less lame error handling for failing to add a watch; we may need to sleep. */
155           wd = inotify_add_watch (inotify_fd, new_dirs[i], IN_CLOSE_WRITE | IN_DELETE | IN_MOVED_TO | IN_MOVED_FROM);
156           if (wd < 0)
157             {
158               /* Not all service directories need to exist. */
159               if (errno != ENOENT)
160                 {
161                   _dbus_warn ("Cannot setup inotify for '%s'; error '%s'\n", new_dirs[i], _dbus_strerror (errno));
162                   goto out;
163                 }
164               else
165                 {
166                   new_wds[i] = -1;
167                   new_dirs[i] = NULL;
168                   continue;
169                 }
170             }
171           new_wds[i] = wd;
172           new_dirs[i] = _dbus_strdup (new_dirs[i]);
173           if (!new_dirs[i])
174             {
175               /* FIXME have less lame handling for OOM, we just silently fail to
176                * watch.  (In reality though, the whole OOM handling in dbus is stupid
177                * but we won't go into that in this comment =) )
178                */
179               inotify_rm_watch (inotify_fd, wd);
180               new_wds[i] = -1;
181             }
182         }
183     }
184
185   num_wds = i;
186
187   for (i = 0; i < MAX_DIRS_TO_WATCH; i++)
188     {
189       wds[i] = new_wds[i];
190       dirs[i] = new_dirs[i];
191     }
192
193  out:;
194 }
195
196 #include <stdio.h>
197 static void
198 _shutdown_inotify (void *data)
199 {
200   DBusList *empty = NULL;
201
202   if (inotify_fd == -1)
203     return;
204
205   _set_watched_dirs_internal (&empty);
206
207   if (watch != NULL)
208     {
209       _dbus_loop_remove_watch (loop, watch, _inotify_watch_callback, NULL);
210       _dbus_watch_invalidate (watch);
211       _dbus_watch_unref (watch);
212       _dbus_loop_unref (loop);
213     }
214   watch = NULL;
215   loop = NULL;
216
217   close (inotify_fd);
218   inotify_fd = -1;
219 }
220
221 static int
222 _init_inotify (BusContext *context)
223 {
224   int ret = 0;
225
226   if (inotify_fd == -1)
227     {
228 #ifdef HAVE_INOTIFY_INIT1
229       inotify_fd = inotify_init1 (IN_CLOEXEC);
230       /* This ensures we still run on older Linux kernels.
231        * https://bugs.freedesktop.org/show_bug.cgi?id=23957
232        */
233       if (inotify_fd < 0)
234         inotify_fd = inotify_init ();
235 #else
236       inotify_fd = inotify_init ();
237 #endif
238       if (inotify_fd <= 0)
239         {
240           _dbus_warn ("Cannot initialize inotify\n");
241           goto out;
242         }
243       loop = bus_context_get_loop (context);
244       _dbus_loop_ref (loop);
245
246       watch = _dbus_watch_new (inotify_fd, DBUS_WATCH_READABLE, TRUE,
247                                _handle_inotify_watch, NULL, NULL);
248
249       if (watch == NULL)
250         {
251           _dbus_warn ("Unable to create inotify watch\n");
252           goto out;
253         }
254
255       if (!_dbus_loop_add_watch (loop, watch, _inotify_watch_callback,
256                                  NULL, NULL))
257         {
258           _dbus_warn ("Unable to add reload watch to main loop");
259           _dbus_watch_unref (watch);
260           watch = NULL;
261           goto out;
262         }
263
264       if (!_dbus_register_shutdown_func (_shutdown_inotify, NULL))
265       {
266           _dbus_warn ("Unable to register shutdown func");
267           _dbus_watch_unref (watch);
268           watch = NULL;
269           goto out;
270       }
271     }
272
273   ret = 1;
274
275 out:
276   return ret;
277 }
278
279 void
280 bus_set_watched_dirs (BusContext *context, DBusList **directories)
281 {
282   if (!_init_inotify (context))
283     return;
284
285   _set_watched_dirs_internal (directories);
286 }