regsvr32: Ignore the /c flag.
[wine] / server / queue.c
1 /*
2  * Server-side message queues
3  *
4  * Copyright (C) 2000 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28
29 #include "ntstatus.h"
30 #define WIN32_NO_STATUS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "winternl.h"
36
37 #include "handle.h"
38 #include "file.h"
39 #include "thread.h"
40 #include "process.h"
41 #include "request.h"
42 #include "user.h"
43
44 #define WM_NCMOUSEFIRST WM_NCMOUSEMOVE
45 #define WM_NCMOUSELAST  (WM_NCMOUSEFIRST+(WM_MOUSELAST-WM_MOUSEFIRST))
46
47 enum message_kind { SEND_MESSAGE, POST_MESSAGE };
48 #define NB_MSG_KINDS (POST_MESSAGE+1)
49
50
51 struct message_result
52 {
53     struct list            sender_entry;  /* entry in sender list */
54     struct message        *msg;           /* message the result is for */
55     struct message_result *recv_next;     /* next in receiver list */
56     struct msg_queue      *sender;        /* sender queue */
57     struct msg_queue      *receiver;      /* receiver queue */
58     int                    replied;       /* has it been replied to? */
59     unsigned int           result;        /* reply result */
60     unsigned int           error;         /* error code to pass back to sender */
61     struct message        *callback_msg;  /* message to queue for callback */
62     void                  *data;          /* message reply data */
63     unsigned int           data_size;     /* size of message reply data */
64     struct timeout_user   *timeout;       /* result timeout */
65 };
66
67 struct message
68 {
69     struct list            entry;     /* entry in message list */
70     enum message_type      type;      /* message type */
71     user_handle_t          win;       /* window handle */
72     unsigned int           msg;       /* message code */
73     unsigned int           wparam;    /* parameters */
74     unsigned int           lparam;    /* parameters */
75     int                    x;         /* x position */
76     int                    y;         /* y position */
77     unsigned int           time;      /* message time */
78     unsigned int           info;      /* extra info */
79     user_handle_t          hook;      /* winevent hook handle */
80     void                  *hook_proc; /* winevent hook proc address */
81     void                  *data;      /* message data for sent messages */
82     unsigned int           data_size; /* size of message data */
83     unsigned int           unique_id; /* unique id for nested hw message waits */
84     struct message_result *result;    /* result in sender queue */
85 };
86
87 struct timer
88 {
89     struct list     entry;     /* entry in timer list */
90     struct timeval  when;      /* next expiration */
91     unsigned int    rate;      /* timer rate in ms */
92     user_handle_t   win;       /* window handle */
93     unsigned int    msg;       /* message to post */
94     unsigned int    id;        /* timer id */
95     unsigned int    lparam;    /* lparam for message */
96 };
97
98 struct thread_input
99 {
100     struct object          obj;           /* object header */
101     struct desktop        *desktop;       /* desktop that this thread input belongs to */
102     user_handle_t          focus;         /* focus window */
103     user_handle_t          capture;       /* capture window */
104     user_handle_t          active;        /* active window */
105     user_handle_t          menu_owner;    /* current menu owner window */
106     user_handle_t          move_size;     /* current moving/resizing window */
107     user_handle_t          caret;         /* caret window */
108     rectangle_t            caret_rect;    /* caret rectangle */
109     int                    caret_hide;    /* caret hide count */
110     int                    caret_state;   /* caret on/off state */
111     struct list            msg_list;      /* list of hardware messages */
112     unsigned char          keystate[256]; /* state of each key */
113 };
114
115 struct msg_queue
116 {
117     struct object          obj;             /* object header */
118     unsigned int           wake_bits;       /* wakeup bits */
119     unsigned int           wake_mask;       /* wakeup mask */
120     unsigned int           changed_bits;    /* changed wakeup bits */
121     unsigned int           changed_mask;    /* changed wakeup mask */
122     int                    paint_count;     /* pending paint messages count */
123     int                    quit_message;    /* is there a pending quit message? */
124     int                    exit_code;       /* exit code of pending quit message */
125     struct list            msg_list[NB_MSG_KINDS];  /* lists of messages */
126     struct list            send_result;     /* stack of sent messages waiting for result */
127     struct list            callback_result; /* list of callback messages waiting for result */
128     struct message_result *recv_result;     /* stack of received messages waiting for result */
129     struct list            pending_timers;  /* list of pending timers */
130     struct list            expired_timers;  /* list of expired timers */
131     unsigned int           next_timer_id;   /* id for the next timer with a 0 window */
132     struct timeout_user   *timeout;         /* timeout for next timer to expire */
133     struct thread_input   *input;           /* thread input descriptor */
134     struct hook_table     *hooks;           /* hook table */
135     struct timeval         last_get_msg;    /* time of last get message call */
136 };
137
138 static void msg_queue_dump( struct object *obj, int verbose );
139 static int msg_queue_add_queue( struct object *obj, struct wait_queue_entry *entry );
140 static void msg_queue_remove_queue( struct object *obj, struct wait_queue_entry *entry );
141 static int msg_queue_signaled( struct object *obj, struct thread *thread );
142 static int msg_queue_satisfied( struct object *obj, struct thread *thread );
143 static void msg_queue_destroy( struct object *obj );
144 static void thread_input_dump( struct object *obj, int verbose );
145 static void thread_input_destroy( struct object *obj );
146 static void timer_callback( void *private );
147
148 static const struct object_ops msg_queue_ops =
149 {
150     sizeof(struct msg_queue),  /* size */
151     msg_queue_dump,            /* dump */
152     msg_queue_add_queue,       /* add_queue */
153     msg_queue_remove_queue,    /* remove_queue */
154     msg_queue_signaled,        /* signaled */
155     msg_queue_satisfied,       /* satisfied */
156     no_signal,                 /* signal */
157     no_get_fd,                 /* get_fd */
158     no_map_access,             /* map_access */
159     no_lookup_name,            /* lookup_name */
160     no_close_handle,           /* close_handle */
161     msg_queue_destroy          /* destroy */
162 };
163
164
165 static const struct object_ops thread_input_ops =
166 {
167     sizeof(struct thread_input),  /* size */
168     thread_input_dump,            /* dump */
169     no_add_queue,                 /* add_queue */
170     NULL,                         /* remove_queue */
171     NULL,                         /* signaled */
172     NULL,                         /* satisfied */
173     no_signal,                    /* signal */
174     no_get_fd,                    /* get_fd */
175     no_map_access,                /* map_access */
176     no_lookup_name,               /* lookup_name */
177     no_close_handle,              /* close_handle */
178     thread_input_destroy          /* destroy */
179 };
180
181 /* pointer to input structure of foreground thread */
182 static struct thread_input *foreground_input;
183 static unsigned int last_input_time;
184
185
186 /* set the caret window in a given thread input */
187 static void set_caret_window( struct thread_input *input, user_handle_t win )
188 {
189     if (!win || win != input->caret)
190     {
191         input->caret_rect.left   = 0;
192         input->caret_rect.top    = 0;
193         input->caret_rect.right  = 0;
194         input->caret_rect.bottom = 0;
195     }
196     input->caret             = win;
197     input->caret_hide        = 1;
198     input->caret_state       = 0;
199 }
200
201 /* create a thread input object */
202 static struct thread_input *create_thread_input( struct thread *thread )
203 {
204     struct thread_input *input;
205
206     if ((input = alloc_object( &thread_input_ops )))
207     {
208         input->focus       = 0;
209         input->capture     = 0;
210         input->active      = 0;
211         input->menu_owner  = 0;
212         input->move_size   = 0;
213         list_init( &input->msg_list );
214         set_caret_window( input, 0 );
215         memset( input->keystate, 0, sizeof(input->keystate) );
216
217         if (!(input->desktop = get_thread_desktop( thread, 0 /* FIXME: access rights */ )))
218         {
219             release_object( input );
220             return NULL;
221         }
222     }
223     return input;
224 }
225
226 /* release the thread input data of a given thread */
227 static inline void release_thread_input( struct thread *thread )
228 {
229     struct thread_input *input = thread->queue->input;
230
231     if (!input) return;
232     release_object( input );
233     thread->queue->input = NULL;
234 }
235
236 /* create a message queue object */
237 static struct msg_queue *create_msg_queue( struct thread *thread, struct thread_input *input )
238 {
239     struct msg_queue *queue;
240     int i;
241
242     if (!input && !(input = create_thread_input( thread ))) return NULL;
243     if ((queue = alloc_object( &msg_queue_ops )))
244     {
245         queue->wake_bits       = 0;
246         queue->wake_mask       = 0;
247         queue->changed_bits    = 0;
248         queue->changed_mask    = 0;
249         queue->paint_count     = 0;
250         queue->quit_message    = 0;
251         queue->recv_result     = NULL;
252         queue->next_timer_id   = 1;
253         queue->timeout         = NULL;
254         queue->input           = (struct thread_input *)grab_object( input );
255         queue->hooks           = NULL;
256         gettimeofday( &queue->last_get_msg, NULL );
257         list_init( &queue->send_result );
258         list_init( &queue->callback_result );
259         list_init( &queue->pending_timers );
260         list_init( &queue->expired_timers );
261         for (i = 0; i < NB_MSG_KINDS; i++) list_init( &queue->msg_list[i] );
262
263         thread->queue = queue;
264         if (!thread->process->queue)
265             thread->process->queue = (struct msg_queue *)grab_object( queue );
266     }
267     release_object( input );
268     return queue;
269 }
270
271 /* free the message queue of a thread at thread exit */
272 void free_msg_queue( struct thread *thread )
273 {
274     struct process *process = thread->process;
275
276     remove_thread_hooks( thread );
277     if (!thread->queue) return;
278     if (process->queue == thread->queue)  /* is it the process main queue? */
279     {
280         release_object( process->queue );
281         process->queue = NULL;
282         if (process->idle_event)
283         {
284             set_event( process->idle_event );
285             release_object( process->idle_event );
286             process->idle_event = NULL;
287         }
288     }
289     release_object( thread->queue );
290     thread->queue = NULL;
291 }
292
293 /* get the hook table for a given thread */
294 struct hook_table *get_queue_hooks( struct thread *thread )
295 {
296     if (!thread->queue) return NULL;
297     return thread->queue->hooks;
298 }
299
300 /* set the hook table for a given thread, allocating the queue if needed */
301 void set_queue_hooks( struct thread *thread, struct hook_table *hooks )
302 {
303     struct msg_queue *queue = thread->queue;
304     if (!queue && !(queue = create_msg_queue( thread, NULL ))) return;
305     if (queue->hooks) release_object( queue->hooks );
306     queue->hooks = hooks;
307 }
308
309 /* check the queue status */
310 inline static int is_signaled( struct msg_queue *queue )
311 {
312     return ((queue->wake_bits & queue->wake_mask) || (queue->changed_bits & queue->changed_mask));
313 }
314
315 /* set some queue bits */
316 inline static void set_queue_bits( struct msg_queue *queue, unsigned int bits )
317 {
318     queue->wake_bits |= bits;
319     queue->changed_bits |= bits;
320     if (is_signaled( queue )) wake_up( &queue->obj, 0 );
321 }
322
323 /* clear some queue bits */
324 inline static void clear_queue_bits( struct msg_queue *queue, unsigned int bits )
325 {
326     queue->wake_bits &= ~bits;
327     queue->changed_bits &= ~bits;
328 }
329
330 /* check whether msg is a keyboard message */
331 inline static int is_keyboard_msg( struct message *msg )
332 {
333     return (msg->msg >= WM_KEYFIRST && msg->msg <= WM_KEYLAST);
334 }
335
336 /* check if message is matched by the filter */
337 inline static int check_msg_filter( unsigned int msg, unsigned int first, unsigned int last )
338 {
339     return (msg >= first && msg <= last);
340 }
341
342 /* check whether a message filter contains at least one potential hardware message */
343 inline static int filter_contains_hw_range( unsigned int first, unsigned int last )
344 {
345     /* hardware message ranges are (in numerical order):
346      *   WM_NCMOUSEFIRST .. WM_NCMOUSELAST
347      *   WM_KEYFIRST .. WM_KEYLAST
348      *   WM_MOUSEFIRST .. WM_MOUSELAST
349      */
350     if (last < WM_NCMOUSEFIRST) return 0;
351     if (first > WM_NCMOUSELAST && last < WM_KEYFIRST) return 0;
352     if (first > WM_KEYLAST && last < WM_MOUSEFIRST) return 0;
353     if (first > WM_MOUSELAST) return 0;
354     return 1;
355 }
356
357 /* get the QS_* bit corresponding to a given hardware message */
358 inline static int get_hardware_msg_bit( struct message *msg )
359 {
360     if (msg->msg == WM_MOUSEMOVE || msg->msg == WM_NCMOUSEMOVE) return QS_MOUSEMOVE;
361     if (is_keyboard_msg( msg )) return QS_KEY;
362     return QS_MOUSEBUTTON;
363 }
364
365 /* get the current thread queue, creating it if needed */
366 inline static struct msg_queue *get_current_queue(void)
367 {
368     struct msg_queue *queue = current->queue;
369     if (!queue) queue = create_msg_queue( current, NULL );
370     return queue;
371 }
372
373 /* get a (pseudo-)unique id to tag hardware messages */
374 inline static unsigned int get_unique_id(void)
375 {
376     static unsigned int id;
377     if (!++id) id = 1;  /* avoid an id of 0 */
378     return id;
379 }
380
381 /* try to merge a message with the last in the list; return 1 if successful */
382 static int merge_message( struct thread_input *input, const struct message *msg )
383 {
384     struct message *prev;
385     struct list *ptr = list_tail( &input->msg_list );
386
387     if (!ptr) return 0;
388     prev = LIST_ENTRY( ptr, struct message, entry );
389     if (prev->unique_id) return 0;
390     if (prev->result) return 0;
391     if (prev->win != msg->win) return 0;
392     if (prev->msg != msg->msg) return 0;
393     if (prev->type != msg->type) return 0;
394     /* now we can merge it */
395     prev->wparam  = msg->wparam;
396     prev->lparam  = msg->lparam;
397     prev->x       = msg->x;
398     prev->y       = msg->y;
399     prev->time    = msg->time;
400     prev->info    = msg->info;
401     return 1;
402 }
403
404 /* free a result structure */
405 static void free_result( struct message_result *result )
406 {
407     if (result->timeout) remove_timeout_user( result->timeout );
408     if (result->data) free( result->data );
409     if (result->callback_msg) free( result->callback_msg );
410     free( result );
411 }
412
413 /* remove the result from the sender list it is on */
414 static inline void remove_result_from_sender( struct message_result *result )
415 {
416     assert( result->sender );
417
418     list_remove( &result->sender_entry );
419     result->sender = NULL;
420     if (!result->receiver) free_result( result );
421 }
422
423 /* store the message result in the appropriate structure */
424 static void store_message_result( struct message_result *res, unsigned int result,
425                                   unsigned int error )
426 {
427     res->result  = result;
428     res->error   = error;
429     res->replied = 1;
430     if (res->timeout)
431     {
432         remove_timeout_user( res->timeout );
433         res->timeout = NULL;
434     }
435     if (res->sender)
436     {
437         if (res->callback_msg)
438         {
439             /* queue the callback message in the sender queue */
440             res->callback_msg->lparam = result;
441             list_add_tail( &res->sender->msg_list[SEND_MESSAGE], &res->callback_msg->entry );
442             set_queue_bits( res->sender, QS_SENDMESSAGE );
443             res->callback_msg = NULL;
444             remove_result_from_sender( res );
445         }
446         else
447         {
448             /* wake sender queue if waiting on this result */
449             if (list_head(&res->sender->send_result) == &res->sender_entry)
450                 set_queue_bits( res->sender, QS_SMRESULT );
451         }
452     }
453
454 }
455
456 /* free a message when deleting a queue or window */
457 static void free_message( struct message *msg )
458 {
459     struct message_result *result = msg->result;
460     if (result)
461     {
462         result->msg = NULL;
463         if (result->sender)
464         {
465             result->receiver = NULL;
466             store_message_result( result, 0, STATUS_ACCESS_DENIED /*FIXME*/ );
467         }
468         else free_result( result );
469     }
470     if (msg->data) free( msg->data );
471     free( msg );
472 }
473
474 /* remove (and free) a message from a message list */
475 static void remove_queue_message( struct msg_queue *queue, struct message *msg,
476                                   enum message_kind kind )
477 {
478     list_remove( &msg->entry );
479     switch(kind)
480     {
481     case SEND_MESSAGE:
482         if (list_empty( &queue->msg_list[kind] )) clear_queue_bits( queue, QS_SENDMESSAGE );
483         break;
484     case POST_MESSAGE:
485         if (list_empty( &queue->msg_list[kind] )) clear_queue_bits( queue, QS_POSTMESSAGE|QS_ALLPOSTMESSAGE );
486         break;
487     }
488     free_message( msg );
489 }
490
491 /* message timed out without getting a reply */
492 static void result_timeout( void *private )
493 {
494     struct message_result *result = private;
495
496     assert( !result->replied );
497
498     result->timeout = NULL;
499
500     if (result->msg)  /* not received yet */
501     {
502         struct message *msg = result->msg;
503
504         result->msg = NULL;
505         msg->result = NULL;
506         remove_queue_message( result->receiver, msg, SEND_MESSAGE );
507         result->receiver = NULL;
508         if (!result->sender)
509         {
510             free_result( result );
511             return;
512         }
513     }
514
515     store_message_result( result, 0, STATUS_TIMEOUT );
516 }
517
518 /* allocate and fill a message result structure */
519 static struct message_result *alloc_message_result( struct msg_queue *send_queue,
520                                                     struct msg_queue *recv_queue,
521                                                     struct message *msg, int timeout,
522                                                     void *callback, unsigned int callback_data )
523 {
524     struct message_result *result = mem_alloc( sizeof(*result) );
525     if (result)
526     {
527         result->msg       = msg;
528         result->sender    = send_queue;
529         result->receiver  = recv_queue;
530         result->replied   = 0;
531         result->data      = NULL;
532         result->data_size = 0;
533         result->timeout   = NULL;
534
535         if (msg->type == MSG_CALLBACK)
536         {
537             struct message *callback_msg = mem_alloc( sizeof(*callback_msg) );
538             if (!callback_msg)
539             {
540                 free( result );
541                 return NULL;
542             }
543             callback_msg->type      = MSG_CALLBACK_RESULT;
544             callback_msg->win       = msg->win;
545             callback_msg->msg       = msg->msg;
546             callback_msg->wparam    = (unsigned int)callback;
547             callback_msg->lparam    = 0;
548             callback_msg->time      = get_tick_count();
549             callback_msg->x         = 0;
550             callback_msg->y         = 0;
551             callback_msg->info      = callback_data;
552             callback_msg->hook      = 0;
553             callback_msg->hook_proc = NULL;
554             callback_msg->result    = NULL;
555             callback_msg->data      = NULL;
556             callback_msg->data_size = 0;
557
558             result->callback_msg = callback_msg;
559             list_add_head( &send_queue->callback_result, &result->sender_entry );
560         }
561         else
562         {
563             result->callback_msg = NULL;
564             list_add_head( &send_queue->send_result, &result->sender_entry );
565         }
566
567         if (timeout)
568         {
569             struct timeval when;
570             gettimeofday( &when, NULL );
571             add_timeout( &when, timeout );
572             result->timeout = add_timeout_user( &when, result_timeout, result );
573         }
574     }
575     return result;
576 }
577
578 /* receive a message, removing it from the sent queue */
579 static void receive_message( struct msg_queue *queue, struct message *msg,
580                              struct get_message_reply *reply )
581 {
582     struct message_result *result = msg->result;
583
584     reply->total = msg->data_size;
585     if (msg->data_size > get_reply_max_size())
586     {
587         set_error( STATUS_BUFFER_OVERFLOW );
588         return;
589     }
590     reply->type   = msg->type;
591     reply->win    = msg->win;
592     reply->msg    = msg->msg;
593     reply->wparam = msg->wparam;
594     reply->lparam = msg->lparam;
595     reply->x      = msg->x;
596     reply->y      = msg->y;
597     reply->time   = msg->time;
598     reply->info   = msg->info;
599     reply->hook   = msg->hook;
600     reply->hook_proc = msg->hook_proc;
601
602     if (msg->data) set_reply_data_ptr( msg->data, msg->data_size );
603
604     list_remove( &msg->entry );
605     /* put the result on the receiver result stack */
606     if (result)
607     {
608         result->msg = NULL;
609         result->recv_next  = queue->recv_result;
610         queue->recv_result = result;
611     }
612     free( msg );
613     if (list_empty( &queue->msg_list[SEND_MESSAGE] )) clear_queue_bits( queue, QS_SENDMESSAGE );
614 }
615
616 /* set the result of the current received message */
617 static void reply_message( struct msg_queue *queue, unsigned int result,
618                            unsigned int error, int remove, const void *data, size_t len )
619 {
620     struct message_result *res = queue->recv_result;
621
622     if (remove)
623     {
624         queue->recv_result = res->recv_next;
625         res->receiver = NULL;
626         if (!res->sender)  /* no one waiting for it */
627         {
628             free_result( res );
629             return;
630         }
631     }
632     if (!res->replied)
633     {
634         if (len && (res->data = memdup( data, len ))) res->data_size = len;
635         store_message_result( res, result, error );
636     }
637 }
638
639 /* retrieve a posted message */
640 static int get_posted_message( struct msg_queue *queue, user_handle_t win,
641                                unsigned int first, unsigned int last, unsigned int flags,
642                                struct get_message_reply *reply )
643 {
644     struct message *msg;
645
646     /* check against the filters */
647     LIST_FOR_EACH_ENTRY( msg, &queue->msg_list[POST_MESSAGE], struct message, entry )
648     {
649         if (win && msg->win && msg->win != win && !is_child_window( win, msg->win )) continue;
650         if (!check_msg_filter( msg->msg, first, last )) continue;
651         goto found; /* found one */
652     }
653     return 0;
654
655     /* return it to the app */
656 found:
657     reply->total = msg->data_size;
658     if (msg->data_size > get_reply_max_size())
659     {
660         set_error( STATUS_BUFFER_OVERFLOW );
661         return 1;
662     }
663     reply->type   = msg->type;
664     reply->win    = msg->win;
665     reply->msg    = msg->msg;
666     reply->wparam = msg->wparam;
667     reply->lparam = msg->lparam;
668     reply->x      = msg->x;
669     reply->y      = msg->y;
670     reply->time   = msg->time;
671     reply->info   = msg->info;
672
673     if (flags & GET_MSG_REMOVE)
674     {
675         if (msg->data)
676         {
677             set_reply_data_ptr( msg->data, msg->data_size );
678             msg->data = NULL;
679             msg->data_size = 0;
680         }
681         remove_queue_message( queue, msg, POST_MESSAGE );
682     }
683     else if (msg->data) set_reply_data( msg->data, msg->data_size );
684
685     return 1;
686 }
687
688 static int get_quit_message( struct msg_queue *queue, unsigned int flags,
689                              struct get_message_reply *reply )
690 {
691     if (queue->quit_message)
692     {
693         reply->total  = 0;
694         reply->type   = MSG_POSTED;
695         reply->win    = NULL;
696         reply->msg    = WM_QUIT;
697         reply->wparam = queue->exit_code;
698         reply->lparam = 0;
699         reply->x      = 0;
700         reply->y      = 0;
701         reply->time   = get_tick_count();
702         reply->info   = 0;
703
704         if (flags & GET_MSG_REMOVE)
705             queue->quit_message = 0;
706
707         return 1;
708     }
709     else
710         return 0;
711 }
712
713 /* empty a message list and free all the messages */
714 static void empty_msg_list( struct list *list )
715 {
716     struct list *ptr;
717
718     while ((ptr = list_head( list )) != NULL)
719     {
720         struct message *msg = LIST_ENTRY( ptr, struct message, entry );
721         list_remove( &msg->entry );
722         free_message( msg );
723     }
724 }
725
726 /* cleanup all pending results when deleting a queue */
727 static void cleanup_results( struct msg_queue *queue )
728 {
729     struct list *entry;
730
731     while ((entry = list_head( &queue->send_result )) != NULL)
732     {
733         remove_result_from_sender( LIST_ENTRY( entry, struct message_result, sender_entry ) );
734     }
735
736     while ((entry = list_head( &queue->callback_result )) != NULL)
737     {
738         remove_result_from_sender( LIST_ENTRY( entry, struct message_result, sender_entry ) );
739     }
740
741     while (queue->recv_result)
742         reply_message( queue, 0, STATUS_ACCESS_DENIED /*FIXME*/, 1, NULL, 0 );
743 }
744
745 /* check if the thread owning the queue is hung (not checking for messages) */
746 static int is_queue_hung( struct msg_queue *queue )
747 {
748     struct timeval now;
749     struct wait_queue_entry *entry;
750
751     gettimeofday( &now, NULL );
752     if (now.tv_sec - queue->last_get_msg.tv_sec <= 5)
753         return 0;  /* less than 5 seconds since last get message -> not hung */
754
755     LIST_FOR_EACH_ENTRY( entry, &queue->obj.wait_queue, struct wait_queue_entry, entry )
756     {
757         if (entry->thread->queue == queue)
758             return 0;  /* thread is waiting on queue -> not hung */
759     }
760     return 1;
761 }
762
763 static int msg_queue_add_queue( struct object *obj, struct wait_queue_entry *entry )
764 {
765     struct msg_queue *queue = (struct msg_queue *)obj;
766     struct process *process = entry->thread->process;
767
768     /* a thread can only wait on its own queue */
769     if (entry->thread->queue != queue)
770     {
771         set_error( STATUS_ACCESS_DENIED );
772         return 0;
773     }
774     /* if waiting on the main process queue, set the idle event */
775     if (process->queue == queue)
776     {
777         if (process->idle_event) set_event( process->idle_event );
778     }
779     add_queue( obj, entry );
780     return 1;
781 }
782
783 static void msg_queue_remove_queue(struct object *obj, struct wait_queue_entry *entry )
784 {
785     struct msg_queue *queue = (struct msg_queue *)obj;
786     struct process *process = entry->thread->process;
787
788     remove_queue( obj, entry );
789
790     assert( entry->thread->queue == queue );
791
792     /* if waiting on the main process queue, reset the idle event */
793     if (process->queue == queue)
794     {
795         if (process->idle_event) reset_event( process->idle_event );
796     }
797 }
798
799 static void msg_queue_dump( struct object *obj, int verbose )
800 {
801     struct msg_queue *queue = (struct msg_queue *)obj;
802     fprintf( stderr, "Msg queue bits=%x mask=%x\n",
803              queue->wake_bits, queue->wake_mask );
804 }
805
806 static int msg_queue_signaled( struct object *obj, struct thread *thread )
807 {
808     struct msg_queue *queue = (struct msg_queue *)obj;
809     return is_signaled( queue );
810 }
811
812 static int msg_queue_satisfied( struct object *obj, struct thread *thread )
813 {
814     struct msg_queue *queue = (struct msg_queue *)obj;
815     queue->wake_mask = 0;
816     queue->changed_mask = 0;
817     return 0;  /* Not abandoned */
818 }
819
820 static void msg_queue_destroy( struct object *obj )
821 {
822     struct msg_queue *queue = (struct msg_queue *)obj;
823     struct list *ptr;
824     int i;
825
826     cleanup_results( queue );
827     for (i = 0; i < NB_MSG_KINDS; i++) empty_msg_list( &queue->msg_list[i] );
828
829     while ((ptr = list_head( &queue->pending_timers )))
830     {
831         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
832         list_remove( &timer->entry );
833         free( timer );
834     }
835     while ((ptr = list_head( &queue->expired_timers )))
836     {
837         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
838         list_remove( &timer->entry );
839         free( timer );
840     }
841     if (queue->timeout) remove_timeout_user( queue->timeout );
842     if (queue->input) release_object( queue->input );
843     if (queue->hooks) release_object( queue->hooks );
844 }
845
846 static void thread_input_dump( struct object *obj, int verbose )
847 {
848     struct thread_input *input = (struct thread_input *)obj;
849     fprintf( stderr, "Thread input focus=%p capture=%p active=%p\n",
850              input->focus, input->capture, input->active );
851 }
852
853 static void thread_input_destroy( struct object *obj )
854 {
855     struct thread_input *input = (struct thread_input *)obj;
856
857     if (foreground_input == input) foreground_input = NULL;
858     empty_msg_list( &input->msg_list );
859     if (input->desktop) release_object( input->desktop );
860 }
861
862 /* fix the thread input data when a window is destroyed */
863 inline static void thread_input_cleanup_window( struct msg_queue *queue, user_handle_t window )
864 {
865     struct thread_input *input = queue->input;
866
867     if (window == input->focus) input->focus = 0;
868     if (window == input->capture) input->capture = 0;
869     if (window == input->active) input->active = 0;
870     if (window == input->menu_owner) input->menu_owner = 0;
871     if (window == input->move_size) input->move_size = 0;
872     if (window == input->caret) set_caret_window( input, 0 );
873 }
874
875 /* check if the specified window can be set in the input data of a given queue */
876 static int check_queue_input_window( struct msg_queue *queue, user_handle_t window )
877 {
878     struct thread *thread;
879     int ret = 0;
880
881     if (!window) return 1;  /* we can always clear the data */
882
883     if ((thread = get_window_thread( window )))
884     {
885         ret = (queue->input == thread->queue->input);
886         if (!ret) set_error( STATUS_ACCESS_DENIED );
887         release_object( thread );
888     }
889     else set_error( STATUS_INVALID_HANDLE );
890
891     return ret;
892 }
893
894 /* make sure the specified thread has a queue */
895 int init_thread_queue( struct thread *thread )
896 {
897     if (thread->queue) return 1;
898     return (create_msg_queue( thread, NULL ) != NULL);
899 }
900
901 /* attach two thread input data structures */
902 int attach_thread_input( struct thread *thread_from, struct thread *thread_to )
903 {
904     struct desktop *desktop;
905     struct thread_input *input;
906
907     if (!thread_to->queue && !(thread_to->queue = create_msg_queue( thread_to, NULL ))) return 0;
908     if (!(desktop = get_thread_desktop( thread_from, 0 ))) return 0;
909     input = (struct thread_input *)grab_object( thread_to->queue->input );
910     if (input->desktop != desktop)
911     {
912         set_error( STATUS_ACCESS_DENIED );
913         release_object( input );
914         release_object( desktop );
915         return 0;
916     }
917     release_object( desktop );
918
919     if (thread_from->queue)
920     {
921         release_thread_input( thread_from );
922         thread_from->queue->input = input;
923     }
924     else
925     {
926         if (!(thread_from->queue = create_msg_queue( thread_from, input ))) return 0;
927     }
928     memset( input->keystate, 0, sizeof(input->keystate) );
929     return 1;
930 }
931
932 /* detach two thread input data structures */
933 void detach_thread_input( struct thread *thread_from )
934 {
935     struct thread_input *input;
936
937     if ((input = create_thread_input( thread_from )))
938     {
939         release_thread_input( thread_from );
940         thread_from->queue->input = input;
941     }
942 }
943
944
945 /* set the next timer to expire */
946 static void set_next_timer( struct msg_queue *queue )
947 {
948     struct list *ptr;
949
950     if (queue->timeout)
951     {
952         remove_timeout_user( queue->timeout );
953         queue->timeout = NULL;
954     }
955     if ((ptr = list_head( &queue->pending_timers )))
956     {
957         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
958         queue->timeout = add_timeout_user( &timer->when, timer_callback, queue );
959     }
960     /* set/clear QS_TIMER bit */
961     if (list_empty( &queue->expired_timers ))
962         clear_queue_bits( queue, QS_TIMER );
963     else
964         set_queue_bits( queue, QS_TIMER );
965 }
966
967 /* find a timer from its window and id */
968 static struct timer *find_timer( struct msg_queue *queue, user_handle_t win,
969                                  unsigned int msg, unsigned int id )
970 {
971     struct list *ptr;
972
973     /* we need to search both lists */
974
975     LIST_FOR_EACH( ptr, &queue->pending_timers )
976     {
977         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
978         if (timer->win == win && timer->msg == msg && timer->id == id) return timer;
979     }
980     LIST_FOR_EACH( ptr, &queue->expired_timers )
981     {
982         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
983         if (timer->win == win && timer->msg == msg && timer->id == id) return timer;
984     }
985     return NULL;
986 }
987
988 /* callback for the next timer expiration */
989 static void timer_callback( void *private )
990 {
991     struct msg_queue *queue = private;
992     struct list *ptr;
993
994     queue->timeout = NULL;
995     /* move on to the next timer */
996     ptr = list_head( &queue->pending_timers );
997     list_remove( ptr );
998     list_add_tail( &queue->expired_timers, ptr );
999     set_next_timer( queue );
1000 }
1001
1002 /* link a timer at its rightful place in the queue list */
1003 static void link_timer( struct msg_queue *queue, struct timer *timer )
1004 {
1005     struct list *ptr;
1006
1007     for (ptr = queue->pending_timers.next; ptr != &queue->pending_timers; ptr = ptr->next)
1008     {
1009         struct timer *t = LIST_ENTRY( ptr, struct timer, entry );
1010         if (!time_before( &t->when, &timer->when )) break;
1011     }
1012     list_add_before( ptr, &timer->entry );
1013 }
1014
1015 /* remove a timer from the queue timer list and free it */
1016 static void free_timer( struct msg_queue *queue, struct timer *timer )
1017 {
1018     list_remove( &timer->entry );
1019     free( timer );
1020     set_next_timer( queue );
1021 }
1022
1023 /* restart an expired timer */
1024 static void restart_timer( struct msg_queue *queue, struct timer *timer )
1025 {
1026     struct timeval now;
1027
1028     list_remove( &timer->entry );
1029     gettimeofday( &now, NULL );
1030     while (!time_before( &now, &timer->when )) add_timeout( &timer->when, timer->rate );
1031     link_timer( queue, timer );
1032     set_next_timer( queue );
1033 }
1034
1035 /* find an expired timer matching the filtering parameters */
1036 static struct timer *find_expired_timer( struct msg_queue *queue, user_handle_t win,
1037                                          unsigned int get_first, unsigned int get_last,
1038                                          int remove )
1039 {
1040     struct list *ptr;
1041
1042     LIST_FOR_EACH( ptr, &queue->expired_timers )
1043     {
1044         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
1045         if (win && timer->win != win) continue;
1046         if (check_msg_filter( timer->msg, get_first, get_last ))
1047         {
1048             if (remove) restart_timer( queue, timer );
1049             return timer;
1050         }
1051     }
1052     return NULL;
1053 }
1054
1055 /* add a timer */
1056 static struct timer *set_timer( struct msg_queue *queue, unsigned int rate )
1057 {
1058     struct timer *timer = mem_alloc( sizeof(*timer) );
1059     if (timer)
1060     {
1061         timer->rate  = max( rate, 1 );
1062         gettimeofday( &timer->when, NULL );
1063         add_timeout( &timer->when, rate );
1064         link_timer( queue, timer );
1065         /* check if we replaced the next timer */
1066         if (list_head( &queue->pending_timers ) == &timer->entry) set_next_timer( queue );
1067     }
1068     return timer;
1069 }
1070
1071 /* change the input key state for a given key */
1072 static void set_input_key_state( struct thread_input *input, unsigned char key, int down )
1073 {
1074     if (down)
1075     {
1076         if (!(input->keystate[key] & 0x80)) input->keystate[key] ^= 0x01;
1077         input->keystate[key] |= 0x80;
1078     }
1079     else input->keystate[key] &= ~0x80;
1080 }
1081
1082 /* update the input key state for a keyboard message */
1083 static void update_input_key_state( struct thread_input *input, const struct message *msg )
1084 {
1085     unsigned char key;
1086     int down = 0, extended;
1087
1088     switch (msg->msg)
1089     {
1090     case WM_LBUTTONDOWN:
1091         down = 1;
1092         /* fall through */
1093     case WM_LBUTTONUP:
1094         set_input_key_state( input, VK_LBUTTON, down );
1095         break;
1096     case WM_MBUTTONDOWN:
1097         down = 1;
1098         /* fall through */
1099     case WM_MBUTTONUP:
1100         set_input_key_state( input, VK_MBUTTON, down );
1101         break;
1102     case WM_RBUTTONDOWN:
1103         down = 1;
1104         /* fall through */
1105     case WM_RBUTTONUP:
1106         set_input_key_state( input, VK_RBUTTON, down );
1107         break;
1108     case WM_XBUTTONDOWN:
1109         down = 1;
1110         /* fall through */
1111     case WM_XBUTTONUP:
1112         if (msg->wparam == XBUTTON1) set_input_key_state( input, VK_XBUTTON1, down );
1113         else if (msg->wparam == XBUTTON2) set_input_key_state( input, VK_XBUTTON2, down );
1114         break;
1115     case WM_KEYDOWN:
1116     case WM_SYSKEYDOWN:
1117         down = 1;
1118         /* fall through */
1119     case WM_KEYUP:
1120     case WM_SYSKEYUP:
1121         key = (unsigned char)msg->wparam;
1122         extended = ((msg->lparam >> 16) & KF_EXTENDED) != 0;
1123         set_input_key_state( input, key, down );
1124         switch(key)
1125         {
1126         case VK_SHIFT:
1127             set_input_key_state( input, extended ? VK_RSHIFT : VK_LSHIFT, down );
1128             break;
1129         case VK_CONTROL:
1130             set_input_key_state( input, extended ? VK_RCONTROL : VK_LCONTROL, down );
1131             break;
1132         case VK_MENU:
1133             set_input_key_state( input, extended ? VK_RMENU : VK_LMENU, down );
1134             break;
1135         case VK_LCONTROL:
1136         case VK_RCONTROL:
1137             set_input_key_state( input, VK_CONTROL, down );
1138             break;
1139         case VK_LMENU:
1140         case VK_RMENU:
1141             set_input_key_state( input, VK_MENU, down );
1142             break;
1143         case VK_LSHIFT:
1144         case VK_RSHIFT:
1145             set_input_key_state( input, VK_SHIFT, down );
1146             break;
1147         }
1148         break;
1149     }
1150 }
1151
1152 /* release the hardware message currently being processed by the given thread */
1153 static void release_hardware_message( struct msg_queue *queue, unsigned int hw_id,
1154                                       int remove, user_handle_t new_win )
1155 {
1156     struct thread_input *input = queue->input;
1157     struct message *msg;
1158
1159     LIST_FOR_EACH_ENTRY( msg, &input->msg_list, struct message, entry )
1160     {
1161         if (msg->unique_id == hw_id) break;
1162     }
1163     if (&msg->entry == &input->msg_list) return;  /* not found */
1164
1165     /* clear the queue bit for that message */
1166     if (remove || new_win)
1167     {
1168         struct message *other;
1169         int clr_bit;
1170
1171         clr_bit = get_hardware_msg_bit( msg );
1172         LIST_FOR_EACH_ENTRY( other, &input->msg_list, struct message, entry )
1173         {
1174             if (other != msg && get_hardware_msg_bit( other ) == clr_bit)
1175             {
1176                 clr_bit = 0;
1177                 break;
1178             }
1179         }
1180         if (clr_bit) clear_queue_bits( queue, clr_bit );
1181     }
1182
1183     if (new_win)  /* set the new window */
1184     {
1185         struct thread *owner = get_window_thread( new_win );
1186         if (owner)
1187         {
1188             if (owner->queue->input == input)
1189             {
1190                 msg->win = new_win;
1191                 set_queue_bits( owner->queue, get_hardware_msg_bit( msg ));
1192                 remove = 0;
1193             }
1194             release_object( owner );
1195         }
1196     }
1197     if (remove)
1198     {
1199         update_input_key_state( input, msg );
1200         list_remove( &msg->entry );
1201         free_message( msg );
1202     }
1203 }
1204
1205 /* find the window that should receive a given hardware message */
1206 static user_handle_t find_hardware_message_window( struct thread_input *input, struct message *msg,
1207                                                    unsigned int *msg_code )
1208 {
1209     user_handle_t win = 0;
1210
1211     *msg_code = msg->msg;
1212     if (is_keyboard_msg( msg ))
1213     {
1214         if (input && !(win = input->focus))
1215         {
1216             win = input->active;
1217             if (*msg_code < WM_SYSKEYDOWN) *msg_code += WM_SYSKEYDOWN - WM_KEYDOWN;
1218         }
1219     }
1220     else  /* mouse message */
1221     {
1222         if (!input || !(win = input->capture))
1223         {
1224             if (!(win = msg->win) || !is_window_visible( win ))
1225             {
1226                 if (input) win = window_from_point( input->desktop, msg->x, msg->y );
1227             }
1228         }
1229     }
1230     return win;
1231 }
1232
1233 /* queue a hardware message into a given thread input */
1234 static void queue_hardware_message( struct msg_queue *queue, struct message *msg )
1235 {
1236     user_handle_t win;
1237     struct thread *thread;
1238     struct thread_input *input = queue ? queue->input : foreground_input;
1239     unsigned int msg_code;
1240
1241     last_input_time = get_tick_count();
1242     win = find_hardware_message_window( input, msg, &msg_code );
1243     if (!win || !(thread = get_window_thread(win)))
1244     {
1245         if (input) update_input_key_state( input, msg );
1246         free( msg );
1247         return;
1248     }
1249     input = thread->queue->input;
1250
1251     if (msg->msg == WM_MOUSEMOVE && merge_message( input, msg )) free( msg );
1252     else
1253     {
1254         msg->unique_id = 0;  /* will be set once we return it to the app */
1255         list_add_tail( &input->msg_list, &msg->entry );
1256         set_queue_bits( thread->queue, get_hardware_msg_bit(msg) );
1257     }
1258     release_object( thread );
1259 }
1260
1261 /* check message filter for a hardware message */
1262 static int check_hw_message_filter( user_handle_t win, unsigned int msg_code,
1263                                     user_handle_t filter_win, unsigned int first, unsigned int last )
1264 {
1265     if (msg_code >= WM_KEYFIRST && msg_code <= WM_KEYLAST)
1266     {
1267         /* we can only test the window for a keyboard message since the
1268          * dest window for a mouse message depends on hittest */
1269         if (filter_win && win != filter_win && !is_child_window( filter_win, win ))
1270             return 0;
1271         /* the message code is final for a keyboard message, we can simply check it */
1272         return check_msg_filter( msg_code, first, last );
1273     }
1274     else  /* mouse message */
1275     {
1276         /* we need to check all possible values that the message can have in the end */
1277
1278         if (check_msg_filter( msg_code, first, last )) return 1;
1279         if (msg_code == WM_MOUSEWHEEL) return 0;  /* no other possible value for this one */
1280
1281         /* all other messages can become non-client messages */
1282         if (check_msg_filter( msg_code + (WM_NCMOUSEFIRST - WM_MOUSEFIRST), first, last )) return 1;
1283
1284         /* clicks can become double-clicks or non-client double-clicks */
1285         if (msg_code == WM_LBUTTONDOWN || msg_code == WM_MBUTTONDOWN ||
1286             msg_code == WM_RBUTTONDOWN || msg_code == WM_XBUTTONDOWN)
1287         {
1288             if (check_msg_filter( msg_code + (WM_LBUTTONDBLCLK - WM_LBUTTONDOWN), first, last )) return 1;
1289             if (check_msg_filter( msg_code + (WM_NCLBUTTONDBLCLK - WM_LBUTTONDOWN), first, last )) return 1;
1290         }
1291         return 0;
1292     }
1293 }
1294
1295
1296 /* find a hardware message for the given queue */
1297 static int get_hardware_message( struct thread *thread, int hw_id, user_handle_t filter_win,
1298                                  unsigned int first, unsigned int last, struct get_message_reply *reply )
1299 {
1300     struct thread_input *input = thread->queue->input;
1301     struct thread *win_thread;
1302     struct list *ptr;
1303     user_handle_t win;
1304     int clear_bits, got_one = 0;
1305     unsigned int msg_code;
1306
1307     ptr = list_head( &input->msg_list );
1308     if (hw_id)
1309     {
1310         while (ptr)
1311         {
1312             struct message *msg = LIST_ENTRY( ptr, struct message, entry );
1313             if (msg->unique_id == hw_id) break;
1314             ptr = list_next( &input->msg_list, ptr );
1315         }
1316         if (!ptr) ptr = list_head( &input->msg_list );
1317         else ptr = list_next( &input->msg_list, ptr );  /* start from the next one */
1318     }
1319
1320     if (ptr == list_head( &input->msg_list ))
1321         clear_bits = QS_KEY | QS_MOUSEMOVE | QS_MOUSEBUTTON;
1322     else
1323         clear_bits = 0;  /* don't clear bits if we don't go through the whole list */
1324
1325     while (ptr)
1326     {
1327         struct message *msg = LIST_ENTRY( ptr, struct message, entry );
1328         ptr = list_next( &input->msg_list, ptr );
1329         win = find_hardware_message_window( input, msg, &msg_code );
1330         if (!win || !(win_thread = get_window_thread( win )))
1331         {
1332             /* no window at all, remove it */
1333             update_input_key_state( input, msg );
1334             list_remove( &msg->entry );
1335             free_message( msg );
1336             continue;
1337         }
1338         if (win_thread != thread)
1339         {
1340             if (win_thread->queue->input == input)
1341             {
1342                 /* wake the other thread */
1343                 set_queue_bits( win_thread->queue, get_hardware_msg_bit(msg) );
1344                 got_one = 1;
1345             }
1346             else
1347             {
1348                 /* for another thread input, drop it */
1349                 update_input_key_state( input, msg );
1350                 list_remove( &msg->entry );
1351                 free_message( msg );
1352             }
1353             release_object( win_thread );
1354             continue;
1355         }
1356         release_object( win_thread );
1357
1358         /* if we already got a message for another thread, or if it doesn't
1359          * match the filter we skip it */
1360         if (got_one || !check_hw_message_filter( win, msg_code, filter_win, first, last ))
1361         {
1362             clear_bits &= ~get_hardware_msg_bit( msg );
1363             continue;
1364         }
1365         /* now we can return it */
1366         if (!msg->unique_id) msg->unique_id = get_unique_id();
1367         reply->type   = MSG_HARDWARE;
1368         reply->win    = win;
1369         reply->msg    = msg_code;
1370         reply->wparam = msg->wparam;
1371         reply->lparam = msg->lparam;
1372         reply->x      = msg->x;
1373         reply->y      = msg->y;
1374         reply->time   = msg->time;
1375         reply->info   = msg->info;
1376         reply->hw_id  = msg->unique_id;
1377         return 1;
1378     }
1379     /* nothing found, clear the hardware queue bits */
1380     clear_queue_bits( thread->queue, clear_bits );
1381     return 0;
1382 }
1383
1384 /* increment (or decrement if 'incr' is negative) the queue paint count */
1385 void inc_queue_paint_count( struct thread *thread, int incr )
1386 {
1387     struct msg_queue *queue = thread->queue;
1388
1389     assert( queue );
1390
1391     if ((queue->paint_count += incr) < 0) queue->paint_count = 0;
1392
1393     if (queue->paint_count)
1394         set_queue_bits( queue, QS_PAINT );
1395     else
1396         clear_queue_bits( queue, QS_PAINT );
1397 }
1398
1399
1400 /* remove all messages and timers belonging to a certain window */
1401 void queue_cleanup_window( struct thread *thread, user_handle_t win )
1402 {
1403     struct msg_queue *queue = thread->queue;
1404     struct list *ptr;
1405     int i;
1406
1407     if (!queue) return;
1408
1409     /* remove timers */
1410
1411     ptr = list_head( &queue->pending_timers );
1412     while (ptr)
1413     {
1414         struct list *next = list_next( &queue->pending_timers, ptr );
1415         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
1416         if (timer->win == win) free_timer( queue, timer );
1417         ptr = next;
1418     }
1419     ptr = list_head( &queue->expired_timers );
1420     while (ptr)
1421     {
1422         struct list *next = list_next( &queue->expired_timers, ptr );
1423         struct timer *timer = LIST_ENTRY( ptr, struct timer, entry );
1424         if (timer->win == win) free_timer( queue, timer );
1425         ptr = next;
1426     }
1427
1428     /* remove messages */
1429     for (i = 0; i < NB_MSG_KINDS; i++)
1430     {
1431         struct list *ptr, *next;
1432
1433         LIST_FOR_EACH_SAFE( ptr, next, &queue->msg_list[i] )
1434         {
1435             struct message *msg = LIST_ENTRY( ptr, struct message, entry );
1436             if (msg->win == win) remove_queue_message( queue, msg, i );
1437         }
1438     }
1439
1440     thread_input_cleanup_window( queue, win );
1441 }
1442
1443 /* post a message to a window; used by socket handling */
1444 void post_message( user_handle_t win, unsigned int message,
1445                    unsigned int wparam, unsigned int lparam )
1446 {
1447     struct message *msg;
1448     struct thread *thread = get_window_thread( win );
1449
1450     if (!thread) return;
1451
1452     if (thread->queue && (msg = mem_alloc( sizeof(*msg) )))
1453     {
1454         msg->type      = MSG_POSTED;
1455         msg->win       = get_user_full_handle( win );
1456         msg->msg       = message;
1457         msg->wparam    = wparam;
1458         msg->lparam    = lparam;
1459         msg->time      = get_tick_count();
1460         msg->x         = 0;
1461         msg->y         = 0;
1462         msg->info      = 0;
1463         msg->hook      = 0;
1464         msg->hook_proc = NULL;
1465         msg->result    = NULL;
1466         msg->data      = NULL;
1467         msg->data_size = 0;
1468
1469         list_add_tail( &thread->queue->msg_list[POST_MESSAGE], &msg->entry );
1470         set_queue_bits( thread->queue, QS_POSTMESSAGE|QS_ALLPOSTMESSAGE );
1471     }
1472     release_object( thread );
1473 }
1474
1475 /* post a win event */
1476 void post_win_event( struct thread *thread, unsigned int event,
1477                      user_handle_t win, unsigned int object_id,
1478                      unsigned int child_id, void *hook_proc,
1479                      const WCHAR *module, size_t module_size,
1480                      user_handle_t hook)
1481 {
1482     struct message *msg;
1483
1484     if (thread->queue && (msg = mem_alloc( sizeof(*msg) )))
1485     {
1486         msg->type      = MSG_WINEVENT;
1487         msg->win       = get_user_full_handle( win );
1488         msg->msg       = event;
1489         msg->wparam    = object_id;
1490         msg->lparam    = child_id;
1491         msg->time      = get_tick_count();
1492         msg->x         = 0;
1493         msg->y         = 0;
1494         msg->info      = get_thread_id( current );
1495         msg->result    = NULL;
1496         msg->hook      = hook;
1497         msg->hook_proc = hook_proc;
1498
1499         if ((msg->data = malloc( module_size )))
1500         {
1501             msg->data_size = module_size;
1502             memcpy( msg->data, module, module_size );
1503
1504             if (debug_level > 1)
1505                 fprintf( stderr, "post_win_event: tid %04x event %04x win %p object_id %d child_id %d\n",
1506                          get_thread_id(thread), event, win, object_id, child_id );
1507             list_add_tail( &thread->queue->msg_list[SEND_MESSAGE], &msg->entry );
1508             set_queue_bits( thread->queue, QS_SENDMESSAGE );
1509         }
1510         else
1511             free( msg );
1512     }
1513 }
1514
1515 /* get the message queue of the current thread */
1516 DECL_HANDLER(get_msg_queue)
1517 {
1518     struct msg_queue *queue = get_current_queue();
1519
1520     reply->handle = 0;
1521     if (queue) reply->handle = alloc_handle( current->process, queue, SYNCHRONIZE, 0 );
1522 }
1523
1524
1525 /* set the current message queue wakeup mask */
1526 DECL_HANDLER(set_queue_mask)
1527 {
1528     struct msg_queue *queue = get_current_queue();
1529
1530     if (queue)
1531     {
1532         queue->wake_mask    = req->wake_mask;
1533         queue->changed_mask = req->changed_mask;
1534         reply->wake_bits    = queue->wake_bits;
1535         reply->changed_bits = queue->changed_bits;
1536         if (is_signaled( queue ))
1537         {
1538             /* if skip wait is set, do what would have been done in the subsequent wait */
1539             if (req->skip_wait) msg_queue_satisfied( &queue->obj, current );
1540             else wake_up( &queue->obj, 0 );
1541         }
1542     }
1543 }
1544
1545
1546 /* get the current message queue status */
1547 DECL_HANDLER(get_queue_status)
1548 {
1549     struct msg_queue *queue = current->queue;
1550     if (queue)
1551     {
1552         reply->wake_bits    = queue->wake_bits;
1553         reply->changed_bits = queue->changed_bits;
1554         if (req->clear) queue->changed_bits = 0;
1555     }
1556     else reply->wake_bits = reply->changed_bits = 0;
1557 }
1558
1559
1560 /* send a message to a thread queue */
1561 DECL_HANDLER(send_message)
1562 {
1563     struct message *msg;
1564     struct msg_queue *send_queue = get_current_queue();
1565     struct msg_queue *recv_queue = NULL;
1566     struct thread *thread = NULL;
1567
1568     if (req->id)
1569     {
1570         if (!(thread = get_thread_from_id( req->id ))) return;
1571     }
1572     else if (req->type != MSG_HARDWARE)
1573     {
1574         /* only hardware messages are allowed without destination thread */
1575         set_error( STATUS_INVALID_PARAMETER );
1576         return;
1577     }
1578
1579     if (thread && !(recv_queue = thread->queue))
1580     {
1581         set_error( STATUS_INVALID_PARAMETER );
1582         release_object( thread );
1583         return;
1584     }
1585     if (recv_queue && (req->flags & SEND_MSG_ABORT_IF_HUNG) && is_queue_hung(recv_queue))
1586     {
1587         set_error( STATUS_TIMEOUT );
1588         release_object( thread );
1589         return;
1590     }
1591
1592     if ((msg = mem_alloc( sizeof(*msg) )))
1593     {
1594         msg->type      = req->type;
1595         msg->win       = get_user_full_handle( req->win );
1596         msg->msg       = req->msg;
1597         msg->wparam    = req->wparam;
1598         msg->lparam    = req->lparam;
1599         msg->time      = req->time;
1600         msg->x         = req->x;
1601         msg->y         = req->y;
1602         msg->info      = req->info;
1603         msg->hook      = 0;
1604         msg->hook_proc = NULL;
1605         msg->result    = NULL;
1606         msg->data      = NULL;
1607         msg->data_size = 0;
1608
1609         switch(msg->type)
1610         {
1611         case MSG_OTHER_PROCESS:
1612             msg->data_size = get_req_data_size();
1613             if (msg->data_size && !(msg->data = memdup( get_req_data(), msg->data_size )))
1614             {
1615                 free( msg );
1616                 break;
1617             }
1618             /* fall through */
1619         case MSG_ASCII:
1620         case MSG_UNICODE:
1621         case MSG_CALLBACK:
1622             if (!(msg->result = alloc_message_result( send_queue, recv_queue, msg,
1623                                                       req->timeout, req->callback, req->info )))
1624             {
1625                 free_message( msg );
1626                 break;
1627             }
1628             /* fall through */
1629         case MSG_NOTIFY:
1630             list_add_tail( &recv_queue->msg_list[SEND_MESSAGE], &msg->entry );
1631             set_queue_bits( recv_queue, QS_SENDMESSAGE );
1632             break;
1633         case MSG_POSTED:
1634             /* needed for posted DDE messages */
1635             msg->data_size = get_req_data_size();
1636             if (msg->data_size && !(msg->data = memdup( get_req_data(), msg->data_size )))
1637             {
1638                 free( msg );
1639                 break;
1640             }
1641             list_add_tail( &recv_queue->msg_list[POST_MESSAGE], &msg->entry );
1642             set_queue_bits( recv_queue, QS_POSTMESSAGE|QS_ALLPOSTMESSAGE );
1643             break;
1644         case MSG_HARDWARE:
1645             queue_hardware_message( recv_queue, msg );
1646             break;
1647         case MSG_CALLBACK_RESULT:  /* cannot send this one */
1648         default:
1649             set_error( STATUS_INVALID_PARAMETER );
1650             free( msg );
1651             break;
1652         }
1653     }
1654     if (thread) release_object( thread );
1655 }
1656
1657 /* post a quit message to the current queue */
1658 DECL_HANDLER(post_quit_message)
1659 {
1660     struct msg_queue *queue = get_current_queue();
1661
1662     if (!queue)
1663         return;
1664
1665     queue->quit_message = 1;
1666     queue->exit_code = req->exit_code;
1667     set_queue_bits( queue, QS_POSTMESSAGE|QS_ALLPOSTMESSAGE );
1668 }
1669
1670 /* get a message from the current queue */
1671 DECL_HANDLER(get_message)
1672 {
1673     struct timer *timer;
1674     struct list *ptr;
1675     struct msg_queue *queue = get_current_queue();
1676     user_handle_t get_win = get_user_full_handle( req->get_win );
1677
1678     reply->active_hooks = get_active_hooks();
1679
1680     if (!queue) return;
1681     gettimeofday( &queue->last_get_msg, NULL );
1682
1683     /* first check for sent messages */
1684     if ((ptr = list_head( &queue->msg_list[SEND_MESSAGE] )))
1685     {
1686         struct message *msg = LIST_ENTRY( ptr, struct message, entry );
1687         receive_message( queue, msg, reply );
1688         return;
1689     }
1690     if (req->flags & GET_MSG_SENT_ONLY) goto done;  /* nothing else to check */
1691
1692     /* clear changed bits so we can wait on them if we don't find a message */
1693     if (req->get_first == 0 && req->get_last == ~0U) queue->changed_bits = 0;
1694     else queue->changed_bits &= QS_ALLPOSTMESSAGE;
1695
1696     /* then check for posted messages */
1697     if (get_posted_message( queue, get_win, req->get_first, req->get_last, req->flags, reply ))
1698         return;
1699
1700     /* only check for quit messages if not posted messages pending.
1701      * note: the quit message isn't filtered */
1702     if (get_quit_message( queue, req->flags, reply ))
1703         return;
1704
1705     /* then check for any raw hardware message */
1706     if (filter_contains_hw_range( req->get_first, req->get_last ) &&
1707         get_hardware_message( current, req->hw_id, get_win, req->get_first, req->get_last, reply ))
1708         return;
1709
1710     /* now check for WM_PAINT */
1711     if (queue->paint_count &&
1712         check_msg_filter( WM_PAINT, req->get_first, req->get_last ) &&
1713         (reply->win = find_window_to_repaint( get_win, current )))
1714     {
1715         reply->type   = MSG_POSTED;
1716         reply->msg    = WM_PAINT;
1717         reply->wparam = 0;
1718         reply->lparam = 0;
1719         reply->x      = 0;
1720         reply->y      = 0;
1721         reply->time   = get_tick_count();
1722         reply->info   = 0;
1723         return;
1724     }
1725
1726     /* now check for timer */
1727     if ((timer = find_expired_timer( queue, get_win, req->get_first,
1728                                      req->get_last, (req->flags & GET_MSG_REMOVE) )))
1729     {
1730         reply->type   = MSG_POSTED;
1731         reply->win    = timer->win;
1732         reply->msg    = timer->msg;
1733         reply->wparam = timer->id;
1734         reply->lparam = timer->lparam;
1735         reply->x      = 0;
1736         reply->y      = 0;
1737         reply->time   = get_tick_count();
1738         reply->info   = 0;
1739         return;
1740     }
1741
1742  done:
1743     set_error( STATUS_PENDING );  /* FIXME */
1744 }
1745
1746
1747 /* reply to a sent message */
1748 DECL_HANDLER(reply_message)
1749 {
1750     if (!current->queue) set_error( STATUS_ACCESS_DENIED );
1751     else if (current->queue->recv_result)
1752         reply_message( current->queue, req->result, 0, req->remove,
1753                        get_req_data(), get_req_data_size() );
1754 }
1755
1756
1757 /* accept the current hardware message */
1758 DECL_HANDLER(accept_hardware_message)
1759 {
1760     if (current->queue)
1761         release_hardware_message( current->queue, req->hw_id, req->remove, req->new_win );
1762     else
1763         set_error( STATUS_ACCESS_DENIED );
1764 }
1765
1766
1767 /* retrieve the reply for the last message sent */
1768 DECL_HANDLER(get_message_reply)
1769 {
1770     struct message_result *result;
1771     struct list *entry;
1772     struct msg_queue *queue = current->queue;
1773
1774     if (queue)
1775     {
1776         set_error( STATUS_PENDING );
1777         reply->result = 0;
1778
1779         if (!(entry = list_head( &queue->send_result ))) return;  /* no reply ready */
1780
1781         result = LIST_ENTRY( entry, struct message_result, sender_entry );
1782         if (result->replied || req->cancel)
1783         {
1784             if (result->replied)
1785             {
1786                 reply->result = result->result;
1787                 set_error( result->error );
1788                 if (result->data)
1789                 {
1790                     size_t data_len = min( result->data_size, get_reply_max_size() );
1791                     set_reply_data_ptr( result->data, data_len );
1792                     result->data = NULL;
1793                     result->data_size = 0;
1794                 }
1795             }
1796             remove_result_from_sender( result );
1797
1798             entry = list_head( &queue->send_result );
1799             if (!entry) clear_queue_bits( queue, QS_SMRESULT );
1800             else
1801             {
1802                 result = LIST_ENTRY( entry, struct message_result, sender_entry );
1803                 if (!result->replied) clear_queue_bits( queue, QS_SMRESULT );
1804             }
1805         }
1806     }
1807     else set_error( STATUS_ACCESS_DENIED );
1808 }
1809
1810
1811 /* set a window timer */
1812 DECL_HANDLER(set_win_timer)
1813 {
1814     struct timer *timer;
1815     struct msg_queue *queue;
1816     struct thread *thread = NULL;
1817     user_handle_t win = 0;
1818     unsigned int id = req->id;
1819
1820     if (req->win)
1821     {
1822         if (!(win = get_user_full_handle( req->win )) || !(thread = get_window_thread( win )))
1823         {
1824             set_error( STATUS_INVALID_HANDLE );
1825             return;
1826         }
1827         if (thread->process != current->process)
1828         {
1829             release_object( thread );
1830             set_error( STATUS_ACCESS_DENIED );
1831             return;
1832         }
1833         queue = thread->queue;
1834         /* remove it if it existed already */
1835         if ((timer = find_timer( queue, win, req->msg, id ))) free_timer( queue, timer );
1836     }
1837     else
1838     {
1839         queue = get_current_queue();
1840         /* find a free id for it */
1841         do
1842         {
1843             id = queue->next_timer_id;
1844             if (++queue->next_timer_id >= 0x10000) queue->next_timer_id = 1;
1845         }
1846         while (find_timer( queue, 0, req->msg, id ));
1847     }
1848
1849     if ((timer = set_timer( queue, req->rate )))
1850     {
1851         timer->win    = win;
1852         timer->msg    = req->msg;
1853         timer->id     = id;
1854         timer->lparam = req->lparam;
1855         reply->id     = id;
1856     }
1857     if (thread) release_object( thread );
1858 }
1859
1860 /* kill a window timer */
1861 DECL_HANDLER(kill_win_timer)
1862 {
1863     struct timer *timer;
1864     struct thread *thread;
1865     user_handle_t win = 0;
1866
1867     if (req->win)
1868     {
1869         if (!(win = get_user_full_handle( req->win )) || !(thread = get_window_thread( win )))
1870         {
1871             set_error( STATUS_INVALID_HANDLE );
1872             return;
1873         }
1874         if (thread->process != current->process)
1875         {
1876             release_object( thread );
1877             set_error( STATUS_ACCESS_DENIED );
1878             return;
1879         }
1880     }
1881     else thread = (struct thread *)grab_object( current );
1882
1883     if (thread->queue && (timer = find_timer( thread->queue, win, req->msg, req->id )))
1884         free_timer( thread->queue, timer );
1885     else
1886         set_error( STATUS_INVALID_PARAMETER );
1887
1888     release_object( thread );
1889 }
1890
1891
1892 /* attach (or detach) thread inputs */
1893 DECL_HANDLER(attach_thread_input)
1894 {
1895     struct thread *thread_from = get_thread_from_id( req->tid_from );
1896     struct thread *thread_to = get_thread_from_id( req->tid_to );
1897
1898     if (!thread_from || !thread_to)
1899     {
1900         if (thread_from) release_object( thread_from );
1901         if (thread_to) release_object( thread_to );
1902         return;
1903     }
1904     if (thread_from != thread_to)
1905     {
1906         if (req->attach) attach_thread_input( thread_from, thread_to );
1907         else
1908         {
1909             if (thread_from->queue && thread_to->queue &&
1910                 thread_from->queue->input == thread_to->queue->input)
1911                 detach_thread_input( thread_from );
1912             else
1913                 set_error( STATUS_ACCESS_DENIED );
1914         }
1915     }
1916     else set_error( STATUS_ACCESS_DENIED );
1917     release_object( thread_from );
1918     release_object( thread_to );
1919 }
1920
1921
1922 /* get thread input data */
1923 DECL_HANDLER(get_thread_input)
1924 {
1925     struct thread *thread = NULL;
1926     struct thread_input *input;
1927
1928     if (req->tid)
1929     {
1930         if (!(thread = get_thread_from_id( req->tid ))) return;
1931         input = thread->queue ? thread->queue->input : NULL;
1932     }
1933     else input = foreground_input;  /* get the foreground thread info */
1934
1935     if (input)
1936     {
1937         reply->focus      = input->focus;
1938         reply->capture    = input->capture;
1939         reply->active     = input->active;
1940         reply->menu_owner = input->menu_owner;
1941         reply->move_size  = input->move_size;
1942         reply->caret      = input->caret;
1943         reply->rect       = input->caret_rect;
1944     }
1945     else
1946     {
1947         reply->focus      = 0;
1948         reply->capture    = 0;
1949         reply->active     = 0;
1950         reply->menu_owner = 0;
1951         reply->move_size  = 0;
1952         reply->caret      = 0;
1953         reply->rect.left = reply->rect.top = reply->rect.right = reply->rect.bottom = 0;
1954     }
1955     /* foreground window is active window of foreground thread */
1956     reply->foreground = foreground_input ? foreground_input->active : 0;
1957     if (thread) release_object( thread );
1958 }
1959
1960
1961 /* retrieve queue keyboard state for a given thread */
1962 DECL_HANDLER(get_key_state)
1963 {
1964     struct thread *thread;
1965     struct thread_input *input;
1966
1967     if (!(thread = get_thread_from_id( req->tid ))) return;
1968     input = thread->queue ? thread->queue->input : NULL;
1969     if (input)
1970     {
1971         if (req->key >= 0) reply->state = input->keystate[req->key & 0xff];
1972         set_reply_data( input->keystate, min( get_reply_max_size(), sizeof(input->keystate) ));
1973     }
1974     release_object( thread );
1975 }
1976
1977
1978 /* set queue keyboard state for a given thread */
1979 DECL_HANDLER(set_key_state)
1980 {
1981     struct thread *thread = NULL;
1982     struct thread_input *input;
1983
1984     if (!(thread = get_thread_from_id( req->tid ))) return;
1985     input = thread->queue ? thread->queue->input : NULL;
1986     if (input)
1987     {
1988         size_t size = min( sizeof(input->keystate), get_req_data_size() );
1989         if (size) memcpy( input->keystate, get_req_data(), size );
1990     }
1991     release_object( thread );
1992 }
1993
1994
1995 /* set the system foreground window */
1996 DECL_HANDLER(set_foreground_window)
1997 {
1998     struct msg_queue *queue = get_current_queue();
1999
2000     reply->previous = foreground_input ? foreground_input->active : 0;
2001     reply->send_msg_old = (reply->previous && foreground_input != queue->input);
2002     reply->send_msg_new = FALSE;
2003
2004     if (req->handle)
2005     {
2006         struct thread *thread;
2007
2008         if (is_top_level_window( req->handle ) &&
2009             ((thread = get_window_thread( req->handle ))))
2010         {
2011             foreground_input = thread->queue->input;
2012             reply->send_msg_new = (foreground_input != queue->input);
2013             release_object( thread );
2014         }
2015         else set_error( STATUS_INVALID_HANDLE );
2016     }
2017     else foreground_input = NULL;
2018 }
2019
2020
2021 /* set the current thread focus window */
2022 DECL_HANDLER(set_focus_window)
2023 {
2024     struct msg_queue *queue = get_current_queue();
2025
2026     reply->previous = 0;
2027     if (queue && check_queue_input_window( queue, req->handle ))
2028     {
2029         reply->previous = queue->input->focus;
2030         queue->input->focus = get_user_full_handle( req->handle );
2031     }
2032 }
2033
2034
2035 /* set the current thread active window */
2036 DECL_HANDLER(set_active_window)
2037 {
2038     struct msg_queue *queue = get_current_queue();
2039
2040     reply->previous = 0;
2041     if (queue && check_queue_input_window( queue, req->handle ))
2042     {
2043         if (!req->handle || make_window_active( req->handle ))
2044         {
2045             reply->previous = queue->input->active;
2046             queue->input->active = get_user_full_handle( req->handle );
2047         }
2048         else set_error( STATUS_INVALID_HANDLE );
2049     }
2050 }
2051
2052
2053 /* set the current thread capture window */
2054 DECL_HANDLER(set_capture_window)
2055 {
2056     struct msg_queue *queue = get_current_queue();
2057
2058     reply->previous = reply->full_handle = 0;
2059     if (queue && check_queue_input_window( queue, req->handle ))
2060     {
2061         struct thread_input *input = queue->input;
2062
2063         reply->previous = input->capture;
2064         input->capture = get_user_full_handle( req->handle );
2065         input->menu_owner = (req->flags & CAPTURE_MENU) ? input->capture : 0;
2066         input->move_size = (req->flags & CAPTURE_MOVESIZE) ? input->capture : 0;
2067         reply->full_handle = input->capture;
2068     }
2069 }
2070
2071
2072 /* Set the current thread caret window */
2073 DECL_HANDLER(set_caret_window)
2074 {
2075     struct msg_queue *queue = get_current_queue();
2076
2077     reply->previous = 0;
2078     if (queue && check_queue_input_window( queue, req->handle ))
2079     {
2080         struct thread_input *input = queue->input;
2081
2082         reply->previous  = input->caret;
2083         reply->old_rect  = input->caret_rect;
2084         reply->old_hide  = input->caret_hide;
2085         reply->old_state = input->caret_state;
2086
2087         set_caret_window( input, get_user_full_handle(req->handle) );
2088         input->caret_rect.right  = input->caret_rect.left + req->width;
2089         input->caret_rect.bottom = input->caret_rect.top + req->height;
2090     }
2091 }
2092
2093
2094 /* Set the current thread caret information */
2095 DECL_HANDLER(set_caret_info)
2096 {
2097     struct msg_queue *queue = get_current_queue();
2098     struct thread_input *input;
2099
2100     if (!queue) return;
2101     input = queue->input;
2102     reply->full_handle = input->caret;
2103     reply->old_rect    = input->caret_rect;
2104     reply->old_hide    = input->caret_hide;
2105     reply->old_state   = input->caret_state;
2106
2107     if (req->handle && get_user_full_handle(req->handle) != input->caret)
2108     {
2109         set_error( STATUS_ACCESS_DENIED );
2110         return;
2111     }
2112     if (req->flags & SET_CARET_POS)
2113     {
2114         input->caret_rect.right  += req->x - input->caret_rect.left;
2115         input->caret_rect.bottom += req->y - input->caret_rect.top;
2116         input->caret_rect.left = req->x;
2117         input->caret_rect.top  = req->y;
2118     }
2119     if (req->flags & SET_CARET_HIDE)
2120     {
2121         input->caret_hide += req->hide;
2122         if (input->caret_hide < 0) input->caret_hide = 0;
2123     }
2124     if (req->flags & SET_CARET_STATE)
2125     {
2126         if (req->state == -1) input->caret_state = !input->caret_state;
2127         else input->caret_state = !!req->state;
2128     }
2129 }
2130
2131
2132 /* get the time of the last input event */
2133 DECL_HANDLER(get_last_input_time)
2134 {
2135     reply->time = last_input_time;
2136 }