Document active object and variant functions.
[wine/multimedia.git] / server / hook.c
blob0830450bce30542ec661ce9cb1ba0f0bf440eb7b
1 /*
2 * Server-side window hooks support
4 * Copyright (C) 2002 Alexandre Julliard
5 * Copyright (C) 2005 Dmitry Timoshkov
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <stdio.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winuser.h"
33 #include "object.h"
34 #include "process.h"
35 #include "request.h"
36 #include "user.h"
38 struct hook_table;
40 struct hook
42 struct list chain; /* hook chain entry */
43 user_handle_t handle; /* user handle for this hook */
44 struct process *process; /* process the hook is set to */
45 struct thread *thread; /* thread the hook is set to */
46 struct thread *owner; /* owner of the out of context hook */
47 int index; /* hook table index */
48 int event_min;
49 int event_max;
50 int flags;
51 void *proc; /* hook function */
52 int unicode; /* is it a unicode hook? */
53 WCHAR *module; /* module name for global hooks */
54 size_t module_size;
57 #define WH_WINEVENT (WH_MAXHOOK+1)
59 #define NB_HOOKS (WH_WINEVENT-WH_MINHOOK+1)
60 #define HOOK_ENTRY(p) LIST_ENTRY( (p), struct hook, chain )
62 struct hook_table
64 struct object obj; /* object header */
65 struct list hooks[NB_HOOKS]; /* array of hook chains */
66 int counts[NB_HOOKS]; /* use counts for each hook chain */
69 static void hook_table_dump( struct object *obj, int verbose );
70 static void hook_table_destroy( struct object *obj );
72 static const struct object_ops hook_table_ops =
74 sizeof(struct hook_table), /* size */
75 hook_table_dump, /* dump */
76 no_add_queue, /* add_queue */
77 NULL, /* remove_queue */
78 NULL, /* signaled */
79 NULL, /* satisfied */
80 no_signal, /* signal */
81 no_get_fd, /* get_fd */
82 no_close_handle, /* close_handle */
83 hook_table_destroy /* destroy */
87 static struct hook_table *global_hooks;
89 /* create a new hook table */
90 static struct hook_table *alloc_hook_table(void)
92 struct hook_table *table;
93 int i;
95 if ((table = alloc_object( &hook_table_ops )))
97 for (i = 0; i < NB_HOOKS; i++)
99 list_init( &table->hooks[i] );
100 table->counts[i] = 0;
103 return table;
106 /* create a new hook and add it to the specified table */
107 static struct hook *add_hook( struct thread *thread, int index, int global )
109 struct hook *hook;
110 struct hook_table *table = global ? global_hooks : get_queue_hooks(thread);
112 if (!table)
114 if (!(table = alloc_hook_table())) return NULL;
115 if (global) global_hooks = table;
116 else set_queue_hooks( thread, table );
118 if (!(hook = mem_alloc( sizeof(*hook) ))) return NULL;
120 if (!(hook->handle = alloc_user_handle( hook, USER_HOOK )))
122 free( hook );
123 return NULL;
125 hook->thread = thread ? (struct thread *)grab_object( thread ) : NULL;
126 hook->index = index;
127 list_add_head( &table->hooks[index], &hook->chain );
128 if (thread) thread->desktop_users++;
129 return hook;
132 /* free a hook, removing it from its chain */
133 static void free_hook( struct hook *hook )
135 free_user_handle( hook->handle );
136 if (hook->module) free( hook->module );
137 if (hook->thread)
139 assert( hook->thread->desktop_users > 0 );
140 hook->thread->desktop_users--;
141 release_object( hook->thread );
143 if (hook->process) release_object( hook->process );
144 release_object( hook->owner );
145 list_remove( &hook->chain );
146 free( hook );
149 /* find a hook from its index and proc */
150 static struct hook *find_hook( struct thread *thread, int index, void *proc )
152 struct list *p;
153 struct hook_table *table = get_queue_hooks( thread );
155 if (table)
157 LIST_FOR_EACH( p, &table->hooks[index] )
159 struct hook *hook = HOOK_ENTRY( p );
160 if (hook->proc == proc) return hook;
163 return NULL;
166 /* get the hook table that a given hook belongs to */
167 inline static struct hook_table *get_table( struct hook *hook )
169 if (!hook->thread) return global_hooks;
170 if (hook->index + WH_MINHOOK == WH_KEYBOARD_LL) return global_hooks;
171 if (hook->index + WH_MINHOOK == WH_MOUSE_LL) return global_hooks;
172 return get_queue_hooks(hook->thread);
175 /* get the first hook in the chain */
176 inline static struct hook *get_first_hook( struct hook_table *table, int index )
178 struct list *elem = list_head( &table->hooks[index] );
179 return elem ? HOOK_ENTRY( elem ) : NULL;
182 /* check if a given hook should run in the current thread */
183 inline static int run_hook_in_current_thread( struct hook *hook )
185 if ((!hook->process || hook->process == current->process) &&
186 (!(hook->flags & WINEVENT_SKIPOWNPROCESS) || hook->process != current->process))
188 if ((!hook->thread || hook->thread == current) &&
189 (!(hook->flags & WINEVENT_SKIPOWNTHREAD) || hook->thread != current))
190 return 1;
192 return 0;
195 /* find the first non-deleted hook in the chain */
196 inline static struct hook *get_first_valid_hook( struct hook_table *table, int index,
197 int event, user_handle_t win,
198 int object_id, int child_id )
200 struct hook *hook = get_first_hook( table, index );
202 while (hook)
204 if (hook->proc && run_hook_in_current_thread( hook ))
206 if (event >= hook->event_min && event <= hook->event_max)
208 if (hook->flags & WINEVENT_INCONTEXT) return hook;
210 /* only winevent hooks may be out of context */
211 assert(hook->index + WH_MINHOOK == WH_WINEVENT);
212 post_win_event( hook->owner, event, win, object_id, child_id,
213 hook->proc, hook->module, hook->module_size,
214 hook->handle );
217 hook = HOOK_ENTRY( list_next( &table->hooks[index], &hook->chain ) );
219 return hook;
222 /* find the next hook in the chain, skipping the deleted ones */
223 static struct hook *get_next_hook( struct hook *hook, int event, user_handle_t win,
224 int object_id, int child_id )
226 struct hook_table *table = get_table( hook );
227 int index = hook->index;
229 while ((hook = HOOK_ENTRY( list_next( &table->hooks[index], &hook->chain ) )))
231 if (hook->proc && run_hook_in_current_thread( hook ))
233 if (event >= hook->event_min && event <= hook->event_max)
235 if (hook->flags & WINEVENT_INCONTEXT) return hook;
237 /* only winevent hooks may be out of context */
238 assert(hook->index + WH_MINHOOK == WH_WINEVENT);
239 post_win_event( hook->owner, event, win, object_id, child_id,
240 hook->proc, hook->module, hook->module_size,
241 hook->handle );
245 if (global_hooks && table != global_hooks) /* now search through the global table */
247 hook = get_first_valid_hook( global_hooks, index, event, win, object_id, child_id );
249 return hook;
252 static void hook_table_dump( struct object *obj, int verbose )
254 struct hook_table *table = (struct hook_table *)obj;
255 if (table == global_hooks) fprintf( stderr, "Global hook table\n" );
256 else fprintf( stderr, "Hook table\n" );
259 static void hook_table_destroy( struct object *obj )
261 int i;
262 struct hook *hook;
263 struct hook_table *table = (struct hook_table *)obj;
265 for (i = 0; i < NB_HOOKS; i++)
267 while ((hook = get_first_hook( table, i )) != NULL) free_hook( hook );
271 /* free the global hooks table */
272 void close_global_hooks(void)
274 if (global_hooks) release_object( global_hooks );
277 /* remove a hook, freeing it if the chain is not in use */
278 static void remove_hook( struct hook *hook )
280 struct hook_table *table = get_table( hook );
281 if (table->counts[hook->index])
282 hook->proc = NULL; /* chain is in use, just mark it and return */
283 else
284 free_hook( hook );
287 /* release a hook chain, removing deleted hooks if the use count drops to 0 */
288 static void release_hook_chain( struct hook_table *table, int index )
290 if (!table->counts[index]) /* use count shouldn't already be 0 */
292 set_error( STATUS_INVALID_PARAMETER );
293 return;
295 if (!--table->counts[index])
297 struct hook *hook = get_first_hook( table, index );
298 while (hook)
300 struct hook *next = HOOK_ENTRY( list_next( &table->hooks[hook->index], &hook->chain ) );
301 if (!hook->proc) free_hook( hook );
302 hook = next;
307 /* remove all global hooks owned by a given thread */
308 void remove_thread_hooks( struct thread *thread )
310 int index;
312 if (!global_hooks) return;
314 /* only low-level keyboard/mouse global hooks can be owned by a thread */
315 for (index = WH_KEYBOARD_LL - WH_MINHOOK; index <= WH_MOUSE_LL - WH_MINHOOK; index++)
317 struct hook *hook = get_first_hook( global_hooks, index );
318 while (hook)
320 struct hook *next = HOOK_ENTRY( list_next( &global_hooks->hooks[index], &hook->chain ) );
321 if (hook->thread == thread) remove_hook( hook );
322 hook = next;
327 /* get a bitmap of active hooks in a hook table */
328 static int is_hook_active( struct hook_table *table, int index )
330 struct hook *hook = get_first_hook( table, index );
332 while (hook)
334 if (hook->proc && run_hook_in_current_thread( hook )) return 1;
335 hook = HOOK_ENTRY( list_next( &table->hooks[index], &hook->chain ) );
337 return 0;
340 /* get a bitmap of all active hooks for the current thread */
341 unsigned int get_active_hooks(void)
343 struct hook_table *table = get_queue_hooks( current );
344 unsigned int ret = 1 << 31; /* set high bit to indicate that the bitmap is valid */
345 int id;
347 for (id = WH_MINHOOK; id <= WH_WINEVENT; id++)
349 if ((table && is_hook_active( table, id - WH_MINHOOK )) ||
350 (global_hooks && is_hook_active( global_hooks, id - WH_MINHOOK )))
351 ret |= 1 << (id - WH_MINHOOK);
353 return ret;
356 /* set a window hook */
357 DECL_HANDLER(set_hook)
359 struct process *process = NULL;
360 struct thread *thread = NULL;
361 struct hook *hook;
362 WCHAR *module;
363 int global;
364 size_t module_size = get_req_data_size();
366 if (!req->proc || req->id < WH_MINHOOK || req->id > WH_WINEVENT)
368 set_error( STATUS_INVALID_PARAMETER );
369 return;
372 if (req->pid && !(process = get_process_from_id( req->pid ))) return;
374 if (req->tid)
376 if (!(thread = get_thread_from_id( req->tid )))
378 if (process) release_object( process );
379 return;
381 if (process && process != thread->process)
383 release_object( process );
384 release_object( thread );
385 set_error( STATUS_INVALID_PARAMETER );
386 return;
390 if (req->id == WH_KEYBOARD_LL || req->id == WH_MOUSE_LL)
392 /* low-level hardware hooks are special: always global, but without a module */
393 thread = (struct thread *)grab_object( current );
394 module = NULL;
395 global = 1;
397 else if (!req->tid)
399 /* out of context hooks do not need a module handle */
400 if (!module_size && (req->flags & WINEVENT_INCONTEXT))
402 if (process) release_object( process );
403 if (thread) release_object( thread );
404 set_error( STATUS_INVALID_PARAMETER );
405 return;
408 if (!(module = memdup( get_req_data(), module_size ))) return;
409 thread = NULL;
410 global = 1;
412 else
414 module = NULL;
415 global = 0;
418 if ((hook = add_hook( thread, req->id - WH_MINHOOK, global )))
420 hook->owner = (struct thread *)grab_object( current );
421 hook->process = process ? (struct process *)grab_object( process ) : NULL;
422 hook->event_min = req->event_min;
423 hook->event_max = req->event_max;
424 hook->flags = req->flags;
425 hook->proc = req->proc;
426 hook->unicode = req->unicode;
427 hook->module = module;
428 hook->module_size = module_size;
429 reply->handle = hook->handle;
430 reply->active_hooks = get_active_hooks();
432 else if (module) free( module );
434 if (process) release_object( process );
435 if (thread) release_object( thread );
439 /* remove a window hook */
440 DECL_HANDLER(remove_hook)
442 struct hook *hook;
444 if (req->handle)
446 if (!(hook = get_user_object( req->handle, USER_HOOK )))
448 set_error( STATUS_INVALID_HANDLE );
449 return;
452 else
454 if (!req->proc || req->id < WH_MINHOOK || req->id > WH_WINEVENT)
456 set_error( STATUS_INVALID_PARAMETER );
457 return;
459 if (!(hook = find_hook( current, req->id - WH_MINHOOK, req->proc )))
461 set_error( STATUS_INVALID_PARAMETER );
462 return;
465 remove_hook( hook );
466 reply->active_hooks = get_active_hooks();
470 /* start calling a hook chain */
471 DECL_HANDLER(start_hook_chain)
473 struct hook *hook;
474 struct hook_table *table = get_queue_hooks( current );
476 if (req->id < WH_MINHOOK || req->id > WH_WINEVENT)
478 set_error( STATUS_INVALID_PARAMETER );
479 return;
482 reply->active_hooks = get_active_hooks();
484 if (!table || !(hook = get_first_valid_hook( table, req->id - WH_MINHOOK, req->event,
485 req->window, req->object_id, req->child_id )))
487 /* try global table */
488 if (!(table = global_hooks) ||
489 !(hook = get_first_valid_hook( global_hooks, req->id - WH_MINHOOK, req->event,
490 req->window, req->object_id, req->child_id )))
491 return; /* no hook set */
494 if (hook->thread && hook->thread != current) /* must run in other thread */
496 reply->pid = get_process_id( hook->thread->process );
497 reply->tid = get_thread_id( hook->thread );
499 else
501 reply->pid = 0;
502 reply->tid = 0;
504 reply->proc = hook->proc;
505 reply->handle = hook->handle;
506 reply->unicode = hook->unicode;
507 table->counts[hook->index]++;
508 if (hook->module) set_reply_data( hook->module, hook->module_size );
512 /* finished calling a hook chain */
513 DECL_HANDLER(finish_hook_chain)
515 struct hook_table *table = get_queue_hooks( current );
516 int index = req->id - WH_MINHOOK;
518 if (req->id < WH_MINHOOK || req->id > WH_WINEVENT)
520 set_error( STATUS_INVALID_PARAMETER );
521 return;
523 if (table) release_hook_chain( table, index );
524 if (global_hooks) release_hook_chain( global_hooks, index );
528 /* get the next hook to call */
529 DECL_HANDLER(get_next_hook)
531 struct hook *hook, *next;
533 if (!(hook = get_user_object( req->handle, USER_HOOK ))) return;
534 if (hook->thread && (hook->thread != current))
536 set_error( STATUS_INVALID_HANDLE );
537 return;
539 if ((next = get_next_hook( hook, req->event, req->window, req->object_id, req->child_id )))
541 reply->next = next->handle;
542 reply->id = next->index + WH_MINHOOK;
543 reply->prev_unicode = hook->unicode;
544 reply->next_unicode = next->unicode;
545 if (next->module) set_reply_data( next->module, next->module_size );
546 if (next->thread && next->thread != current)
548 reply->pid = get_process_id( next->thread->process );
549 reply->tid = get_thread_id( next->thread );
551 else
553 reply->pid = 0;
554 reply->tid = 0;
556 reply->proc = next->proc;