Merge branch 'master' of git+ssh://johnp@git.freedesktop.org/git/dbus/dbus
[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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24
25 #include <config.h>
26
27 #define _GNU_SOURCE
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <sys/inotify.h>
32 #include <sys/types.h>
33 #include <signal.h>
34 #include <errno.h>
35
36 #include <dbus/dbus-internals.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 int num_wds = 0;
47 static int inotify_fd = -1;
48 static DBusWatch *watch = NULL;
49 static DBusLoop *loop = NULL;
50
51 static dbus_bool_t
52 _inotify_watch_callback (DBusWatch *watch, unsigned int condition, void *data)
53 {
54   return dbus_watch_handle (watch, condition);
55 }
56
57 static dbus_bool_t
58 _handle_inotify_watch (DBusWatch *watch, unsigned int flags, void *data)
59 {
60   char buffer[INOTIFY_BUF_LEN];
61   ssize_t ret = 0;
62   int i = 0;
63   pid_t pid;
64
65   ret = read (inotify_fd, buffer, INOTIFY_BUF_LEN);
66   if (ret < 0)
67     _dbus_verbose ("Error reading inotify event: '%s'\n", _dbus_strerror(errno));
68   else if (!ret)
69     _dbus_verbose ("Error reading inotify event: buffer too small\n");
70
71   while (i < ret)
72     {
73       struct inotify_event *ev;
74       pid = _dbus_getpid ();
75
76       ev = (struct inotify_event *) &buffer[i];
77       i += INOTIFY_EVENT_SIZE + ev->len;
78 #ifdef DBUS_ENABLE_VERBOSE_MODE
79       if (ev->len)
80         _dbus_verbose ("event name: '%s'\n", ev->name);
81       _dbus_verbose ("inotify event: wd=%d mask=%u cookie=%u len=%u\n", ev->wd, ev->mask, ev->cookie, ev->len);
82 #endif
83       _dbus_verbose ("Sending SIGHUP signal on reception of a inotify event\n");
84       (void) kill (pid, SIGHUP);
85     }
86
87   if (watch != NULL)
88     {
89       _dbus_loop_remove_watch (loop, watch, _inotify_watch_callback, NULL);
90       _dbus_watch_unref (watch);
91       watch = NULL;
92     }
93  
94   return TRUE;
95 }
96
97 void
98 bus_watch_directory (const char *dir, BusContext *context)
99 {
100   int wd;
101
102   _dbus_assert (dir != NULL);
103
104   if (inotify_fd == -1) {
105      inotify_fd = inotify_init ();
106      if (inotify_fd <= 0) {
107       _dbus_warn ("Cannot initialize inotify\n");
108       goto out;
109      } 
110      loop = bus_context_get_loop (context);
111
112      watch = _dbus_watch_new (inotify_fd, DBUS_WATCH_READABLE, TRUE,
113                               _handle_inotify_watch, NULL, NULL);
114
115         if (watch == NULL)
116           {
117             _dbus_warn ("Unable to create inotify watch\n");
118             goto out;
119           }
120
121         if (!_dbus_loop_add_watch (loop, watch, _inotify_watch_callback,
122                                    NULL, NULL))
123           {
124             _dbus_warn ("Unable to add reload watch to main loop");
125             _dbus_watch_unref (watch);
126             watch = NULL;
127             goto out;
128           }
129   }
130
131   if (num_wds >= MAX_DIRS_TO_WATCH )
132     {
133       _dbus_warn ("Cannot watch config directory '%s'. Already watching %d directories\n", dir, MAX_DIRS_TO_WATCH);
134       goto out;
135     }
136
137   wd = inotify_add_watch (inotify_fd, dir, IN_CLOSE_WRITE | IN_DELETE | IN_MOVED_TO | IN_MOVED_FROM);
138   if (wd < 0)
139     {
140       _dbus_warn ("Cannot setup inotify for '%s'; error '%s'\n", dir, _dbus_strerror (errno));
141       goto out;
142     }
143
144   wds[num_wds++] = wd;
145   _dbus_verbose ("Added watch on config directory '%s'\n", dir);
146
147  out:
148   ;
149 }
150
151 void 
152 bus_drop_all_directory_watches (void)
153 {
154   int ret;
155
156   _dbus_verbose ("Dropping all watches on config directories\n");
157   ret = close (inotify_fd);
158   if (ret)
159     _dbus_verbose ("Error dropping watches: '%s'\n",  _dbus_strerror(errno));
160
161   num_wds = 0;
162   inotify_fd = -1;
163 }