2 * Server-side window stations and desktops handling
4 * Copyright (C) 2002, 2005 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
37 #include "wine/unicode.h"
40 static struct list winstation_list
= LIST_INIT(winstation_list
);
41 static struct winstation
*interactive_winstation
;
42 static struct namespace *winstation_namespace
;
44 static void winstation_dump( struct object
*obj
, int verbose
);
45 static int winstation_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
);
46 static void winstation_destroy( struct object
*obj
);
47 static void desktop_dump( struct object
*obj
, int verbose
);
48 static int desktop_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
);
49 static void desktop_destroy( struct object
*obj
);
51 static const struct object_ops winstation_ops
=
53 sizeof(struct winstation
), /* size */
54 winstation_dump
, /* dump */
55 no_add_queue
, /* add_queue */
56 NULL
, /* remove_queue */
59 no_signal
, /* signal */
60 no_get_fd
, /* get_fd */
61 no_lookup_name
, /* lookup_name */
62 winstation_close_handle
, /* close_handle */
63 winstation_destroy
/* destroy */
67 static const struct object_ops desktop_ops
=
69 sizeof(struct desktop
), /* size */
70 desktop_dump
, /* dump */
71 no_add_queue
, /* add_queue */
72 NULL
, /* remove_queue */
75 no_signal
, /* signal */
76 no_get_fd
, /* get_fd */
77 no_lookup_name
, /* lookup_name */
78 desktop_close_handle
, /* close_handle */
79 desktop_destroy
/* destroy */
82 #define DESKTOP_ALL_ACCESS 0x01ff
84 /* create a winstation object */
85 static struct winstation
*create_winstation( const struct unicode_str
*name
, unsigned int attr
,
88 struct winstation
*winstation
;
90 if (!winstation_namespace
&& !(winstation_namespace
= create_namespace( 7 )))
93 if (memchrW( name
->str
, '\\', name
->len
/ sizeof(WCHAR
) )) /* no backslash allowed in name */
95 set_error( STATUS_INVALID_PARAMETER
);
99 if ((winstation
= create_named_object( winstation_namespace
, &winstation_ops
, name
, attr
)))
101 if (get_error() != STATUS_OBJECT_NAME_EXISTS
)
103 /* initialize it if it didn't already exist */
104 winstation
->flags
= flags
;
105 winstation
->clipboard
= NULL
;
106 winstation
->atom_table
= NULL
;
107 list_add_tail( &winstation_list
, &winstation
->entry
);
108 list_init( &winstation
->desktops
);
114 static void winstation_dump( struct object
*obj
, int verbose
)
116 struct winstation
*winstation
= (struct winstation
*)obj
;
118 fprintf( stderr
, "Winstation flags=%x clipboard=%p atoms=%p ",
119 winstation
->flags
, winstation
->clipboard
, winstation
->atom_table
);
120 dump_object_name( &winstation
->obj
);
121 fputc( '\n', stderr
);
124 static int winstation_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
126 return (process
->winstation
!= handle
);
129 static void winstation_destroy( struct object
*obj
)
131 struct winstation
*winstation
= (struct winstation
*)obj
;
133 if (winstation
== interactive_winstation
) interactive_winstation
= NULL
;
134 list_remove( &winstation
->entry
);
135 if (winstation
->clipboard
) release_object( winstation
->clipboard
);
136 if (winstation
->atom_table
) release_object( winstation
->atom_table
);
139 /* retrieve the process window station, checking the handle access rights */
140 struct winstation
*get_process_winstation( struct process
*process
, unsigned int access
)
142 return (struct winstation
*)get_handle_obj( process
, process
->winstation
,
143 access
, &winstation_ops
);
146 /* build the full name of a desktop object */
147 static WCHAR
*build_desktop_name( const struct unicode_str
*name
,
148 struct winstation
*winstation
, struct unicode_str
*res
)
150 const WCHAR
*winstation_name
;
152 size_t winstation_len
;
154 if (memchrW( name
->str
, '\\', name
->len
/ sizeof(WCHAR
) ))
156 set_error( STATUS_INVALID_PARAMETER
);
160 if (!(winstation_name
= get_object_name( &winstation
->obj
, &winstation_len
)))
163 res
->len
= winstation_len
+ name
->len
+ sizeof(WCHAR
);
164 if (!(full_name
= mem_alloc( res
->len
))) return NULL
;
165 memcpy( full_name
, winstation_name
, winstation_len
);
166 full_name
[winstation_len
/ sizeof(WCHAR
)] = '\\';
167 memcpy( full_name
+ winstation_len
/ sizeof(WCHAR
) + 1, name
->str
, name
->len
);
168 res
->str
= full_name
;
172 /* retrieve a pointer to a desktop object */
173 inline static struct desktop
*get_desktop_obj( struct process
*process
, obj_handle_t handle
,
174 unsigned int access
)
176 return (struct desktop
*)get_handle_obj( process
, handle
, access
, &desktop_ops
);
179 /* create a desktop object */
180 static struct desktop
*create_desktop( const struct unicode_str
*name
, unsigned int attr
,
181 unsigned int flags
, struct winstation
*winstation
)
183 struct desktop
*desktop
;
184 struct unicode_str full_str
;
187 if (!(full_name
= build_desktop_name( name
, winstation
, &full_str
))) return NULL
;
189 if ((desktop
= create_named_object( winstation_namespace
, &desktop_ops
, &full_str
, attr
)))
191 if (get_error() != STATUS_OBJECT_NAME_EXISTS
)
193 /* initialize it if it didn't already exist */
194 desktop
->flags
= flags
;
195 desktop
->winstation
= (struct winstation
*)grab_object( winstation
);
196 desktop
->top_window
= NULL
;
197 desktop
->global_hooks
= NULL
;
198 list_add_tail( &winstation
->desktops
, &desktop
->entry
);
205 static void desktop_dump( struct object
*obj
, int verbose
)
207 struct desktop
*desktop
= (struct desktop
*)obj
;
209 fprintf( stderr
, "Desktop flags=%x winstation=%p top_win=%p hooks=%p ",
210 desktop
->flags
, desktop
->winstation
, desktop
->top_window
, desktop
->global_hooks
);
211 dump_object_name( &desktop
->obj
);
212 fputc( '\n', stderr
);
215 static int desktop_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
217 struct thread
*thread
;
219 /* check if the handle is currently used by the process or one of its threads */
220 if (process
->desktop
== handle
) return 0;
221 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
222 if (thread
->desktop
== handle
) return 0;
226 static void desktop_destroy( struct object
*obj
)
228 struct desktop
*desktop
= (struct desktop
*)obj
;
230 if (desktop
->top_window
) destroy_window( desktop
->top_window
);
231 if (desktop
->global_hooks
) release_object( desktop
->global_hooks
);
232 list_remove( &desktop
->entry
);
233 release_object( desktop
->winstation
);
236 /* retrieve the thread desktop, checking the handle access rights */
237 struct desktop
*get_thread_desktop( struct thread
*thread
, unsigned int access
)
239 return get_desktop_obj( thread
->process
, thread
->desktop
, access
);
242 /* connect a process to its window station */
243 void connect_process_winstation( struct process
*process
, const struct unicode_str
*name
)
245 struct winstation
*winstation
;
247 if (process
->winstation
) return; /* already has one */
249 /* check for an inherited winstation handle (don't ask...) */
250 if ((process
->winstation
= find_inherited_handle( process
, &winstation_ops
)) != 0) return;
254 winstation
= create_winstation( name
, OBJ_CASE_INSENSITIVE
| OBJ_OPENIF
, 0 );
258 if (!interactive_winstation
)
260 static const WCHAR winsta0W
[] = {'W','i','n','S','t','a','0'};
261 static const struct unicode_str winsta0
= { winsta0W
, sizeof(winsta0W
) };
262 interactive_winstation
= create_winstation( &winsta0
, OBJ_CASE_INSENSITIVE
| OBJ_OPENIF
, 0 );
263 winstation
= interactive_winstation
;
265 else winstation
= (struct winstation
*)grab_object( interactive_winstation
);
269 process
->winstation
= alloc_handle( process
, winstation
, WINSTA_ALL_ACCESS
, FALSE
);
270 release_object( winstation
);
272 clear_error(); /* ignore errors */
275 /* connect a process to its main desktop */
276 void connect_process_desktop( struct process
*process
, const struct unicode_str
*name
)
278 struct desktop
*desktop
;
279 struct winstation
*winstation
;
281 if (process
->desktop
) return; /* already has one */
283 if ((winstation
= get_process_winstation( process
, WINSTA_CREATEDESKTOP
)))
285 static const WCHAR defaultW
[] = {'D','e','f','a','u','l','t'};
286 static const struct unicode_str default_str
= { defaultW
, sizeof(defaultW
) };
288 if (!name
) name
= &default_str
;
289 if ((desktop
= create_desktop( name
, OBJ_CASE_INSENSITIVE
| OBJ_OPENIF
, 0, winstation
)))
291 process
->desktop
= alloc_handle( process
, desktop
, DESKTOP_ALL_ACCESS
, FALSE
);
292 release_object( desktop
);
294 release_object( winstation
);
296 clear_error(); /* ignore errors */
299 /* close the desktop of a given thread */
300 void close_thread_desktop( struct thread
*thread
)
302 obj_handle_t handle
= thread
->desktop
;
305 if (handle
) close_handle( thread
->process
, handle
, NULL
);
306 clear_error(); /* ignore errors */
310 /* create a window station */
311 DECL_HANDLER(create_winstation
)
313 struct winstation
*winstation
;
314 struct unicode_str name
;
317 get_req_unicode_str( &name
);
318 if ((winstation
= create_winstation( &name
, req
->attributes
, req
->flags
)))
320 reply
->handle
= alloc_handle( current
->process
, winstation
, req
->access
,
321 req
->attributes
& OBJ_INHERIT
);
322 release_object( winstation
);
326 /* open a handle to a window station */
327 DECL_HANDLER(open_winstation
)
329 struct unicode_str name
;
331 get_req_unicode_str( &name
);
332 if (winstation_namespace
)
333 reply
->handle
= open_object( winstation_namespace
, &name
, &winstation_ops
, req
->access
,
336 set_error( STATUS_OBJECT_NAME_NOT_FOUND
);
340 /* close a window station */
341 DECL_HANDLER(close_winstation
)
343 struct winstation
*winstation
;
345 if ((winstation
= (struct winstation
*)get_handle_obj( current
->process
, req
->handle
,
346 0, &winstation_ops
)))
348 if (!close_handle( current
->process
, req
->handle
, NULL
)) set_error( STATUS_ACCESS_DENIED
);
349 release_object( winstation
);
354 /* get the process current window station */
355 DECL_HANDLER(get_process_winstation
)
357 reply
->handle
= current
->process
->winstation
;
361 /* set the process current window station */
362 DECL_HANDLER(set_process_winstation
)
364 struct winstation
*winstation
;
366 if ((winstation
= (struct winstation
*)get_handle_obj( current
->process
, req
->handle
,
367 0, &winstation_ops
)))
369 /* FIXME: should we close the old one? */
370 current
->process
->winstation
= req
->handle
;
371 release_object( winstation
);
375 /* create a desktop */
376 DECL_HANDLER(create_desktop
)
378 struct desktop
*desktop
;
379 struct winstation
*winstation
;
380 struct unicode_str name
;
383 get_req_unicode_str( &name
);
384 if ((winstation
= get_process_winstation( current
->process
, WINSTA_CREATEDESKTOP
)))
386 if ((desktop
= create_desktop( &name
, req
->attributes
, req
->flags
, winstation
)))
388 reply
->handle
= alloc_handle( current
->process
, desktop
, req
->access
,
389 req
->attributes
& OBJ_INHERIT
);
390 release_object( desktop
);
392 release_object( winstation
);
396 /* open a handle to a desktop */
397 DECL_HANDLER(open_desktop
)
399 struct winstation
*winstation
;
400 struct unicode_str name
;
402 get_req_unicode_str( &name
);
403 if ((winstation
= get_process_winstation( current
->process
, 0 /* FIXME: access rights? */ )))
405 struct unicode_str full_str
;
408 if ((full_name
= build_desktop_name( &name
, winstation
, &full_str
)))
410 reply
->handle
= open_object( winstation_namespace
, &full_str
, &desktop_ops
, req
->access
,
414 release_object( winstation
);
419 /* close a desktop */
420 DECL_HANDLER(close_desktop
)
422 struct desktop
*desktop
;
424 /* make sure it is a desktop handle */
425 if ((desktop
= (struct desktop
*)get_handle_obj( current
->process
, req
->handle
,
428 if (!close_handle( current
->process
, req
->handle
, NULL
)) set_error( STATUS_DEVICE_BUSY
);
429 release_object( desktop
);
434 /* get the thread current desktop */
435 DECL_HANDLER(get_thread_desktop
)
437 struct thread
*thread
;
439 if (!(thread
= get_thread_from_id( req
->tid
))) return;
440 reply
->handle
= thread
->desktop
;
441 release_object( thread
);
445 /* set the thread current desktop */
446 DECL_HANDLER(set_thread_desktop
)
448 struct desktop
*old_desktop
, *new_desktop
;
449 struct winstation
*winstation
;
451 if (!(winstation
= get_process_winstation( current
->process
, 0 /* FIXME: access rights? */ )))
454 if (!(new_desktop
= get_desktop_obj( current
->process
, req
->handle
, 0 )))
456 release_object( winstation
);
459 if (new_desktop
->winstation
!= winstation
)
461 set_error( STATUS_ACCESS_DENIED
);
462 release_object( new_desktop
);
463 release_object( winstation
);
467 /* check if we are changing to a new desktop */
469 if (!(old_desktop
= get_desktop_obj( current
->process
, current
->desktop
, 0)))
470 clear_error(); /* ignore error */
472 /* when changing desktop, we can't have any users on the current one */
473 if (old_desktop
!= new_desktop
&& current
->desktop_users
> 0)
474 set_error( STATUS_DEVICE_BUSY
);
476 current
->desktop
= req
->handle
; /* FIXME: should we close the old one? */
478 if (old_desktop
!= new_desktop
) detach_thread_input( current
);
480 if (old_desktop
) release_object( old_desktop
);
481 release_object( new_desktop
);
482 release_object( winstation
);
486 /* get/set information about a user object (window station or desktop) */
487 DECL_HANDLER(set_user_object_info
)
491 if (!(obj
= get_handle_obj( current
->process
, req
->handle
, 0, NULL
))) return;
493 if (obj
->ops
== &desktop_ops
)
495 struct desktop
*desktop
= (struct desktop
*)obj
;
496 reply
->is_desktop
= 1;
497 reply
->old_obj_flags
= desktop
->flags
;
498 if (req
->flags
& SET_USER_OBJECT_FLAGS
) desktop
->flags
= req
->obj_flags
;
500 else if (obj
->ops
== &winstation_ops
)
502 struct winstation
*winstation
= (struct winstation
*)obj
;
503 reply
->is_desktop
= 0;
504 reply
->old_obj_flags
= winstation
->flags
;
505 if (req
->flags
& SET_USER_OBJECT_FLAGS
) winstation
->flags
= req
->obj_flags
;
509 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
510 release_object( obj
);
513 if (get_reply_max_size())
516 const WCHAR
*ptr
, *name
= get_object_name( obj
, &len
);
518 /* if there is a backslash return the part of the name after it */
519 if (name
&& (ptr
= memchrW( name
, '\\', len
)))
521 len
-= (ptr
+ 1 - name
) * sizeof(WCHAR
);
524 if (name
) set_reply_data( name
, min( len
, get_reply_max_size() ));
526 release_object( obj
);