2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2006
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 notify implementation using inotify
29 #ifdef HAVE_ASM_TYPES_H
30 #include <asm/types.h>
33 #ifndef HAVE_INOTIFY_INIT
35 #include <linux/inotify.h>
36 #include <asm/unistd.h>
40 glibc doesn't define these functions yet (as of March 2006)
42 static int inotify_init(void)
44 return syscall(__NR_inotify_init
);
47 static int inotify_add_watch(int fd
, const char *path
, __u32 mask
)
49 return syscall(__NR_inotify_add_watch
, fd
, path
, mask
);
52 static int inotify_rm_watch(int fd
, int wd
)
54 return syscall(__NR_inotify_rm_watch
, fd
, wd
);
58 #include <sys/inotify.h>
63 /* older glibc headers don't have these defines either */
65 #define IN_ONLYDIR 0x01000000
68 #define IN_MASK_ADD 0x20000000
71 struct inotify_private
{
72 struct sys_notify_context
*ctx
;
74 struct inotify_watch_context
*watches
;
77 struct inotify_watch_context
{
78 struct inotify_watch_context
*next
, *prev
;
79 struct inotify_private
*in
;
81 void (*callback
)(struct sys_notify_context
*ctx
,
83 struct notify_event
*ev
);
85 uint32_t mask
; /* the inotify mask */
86 uint32_t filter
; /* the windows completion filter */
92 destroy the inotify private context
94 static int inotify_destructor(struct inotify_private
*in
)
102 see if a particular event from inotify really does match a requested
105 static BOOL
filter_match(struct inotify_watch_context
*w
,
106 struct inotify_event
*e
)
108 DEBUG(10, ("filter_match: e->mask=%x, w->mask=%x, w->filter=%x\n",
109 e
->mask
, w
->mask
, w
->filter
));
111 if ((e
->mask
& w
->mask
) == 0) {
112 /* this happens because inotify_add_watch() coalesces watches on the same
113 path, oring their masks together */
117 /* SMB separates the filters for files and directories */
118 if (e
->mask
& IN_ISDIR
) {
119 if ((w
->filter
& FILE_NOTIFY_CHANGE_DIR_NAME
) == 0) {
123 if ((e
->mask
& IN_ATTRIB
) &&
124 (w
->filter
& (FILE_NOTIFY_CHANGE_ATTRIBUTES
|
125 FILE_NOTIFY_CHANGE_LAST_WRITE
|
126 FILE_NOTIFY_CHANGE_LAST_ACCESS
|
127 FILE_NOTIFY_CHANGE_EA
|
128 FILE_NOTIFY_CHANGE_SECURITY
))) {
131 if ((e
->mask
& IN_MODIFY
) &&
132 (w
->filter
& FILE_NOTIFY_CHANGE_ATTRIBUTES
)) {
135 if ((w
->filter
& FILE_NOTIFY_CHANGE_FILE_NAME
) == 0) {
146 dispatch one inotify event
148 the cookies are used to correctly handle renames
150 static void inotify_dispatch(struct inotify_private
*in
,
151 struct inotify_event
*e
,
152 uint32_t prev_cookie
,
153 struct inotify_event
*e2
)
155 struct inotify_watch_context
*w
, *next
;
156 struct notify_event ne
;
158 DEBUG(10, ("inotify_dispatch called with mask=%x, name=[%s]\n",
159 e
->mask
, e
->len
? e
->name
: ""));
161 /* ignore extraneous events, such as unmount and IN_IGNORED events */
162 if ((e
->mask
& (IN_ATTRIB
|IN_MODIFY
|IN_CREATE
|IN_DELETE
|
163 IN_MOVED_FROM
|IN_MOVED_TO
)) == 0) {
167 /* map the inotify mask to a action. This gets complicated for
169 if (e
->mask
& IN_CREATE
) {
170 ne
.action
= NOTIFY_ACTION_ADDED
;
171 } else if (e
->mask
& IN_DELETE
) {
172 ne
.action
= NOTIFY_ACTION_REMOVED
;
173 } else if (e
->mask
& IN_MOVED_FROM
) {
174 if (e2
!= NULL
&& e2
->cookie
== e
->cookie
) {
175 ne
.action
= NOTIFY_ACTION_OLD_NAME
;
177 ne
.action
= NOTIFY_ACTION_REMOVED
;
179 } else if (e
->mask
& IN_MOVED_TO
) {
180 if (e
->cookie
== prev_cookie
) {
181 ne
.action
= NOTIFY_ACTION_NEW_NAME
;
183 ne
.action
= NOTIFY_ACTION_ADDED
;
186 ne
.action
= NOTIFY_ACTION_MODIFIED
;
190 DEBUG(10, ("inotify_dispatch: ne.action = %d, ne.path = %s\n",
191 ne
.action
, ne
.path
));
193 /* find any watches that have this watch descriptor */
194 for (w
=in
->watches
;w
;w
=next
) {
196 if (w
->wd
== e
->wd
&& filter_match(w
, e
)) {
197 w
->callback(in
->ctx
, w
->private_data
, &ne
);
201 /* SMB expects a file rename to generate three events, two for
202 the rename and the other for a modify of the
203 destination. Strange! */
204 if (ne
.action
!= NOTIFY_ACTION_NEW_NAME
||
205 (e
->mask
& IN_ISDIR
) != 0) {
209 ne
.action
= NOTIFY_ACTION_MODIFIED
;
212 for (w
=in
->watches
;w
;w
=next
) {
214 if (w
->wd
== e
->wd
&& filter_match(w
, e
) &&
215 !(w
->filter
& FILE_NOTIFY_CHANGE_CREATION
)) {
216 w
->callback(in
->ctx
, w
->private_data
, &ne
);
222 called when the kernel has some events for us
224 static void inotify_handler(struct event_context
*ev
, struct fd_event
*fde
,
225 uint16_t flags
, void *private_data
)
227 struct inotify_private
*in
= talloc_get_type(private_data
,
228 struct inotify_private
);
230 struct inotify_event
*e0
, *e
;
231 uint32_t prev_cookie
=0;
234 we must use FIONREAD as we cannot predict the length of the
235 filenames, and thus can't know how much to allocate
238 if (ioctl(in
->fd
, FIONREAD
, &bufsize
) != 0 ||
240 DEBUG(0,("No data on inotify fd?!\n"));
244 e0
= e
= (struct inotify_event
*)TALLOC_SIZE(in
, bufsize
);
245 if (e
== NULL
) return;
247 if (read(in
->fd
, e0
, bufsize
) != bufsize
) {
248 DEBUG(0,("Failed to read all inotify data\n"));
253 /* we can get more than one event in the buffer */
254 while (bufsize
>= sizeof(*e
)) {
255 struct inotify_event
*e2
= NULL
;
256 bufsize
-= e
->len
+ sizeof(*e
);
257 if (bufsize
>= sizeof(*e
)) {
258 e2
= (struct inotify_event
*)(e
->len
+ sizeof(*e
) + (char *)e
);
260 inotify_dispatch(in
, e
, prev_cookie
, e2
);
261 prev_cookie
= e
->cookie
;
269 setup the inotify handle - called the first time a watch is added on
272 static NTSTATUS
inotify_setup(struct sys_notify_context
*ctx
)
274 struct inotify_private
*in
;
276 if (!lp_parm_bool(-1, "notify", "inotify", True
)) {
277 return NT_STATUS_INVALID_SYSTEM_SERVICE
;
280 in
= talloc(ctx
, struct inotify_private
);
281 NT_STATUS_HAVE_NO_MEMORY(in
);
282 in
->fd
= inotify_init();
284 DEBUG(0,("Failed to init inotify - %s\n", strerror(errno
)));
286 return map_nt_error_from_unix(errno
);
291 ctx
->private_data
= in
;
292 talloc_set_destructor(in
, inotify_destructor
);
294 /* add a event waiting for the inotify fd to be readable */
295 event_add_fd(ctx
->ev
, in
, in
->fd
, EVENT_FD_READ
, inotify_handler
, in
);
302 map from a change notify mask to a inotify mask. Remove any bits
305 static const struct {
306 uint32_t notify_mask
;
307 uint32_t inotify_mask
;
308 } inotify_mapping
[] = {
309 {FILE_NOTIFY_CHANGE_FILE_NAME
, IN_CREATE
|IN_DELETE
|IN_MOVED_FROM
|IN_MOVED_TO
},
310 {FILE_NOTIFY_CHANGE_DIR_NAME
, IN_CREATE
|IN_DELETE
|IN_MOVED_FROM
|IN_MOVED_TO
},
311 {FILE_NOTIFY_CHANGE_ATTRIBUTES
, IN_ATTRIB
|IN_MOVED_TO
|IN_MOVED_FROM
|IN_MODIFY
},
312 {FILE_NOTIFY_CHANGE_LAST_WRITE
, IN_ATTRIB
},
313 {FILE_NOTIFY_CHANGE_LAST_ACCESS
, IN_ATTRIB
},
314 {FILE_NOTIFY_CHANGE_EA
, IN_ATTRIB
},
315 {FILE_NOTIFY_CHANGE_SECURITY
, IN_ATTRIB
}
318 static uint32_t inotify_map(struct notify_entry
*e
)
322 for (i
=0;i
<ARRAY_SIZE(inotify_mapping
);i
++) {
323 if (inotify_mapping
[i
].notify_mask
& e
->filter
) {
324 out
|= inotify_mapping
[i
].inotify_mask
;
325 e
->filter
&= ~inotify_mapping
[i
].notify_mask
;
334 static int watch_destructor(struct inotify_watch_context
*w
)
336 struct inotify_private
*in
= w
->in
;
338 DLIST_REMOVE(w
->in
->watches
, w
);
340 /* only rm the watch if its the last one with this wd */
341 for (w
=in
->watches
;w
;w
=w
->next
) {
342 if (w
->wd
== wd
) break;
345 DEBUG(10, ("Deleting inotify watch %d\n", wd
));
346 if (inotify_rm_watch(in
->fd
, wd
) == -1) {
347 DEBUG(1, ("inotify_rm_watch returned %s\n",
357 add a watch. The watch is removed when the caller calls
358 talloc_free() on *handle
360 NTSTATUS
inotify_watch(struct sys_notify_context
*ctx
,
361 struct notify_entry
*e
,
362 void (*callback
)(struct sys_notify_context
*ctx
,
364 struct notify_event
*ev
),
368 struct inotify_private
*in
;
371 struct inotify_watch_context
*w
;
372 uint32_t filter
= e
->filter
;
373 void **handle
= (void **)handle_p
;
375 /* maybe setup the inotify fd */
376 if (ctx
->private_data
== NULL
) {
378 status
= inotify_setup(ctx
);
379 NT_STATUS_NOT_OK_RETURN(status
);
382 in
= talloc_get_type(ctx
->private_data
, struct inotify_private
);
384 mask
= inotify_map(e
);
386 /* this filter can't be handled by inotify */
387 return NT_STATUS_INVALID_PARAMETER
;
390 /* using IN_MASK_ADD allows us to cope with inotify() returning the same
391 watch descriptor for muliple watches on the same path */
392 mask
|= (IN_MASK_ADD
| IN_ONLYDIR
);
394 /* get a new watch descriptor for this path */
395 wd
= inotify_add_watch(in
->fd
, e
->path
, mask
);
398 DEBUG(1, ("inotify_add_watch returned %s\n", strerror(errno
)));
399 return map_nt_error_from_unix(errno
);
402 DEBUG(10, ("inotify_add_watch for %s mask %x returned wd %d\n",
405 w
= talloc(in
, struct inotify_watch_context
);
407 inotify_rm_watch(in
->fd
, wd
);
409 return NT_STATUS_NO_MEMORY
;
414 w
->callback
= callback
;
415 w
->private_data
= private_data
;
418 w
->path
= talloc_strdup(w
, e
->path
);
419 if (w
->path
== NULL
) {
420 inotify_rm_watch(in
->fd
, wd
);
422 return NT_STATUS_NO_MEMORY
;
427 DLIST_ADD(in
->watches
, w
);
429 /* the caller frees the handle to stop watching */
430 talloc_set_destructor(w
, watch_destructor
);