tevent: add tevent_context_wrapper_create() infrastructure
[gd/samba-autobuild/.git] / lib / tevent / tevent_internal.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    generalised event loop handling
5
6    INTERNAL STRUCTS. THERE ARE NO API GUARANTEES.
7    External users should only ever have to include this header when 
8    implementing new tevent backends.
9
10    Copyright (C) Stefan Metzmacher 2005-2009
11
12      ** NOTE! The following LGPL license applies to the tevent
13      ** library. This does NOT imply that all of Samba is released
14      ** under the LGPL
15
16    This library is free software; you can redistribute it and/or
17    modify it under the terms of the GNU Lesser General Public
18    License as published by the Free Software Foundation; either
19    version 3 of the License, or (at your option) any later version.
20
21    This library is distributed in the hope that it will be useful,
22    but WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24    Lesser General Public License for more details.
25
26    You should have received a copy of the GNU Lesser General Public
27    License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 */
29
30 struct tevent_req {
31         /**
32          * @brief What to do on completion
33          *
34          * This is used for the user of an async request, fn is called when
35          * the request completes, either successfully or with an error.
36          */
37         struct {
38                 /**
39                  * @brief Completion function
40                  * Completion function, to be filled by the API user
41                  */
42                 tevent_req_fn fn;
43                 /**
44                  * @brief Private data for the completion function
45                  */
46                 void *private_data;
47         } async;
48
49         /**
50          * @brief Private state pointer for the actual implementation
51          *
52          * The implementation doing the work for the async request needs to
53          * keep around current data like for example a fd event. The user of
54          * an async request should not touch this.
55          */
56         void *data;
57
58         /**
59          * @brief A function to overwrite the default print function
60          *
61          * The implementation doing the work may want to implement a
62          * custom function to print the text representation of the async
63          * request.
64          */
65         tevent_req_print_fn private_print;
66
67         /**
68          * @brief A function to cancel the request
69          *
70          * The implementation might want to set a function
71          * that is called when the tevent_req_cancel() function
72          * was called.
73          */
74         tevent_req_cancel_fn private_cancel;
75
76         /**
77          * @brief A function to cleanup the request
78          *
79          * The implementation might want to set a function
80          * that is called before the tevent_req_done() and tevent_req_error()
81          * trigger the callers callback function.
82          */
83         struct {
84                 tevent_req_cleanup_fn fn;
85                 enum tevent_req_state state;
86         } private_cleanup;
87
88         /**
89          * @brief Internal state of the request
90          *
91          * Callers should only access this via functions and never directly.
92          */
93         struct {
94                 /**
95                  * @brief The talloc type of the data pointer
96                  *
97                  * This is filled by the tevent_req_create() macro.
98                  *
99                  * This for debugging only.
100                  */
101                 const char *private_type;
102
103                 /**
104                  * @brief The location where the request was created
105                  *
106                  * This uses the __location__ macro via the tevent_req_create()
107                  * macro.
108                  *
109                  * This for debugging only.
110                  */
111                 const char *create_location;
112
113                 /**
114                  * @brief The location where the request was finished
115                  *
116                  * This uses the __location__ macro via the tevent_req_done(),
117                  * tevent_req_error() or tevent_req_nomem() macro.
118                  *
119                  * This for debugging only.
120                  */
121                 const char *finish_location;
122
123                 /**
124                  * @brief The location where the request was canceled
125                  *
126                  * This uses the __location__ macro via the
127                  * tevent_req_cancel() macro.
128                  *
129                  * This for debugging only.
130                  */
131                 const char *cancel_location;
132
133                 /**
134                  * @brief The external state - will be queried by the caller
135                  *
136                  * While the async request is being processed, state will remain in
137                  * TEVENT_REQ_IN_PROGRESS. A request is finished if
138                  * req->state>=TEVENT_REQ_DONE.
139                  */
140                 enum tevent_req_state state;
141
142                 /**
143                  * @brief status code when finished
144                  *
145                  * This status can be queried in the async completion function. It
146                  * will be set to 0 when everything went fine.
147                  */
148                 uint64_t error;
149
150                 /**
151                  * @brief the immediate event used by tevent_req_post
152                  *
153                  */
154                 struct tevent_immediate *trigger;
155
156                 /**
157                  * @brief An event context which will be used to
158                  *        defer the _tevent_req_notify_callback().
159                  */
160                 struct tevent_context *defer_callback_ev;
161
162                 /**
163                  * @brief the timer event if tevent_req_set_endtime was used
164                  *
165                  */
166                 struct tevent_timer *timer;
167         } internal;
168 };
169
170 struct tevent_fd {
171         struct tevent_fd *prev, *next;
172         struct tevent_context *event_ctx;
173         struct tevent_wrapper_glue *wrapper;
174         bool busy;
175         bool destroyed;
176         int fd;
177         uint16_t flags; /* see TEVENT_FD_* flags */
178         tevent_fd_handler_t handler;
179         tevent_fd_close_fn_t close_fn;
180         /* this is private for the specific handler */
181         void *private_data;
182         /* this is for debugging only! */
183         const char *handler_name;
184         const char *location;
185         /* this is private for the events_ops implementation */
186         uint64_t additional_flags;
187         void *additional_data;
188 };
189
190 struct tevent_timer {
191         struct tevent_timer *prev, *next;
192         struct tevent_context *event_ctx;
193         struct tevent_wrapper_glue *wrapper;
194         bool busy;
195         bool destroyed;
196         struct timeval next_event;
197         tevent_timer_handler_t handler;
198         /* this is private for the specific handler */
199         void *private_data;
200         /* this is for debugging only! */
201         const char *handler_name;
202         const char *location;
203         /* this is private for the events_ops implementation */
204         void *additional_data;
205 };
206
207 struct tevent_immediate {
208         struct tevent_immediate *prev, *next;
209         struct tevent_context *event_ctx;
210         struct tevent_wrapper_glue *wrapper;
211         bool busy;
212         bool destroyed;
213         tevent_immediate_handler_t handler;
214         /* this is private for the specific handler */
215         void *private_data;
216         /* this is for debugging only! */
217         const char *handler_name;
218         const char *create_location;
219         const char *schedule_location;
220         /* this is private for the events_ops implementation */
221         void (*cancel_fn)(struct tevent_immediate *im);
222         void *additional_data;
223 };
224
225 struct tevent_signal {
226         struct tevent_signal *prev, *next;
227         struct tevent_context *event_ctx;
228         struct tevent_wrapper_glue *wrapper;
229         bool busy;
230         bool destroyed;
231         int signum;
232         int sa_flags;
233         tevent_signal_handler_t handler;
234         /* this is private for the specific handler */
235         void *private_data;
236         /* this is for debugging only! */
237         const char *handler_name;
238         const char *location;
239         /* this is private for the events_ops implementation */
240         void *additional_data;
241 };
242
243 struct tevent_threaded_context {
244         struct tevent_threaded_context *next, *prev;
245
246 #ifdef HAVE_PTHREAD
247         pthread_mutex_t event_ctx_mutex;
248 #endif
249         struct tevent_context *event_ctx;
250 };
251
252 struct tevent_debug_ops {
253         void (*debug)(void *context, enum tevent_debug_level level,
254                       const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
255         void *context;
256 };
257
258 void tevent_debug(struct tevent_context *ev, enum tevent_debug_level level,
259                   const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
260
261 void tevent_abort(struct tevent_context *ev, const char *reason);
262
263 void tevent_common_check_double_free(TALLOC_CTX *ptr, const char *reason);
264
265 struct tevent_context {
266         /* the specific events implementation */
267         const struct tevent_ops *ops;
268
269         /*
270          * The following three pointers are queried on every loop_once
271          * in the order in which they appear here. Not measured, but
272          * hopefully putting them at the top together with "ops"
273          * should make tevent a *bit* more cache-friendly than before.
274          */
275
276         /* list of signal events - used by common code */
277         struct tevent_signal *signal_events;
278
279         /* List of threaded job indicators */
280         struct tevent_threaded_context *threaded_contexts;
281
282         /* list of immediate events - used by common code */
283         struct tevent_immediate *immediate_events;
284
285         /* list of fd events - used by common code */
286         struct tevent_fd *fd_events;
287
288         /* list of timed events - used by common code */
289         struct tevent_timer *timer_events;
290
291         /* List of scheduled immediates */
292         pthread_mutex_t scheduled_mutex;
293         struct tevent_immediate *scheduled_immediates;
294
295         /* this is private for the events_ops implementation */
296         void *additional_data;
297
298         /* pipe hack used with signal handlers */
299         struct tevent_fd *wakeup_fde;
300         int wakeup_fd;          /* fd to write into */
301 #ifndef HAVE_EVENT_FD
302         int wakeup_read_fd;
303 #endif
304
305         /* debugging operations */
306         struct tevent_debug_ops debug_ops;
307
308         /* info about the nesting status */
309         struct {
310                 bool allowed;
311                 uint32_t level;
312                 tevent_nesting_hook hook_fn;
313                 void *hook_private;
314         } nesting;
315
316         struct {
317                 tevent_trace_callback_t callback;
318                 void *private_data;
319         } tracing;
320
321         struct {
322                 /*
323                  * This is used on the main event context
324                  */
325                 struct tevent_wrapper_glue *list;
326
327                 /*
328                  * This is used on the wrapper event context
329                  */
330                 struct tevent_wrapper_glue *glue;
331         } wrapper;
332
333         /*
334          * an optimization pointer into timer_events
335          * used by used by common code via
336          * tevent_common_add_timer_v2()
337          */
338         struct tevent_timer *last_zero_timer;
339
340 #ifdef HAVE_PTHREAD
341         struct tevent_context *prev, *next;
342 #endif
343 };
344
345 const struct tevent_ops *tevent_find_ops_byname(const char *name);
346
347 int tevent_common_context_destructor(struct tevent_context *ev);
348 int tevent_common_loop_wait(struct tevent_context *ev,
349                             const char *location);
350
351 int tevent_common_fd_destructor(struct tevent_fd *fde);
352 struct tevent_fd *tevent_common_add_fd(struct tevent_context *ev,
353                                        TALLOC_CTX *mem_ctx,
354                                        int fd,
355                                        uint16_t flags,
356                                        tevent_fd_handler_t handler,
357                                        void *private_data,
358                                        const char *handler_name,
359                                        const char *location);
360 void tevent_common_fd_set_close_fn(struct tevent_fd *fde,
361                                    tevent_fd_close_fn_t close_fn);
362 uint16_t tevent_common_fd_get_flags(struct tevent_fd *fde);
363 void tevent_common_fd_set_flags(struct tevent_fd *fde, uint16_t flags);
364 int tevent_common_invoke_fd_handler(struct tevent_fd *fde, uint16_t flags,
365                                     bool *removed);
366
367 struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev,
368                                              TALLOC_CTX *mem_ctx,
369                                              struct timeval next_event,
370                                              tevent_timer_handler_t handler,
371                                              void *private_data,
372                                              const char *handler_name,
373                                              const char *location);
374 struct tevent_timer *tevent_common_add_timer_v2(struct tevent_context *ev,
375                                                 TALLOC_CTX *mem_ctx,
376                                                 struct timeval next_event,
377                                                 tevent_timer_handler_t handler,
378                                                 void *private_data,
379                                                 const char *handler_name,
380                                                 const char *location);
381 struct timeval tevent_common_loop_timer_delay(struct tevent_context *);
382 int tevent_common_invoke_timer_handler(struct tevent_timer *te,
383                                        struct timeval current_time,
384                                        bool *removed);
385
386 void tevent_common_schedule_immediate(struct tevent_immediate *im,
387                                       struct tevent_context *ev,
388                                       tevent_immediate_handler_t handler,
389                                       void *private_data,
390                                       const char *handler_name,
391                                       const char *location);
392 int tevent_common_invoke_immediate_handler(struct tevent_immediate *im,
393                                            bool *removed);
394 bool tevent_common_loop_immediate(struct tevent_context *ev);
395 void tevent_common_threaded_activate_immediate(struct tevent_context *ev);
396
397 bool tevent_common_have_events(struct tevent_context *ev);
398 int tevent_common_wakeup_init(struct tevent_context *ev);
399 int tevent_common_wakeup_fd(int fd);
400 int tevent_common_wakeup(struct tevent_context *ev);
401
402 struct tevent_signal *tevent_common_add_signal(struct tevent_context *ev,
403                                                TALLOC_CTX *mem_ctx,
404                                                int signum,
405                                                int sa_flags,
406                                                tevent_signal_handler_t handler,
407                                                void *private_data,
408                                                const char *handler_name,
409                                                const char *location);
410 int tevent_common_check_signal(struct tevent_context *ev);
411 void tevent_cleanup_pending_signal_handlers(struct tevent_signal *se);
412 int tevent_common_invoke_signal_handler(struct tevent_signal *se,
413                                         int signum, int count, void *siginfo,
414                                         bool *removed);
415
416 struct tevent_context *tevent_wrapper_main_ev(struct tevent_context *ev);
417
418 struct tevent_wrapper_ops;
419
420 struct tevent_wrapper_glue {
421         struct tevent_wrapper_glue *prev, *next;
422         struct tevent_context *wrap_ev;
423         struct tevent_context *main_ev;
424         bool busy;
425         bool destroyed;
426         const struct tevent_wrapper_ops *ops;
427         void *private_state;
428 };
429
430 void tevent_wrapper_push_use_internal(struct tevent_context *ev,
431                                       struct tevent_wrapper_glue *wrapper);
432 void tevent_wrapper_pop_use_internal(const struct tevent_context *__ev_ptr,
433                                      struct tevent_wrapper_glue *wrapper);
434
435 bool tevent_standard_init(void);
436 bool tevent_poll_init(void);
437 bool tevent_poll_event_add_fd_internal(struct tevent_context *ev,
438                                        struct tevent_fd *fde);
439 bool tevent_poll_mt_init(void);
440 #ifdef HAVE_EPOLL
441 bool tevent_epoll_init(void);
442 void tevent_epoll_set_panic_fallback(struct tevent_context *ev,
443                         bool (*panic_fallback)(struct tevent_context *ev,
444                                                bool replay));
445 #endif
446 #ifdef HAVE_SOLARIS_PORTS
447 bool tevent_port_init(void);
448 #endif
449
450
451 void tevent_trace_point_callback(struct tevent_context *ev,
452                                  enum tevent_trace_point);