Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b9b1ea9c
Commit
b9b1ea9c
authored
Jun 09, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a close_handle method to the object operations, and use it to
implement registry notifications and the strange behavior of CloseHandle on winstation/desktop handles.
parent
d1a7f070
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
89 additions
and
63 deletions
+89
-63
winstation.c
dlls/user/tests/winstation.c
+10
-20
atom.c
server/atom.c
+1
-0
change.c
server/change.c
+1
-0
console.c
server/console.c
+3
-0
debugger.c
server/debugger.c
+2
-0
event.c
server/event.c
+1
-0
fd.c
server/fd.c
+3
-0
file.c
server/file.c
+1
-0
handle.c
server/handle.c
+6
-2
hook.c
server/hook.c
+1
-0
mailslot.c
server/mailslot.c
+2
-0
mapping.c
server/mapping.c
+1
-0
mutex.c
server/mutex.c
+1
-0
named_pipe.c
server/named_pipe.c
+3
-0
object.c
server/object.c
+5
-0
object.h
server/object.h
+3
-1
process.c
server/process.c
+3
-1
queue.c
server/queue.c
+2
-0
registry.c
server/registry.c
+6
-9
request.c
server/request.c
+1
-0
semaphore.c
server/semaphore.c
+1
-0
serial.c
server/serial.c
+1
-0
signal.c
server/signal.c
+1
-0
snapshot.c
server/snapshot.c
+1
-0
sock.c
server/sock.c
+1
-0
thread.c
server/thread.c
+1
-0
timer.c
server/timer.c
+1
-0
token.c
server/token.c
+1
-0
winstation.c
server/winstation.c
+25
-30
No files found.
dlls/user/tests/winstation.c
View file @
b9b1ea9c
...
...
@@ -53,13 +53,9 @@ static DWORD CALLBACK thread( LPVOID arg )
trace
(
"thread %p desktop: %p
\n
"
,
arg
,
d1
);
ok
(
d1
==
initial_desktop
,
"thread %p doesn't use initial desktop
\n
"
,
arg
);
if
(
0
)
/* FIXME: this should be todo_wine but it would break the rest of the test */
{
SetLastError
(
0xdeadbeef
);
ok
(
!
CloseHandle
(
d1
),
"CloseHandle succeeded
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_HANDLE
,
"bad last error %ld
\n
"
,
GetLastError
()
);
}
SetLastError
(
0xdeadbeef
);
ok
(
!
CloseHandle
(
d1
),
"CloseHandle succeeded
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_HANDLE
,
"bad last error %ld
\n
"
,
GetLastError
()
);
SetLastError
(
0xdeadbeef
);
ok
(
!
CloseDesktop
(
d1
),
"CloseDesktop succeeded
\n
"
);
ok
(
GetLastError
()
==
ERROR_BUSY
,
"bad last error %ld
\n
"
,
GetLastError
()
);
...
...
@@ -109,7 +105,7 @@ static void test_handles(void)
flags
=
0
;
ok
(
GetHandleInformation
(
w1
,
&
flags
),
"GetHandleInformation failed
\n
"
);
todo_wine
ok
(
!
(
flags
&
HANDLE_FLAG_PROTECT_FROM_CLOSE
),
"handle %p PROTECT_FROM_CLOSE set
\n
"
,
w1
);
ok
(
!
(
flags
&
HANDLE_FLAG_PROTECT_FROM_CLOSE
),
"handle %p PROTECT_FROM_CLOSE set
\n
"
,
w1
);
ok
(
DuplicateHandle
(
GetCurrentProcess
(),
w1
,
GetCurrentProcess
(),
(
PHANDLE
)
&
w2
,
0
,
TRUE
,
DUPLICATE_SAME_ACCESS
),
"DuplicateHandle failed
\n
"
);
...
...
@@ -165,12 +161,9 @@ static void test_handles(void)
ok
(
!
CloseDesktop
(
d1
),
"closing thread desktop succeeded
\n
"
);
ok
(
GetLastError
()
==
ERROR_BUSY
,
"bad last error %ld
\n
"
,
GetLastError
()
);
if
(
0
)
/* FIXME: this should be todo_wine but it would break the rest of the test */
{
SetLastError
(
0xdeadbeef
);
ok
(
!
CloseHandle
(
d1
),
"closing thread desktop handle failed
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_HANDLE
,
"bad last error %ld
\n
"
,
GetLastError
()
);
}
SetLastError
(
0xdeadbeef
);
ok
(
!
CloseHandle
(
d1
),
"closing thread desktop handle failed
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_HANDLE
,
"bad last error %ld
\n
"
,
GetLastError
()
);
ok
(
DuplicateHandle
(
GetCurrentProcess
(),
d1
,
GetCurrentProcess
(),
(
PHANDLE
)
&
d2
,
0
,
TRUE
,
DUPLICATE_SAME_ACCESS
),
"DuplicateHandle failed
\n
"
);
...
...
@@ -198,12 +191,9 @@ static void test_handles(void)
d3
=
OpenDesktop
(
"foobar"
,
0
,
TRUE
,
DESKTOP_ALL_ACCESS
);
ok
(
!
d3
,
"open foobar desktop succeeded
\n
"
);
if
(
0
)
/* FIXME: this should be todo_wine but it would break the rest of the test */
{
ok
(
!
CloseHandle
(
d1
),
"closing thread desktop handle succeeded
\n
"
);
d2
=
GetThreadDesktop
(
GetCurrentThreadId
());
ok
(
d1
==
d2
,
"got different handles after close
\n
"
);
}
ok
(
!
CloseHandle
(
d1
),
"closing thread desktop handle succeeded
\n
"
);
d2
=
GetThreadDesktop
(
GetCurrentThreadId
());
ok
(
d1
==
d2
,
"got different handles after close
\n
"
);
trace
(
"thread 1 desktop: %p
\n
"
,
d1
);
print_object
(
d1
);
...
...
server/atom.c
View file @
b9b1ea9c
...
...
@@ -76,6 +76,7 @@ static const struct object_ops atom_table_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
atom_table_destroy
/* destroy */
};
...
...
server/change.c
View file @
b9b1ea9c
...
...
@@ -73,6 +73,7 @@ static const struct object_ops change_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
change_destroy
/* destroy */
};
...
...
server/console.c
View file @
b9b1ea9c
...
...
@@ -48,6 +48,7 @@ static const struct object_ops console_input_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
console_input_destroy
/* destroy */
};
...
...
@@ -73,6 +74,7 @@ static const struct object_ops console_input_events_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
console_input_events_destroy
/* destroy */
};
...
...
@@ -109,6 +111,7 @@ static const struct object_ops screen_buffer_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
screen_buffer_destroy
/* destroy */
};
...
...
server/debugger.c
View file @
b9b1ea9c
...
...
@@ -74,6 +74,7 @@ static const struct object_ops debug_event_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
debug_event_destroy
/* destroy */
};
...
...
@@ -91,6 +92,7 @@ static const struct object_ops debug_ctx_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
debug_ctx_destroy
/* destroy */
};
...
...
server/event.c
View file @
b9b1ea9c
...
...
@@ -53,6 +53,7 @@ static const struct object_ops event_ops =
event_satisfied
,
/* satisfied */
event_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
no_destroy
/* destroy */
};
...
...
server/fd.c
View file @
b9b1ea9c
...
...
@@ -163,6 +163,7 @@ static const struct object_ops fd_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
fd_destroy
/* destroy */
};
...
...
@@ -193,6 +194,7 @@ static const struct object_ops inode_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
inode_destroy
/* destroy */
};
...
...
@@ -224,6 +226,7 @@ static const struct object_ops file_lock_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
no_destroy
/* destroy */
};
...
...
server/file.c
View file @
b9b1ea9c
...
...
@@ -80,6 +80,7 @@ static const struct object_ops file_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
file_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
file_destroy
/* destroy */
};
...
...
server/handle.c
View file @
b9b1ea9c
...
...
@@ -108,6 +108,7 @@ static const struct object_ops handle_table_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
handle_table_destroy
/* destroy */
};
...
...
@@ -323,6 +324,11 @@ int close_handle( struct process *process, obj_handle_t handle, int *fd )
return
0
;
}
obj
=
entry
->
ptr
;
if
(
!
obj
->
ops
->
close_handle
(
obj
,
process
,
handle
))
{
set_error
(
STATUS_INVALID_HANDLE
);
return
0
;
}
entry
->
ptr
=
NULL
;
if
(
fd
)
*
fd
=
entry
->
fd
;
else
if
(
entry
->
fd
!=
-
1
)
return
1
;
/* silently ignore close attempt if we cannot close the fd */
...
...
@@ -330,8 +336,6 @@ int close_handle( struct process *process, obj_handle_t handle, int *fd )
table
=
handle_is_global
(
handle
)
?
global_table
:
process
->
handles
;
if
(
entry
<
table
->
entries
+
table
->
free
)
table
->
free
=
entry
-
table
->
entries
;
if
(
entry
==
table
->
entries
+
table
->
last
)
shrink_handle_table
(
table
);
/* hack: windows seems to treat registry handles differently */
registry_close_handle
(
obj
,
handle
);
release_object
(
obj
);
return
1
;
}
...
...
server/hook.c
View file @
b9b1ea9c
...
...
@@ -79,6 +79,7 @@ static const struct object_ops hook_table_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
hook_table_destroy
/* destroy */
};
...
...
server/mailslot.c
View file @
b9b1ea9c
...
...
@@ -76,6 +76,7 @@ static const struct object_ops mailslot_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
mailslot_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
mailslot_destroy
/* destroy */
};
...
...
@@ -118,6 +119,7 @@ static const struct object_ops mail_writer_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
mail_writer_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
mail_writer_destroy
/* destroy */
};
...
...
server/mapping.c
View file @
b9b1ea9c
...
...
@@ -64,6 +64,7 @@ static const struct object_ops mapping_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
mapping_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
mapping_destroy
/* destroy */
};
...
...
server/mutex.c
View file @
b9b1ea9c
...
...
@@ -56,6 +56,7 @@ static const struct object_ops mutex_ops =
mutex_satisfied
,
/* satisfied */
mutex_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
mutex_destroy
/* destroy */
};
...
...
server/named_pipe.c
View file @
b9b1ea9c
...
...
@@ -112,6 +112,7 @@ static const struct object_ops named_pipe_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
named_pipe_destroy
/* destroy */
};
...
...
@@ -132,6 +133,7 @@ static const struct object_ops pipe_server_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
pipe_server_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
pipe_server_destroy
/* destroy */
};
...
...
@@ -162,6 +164,7 @@ static const struct object_ops pipe_client_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
pipe_client_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
pipe_client_destroy
/* destroy */
};
...
...
server/object.c
View file @
b9b1ea9c
...
...
@@ -294,6 +294,11 @@ struct fd *no_get_fd( struct object *obj )
return
NULL
;
}
int
no_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
)
{
return
1
;
/* ok to close */
}
void
no_destroy
(
struct
object
*
obj
)
{
}
server/object.h
View file @
b9b1ea9c
...
...
@@ -63,6 +63,8 @@ struct object_ops
int
(
*
signal
)(
struct
object
*
,
unsigned
int
);
/* return an fd object that can be used to read/write from the object */
struct
fd
*
(
*
get_fd
)(
struct
object
*
);
/* close a handle to this object */
int
(
*
close_handle
)(
struct
object
*
,
struct
process
*
,
obj_handle_t
);
/* destroy on refcount == 0 */
void
(
*
destroy
)(
struct
object
*
);
};
...
...
@@ -102,6 +104,7 @@ extern int no_add_queue( struct object *obj, struct wait_queue_entry *entry );
extern
int
no_satisfied
(
struct
object
*
obj
,
struct
thread
*
thread
);
extern
int
no_signal
(
struct
object
*
obj
,
unsigned
int
access
);
extern
struct
fd
*
no_get_fd
(
struct
object
*
obj
);
extern
int
no_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
);
extern
void
no_destroy
(
struct
object
*
obj
);
#ifdef DEBUG_OBJECTS
extern
void
dump_objects
(
void
);
...
...
@@ -146,7 +149,6 @@ extern int get_page_size(void);
extern
void
init_registry
(
void
);
extern
void
flush_registry
(
void
);
extern
void
close_registry
(
void
);
extern
void
registry_close_handle
(
struct
object
*
obj
,
obj_handle_t
hkey
);
/* signal functions */
...
...
server/process.c
View file @
b9b1ea9c
...
...
@@ -70,8 +70,9 @@ static const struct object_ops process_ops =
remove_queue
,
/* remove_queue */
process_signaled
,
/* signaled */
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
process_destroy
/* destroy */
};
...
...
@@ -119,6 +120,7 @@ static const struct object_ops startup_info_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
startup_info_destroy
/* destroy */
};
...
...
server/queue.c
View file @
b9b1ea9c
...
...
@@ -148,6 +148,7 @@ static const struct object_ops msg_queue_ops =
msg_queue_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
msg_queue_destroy
/* destroy */
};
...
...
@@ -162,6 +163,7 @@ static const struct object_ops thread_input_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
thread_input_destroy
/* destroy */
};
...
...
server/registry.c
View file @
b9b1ea9c
...
...
@@ -129,6 +129,7 @@ struct file_load_info
static
void
key_dump
(
struct
object
*
obj
,
int
verbose
);
static
int
key_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
);
static
void
key_destroy
(
struct
object
*
obj
);
static
const
struct
object_ops
key_ops
=
...
...
@@ -141,6 +142,7 @@ static const struct object_ops key_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
key_close_handle
,
/* close_handle */
key_destroy
/* destroy */
};
...
...
@@ -293,17 +295,12 @@ static struct notify *find_notify( struct key *key, obj_handle_t hkey)
}
/* close the notification associated with a handle */
void
registry_close_handle
(
struct
object
*
obj
,
obj_handle_t
hkey
)
static
int
key_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
)
{
struct
key
*
key
=
(
struct
key
*
)
obj
;
struct
notify
*
notify
;
if
(
obj
->
ops
!=
&
key_ops
)
return
;
notify
=
find_notify
(
key
,
hkey
);
if
(
!
notify
)
return
;
do_notification
(
key
,
notify
,
1
);
struct
notify
*
notify
=
find_notify
(
key
,
handle
);
if
(
notify
)
do_notification
(
key
,
notify
,
1
);
return
1
;
/* ok to close */
}
static
void
key_destroy
(
struct
object
*
obj
)
...
...
server/request.c
View file @
b9b1ea9c
...
...
@@ -95,6 +95,7 @@ static const struct object_ops master_socket_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
master_socket_destroy
/* destroy */
};
...
...
server/semaphore.c
View file @
b9b1ea9c
...
...
@@ -53,6 +53,7 @@ static const struct object_ops semaphore_ops =
semaphore_satisfied
,
/* satisfied */
semaphore_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
no_destroy
/* destroy */
};
...
...
server/serial.c
View file @
b9b1ea9c
...
...
@@ -103,6 +103,7 @@ static const struct object_ops serial_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
serial_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
serial_destroy
/* destroy */
};
...
...
server/signal.c
View file @
b9b1ea9c
...
...
@@ -64,6 +64,7 @@ static const struct object_ops handler_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
handler_destroy
/* destroy */
};
...
...
server/snapshot.c
View file @
b9b1ea9c
...
...
@@ -63,6 +63,7 @@ static const struct object_ops snapshot_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
snapshot_destroy
/* destroy */
};
...
...
server/sock.c
View file @
b9b1ea9c
...
...
@@ -109,6 +109,7 @@ static const struct object_ops sock_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
sock_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
sock_destroy
/* destroy */
};
...
...
server/thread.c
View file @
b9b1ea9c
...
...
@@ -94,6 +94,7 @@ static const struct object_ops thread_ops =
no_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
destroy_thread
/* destroy */
};
...
...
server/timer.c
View file @
b9b1ea9c
...
...
@@ -61,6 +61,7 @@ static const struct object_ops timer_ops =
timer_satisfied
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
timer_destroy
/* destroy */
};
...
...
server/token.c
View file @
b9b1ea9c
...
...
@@ -109,6 +109,7 @@ static const struct object_ops token_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
no_close_handle
,
/* close_handle */
token_destroy
/* destroy */
};
...
...
server/winstation.c
View file @
b9b1ea9c
...
...
@@ -56,8 +56,10 @@ static struct winstation *interactive_winstation;
static
struct
namespace
*
winstation_namespace
;
static
void
winstation_dump
(
struct
object
*
obj
,
int
verbose
);
static
int
winstation_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
);
static
void
winstation_destroy
(
struct
object
*
obj
);
static
void
desktop_dump
(
struct
object
*
obj
,
int
verbose
);
static
int
desktop_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
);
static
void
desktop_destroy
(
struct
object
*
obj
);
static
const
struct
object_ops
winstation_ops
=
...
...
@@ -70,6 +72,7 @@ static const struct object_ops winstation_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
winstation_close_handle
,
/* close_handle */
winstation_destroy
/* destroy */
};
...
...
@@ -84,6 +87,7 @@ static const struct object_ops desktop_ops =
NULL
,
/* satisfied */
no_signal
,
/* signal */
no_get_fd
,
/* get_fd */
desktop_close_handle
,
/* close_handle */
desktop_destroy
/* destroy */
};
...
...
@@ -125,6 +129,11 @@ static void winstation_dump( struct object *obj, int verbose )
fputc
(
'\n'
,
stderr
);
}
static
int
winstation_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
)
{
return
(
process
->
winstation
!=
handle
);
}
static
void
winstation_destroy
(
struct
object
*
obj
)
{
struct
winstation
*
winstation
=
(
struct
winstation
*
)
obj
;
...
...
@@ -199,25 +208,23 @@ static void desktop_dump( struct object *obj, int verbose )
fputc
(
'\n'
,
stderr
);
}
static
void
desktop_destroy
(
struct
object
*
obj
)
static
int
desktop_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
)
{
struct
desktop
*
desktop
=
(
struct
desktop
*
)
obj
;
struct
thread
*
thread
;
list_remove
(
&
desktop
->
entry
);
release_object
(
desktop
->
winstation
);
/* check if the handle is currently used by the process or one of its threads */
if
(
process
->
desktop
==
handle
)
return
0
;
LIST_FOR_EACH_ENTRY
(
thread
,
&
process
->
thread_list
,
struct
thread
,
proc_entry
)
if
(
thread
->
desktop
==
handle
)
return
0
;
return
1
;
}
/* check if a desktop handle is currently used by the process */
static
int
is_desktop_in_use
(
struct
process
*
process
,
obj_handle_t
handle
)
static
void
desktop_destroy
(
struct
object
*
obj
)
{
struct
thread
*
thread
;
if
(
process
->
desktop
==
handle
)
return
1
;
LIST_FOR_EACH_ENTRY
(
thread
,
&
process
->
thread_list
,
struct
thread
,
proc_entry
)
if
(
thread
->
desktop
==
handle
)
return
1
;
struct
desktop
*
desktop
=
(
struct
desktop
*
)
obj
;
return
0
;
list_remove
(
&
desktop
->
entry
);
release_object
(
desktop
->
winstation
);
}
/* connect a process to its window station */
...
...
@@ -246,13 +253,7 @@ void connect_process_winstation( struct process *process, const WCHAR *name, siz
}
if
(
winstation
)
{
if
((
process
->
winstation
=
alloc_handle
(
process
,
winstation
,
WINSTA_ALL_ACCESS
,
FALSE
)))
{
int
fd
=
-
1
;
/* FIXME: Windows doesn't do it this way */
set_handle_info
(
process
,
process
->
winstation
,
HANDLE_FLAG_PROTECT_FROM_CLOSE
,
HANDLE_FLAG_PROTECT_FROM_CLOSE
,
&
fd
);
}
process
->
winstation
=
alloc_handle
(
process
,
winstation
,
WINSTA_ALL_ACCESS
,
FALSE
);
release_object
(
winstation
);
}
clear_error
();
/* ignore errors */
...
...
@@ -291,8 +292,8 @@ void close_thread_desktop( struct thread *thread )
obj_handle_t
handle
=
thread
->
desktop
;
thread
->
desktop
=
0
;
if
(
handle
&&
!
is_desktop_in_use
(
thread
->
process
,
handle
))
close_handle
(
thread
->
process
,
handle
,
NULL
);
if
(
handle
)
close_handle
(
thread
->
process
,
handle
,
NULL
);
clear_error
();
/* ignore errors */
}
...
...
@@ -328,10 +329,7 @@ DECL_HANDLER(close_winstation)
if
((
winstation
=
(
struct
winstation
*
)
get_handle_obj
(
current
->
process
,
req
->
handle
,
0
,
&
winstation_ops
)))
{
if
(
req
->
handle
!=
current
->
process
->
winstation
)
close_handle
(
current
->
process
,
req
->
handle
,
NULL
);
else
set_error
(
STATUS_ACCESS_DENIED
);
if
(
!
close_handle
(
current
->
process
,
req
->
handle
,
NULL
))
set_error
(
STATUS_ACCESS_DENIED
);
release_object
(
winstation
);
}
}
...
...
@@ -408,10 +406,7 @@ DECL_HANDLER(close_desktop)
if
((
desktop
=
(
struct
desktop
*
)
get_handle_obj
(
current
->
process
,
req
->
handle
,
0
,
&
desktop_ops
)))
{
if
(
!
is_desktop_in_use
(
current
->
process
,
req
->
handle
))
close_handle
(
current
->
process
,
req
->
handle
,
NULL
);
else
set_error
(
STATUS_DEVICE_BUSY
);
if
(
!
close_handle
(
current
->
process
,
req
->
handle
,
NULL
))
set_error
(
STATUS_DEVICE_BUSY
);
release_object
(
desktop
);
}
}
...
...
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