2 * Server-side change notification management
4 * Copyright (C) 1998 Alexandre Julliard
5 * Copyright (C) 2006 Mike McCormack
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
31 #include <sys/types.h>
40 #define WIN32_NO_STATUS
56 #define DN_ACCESS 0x00000001 /* File accessed */
57 #define DN_MODIFY 0x00000002 /* File modified */
58 #define DN_CREATE 0x00000004 /* File created */
59 #define DN_DELETE 0x00000008 /* File removed */
60 #define DN_RENAME 0x00000010 /* File renamed */
61 #define DN_ATTRIB 0x00000020 /* File changed attributes */
62 #define DN_MULTISHOT 0x80000000 /* Don't remove notifier */
68 #ifdef HAVE_SYS_INOTIFY_H
69 #include <sys/inotify.h>
71 #elif defined(__linux__) && defined(__i386__)
73 #define SYS_inotify_init 291
74 #define SYS_inotify_add_watch 292
75 #define SYS_inotify_rm_watch 293
77 struct inotify_event
{
85 #define IN_ACCESS 0x00000001
86 #define IN_MODIFY 0x00000002
87 #define IN_ATTRIB 0x00000004
88 #define IN_CLOSE_WRITE 0x00000008
89 #define IN_CLOSE_NOWRITE 0x00000010
90 #define IN_OPEN 0x00000020
91 #define IN_MOVED_FROM 0x00000040
92 #define IN_MOVED_TO 0x00000080
93 #define IN_CREATE 0x00000100
94 #define IN_DELETE 0x00000200
95 #define IN_DELETE_SELF 0x00000400
97 #define IN_ISDIR 0x40000000
99 static inline int inotify_init( void )
101 return syscall( SYS_inotify_init
);
104 static inline int inotify_add_watch( int fd
, const char *name
, unsigned int mask
)
106 return syscall( SYS_inotify_add_watch
, fd
, name
, mask
);
109 static inline int inotify_rm_watch( int fd
, int wd
)
111 return syscall( SYS_inotify_rm_watch
, fd
, wd
);
120 static void free_inode( struct inode
*inode
);
122 static struct fd
*inotify_fd
;
124 struct change_record
{
127 struct filesystem_event event
;
132 struct object obj
; /* object header */
133 struct fd
*fd
; /* file descriptor to the directory */
134 mode_t mode
; /* file stat.st_mode */
135 uid_t uid
; /* file stat.st_uid */
136 struct list entry
; /* entry in global change notifications list */
137 unsigned int filter
; /* notification filter */
138 int notified
; /* SIGIO counter */
139 int want_data
; /* return change data */
140 int subtree
; /* do we want to watch subdirectories? */
141 struct list change_records
; /* data for the change */
142 struct list in_entry
; /* entry in the inode dirs list */
143 struct inode
*inode
; /* inode of the associated directory */
146 static struct fd
*dir_get_fd( struct object
*obj
);
147 static struct security_descriptor
*dir_get_sd( struct object
*obj
);
148 static int dir_set_sd( struct object
*obj
, const struct security_descriptor
*sd
,
149 unsigned int set_info
);
150 static void dir_dump( struct object
*obj
, int verbose
);
151 static struct object_type
*dir_get_type( struct object
*obj
);
152 static void dir_destroy( struct object
*obj
);
154 static const struct object_ops dir_ops
=
156 sizeof(struct dir
), /* size */
158 dir_get_type
, /* get_type */
159 add_queue
, /* add_queue */
160 remove_queue
, /* remove_queue */
161 default_fd_signaled
, /* signaled */
162 no_satisfied
, /* satisfied */
163 no_signal
, /* signal */
164 dir_get_fd
, /* get_fd */
165 default_fd_map_access
, /* map_access */
166 dir_get_sd
, /* get_sd */
167 dir_set_sd
, /* set_sd */
168 no_lookup_name
, /* lookup_name */
169 no_open_file
, /* open_file */
170 fd_close_handle
, /* close_handle */
171 dir_destroy
/* destroy */
174 static int dir_get_poll_events( struct fd
*fd
);
175 static enum server_fd_type
dir_get_fd_type( struct fd
*fd
);
177 static const struct fd_ops dir_fd_ops
=
179 dir_get_poll_events
, /* get_poll_events */
180 default_poll_event
, /* poll_event */
181 dir_get_fd_type
, /* get_fd_type */
182 no_fd_read
, /* read */
183 no_fd_write
, /* write */
184 no_fd_flush
, /* flush */
185 default_fd_ioctl
, /* ioctl */
186 default_fd_queue_async
, /* queue_async */
187 default_fd_reselect_async
, /* reselect_async */
188 default_fd_cancel_async
/* cancel_async */
191 static struct list change_list
= LIST_INIT(change_list
);
193 static void dnotify_adjust_changes( struct dir
*dir
)
195 #if defined(F_SETSIG) && defined(F_NOTIFY)
196 int fd
= get_unix_fd( dir
->fd
);
197 unsigned int filter
= dir
->filter
;
199 if ( 0 > fcntl( fd
, F_SETSIG
, SIGIO
) )
203 if (filter
& FILE_NOTIFY_CHANGE_FILE_NAME
)
204 val
|= DN_RENAME
| DN_DELETE
| DN_CREATE
;
205 if (filter
& FILE_NOTIFY_CHANGE_DIR_NAME
)
206 val
|= DN_RENAME
| DN_DELETE
| DN_CREATE
;
207 if (filter
& FILE_NOTIFY_CHANGE_ATTRIBUTES
)
209 if (filter
& FILE_NOTIFY_CHANGE_SIZE
)
211 if (filter
& FILE_NOTIFY_CHANGE_LAST_WRITE
)
213 if (filter
& FILE_NOTIFY_CHANGE_LAST_ACCESS
)
215 if (filter
& FILE_NOTIFY_CHANGE_CREATION
)
217 if (filter
& FILE_NOTIFY_CHANGE_SECURITY
)
219 fcntl( fd
, F_NOTIFY
, val
);
223 /* insert change in the global list */
224 static inline void insert_change( struct dir
*dir
)
228 sigemptyset( &sigset
);
229 sigaddset( &sigset
, SIGIO
);
230 sigprocmask( SIG_BLOCK
, &sigset
, NULL
);
231 list_add_head( &change_list
, &dir
->entry
);
232 sigprocmask( SIG_UNBLOCK
, &sigset
, NULL
);
235 /* remove change from the global list */
236 static inline void remove_change( struct dir
*dir
)
240 sigemptyset( &sigset
);
241 sigaddset( &sigset
, SIGIO
);
242 sigprocmask( SIG_BLOCK
, &sigset
, NULL
);
243 list_remove( &dir
->entry
);
244 sigprocmask( SIG_UNBLOCK
, &sigset
, NULL
);
247 static void dir_dump( struct object
*obj
, int verbose
)
249 struct dir
*dir
= (struct dir
*)obj
;
250 assert( obj
->ops
== &dir_ops
);
251 fprintf( stderr
, "Dirfile fd=%p filter=%08x\n", dir
->fd
, dir
->filter
);
254 static struct object_type
*dir_get_type( struct object
*obj
)
256 static const WCHAR name
[] = {'F','i','l','e'};
257 static const struct unicode_str str
= { name
, sizeof(name
) };
258 return get_object_type( &str
);
261 /* enter here directly from SIGIO signal handler */
262 void do_change_notify( int unix_fd
)
266 /* FIXME: this is O(n) ... probably can be improved */
267 LIST_FOR_EACH_ENTRY( dir
, &change_list
, struct dir
, entry
)
269 if (get_unix_fd( dir
->fd
) != unix_fd
) continue;
270 interlocked_xchg_add( &dir
->notified
, 1 );
275 /* SIGIO callback, called synchronously with the poll loop */
276 void sigio_callback(void)
280 LIST_FOR_EACH_ENTRY( dir
, &change_list
, struct dir
, entry
)
282 if (interlocked_xchg( &dir
->notified
, 0 ))
283 fd_async_wake_up( dir
->fd
, ASYNC_TYPE_WAIT
, STATUS_ALERTED
);
287 static struct fd
*dir_get_fd( struct object
*obj
)
289 struct dir
*dir
= (struct dir
*)obj
;
290 assert( obj
->ops
== &dir_ops
);
291 return (struct fd
*)grab_object( dir
->fd
);
294 static int get_dir_unix_fd( struct dir
*dir
)
296 return get_unix_fd( dir
->fd
);
299 static struct security_descriptor
*dir_get_sd( struct object
*obj
)
301 struct dir
*dir
= (struct dir
*)obj
;
304 struct security_descriptor
*sd
;
305 assert( obj
->ops
== &dir_ops
);
307 unix_fd
= get_dir_unix_fd( dir
);
309 if (unix_fd
== -1 || fstat( unix_fd
, &st
) == -1)
312 /* mode and uid the same? if so, no need to re-generate security descriptor */
314 (st
.st_mode
& (S_IRWXU
|S_IRWXO
)) == (dir
->mode
& (S_IRWXU
|S_IRWXO
)) &&
315 (st
.st_uid
== dir
->uid
))
318 sd
= mode_to_sd( st
.st_mode
,
319 security_unix_uid_to_sid( st
.st_uid
),
320 token_get_primary_group( current
->process
->token
));
321 if (!sd
) return obj
->sd
;
323 dir
->mode
= st
.st_mode
;
324 dir
->uid
= st
.st_uid
;
330 static int dir_set_sd( struct object
*obj
, const struct security_descriptor
*sd
,
331 unsigned int set_info
)
333 struct dir
*dir
= (struct dir
*)obj
;
339 assert( obj
->ops
== &dir_ops
);
341 unix_fd
= get_dir_unix_fd( dir
);
343 if (unix_fd
== -1 || fstat( unix_fd
, &st
) == -1) return 1;
345 if (set_info
& OWNER_SECURITY_INFORMATION
)
347 owner
= sd_get_owner( sd
);
350 set_error( STATUS_INVALID_SECURITY_DESCR
);
353 if (!obj
->sd
|| !security_equal_sid( owner
, sd_get_owner( obj
->sd
) ))
355 /* FIXME: get Unix uid and call fchown */
359 owner
= sd_get_owner( obj
->sd
);
361 owner
= token_get_user( current
->process
->token
);
363 if (set_info
& DACL_SECURITY_INFORMATION
)
365 /* keep the bits that we don't map to access rights in the ACL */
366 mode
= st
.st_mode
& (S_ISUID
|S_ISGID
|S_ISVTX
);
367 mode
|= sd_to_mode( sd
, owner
);
369 if (((st
.st_mode
^ mode
) & (S_IRWXU
|S_IRWXG
|S_IRWXO
)) && fchmod( unix_fd
, mode
) == -1)
378 static struct change_record
*get_first_change_record( struct dir
*dir
)
380 struct list
*ptr
= list_head( &dir
->change_records
);
381 if (!ptr
) return NULL
;
383 return LIST_ENTRY( ptr
, struct change_record
, entry
);
386 static void dir_destroy( struct object
*obj
)
388 struct change_record
*record
;
389 struct dir
*dir
= (struct dir
*)obj
;
390 assert (obj
->ops
== &dir_ops
);
393 remove_change( dir
);
397 list_remove( &dir
->in_entry
);
398 free_inode( dir
->inode
);
401 while ((record
= get_first_change_record( dir
))) free( record
);
403 release_object( dir
->fd
);
405 if (inotify_fd
&& list_empty( &change_list
))
407 release_object( inotify_fd
);
412 struct dir
*get_dir_obj( struct process
*process
, obj_handle_t handle
, unsigned int access
)
414 return (struct dir
*)get_handle_obj( process
, handle
, access
, &dir_ops
);
417 static int dir_get_poll_events( struct fd
*fd
)
422 static enum server_fd_type
dir_get_fd_type( struct fd
*fd
)
432 struct list ch_entry
; /* entry in the children list */
433 struct list children
; /* children of this inode */
434 struct inode
*parent
; /* parent of this inode */
435 struct list dirs
; /* directory handles watching this inode */
436 struct list ino_entry
; /* entry in the inode hash */
437 struct list wd_entry
; /* entry in the watch descriptor hash */
438 dev_t dev
; /* device number */
439 ino_t ino
; /* device's inode number */
440 int wd
; /* inotify's watch descriptor */
441 char *name
; /* basename name of the inode */
444 static struct list inode_hash
[ HASH_SIZE
];
445 static struct list wd_hash
[ HASH_SIZE
];
447 static int inotify_add_dir( char *path
, unsigned int filter
);
449 static struct inode
*inode_from_wd( int wd
)
451 struct list
*bucket
= &wd_hash
[ wd
% HASH_SIZE
];
454 LIST_FOR_EACH_ENTRY( inode
, bucket
, struct inode
, wd_entry
)
461 static inline struct list
*get_hash_list( dev_t dev
, ino_t ino
)
463 return &inode_hash
[ (ino
^ dev
) % HASH_SIZE
];
466 static struct inode
*find_inode( dev_t dev
, ino_t ino
)
468 struct list
*bucket
= get_hash_list( dev
, ino
);
471 LIST_FOR_EACH_ENTRY( inode
, bucket
, struct inode
, ino_entry
)
472 if (inode
->ino
== ino
&& inode
->dev
== dev
)
478 static struct inode
*create_inode( dev_t dev
, ino_t ino
)
482 inode
= malloc( sizeof *inode
);
485 list_init( &inode
->children
);
486 list_init( &inode
->dirs
);
490 inode
->parent
= NULL
;
492 list_add_tail( get_hash_list( dev
, ino
), &inode
->ino_entry
);
497 static struct inode
*get_inode( dev_t dev
, ino_t ino
)
501 inode
= find_inode( dev
, ino
);
504 return create_inode( dev
, ino
);
507 static void inode_set_wd( struct inode
*inode
, int wd
)
510 list_remove( &inode
->wd_entry
);
512 list_add_tail( &wd_hash
[ wd
% HASH_SIZE
], &inode
->wd_entry
);
515 static void inode_set_name( struct inode
*inode
, const char *name
)
518 inode
->name
= name
? strdup( name
) : NULL
;
521 static void free_inode( struct inode
*inode
)
523 int subtree
= 0, watches
= 0;
524 struct inode
*tmp
, *next
;
527 LIST_FOR_EACH_ENTRY( dir
, &inode
->dirs
, struct dir
, in_entry
)
529 subtree
|= dir
->subtree
;
533 if (!subtree
&& !inode
->parent
)
535 LIST_FOR_EACH_ENTRY_SAFE( tmp
, next
, &inode
->children
,
536 struct inode
, ch_entry
)
538 assert( tmp
!= inode
);
539 assert( tmp
->parent
== inode
);
548 list_remove( &inode
->ch_entry
);
550 /* disconnect remaining children from the parent */
551 LIST_FOR_EACH_ENTRY_SAFE( tmp
, next
, &inode
->children
, struct inode
, ch_entry
)
553 list_remove( &tmp
->ch_entry
);
559 inotify_rm_watch( get_unix_fd( inotify_fd
), inode
->wd
);
560 list_remove( &inode
->wd_entry
);
562 list_remove( &inode
->ino_entry
);
568 static struct inode
*inode_add( struct inode
*parent
,
569 dev_t dev
, ino_t ino
, const char *name
)
573 inode
= get_inode( dev
, ino
);
579 list_add_tail( &parent
->children
, &inode
->ch_entry
);
580 inode
->parent
= parent
;
581 assert( inode
!= parent
);
583 inode_set_name( inode
, name
);
588 static struct inode
*inode_from_name( struct inode
*inode
, const char *name
)
592 LIST_FOR_EACH_ENTRY( i
, &inode
->children
, struct inode
, ch_entry
)
593 if (i
->name
&& !strcmp( i
->name
, name
))
598 static int inotify_get_poll_events( struct fd
*fd
);
599 static void inotify_poll_event( struct fd
*fd
, int event
);
601 static const struct fd_ops inotify_fd_ops
=
603 inotify_get_poll_events
, /* get_poll_events */
604 inotify_poll_event
, /* poll_event */
606 NULL
, /* get_fd_type */
608 NULL
, /* queue_async */
609 NULL
, /* reselect_async */
610 NULL
, /* cancel_async */
613 static int inotify_get_poll_events( struct fd
*fd
)
618 static void inotify_do_change_notify( struct dir
*dir
, unsigned int action
,
619 unsigned int cookie
, const char *relpath
)
621 struct change_record
*record
;
623 assert( dir
->obj
.ops
== &dir_ops
);
627 size_t len
= strlen(relpath
);
628 record
= malloc( offsetof(struct change_record
, event
.name
[len
]) );
632 record
->cookie
= cookie
;
633 record
->event
.action
= action
;
634 memcpy( record
->event
.name
, relpath
, len
);
635 record
->event
.len
= len
;
637 list_add_tail( &dir
->change_records
, &record
->entry
);
640 fd_async_wake_up( dir
->fd
, ASYNC_TYPE_WAIT
, STATUS_ALERTED
);
643 static unsigned int filter_from_event( struct inotify_event
*ie
)
645 unsigned int filter
= 0;
647 if (ie
->mask
& (IN_MOVED_FROM
| IN_MOVED_TO
| IN_DELETE
| IN_CREATE
))
648 filter
|= FILE_NOTIFY_CHANGE_FILE_NAME
| FILE_NOTIFY_CHANGE_DIR_NAME
;
649 if (ie
->mask
& IN_MODIFY
)
650 filter
|= FILE_NOTIFY_CHANGE_SIZE
| FILE_NOTIFY_CHANGE_LAST_WRITE
;
651 if (ie
->mask
& IN_ATTRIB
)
652 filter
|= FILE_NOTIFY_CHANGE_ATTRIBUTES
| FILE_NOTIFY_CHANGE_SECURITY
;
653 if (ie
->mask
& IN_ACCESS
)
654 filter
|= FILE_NOTIFY_CHANGE_LAST_ACCESS
;
655 if (ie
->mask
& IN_CREATE
)
656 filter
|= FILE_NOTIFY_CHANGE_CREATION
;
658 if (ie
->mask
& IN_ISDIR
)
659 filter
&= ~FILE_NOTIFY_CHANGE_FILE_NAME
;
661 filter
&= ~FILE_NOTIFY_CHANGE_DIR_NAME
;
666 /* scan up the parent directories for watches */
667 static unsigned int filter_from_inode( struct inode
*inode
, int is_parent
)
669 unsigned int filter
= 0;
672 /* combine filters from parents watching subtrees */
675 LIST_FOR_EACH_ENTRY( dir
, &inode
->dirs
, struct dir
, in_entry
)
676 if (dir
->subtree
|| !is_parent
)
677 filter
|= dir
->filter
;
679 inode
= inode
->parent
;
685 static char *inode_get_path( struct inode
*inode
, int sz
)
694 head
= list_head( &inode
->dirs
);
697 int unix_fd
= get_unix_fd( LIST_ENTRY( head
, struct dir
, in_entry
)->fd
);
698 path
= malloc ( 32 + sz
);
700 sprintf( path
, "/proc/self/fd/%u/", unix_fd
);
707 len
= strlen( inode
->name
);
708 path
= inode_get_path( inode
->parent
, sz
+ len
+ 1 );
712 strcat( path
, inode
->name
);
718 static void inode_check_dir( struct inode
*parent
, const char *name
)
726 path
= inode_get_path( parent
, strlen(name
) );
730 strcat( path
, name
);
732 if (stat( path
, &st
) < 0)
735 filter
= filter_from_inode( parent
, 1 );
739 inode
= inode_add( parent
, st
.st_dev
, st
.st_ino
, name
);
740 if (!inode
|| inode
->wd
!= -1)
743 wd
= inotify_add_dir( path
, filter
);
745 inode_set_wd( inode
, wd
);
753 static int prepend( char **path
, const char *segment
)
758 extra
= strlen( segment
) + 1;
761 int len
= strlen( *path
) + 1;
762 p
= realloc( *path
, len
+ extra
);
764 memmove( &p
[ extra
], p
, len
);
765 p
[ extra
- 1 ] = '/';
766 memcpy( p
, segment
, extra
- 1 );
772 memcpy( p
, segment
, extra
);
780 static void inotify_notify_all( struct inotify_event
*ie
)
782 unsigned int filter
, action
;
783 struct inode
*inode
, *i
;
787 inode
= inode_from_wd( ie
->wd
);
790 fprintf( stderr
, "no inode matches %d\n", ie
->wd
);
794 filter
= filter_from_event( ie
);
796 if (ie
->mask
& IN_CREATE
)
798 if (ie
->mask
& IN_ISDIR
)
799 inode_check_dir( inode
, ie
->name
);
801 action
= FILE_ACTION_ADDED
;
803 else if (ie
->mask
& IN_DELETE
)
804 action
= FILE_ACTION_REMOVED
;
805 else if (ie
->mask
& IN_MOVED_FROM
)
806 action
= FILE_ACTION_RENAMED_OLD_NAME
;
807 else if (ie
->mask
& IN_MOVED_TO
)
808 action
= FILE_ACTION_RENAMED_NEW_NAME
;
810 action
= FILE_ACTION_MODIFIED
;
813 * Work our way up the inode hierarchy
814 * extending the relative path as we go
815 * and notifying all recursive watches.
817 if (!prepend( &path
, ie
->name
))
820 for (i
= inode
; i
; i
= i
->parent
)
822 LIST_FOR_EACH_ENTRY( dir
, &i
->dirs
, struct dir
, in_entry
)
823 if ((filter
& dir
->filter
) && (i
==inode
|| dir
->subtree
))
824 inotify_do_change_notify( dir
, action
, ie
->cookie
, path
);
826 if (!i
->name
|| !prepend( &path
, i
->name
))
832 if (ie
->mask
& IN_DELETE
)
834 i
= inode_from_name( inode
, ie
->name
);
840 static void inotify_poll_event( struct fd
*fd
, int event
)
844 struct inotify_event
*ie
;
846 unix_fd
= get_unix_fd( fd
);
847 r
= read( unix_fd
, buffer
, sizeof buffer
);
850 fprintf(stderr
,"inotify_poll_event(): inotify read failed!\n");
854 for( ofs
= 0; ofs
< r
- offsetof(struct inotify_event
, name
); )
856 ie
= (struct inotify_event
*) &buffer
[ofs
];
859 ofs
+= offsetof( struct inotify_event
, name
[ie
->len
] );
861 inotify_notify_all( ie
);
865 static inline struct fd
*create_inotify_fd( void )
869 unix_fd
= inotify_init();
872 return create_anonymous_fd( &inotify_fd_ops
, unix_fd
, NULL
, 0 );
875 static int map_flags( unsigned int filter
)
879 /* always watch these so we can track subdirectories in recursive watches */
880 mask
= (IN_MOVED_FROM
| IN_MOVED_TO
| IN_DELETE
| IN_CREATE
| IN_DELETE_SELF
);
882 if (filter
& FILE_NOTIFY_CHANGE_ATTRIBUTES
)
884 if (filter
& FILE_NOTIFY_CHANGE_SIZE
)
886 if (filter
& FILE_NOTIFY_CHANGE_LAST_WRITE
)
888 if (filter
& FILE_NOTIFY_CHANGE_LAST_ACCESS
)
890 if (filter
& FILE_NOTIFY_CHANGE_SECURITY
)
896 static int inotify_add_dir( char *path
, unsigned int filter
)
898 int wd
= inotify_add_watch( get_unix_fd( inotify_fd
),
899 path
, map_flags( filter
) );
901 set_fd_events( inotify_fd
, POLLIN
);
905 static int init_inotify( void )
912 inotify_fd
= create_inotify_fd();
916 for (i
=0; i
<HASH_SIZE
; i
++)
918 list_init( &inode_hash
[i
] );
919 list_init( &wd_hash
[i
] );
925 static int inotify_adjust_changes( struct dir
*dir
)
936 unix_fd
= get_unix_fd( dir
->fd
);
941 /* check if this fd is already being watched */
942 if (-1 == fstat( unix_fd
, &st
))
945 inode
= get_inode( st
.st_dev
, st
.st_ino
);
947 inode
= create_inode( st
.st_dev
, st
.st_ino
);
950 list_add_tail( &inode
->dirs
, &dir
->in_entry
);
954 filter
= filter_from_inode( inode
, 0 );
956 sprintf( path
, "/proc/self/fd/%u", unix_fd
);
957 wd
= inotify_add_dir( path
, filter
);
958 if (wd
== -1) return 0;
960 inode_set_wd( inode
, wd
);
965 static char *get_basename( const char *link
)
967 char *buffer
, *name
= NULL
;
972 buffer
= malloc( n
);
973 if (!buffer
) return NULL
;
975 r
= readlink( link
, buffer
, n
);
990 while (r
> 0 && name
[ r
- 1 ] == '/' )
994 name
= strrchr( name
, '/' );
996 name
= strdup( &name
[1] );
1003 static int dir_add_to_existing_notify( struct dir
*dir
)
1005 struct inode
*inode
, *parent
;
1006 unsigned int filter
= 0;
1007 struct stat st
, st_new
;
1008 char link
[35], *name
;
1014 unix_fd
= get_unix_fd( dir
->fd
);
1016 /* check if it's in the list of inodes we want to watch */
1017 if (-1 == fstat( unix_fd
, &st_new
))
1019 inode
= find_inode( st_new
.st_dev
, st_new
.st_ino
);
1023 /* lookup the parent */
1024 sprintf( link
, "/proc/self/fd/%u/..", unix_fd
);
1025 if (-1 == stat( link
, &st
))
1029 * If there's no parent, stop. We could keep going adding
1030 * ../ to the path until we hit the root of the tree or
1031 * find a recursively watched ancestor.
1032 * Assume it's too expensive to search up the tree for now.
1034 parent
= find_inode( st
.st_dev
, st
.st_ino
);
1038 if (parent
->wd
== -1)
1041 filter
= filter_from_inode( parent
, 1 );
1045 sprintf( link
, "/proc/self/fd/%u", unix_fd
);
1046 name
= get_basename( link
);
1049 inode
= inode_add( parent
, st_new
.st_dev
, st_new
.st_ino
, name
);
1054 /* Couldn't find this inode at the start of the function, must be new */
1055 assert( inode
->wd
== -1 );
1057 wd
= inotify_add_dir( link
, filter
);
1059 inode_set_wd( inode
, wd
);
1066 static int init_inotify( void )
1071 static int inotify_adjust_changes( struct dir
*dir
)
1076 static void free_inode( struct inode
*inode
)
1081 static int dir_add_to_existing_notify( struct dir
*dir
)
1086 #endif /* USE_INOTIFY */
1088 struct object
*create_dir_obj( struct fd
*fd
, unsigned int access
, mode_t mode
)
1092 dir
= alloc_object( &dir_ops
);
1096 list_init( &dir
->change_records
);
1104 dir
->uid
= ~(uid_t
)0;
1105 set_fd_user( fd
, &dir_fd_ops
, &dir
->obj
);
1107 dir_add_to_existing_notify( dir
);
1112 /* enable change notifications for a directory */
1113 DECL_HANDLER(read_directory_changes
)
1116 struct async
*async
;
1120 set_error(STATUS_INVALID_PARAMETER
);
1124 dir
= get_dir_obj( current
->process
, req
->async
.handle
, 0 );
1128 /* requests don't timeout */
1129 if (!(async
= fd_queue_async( dir
->fd
, &req
->async
, ASYNC_TYPE_WAIT
))) goto end
;
1131 /* assign it once */
1135 insert_change( dir
);
1136 dir
->filter
= req
->filter
;
1137 dir
->subtree
= req
->subtree
;
1138 dir
->want_data
= req
->want_data
;
1141 /* if there's already a change in the queue, send it */
1142 if (!list_empty( &dir
->change_records
))
1143 fd_async_wake_up( dir
->fd
, ASYNC_TYPE_WAIT
, STATUS_ALERTED
);
1145 /* setup the real notification */
1146 if (!inotify_adjust_changes( dir
))
1147 dnotify_adjust_changes( dir
);
1149 release_object( async
);
1150 set_error(STATUS_PENDING
);
1153 release_object( dir
);
1156 DECL_HANDLER(read_change
)
1158 struct change_record
*record
, *next
;
1164 dir
= get_dir_obj( current
->process
, req
->handle
, 0 );
1168 list_init( &events
);
1169 list_move_tail( &events
, &dir
->change_records
);
1170 release_object( dir
);
1172 if (list_empty( &events
))
1174 set_error( STATUS_NO_DATA_DETECTED
);
1178 LIST_FOR_EACH_ENTRY( record
, &events
, struct change_record
, entry
)
1180 size
+= (offsetof(struct filesystem_event
, name
[record
->event
.len
])
1181 + sizeof(int)-1) / sizeof(int) * sizeof(int);
1184 if (size
> get_reply_max_size())
1185 set_error( STATUS_BUFFER_TOO_SMALL
);
1186 else if ((data
= mem_alloc( size
)) != NULL
)
1189 LIST_FOR_EACH_ENTRY( record
, &events
, struct change_record
, entry
)
1191 data_size_t len
= offsetof( struct filesystem_event
, name
[record
->event
.len
] );
1193 /* FIXME: rename events are sometimes reported as delete/create */
1194 if (record
->event
.action
== FILE_ACTION_RENAMED_OLD_NAME
)
1196 struct list
*elem
= list_next( &events
, &record
->entry
);
1198 next
= LIST_ENTRY(elem
, struct change_record
, entry
);
1200 if (elem
&& next
->cookie
== record
->cookie
)
1203 record
->event
.action
= FILE_ACTION_REMOVED
;
1205 else if (record
->event
.action
== FILE_ACTION_RENAMED_NEW_NAME
&& record
->cookie
)
1206 record
->event
.action
= FILE_ACTION_ADDED
;
1208 memcpy( event
, &record
->event
, len
);
1210 if (len
% sizeof(int))
1212 memset( event
, 0, sizeof(int) - len
% sizeof(int) );
1213 event
+= sizeof(int) - len
% sizeof(int);
1216 set_reply_data_ptr( data
, size
);
1219 LIST_FOR_EACH_ENTRY_SAFE( record
, next
, &events
, struct change_record
, entry
)
1221 list_remove( &record
->entry
);