blob: b38eae71db1d176cc070dbcc7042719c13d11153 [file] [log] [blame]
Alexandre Julliardad47a301999-11-29 01:58:35 +00001/*
2 * Waitable timers management
3 *
4 * Copyright (C) 1999 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliardad47a301999-11-29 01:58:35 +000019 */
20
Alexandre Julliard5769d1d2002-04-26 19:05:15 +000021#include "config.h"
22#include "wine/port.h"
23
Alexandre Julliardad47a301999-11-29 01:58:35 +000024#include <assert.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <sys/time.h>
28#include <sys/types.h>
Robert Lunnon95414ef2005-11-22 12:01:05 +000029#include <stdarg.h>
Alexandre Julliardad47a301999-11-29 01:58:35 +000030
Ge van Geldorp1a1583a2005-11-28 17:32:54 +010031#include "ntstatus.h"
32#define WIN32_NO_STATUS
Alexandre Julliard435e2e62002-12-10 22:56:43 +000033#include "windef.h"
Vitaliy Margolena9960002005-10-27 18:30:37 +000034#include "winternl.h"
Alexandre Julliarde66207e2003-02-19 00:33:32 +000035
36#include "file.h"
Alexandre Julliardad47a301999-11-29 01:58:35 +000037#include "handle.h"
38#include "request.h"
39
Alexandre Julliardad47a301999-11-29 01:58:35 +000040struct timer
41{
42 struct object obj; /* object header */
43 int manual; /* manual reset */
44 int signaled; /* current signaled state */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +020045 unsigned int period; /* timer period in ms */
46 timeout_t when; /* next expiration */
Alexandre Julliardad47a301999-11-29 01:58:35 +000047 struct timeout_user *timeout; /* timeout user */
Alexandre Julliardea1afce2000-08-22 20:08:37 +000048 struct thread *thread; /* thread that set the APC function */
Alexandre Julliard9b92a592008-12-29 17:43:01 +010049 client_ptr_t callback; /* callback APC function */
50 client_ptr_t arg; /* callback argument */
Alexandre Julliardad47a301999-11-29 01:58:35 +000051};
52
53static void timer_dump( struct object *obj, int verbose );
Alexandre Julliard8382eb02007-12-05 18:16:42 +010054static struct object_type *timer_get_type( struct object *obj );
Alexandre Julliardad47a301999-11-29 01:58:35 +000055static int timer_signaled( struct object *obj, struct thread *thread );
56static int timer_satisfied( struct object *obj, struct thread *thread );
Alexandre Julliard03f46e12005-12-12 14:58:44 +010057static unsigned int timer_map_access( struct object *obj, unsigned int access );
Alexandre Julliardad47a301999-11-29 01:58:35 +000058static void timer_destroy( struct object *obj );
59
60static const struct object_ops timer_ops =
61{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000062 sizeof(struct timer), /* size */
63 timer_dump, /* dump */
Alexandre Julliard8382eb02007-12-05 18:16:42 +010064 timer_get_type, /* get_type */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000065 add_queue, /* add_queue */
66 remove_queue, /* remove_queue */
67 timer_signaled, /* signaled */
68 timer_satisfied, /* satisfied */
Mike McCormackf92fff62005-04-24 17:35:52 +000069 no_signal, /* signal */
Alexandre Julliard1ab243b2000-12-19 02:12:45 +000070 no_get_fd, /* get_fd */
Alexandre Julliard03f46e12005-12-12 14:58:44 +010071 timer_map_access, /* map_access */
Rob Shearmanc1707d82007-10-03 13:10:37 +010072 default_get_sd, /* get_sd */
73 default_set_sd, /* set_sd */
Vitaliy Margolenbaffcb92005-11-22 14:55:42 +000074 no_lookup_name, /* lookup_name */
Alexandre Julliard7e71c1d2007-03-22 11:44:29 +010075 no_open_file, /* open_file */
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +000076 no_close_handle, /* close_handle */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000077 timer_destroy /* destroy */
Alexandre Julliardad47a301999-11-29 01:58:35 +000078};
79
80
81/* create a timer object */
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +010082static struct timer *create_timer( struct directory *root, const struct unicode_str *name,
83 unsigned int attr, int manual )
Alexandre Julliardad47a301999-11-29 01:58:35 +000084{
85 struct timer *timer;
86
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +010087 if ((timer = create_named_object_dir( root, name, attr, &timer_ops )))
Alexandre Julliardad47a301999-11-29 01:58:35 +000088 {
Vitaliy Margolen893987b2005-11-21 16:27:03 +000089 if (get_error() != STATUS_OBJECT_NAME_EXISTS)
Alexandre Julliardad47a301999-11-29 01:58:35 +000090 {
91 /* initialize it if it didn't already exist */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +020092 timer->manual = manual;
93 timer->signaled = 0;
94 timer->when = 0;
95 timer->period = 0;
96 timer->timeout = NULL;
97 timer->thread = NULL;
Alexandre Julliardad47a301999-11-29 01:58:35 +000098 }
99 }
100 return timer;
101}
102
103/* callback on timer expiration */
104static void timer_callback( void *private )
105{
106 struct timer *timer = (struct timer *)private;
107
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000108 /* queue an APC */
109 if (timer->thread)
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000110 {
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100111 apc_call_t data;
112
113 memset( &data, 0, sizeof(data) );
114 if (timer->callback)
115 {
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200116 data.type = APC_TIMER;
117 data.timer.func = timer->callback;
118 data.timer.time = timer->when;
119 data.timer.arg = timer->arg;
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100120 }
121 else data.type = APC_NONE; /* wake up only */
122
123 if (!thread_queue_apc( timer->thread, &timer->obj, &data ))
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000124 {
125 release_object( timer->thread );
126 timer->thread = NULL;
127 }
128 }
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000129
Alexandre Julliardad47a301999-11-29 01:58:35 +0000130 if (timer->period) /* schedule the next expiration */
131 {
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200132 timer->when += (timeout_t)timer->period * 10000;
133 timer->timeout = add_timeout_user( timer->when, timer_callback, timer );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000134 }
135 else timer->timeout = NULL;
136
137 /* wake up waiters */
138 timer->signaled = 1;
139 wake_up( &timer->obj, 0 );
140}
141
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000142/* cancel a running timer */
Eric Pouech4c591d42003-05-20 04:00:42 +0000143static int cancel_timer( struct timer *timer )
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000144{
Eric Pouech4c591d42003-05-20 04:00:42 +0000145 int signaled = timer->signaled;
146
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000147 if (timer->timeout)
148 {
149 remove_timeout_user( timer->timeout );
150 timer->timeout = NULL;
151 }
152 if (timer->thread)
153 {
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100154 thread_cancel_apc( timer->thread, &timer->obj, APC_TIMER );
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000155 release_object( timer->thread );
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000156 timer->thread = NULL;
157 }
Eric Pouech4c591d42003-05-20 04:00:42 +0000158 return signaled;
Alexandre Julliardea1afce2000-08-22 20:08:37 +0000159}
160
Alexandre Julliardad47a301999-11-29 01:58:35 +0000161/* set the timer expiration and period */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200162static int set_timer( struct timer *timer, timeout_t expire, unsigned int period,
Alexandre Julliard9b92a592008-12-29 17:43:01 +0100163 client_ptr_t callback, client_ptr_t arg )
Alexandre Julliardad47a301999-11-29 01:58:35 +0000164{
Eric Pouech4c591d42003-05-20 04:00:42 +0000165 int signaled = cancel_timer( timer );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000166 if (timer->manual)
167 {
168 period = 0; /* period doesn't make any sense for a manual timer */
169 timer->signaled = 0;
170 }
Alexandre Julliardc3624432007-08-09 17:16:26 +0200171 timer->when = (expire <= 0) ? current_time - expire : max( expire, current_time );
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200172 timer->period = period;
173 timer->callback = callback;
174 timer->arg = arg;
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000175 if (callback) timer->thread = (struct thread *)grab_object( current );
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200176 timer->timeout = add_timeout_user( timer->when, timer_callback, timer );
Eric Pouech4c591d42003-05-20 04:00:42 +0000177 return signaled;
Alexandre Julliardad47a301999-11-29 01:58:35 +0000178}
179
Alexandre Julliardad47a301999-11-29 01:58:35 +0000180static void timer_dump( struct object *obj, int verbose )
181{
182 struct timer *timer = (struct timer *)obj;
183 assert( obj->ops == &timer_ops );
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200184 fprintf( stderr, "Timer manual=%d when=%s period=%u ",
185 timer->manual, get_timeout_str(timer->when), timer->period );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000186 dump_object_name( &timer->obj );
187 fputc( '\n', stderr );
188}
189
Alexandre Julliard8382eb02007-12-05 18:16:42 +0100190static struct object_type *timer_get_type( struct object *obj )
191{
192 static const WCHAR name[] = {'T','i','m','e','r'};
193 static const struct unicode_str str = { name, sizeof(name) };
194 return get_object_type( &str );
195}
196
Alexandre Julliardad47a301999-11-29 01:58:35 +0000197static int timer_signaled( struct object *obj, struct thread *thread )
198{
199 struct timer *timer = (struct timer *)obj;
200 assert( obj->ops == &timer_ops );
201 return timer->signaled;
202}
203
204static int timer_satisfied( struct object *obj, struct thread *thread )
205{
206 struct timer *timer = (struct timer *)obj;
207 assert( obj->ops == &timer_ops );
208 if (!timer->manual) timer->signaled = 0;
209 return 0;
210}
211
Alexandre Julliard03f46e12005-12-12 14:58:44 +0100212static unsigned int timer_map_access( struct object *obj, unsigned int access )
213{
214 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE | TIMER_QUERY_STATE;
215 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | TIMER_MODIFY_STATE;
216 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
217 if (access & GENERIC_ALL) access |= TIMER_ALL_ACCESS;
218 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
219}
220
Alexandre Julliardad47a301999-11-29 01:58:35 +0000221static void timer_destroy( struct object *obj )
222{
223 struct timer *timer = (struct timer *)obj;
224 assert( obj->ops == &timer_ops );
225
226 if (timer->timeout) remove_timeout_user( timer->timeout );
Alexandre Julliard15979fd2002-03-23 18:50:04 +0000227 if (timer->thread) release_object( timer->thread );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000228}
229
230/* create a timer */
231DECL_HANDLER(create_timer)
232{
Alexandre Julliardad47a301999-11-29 01:58:35 +0000233 struct timer *timer;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000234 struct unicode_str name;
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100235 struct directory *root = NULL;
Alexandre Julliardad47a301999-11-29 01:58:35 +0000236
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000237 reply->handle = 0;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000238 get_req_unicode_str( &name );
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100239 if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
240 return;
241
242 if ((timer = create_timer( root, &name, req->attributes, req->manual )))
Alexandre Julliardad47a301999-11-29 01:58:35 +0000243 {
Alexandre Julliard24560e72005-12-09 13:58:25 +0100244 reply->handle = alloc_handle( current->process, timer, req->access, req->attributes );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000245 release_object( timer );
246 }
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100247
248 if (root) release_object( root );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000249}
250
251/* open a handle to a timer */
252DECL_HANDLER(open_timer)
253{
Alexandre Julliardead9b062005-11-18 16:31:18 +0000254 struct unicode_str name;
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100255 struct directory *root = NULL;
Alexandre Julliard3764da62005-12-05 12:52:05 +0100256 struct timer *timer;
Alexandre Julliardead9b062005-11-18 16:31:18 +0000257
258 get_req_unicode_str( &name );
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100259 if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
260 return;
261
Alexandre Julliard3764da62005-12-05 12:52:05 +0100262 if ((timer = open_object_dir( root, &name, req->attributes, &timer_ops )))
263 {
Alexandre Julliard24560e72005-12-09 13:58:25 +0100264 reply->handle = alloc_handle( current->process, &timer->obj, req->access, req->attributes );
Alexandre Julliard3764da62005-12-05 12:52:05 +0100265 release_object( timer );
266 }
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +0100267
268 if (root) release_object( root );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000269}
270
271/* set a waitable timer */
272DECL_HANDLER(set_timer)
273{
274 struct timer *timer;
275
276 if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
277 TIMER_MODIFY_STATE, &timer_ops )))
278 {
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200279 reply->signaled = set_timer( timer, req->expire, req->period, req->callback, req->arg );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000280 release_object( timer );
281 }
282}
283
284/* cancel a waitable timer */
285DECL_HANDLER(cancel_timer)
286{
287 struct timer *timer;
288
289 if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
290 TIMER_MODIFY_STATE, &timer_ops )))
291 {
Eric Pouech4c591d42003-05-20 04:00:42 +0000292 reply->signaled = cancel_timer( timer );
Alexandre Julliardad47a301999-11-29 01:58:35 +0000293 release_object( timer );
294 }
295}
Robert Shearman7572b122004-12-13 21:10:58 +0000296
297/* Get information on a waitable timer */
298DECL_HANDLER(get_timer_info)
299{
300 struct timer *timer;
301
302 if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
303 TIMER_QUERY_STATE, &timer_ops )))
304 {
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200305 reply->when = timer->when;
Robert Shearman7572b122004-12-13 21:10:58 +0000306 reply->signaled = timer->signaled;
307 release_object( timer );
308 }
309}