Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e4faabfa
Commit
e4faabfa
authored
Feb 21, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Track created and removed directories in the tree of inodes for inotify.
Add them to or remove them from existing recursive watches.
parent
43a0f0c8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
244 additions
and
44 deletions
+244
-44
directory.c
dlls/ntdll/directory.c
+7
-1
server_protocol.h
include/wine/server_protocol.h
+2
-1
change.c
server/change.c
+233
-42
protocol.def
server/protocol.def
+1
-0
trace.c
server/trace.c
+1
-0
No files found.
dlls/ntdll/directory.c
View file @
e4faabfa
...
@@ -1793,7 +1793,7 @@ static void WINAPI read_changes_apc( void *user, PIO_STATUS_BLOCK iosb, ULONG st
...
@@ -1793,7 +1793,7 @@ static void WINAPI read_changes_apc( void *user, PIO_STATUS_BLOCK iosb, ULONG st
struct
read_changes_info
*
info
=
user
;
struct
read_changes_info
*
info
=
user
;
char
path
[
PATH_MAX
];
char
path
[
PATH_MAX
];
NTSTATUS
ret
=
STATUS_SUCCESS
;
NTSTATUS
ret
=
STATUS_SUCCESS
;
int
len
,
action
;
int
len
,
action
,
i
;
TRACE
(
"%p %p %p %08lx
\n
"
,
info
,
info
->
ApcContext
,
iosb
,
status
);
TRACE
(
"%p %p %p %08lx
\n
"
,
info
,
info
->
ApcContext
,
iosb
,
status
);
...
@@ -1823,6 +1823,11 @@ static void WINAPI read_changes_apc( void *user, PIO_STATUS_BLOCK iosb, ULONG st
...
@@ -1823,6 +1823,11 @@ static void WINAPI read_changes_apc( void *user, PIO_STATUS_BLOCK iosb, ULONG st
pfni
=
(
PFILE_NOTIFY_INFORMATION
)
info
->
Buffer
;
pfni
=
(
PFILE_NOTIFY_INFORMATION
)
info
->
Buffer
;
/* convert to an NT style path */
for
(
i
=
0
;
i
<
len
;
i
++
)
if
(
path
[
i
]
==
'/'
)
path
[
i
]
=
'\\'
;
len
=
ntdll_umbstowcs
(
0
,
path
,
len
,
pfni
->
FileName
,
len
=
ntdll_umbstowcs
(
0
,
path
,
len
,
pfni
->
FileName
,
info
->
BufferSize
-
sizeof
(
*
pfni
)
);
info
->
BufferSize
-
sizeof
(
*
pfni
)
);
...
@@ -1900,6 +1905,7 @@ NtNotifyChangeDirectoryFile( HANDLE FileHandle, HANDLE Event,
...
@@ -1900,6 +1905,7 @@ NtNotifyChangeDirectoryFile( HANDLE FileHandle, HANDLE Event,
req
->
event
=
Event
;
req
->
event
=
Event
;
req
->
filter
=
CompletionFilter
;
req
->
filter
=
CompletionFilter
;
req
->
want_data
=
(
Buffer
!=
NULL
);
req
->
want_data
=
(
Buffer
!=
NULL
);
req
->
subtree
=
WatchTree
;
req
->
io_apc
=
read_changes_apc
;
req
->
io_apc
=
read_changes_apc
;
req
->
io_sb
=
IoStatusBlock
;
req
->
io_sb
=
IoStatusBlock
;
req
->
io_user
=
info
;
req
->
io_user
=
info
;
...
...
include/wine/server_protocol.h
View file @
e4faabfa
...
@@ -1400,6 +1400,7 @@ struct read_directory_changes_request
...
@@ -1400,6 +1400,7 @@ struct read_directory_changes_request
obj_handle_t
handle
;
obj_handle_t
handle
;
obj_handle_t
event
;
obj_handle_t
event
;
unsigned
int
filter
;
unsigned
int
filter
;
int
subtree
;
int
want_data
;
int
want_data
;
void
*
io_apc
;
void
*
io_apc
;
void
*
io_sb
;
void
*
io_sb
;
...
@@ -4363,6 +4364,6 @@ union generic_reply
...
@@ -4363,6 +4364,6 @@ union generic_reply
struct
query_symlink_reply
query_symlink_reply
;
struct
query_symlink_reply
query_symlink_reply
;
};
};
#define SERVER_PROTOCOL_VERSION 22
6
#define SERVER_PROTOCOL_VERSION 22
7
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/change.c
View file @
e4faabfa
...
@@ -152,6 +152,7 @@ struct dir
...
@@ -152,6 +152,7 @@ struct dir
int
notified
;
/* SIGIO counter */
int
notified
;
/* SIGIO counter */
int
want_data
;
/* return change data */
int
want_data
;
/* return change data */
long
signaled
;
/* the file changed */
long
signaled
;
/* the file changed */
int
subtree
;
/* do we want to watch subdirectories? */
struct
list
change_q
;
/* change readers */
struct
list
change_q
;
/* change readers */
struct
list
change_records
;
/* data for the change */
struct
list
change_records
;
/* data for the change */
struct
list
in_entry
;
/* entry in the inode dirs list */
struct
list
in_entry
;
/* entry in the inode dirs list */
...
@@ -388,17 +389,23 @@ static void dir_cancel_async( struct fd *fd )
...
@@ -388,17 +389,23 @@ static void dir_cancel_async( struct fd *fd )
#define HASH_SIZE 31
#define HASH_SIZE 31
struct
inode
{
struct
inode
{
struct
list
ch_entry
;
/* entry in the children list */
struct
list
children
;
/* children of this inode */
struct
inode
*
parent
;
/* parent of this inode */
struct
list
dirs
;
/* directory handles watching this inode */
struct
list
dirs
;
/* directory handles watching this inode */
struct
list
ino_entry
;
/* entry in the inode hash */
struct
list
ino_entry
;
/* entry in the inode hash */
struct
list
wd_entry
;
/* entry in the watch descriptor hash */
struct
list
wd_entry
;
/* entry in the watch descriptor hash */
dev_t
dev
;
/* device number */
dev_t
dev
;
/* device number */
ino_t
ino
;
/* device's inode number */
ino_t
ino
;
/* device's inode number */
int
wd
;
/* inotify's watch descriptor */
int
wd
;
/* inotify's watch descriptor */
char
*
name
;
/* basename name of the inode */
};
};
struct
list
inode_hash
[
HASH_SIZE
];
struct
list
inode_hash
[
HASH_SIZE
];
struct
list
wd_hash
[
HASH_SIZE
];
struct
list
wd_hash
[
HASH_SIZE
];
static
int
inotify_add_dir
(
char
*
path
,
unsigned
int
filter
);
static
struct
inode
*
inode_from_wd
(
int
wd
)
static
struct
inode
*
inode_from_wd
(
int
wd
)
{
{
struct
list
*
bucket
=
&
wd_hash
[
wd
%
HASH_SIZE
];
struct
list
*
bucket
=
&
wd_hash
[
wd
%
HASH_SIZE
];
...
@@ -416,7 +423,7 @@ static inline struct list *get_hash_list( dev_t dev, ino_t ino )
...
@@ -416,7 +423,7 @@ static inline struct list *get_hash_list( dev_t dev, ino_t ino )
return
&
inode_hash
[
(
ino
^
dev
)
%
HASH_SIZE
];
return
&
inode_hash
[
(
ino
^
dev
)
%
HASH_SIZE
];
}
}
static
struct
inode
*
get
_inode
(
dev_t
dev
,
ino_t
ino
)
static
struct
inode
*
find
_inode
(
dev_t
dev
,
ino_t
ino
)
{
{
struct
list
*
bucket
=
get_hash_list
(
dev
,
ino
);
struct
list
*
bucket
=
get_hash_list
(
dev
,
ino
);
struct
inode
*
inode
;
struct
inode
*
inode
;
...
@@ -435,15 +442,28 @@ static struct inode *create_inode( dev_t dev, ino_t ino )
...
@@ -435,15 +442,28 @@ static struct inode *create_inode( dev_t dev, ino_t ino )
inode
=
malloc
(
sizeof
*
inode
);
inode
=
malloc
(
sizeof
*
inode
);
if
(
inode
)
if
(
inode
)
{
{
list_init
(
&
inode
->
children
);
list_init
(
&
inode
->
dirs
);
list_init
(
&
inode
->
dirs
);
inode
->
ino
=
ino
;
inode
->
ino
=
ino
;
inode
->
dev
=
dev
;
inode
->
dev
=
dev
;
inode
->
wd
=
-
1
;
inode
->
wd
=
-
1
;
inode
->
parent
=
NULL
;
inode
->
name
=
NULL
;
list_add_tail
(
get_hash_list
(
dev
,
ino
),
&
inode
->
ino_entry
);
list_add_tail
(
get_hash_list
(
dev
,
ino
),
&
inode
->
ino_entry
);
}
}
return
inode
;
return
inode
;
}
}
static
struct
inode
*
get_inode
(
dev_t
dev
,
ino_t
ino
)
{
struct
inode
*
inode
;
inode
=
find_inode
(
dev
,
ino
);
if
(
inode
)
return
inode
;
return
create_inode
(
dev
,
ino
);
}
static
void
inode_set_wd
(
struct
inode
*
inode
,
int
wd
)
static
void
inode_set_wd
(
struct
inode
*
inode
,
int
wd
)
{
{
if
(
inode
->
wd
!=
-
1
)
if
(
inode
->
wd
!=
-
1
)
...
@@ -452,20 +472,83 @@ static void inode_set_wd( struct inode *inode, int wd )
...
@@ -452,20 +472,83 @@ static void inode_set_wd( struct inode *inode, int wd )
list_add_tail
(
&
wd_hash
[
wd
%
HASH_SIZE
],
&
inode
->
wd_entry
);
list_add_tail
(
&
wd_hash
[
wd
%
HASH_SIZE
],
&
inode
->
wd_entry
);
}
}
static
void
inode_set_name
(
struct
inode
*
inode
,
const
char
*
name
)
{
if
(
inode
->
name
)
free
(
inode
->
name
);
inode
->
name
=
name
?
strdup
(
name
)
:
NULL
;
}
static
void
free_inode
(
struct
inode
*
inode
)
static
void
free_inode
(
struct
inode
*
inode
)
{
{
if
(
!
list_empty
(
&
inode
->
dirs
))
int
subtree
=
0
,
watches
=
0
;
struct
dir
*
dir
;
LIST_FOR_EACH_ENTRY
(
dir
,
&
inode
->
dirs
,
struct
dir
,
in_entry
)
{
subtree
|=
dir
->
subtree
;
watches
++
;
}
if
(
!
subtree
&&
!
inode
->
parent
)
{
struct
list
*
head
;
while
(
(
head
=
list_head
(
&
inode
->
children
))
)
{
struct
inode
*
tmp
=
LIST_ENTRY
(
head
,
struct
inode
,
ch_entry
);
assert
(
tmp
!=
inode
);
assert
(
tmp
->
parent
==
inode
);
free_inode
(
tmp
);
}
}
if
(
watches
)
return
;
return
;
if
(
inode
->
parent
)
list_remove
(
&
inode
->
ch_entry
);
if
(
inode
->
wd
!=
-
1
)
if
(
inode
->
wd
!=
-
1
)
{
{
inotify_remove_watch
(
get_unix_fd
(
inotify_fd
),
inode
->
wd
);
inotify_remove_watch
(
get_unix_fd
(
inotify_fd
),
inode
->
wd
);
list_remove
(
&
inode
->
wd_entry
);
list_remove
(
&
inode
->
wd_entry
);
}
}
list_remove
(
&
inode
->
ino_entry
);
list_remove
(
&
inode
->
ino_entry
);
free
(
inode
->
name
);
free
(
inode
);
free
(
inode
);
}
}
static
struct
inode
*
inode_add
(
struct
inode
*
parent
,
dev_t
dev
,
ino_t
ino
,
const
char
*
name
)
{
struct
inode
*
inode
;
inode
=
get_inode
(
dev
,
ino
);
if
(
!
inode
)
return
NULL
;
if
(
!
inode
->
parent
)
{
list_add_tail
(
&
parent
->
children
,
&
inode
->
ch_entry
);
inode
->
parent
=
parent
;
assert
(
inode
!=
parent
);
}
inode_set_name
(
inode
,
name
);
return
inode
;
}
static
struct
inode
*
inode_from_name
(
struct
inode
*
inode
,
const
char
*
name
)
{
struct
inode
*
i
;
LIST_FOR_EACH_ENTRY
(
i
,
&
inode
->
children
,
struct
inode
,
ch_entry
)
if
(
i
->
name
&&
!
strcmp
(
i
->
name
,
name
))
return
i
;
return
NULL
;
}
static
int
inotify_get_poll_events
(
struct
fd
*
fd
);
static
int
inotify_get_poll_events
(
struct
fd
*
fd
);
static
void
inotify_poll_event
(
struct
fd
*
fd
,
int
event
);
static
void
inotify_poll_event
(
struct
fd
*
fd
,
int
event
);
static
int
inotify_get_info
(
struct
fd
*
fd
);
static
int
inotify_get_info
(
struct
fd
*
fd
);
...
@@ -490,6 +573,8 @@ static void inotify_do_change_notify( struct dir *dir, unsigned int action,
...
@@ -490,6 +573,8 @@ static void inotify_do_change_notify( struct dir *dir, unsigned int action,
{
{
struct
change_record
*
record
;
struct
change_record
*
record
;
assert
(
dir
->
obj
.
ops
==
&
dir_ops
);
if
(
dir
->
want_data
)
if
(
dir
->
want_data
)
{
{
size_t
len
=
strlen
(
relpath
);
size_t
len
=
strlen
(
relpath
);
...
@@ -531,38 +616,134 @@ static unsigned int filter_from_event( struct inotify_event *ie )
...
@@ -531,38 +616,134 @@ static unsigned int filter_from_event( struct inotify_event *ie )
return
filter
;
return
filter
;
}
}
static
int
inode_entry_is_dir
(
struct
inode
*
inode
,
const
char
*
name
)
/* scan up the parent directories for watches */
static
unsigned
int
filter_from_inode
(
struct
inode
*
inode
,
int
is_parent
)
{
unsigned
int
filter
=
0
;
struct
dir
*
dir
;
/* combine filters from parents watching subtrees */
while
(
inode
)
{
LIST_FOR_EACH_ENTRY
(
dir
,
&
inode
->
dirs
,
struct
dir
,
in_entry
)
if
(
dir
->
subtree
||
!
is_parent
)
filter
|=
dir
->
filter
;
is_parent
=
1
;
inode
=
inode
->
parent
;
}
return
filter
;
}
static
char
*
inode_get_path
(
struct
inode
*
inode
,
int
sz
)
{
{
/* distinguish a created file from a directory */
char
*
path
;
struct
list
*
head
;
struct
list
*
head
;
struct
stat
st
;
char
*
path
;
int
unix_fd
,
r
;
int
len
;
if
(
!
inode
)
return
NULL
;
head
=
list_head
(
&
inode
->
dirs
);
head
=
list_head
(
&
inode
->
dirs
);
if
(
!
head
)
if
(
head
)
return
-
1
;
{
int
unix_fd
=
get_unix_fd
(
LIST_ENTRY
(
head
,
struct
dir
,
in_entry
)
->
fd
);
path
=
malloc
(
32
+
sz
);
if
(
path
)
sprintf
(
path
,
"/proc/self/fd/%u/"
,
unix_fd
);
return
path
;
}
if
(
!
inode
->
name
)
return
NULL
;
len
=
strlen
(
inode
->
name
);
path
=
inode_get_path
(
inode
->
parent
,
sz
+
len
+
1
);
if
(
!
path
)
return
NULL
;
strcat
(
path
,
inode
->
name
);
strcat
(
path
,
"/"
);
return
path
;
}
static
int
inode_check_dir
(
struct
inode
*
parent
,
const
char
*
name
)
{
char
*
path
;
unsigned
int
filter
;
struct
inode
*
inode
;
struct
stat
st
;
int
wd
=
-
1
,
r
=
-
1
;
path
=
malloc
(
strlen
(
name
)
+
32
);
path
=
inode_get_path
(
parent
,
strlen
(
name
)
);
if
(
!
path
)
if
(
!
path
)
return
-
1
;
return
r
;
strcat
(
path
,
name
);
unix_fd
=
get_unix_fd
(
LIST_ENTRY
(
head
,
struct
dir
,
in_entry
)
->
fd
);
sprintf
(
path
,
"/proc/self/fd/%u/%s"
,
unix_fd
,
name
);
r
=
stat
(
path
,
&
st
);
r
=
stat
(
path
,
&
st
);
if
(
r
<
0
)
goto
end
;
if
(
!
S_ISDIR
(
st
.
st_mode
))
{
r
=
0
;
goto
end
;
}
r
=
1
;
filter
=
filter_from_inode
(
parent
,
1
);
if
(
!
filter
)
goto
end
;
inode
=
inode_add
(
parent
,
st
.
st_dev
,
st
.
st_ino
,
name
);
if
(
!
inode
||
inode
->
wd
!=
-
1
)
goto
end
;
wd
=
inotify_add_dir
(
path
,
filter
);
if
(
wd
!=
-
1
)
inode_set_wd
(
inode
,
wd
);
else
free_inode
(
inode
);
end:
free
(
path
);
free
(
path
);
if
(
-
1
==
r
)
return
r
;
return
-
1
;
}
if
(
S_ISDIR
(
st
.
st_mode
))
static
int
prepend
(
char
**
path
,
const
char
*
segment
)
return
1
;
{
return
0
;
int
extra
;
char
*
p
;
extra
=
strlen
(
segment
)
+
1
;
if
(
*
path
)
{
int
len
=
strlen
(
*
path
)
+
1
;
p
=
realloc
(
*
path
,
len
+
extra
);
if
(
!
p
)
return
0
;
memmove
(
&
p
[
extra
],
p
,
len
);
p
[
extra
-
1
]
=
'/'
;
memcpy
(
p
,
segment
,
extra
-
1
);
}
else
{
p
=
malloc
(
extra
);
if
(
!
p
)
return
0
;
memcpy
(
p
,
segment
,
extra
);
}
*
path
=
p
;
return
1
;
}
}
static
void
inotify_notify_all
(
struct
inotify_event
*
ie
)
static
void
inotify_notify_all
(
struct
inotify_event
*
ie
)
{
{
unsigned
int
filter
,
action
;
unsigned
int
filter
,
action
;
struct
inode
*
inode
;
struct
inode
*
inode
,
*
i
;
char
*
path
=
NULL
;
struct
dir
*
dir
;
struct
dir
*
dir
;
inode
=
inode_from_wd
(
ie
->
wd
);
inode
=
inode_from_wd
(
ie
->
wd
);
...
@@ -576,7 +757,7 @@ static void inotify_notify_all( struct inotify_event *ie )
...
@@ -576,7 +757,7 @@ static void inotify_notify_all( struct inotify_event *ie )
if
(
ie
->
mask
&
IN_CREATE
)
if
(
ie
->
mask
&
IN_CREATE
)
{
{
switch
(
inode_
entry_is
_dir
(
inode
,
ie
->
name
))
switch
(
inode_
check
_dir
(
inode
,
ie
->
name
))
{
{
case
1
:
case
1
:
filter
&=
~
FILE_NOTIFY_CHANGE_FILE_NAME
;
filter
&=
~
FILE_NOTIFY_CHANGE_FILE_NAME
;
...
@@ -595,9 +776,32 @@ static void inotify_notify_all( struct inotify_event *ie )
...
@@ -595,9 +776,32 @@ static void inotify_notify_all( struct inotify_event *ie )
else
else
action
=
FILE_ACTION_MODIFIED
;
action
=
FILE_ACTION_MODIFIED
;
LIST_FOR_EACH_ENTRY
(
dir
,
&
inode
->
dirs
,
struct
dir
,
in_entry
)
/*
if
(
filter
&
dir
->
filter
)
* Work our way up the inode heirachy
inotify_do_change_notify
(
dir
,
action
,
ie
->
name
);
* extending the relative path as we go
* and notifyiny all recursive watches.
*/
if
(
!
prepend
(
&
path
,
ie
->
name
))
return
;
for
(
i
=
inode
;
i
;
i
=
i
->
parent
)
{
LIST_FOR_EACH_ENTRY
(
dir
,
&
i
->
dirs
,
struct
dir
,
in_entry
)
if
((
filter
&
dir
->
filter
)
&&
(
i
==
inode
||
dir
->
subtree
))
inotify_do_change_notify
(
dir
,
action
,
path
);
if
(
!
i
->
name
||
!
prepend
(
&
path
,
i
->
name
))
break
;
}
free
(
path
);
if
(
ie
->
mask
&
IN_DELETE
)
{
i
=
inode_from_name
(
inode
,
ie
->
name
);
if
(
i
)
free_inode
(
i
);
}
}
}
static
void
inotify_poll_event
(
struct
fd
*
fd
,
int
event
)
static
void
inotify_poll_event
(
struct
fd
*
fd
,
int
event
)
...
@@ -642,12 +846,11 @@ static inline struct fd *create_inotify_fd( void )
...
@@ -642,12 +846,11 @@ static inline struct fd *create_inotify_fd( void )
static
int
map_flags
(
unsigned
int
filter
)
static
int
map_flags
(
unsigned
int
filter
)
{
{
unsigned
int
mask
=
0
;
unsigned
int
mask
;
/* always watch these so we can track subdirectories in recursive watches */
mask
=
(
IN_MOVED_FROM
|
IN_MOVED_TO
|
IN_DELETE
|
IN_CREATE
|
IN_DELETE_SELF
);
if
(
filter
&
FILE_NOTIFY_CHANGE_FILE_NAME
)
mask
|=
(
IN_MOVED_FROM
|
IN_MOVED_TO
|
IN_DELETE
|
IN_CREATE
);
if
(
filter
&
FILE_NOTIFY_CHANGE_DIR_NAME
)
mask
|=
(
IN_MOVED_FROM
|
IN_MOVED_TO
|
IN_DELETE
|
IN_CREATE
|
IN_DELETE_SELF
);
if
(
filter
&
FILE_NOTIFY_CHANGE_ATTRIBUTES
)
if
(
filter
&
FILE_NOTIFY_CHANGE_ATTRIBUTES
)
mask
|=
IN_ATTRIB
;
mask
|=
IN_ATTRIB
;
if
(
filter
&
FILE_NOTIFY_CHANGE_SIZE
)
if
(
filter
&
FILE_NOTIFY_CHANGE_SIZE
)
...
@@ -656,8 +859,6 @@ static int map_flags( unsigned int filter )
...
@@ -656,8 +859,6 @@ static int map_flags( unsigned int filter )
mask
|=
IN_MODIFY
;
mask
|=
IN_MODIFY
;
if
(
filter
&
FILE_NOTIFY_CHANGE_LAST_ACCESS
)
if
(
filter
&
FILE_NOTIFY_CHANGE_LAST_ACCESS
)
mask
|=
IN_ACCESS
;
mask
|=
IN_ACCESS
;
if
(
filter
&
FILE_NOTIFY_CHANGE_CREATION
)
mask
|=
IN_CREATE
;
if
(
filter
&
FILE_NOTIFY_CHANGE_SECURITY
)
if
(
filter
&
FILE_NOTIFY_CHANGE_SECURITY
)
mask
|=
IN_ATTRIB
;
mask
|=
IN_ATTRIB
;
...
@@ -673,17 +874,6 @@ static int inotify_add_dir( char *path, unsigned int filter )
...
@@ -673,17 +874,6 @@ static int inotify_add_dir( char *path, unsigned int filter )
return
wd
;
return
wd
;
}
}
static
unsigned
int
filter_from_inode
(
struct
inode
*
inode
)
{
unsigned
int
filter
=
0
;
struct
dir
*
dir
;
LIST_FOR_EACH_ENTRY
(
dir
,
&
inode
->
dirs
,
struct
dir
,
in_entry
)
filter
|=
dir
->
filter
;
return
filter
;
}
static
int
init_inotify
(
void
)
static
int
init_inotify
(
void
)
{
{
int
i
;
int
i
;
...
@@ -733,7 +923,7 @@ static int inotify_adjust_changes( struct dir *dir )
...
@@ -733,7 +923,7 @@ static int inotify_adjust_changes( struct dir *dir )
dir
->
inode
=
inode
;
dir
->
inode
=
inode
;
}
}
filter
=
filter_from_inode
(
inode
);
filter
=
filter_from_inode
(
inode
,
0
);
sprintf
(
path
,
"/proc/self/fd/%u"
,
unix_fd
);
sprintf
(
path
,
"/proc/self/fd/%u"
,
unix_fd
);
wd
=
inotify_add_dir
(
path
,
filter
);
wd
=
inotify_add_dir
(
path
,
filter
);
...
@@ -825,6 +1015,7 @@ DECL_HANDLER(read_directory_changes)
...
@@ -825,6 +1015,7 @@ DECL_HANDLER(read_directory_changes)
init_inotify
();
init_inotify
();
insert_change
(
dir
);
insert_change
(
dir
);
dir
->
filter
=
req
->
filter
;
dir
->
filter
=
req
->
filter
;
dir
->
subtree
=
req
->
subtree
;
dir
->
want_data
=
req
->
want_data
;
dir
->
want_data
=
req
->
want_data
;
}
}
...
...
server/protocol.def
View file @
e4faabfa
...
@@ -1044,6 +1044,7 @@ enum char_info_mode
...
@@ -1044,6 +1044,7 @@ enum char_info_mode
obj_handle_t handle; /* handle to the directory */
obj_handle_t handle; /* handle to the directory */
obj_handle_t event; /* handle to the event */
obj_handle_t event; /* handle to the event */
unsigned int filter; /* notification filter */
unsigned int filter; /* notification filter */
int subtree; /* watch the subtree? */
int want_data; /* flag indicating whether change data should be collected */
int want_data; /* flag indicating whether change data should be collected */
void* io_apc; /* APC routine to queue upon end of async */
void* io_apc; /* APC routine to queue upon end of async */
void* io_sb; /* I/O status block (unique across all async on this handle) */
void* io_sb; /* I/O status block (unique across all async on this handle) */
...
...
server/trace.c
View file @
e4faabfa
...
@@ -1448,6 +1448,7 @@ static void dump_read_directory_changes_request( const struct read_directory_cha
...
@@ -1448,6 +1448,7 @@ static void dump_read_directory_changes_request( const struct read_directory_cha
fprintf
(
stderr
,
" handle=%p,"
,
req
->
handle
);
fprintf
(
stderr
,
" handle=%p,"
,
req
->
handle
);
fprintf
(
stderr
,
" event=%p,"
,
req
->
event
);
fprintf
(
stderr
,
" event=%p,"
,
req
->
event
);
fprintf
(
stderr
,
" filter=%08x,"
,
req
->
filter
);
fprintf
(
stderr
,
" filter=%08x,"
,
req
->
filter
);
fprintf
(
stderr
,
" subtree=%d,"
,
req
->
subtree
);
fprintf
(
stderr
,
" want_data=%d,"
,
req
->
want_data
);
fprintf
(
stderr
,
" want_data=%d,"
,
req
->
want_data
);
fprintf
(
stderr
,
" io_apc=%p,"
,
req
->
io_apc
);
fprintf
(
stderr
,
" io_apc=%p,"
,
req
->
io_apc
);
fprintf
(
stderr
,
" io_sb=%p,"
,
req
->
io_sb
);
fprintf
(
stderr
,
" io_sb=%p,"
,
req
->
io_sb
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment