silc_fsm_continue[_sync] cancels silc_fsm_next_later timeout.
[crypto.git] / lib / silcutil / silcfsm.h
1 /*
2
3   silcfsm.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2005, 2006 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silcutil/SILC Finite State Machine
21  *
22  * DESCRIPTION
23  *
24  * SILC FSM Interface implements a finite state machine.  The FSM can be
25  * used to implement all kinds of machines and protocols.  The FSM supports
26  * also threads and can be synchronized by using FSM semaphores.  The FSM
27  * also supports real system threads.  It is possible to create new FSM
28  * thread and then execute in real system thread, if platform supports
29  * threads.
30  *
31  * The FSM provides semaphores because of their versatility.  The FSM
32  * semaphores can be used as mutual exclusion locks to protect critical
33  * sections, and as conditional variables and signallers.  The FSM
34  * semaphores can safely be used to synchronize also FSM threads that are
35  * executed in real system threads.  This makes SILC FSM very effective
36  * tool to implement complex machines whether they are executed in single
37  * thread or in multiple threads.
38  *
39  ***/
40
41 #ifndef SILCFSM_H
42 #define SILCFSM_H
43
44 /****s* silcutil/SilcFSMAPI/SilcFSM
45  *
46  * NAME
47  *
48  *    typedef struct SilcFSMObject *SilcFSM;
49  *
50  * DESCRIPTION
51  *
52  *    The actual FSM context and is allocated with silc_fsm_alloc and
53  *    given as argument to all silc_fsm_* functions.  It is freed by
54  *    silc_fsm_free function.  It is also possible to use pre-allocated
55  *    FSM context by using SilcFSMStruct instead of SilcFSM.
56  *
57  ***/
58 typedef struct SilcFSMObject *SilcFSM;
59
60 /****s* silcutil/SilcFSMAPI/SilcFSMStruct
61  *
62  * NAME
63  *
64  *    typedef struct SilcFSMObject SilcFSMStruct;
65  *
66  * DESCRIPTION
67  *
68  *    The actual FSM context and can be used as pre-allocated FSM context,
69  *    instead of SilcFSM context.  This context is initialized with the
70  *    silc_fsm_init function.  It need not be uninitialized.
71  *
72  ***/
73 typedef struct SilcFSMObject SilcFSMStruct;
74
75 /****s* silcutil/SilcFSMAPI/SilcFSMThread
76  *
77  * NAME
78  *
79  *    typedef struct SilcFSMObject *SilcFSMThread;
80  *
81  * DESCRIPTION
82  *
83  *    FSM thread context.  The SILC FSM supports threads, virtual machine
84  *    threads (inside FSM) and actual real system threads if platorm
85  *    supports them.  In a complex machine certain complex operations may
86  *    be desired to execute in a thread.  The SilcFSMThread is allocated
87  *    by silc_fsm_thread_alloc and feed by silc_fsm_free.  It is also
88  *    possible to use pre-allocated thread by using SilcFSMThreadStruct
89  *    instead of SilcFSMThread.
90  *
91  ***/
92 typedef struct SilcFSMObject *SilcFSMThread;
93
94 /****s* silcutil/SilcFSMAPI/SilcFSM
95  *
96  * NAME
97  *
98  *    typedef struct SilcFSMObject SilcFSMThreadStruct;
99  *
100  * DESCRIPTION
101  *
102  *    FSM thread context and can be used as a pre-allocated FSM thread context,
103  *    instead of SilcFSMThread context.  This context is initialized with the
104  *    silc_fsm_thread_init function.  It need not be uninitialized.
105  *
106  ***/
107 typedef struct SilcFSMObject SilcFSMThreadStruct;
108
109 /****d* silcutil/SilcFSMAPI/SilcFSMStatus
110  *
111  * NAME
112  *
113  *    typedef enum { ... } SilcFSMStatus;
114  *
115  * DESCRIPTION
116  *
117  *    Status values that the FSM state functions return.  They dicatate
118  *    how the machine will behave after returning from the state function.
119  *
120  * SOURCE
121  */
122 typedef enum {
123   SILC_FSM_CONTINUE,         /* Continue immediately to next state */
124   SILC_FSM_YIELD,            /* Continue to next state through scheduler */
125   SILC_FSM_WAIT,             /* Wait for some async call or timeout */
126   SILC_FSM_FINISH,           /* Finish state machine and call destructor
127                                 through scheduler */
128 } SilcFSMStatus;
129 /***/
130
131 /****f* silcutil/SilcFSMAPI/SilcFSMDestructor
132  *
133  * SYNOPSIS
134  *
135  *    typedef void (*SilcFSMDestructor)(SilcFSM fsm, void *fsm_context,
136  *                                      void *destructor_context);
137  *
138  * DESCRIPTION
139  *
140  *    The destructor callback that was set in silc_fsm_alloc or in
141  *    silc_fsm_init function.  It will be called when a state function
142  *    returns SILC_FSM_FINISH.  This function will be called through
143  *    the scheduler; it will not be called immediately after the state
144  *    function returns SILC_FSM_FINISH, but will be called later.
145  *    The `fsm' may be freed in this function.
146  *
147  ***/
148 typedef void (*SilcFSMDestructor)(SilcFSM fsm, void *fsm_context,
149                                   void *destructor_context);
150
151 /****f* silcutil/SilcFSMAPI/SilcFSMThreadDestructor
152  *
153  * SYNOPSIS
154  *
155  *    typedef void (*SilcFSMThreadDestructor)(SilcFSMThread thread,
156  *                                            void *thread_context,
157  *                                            void *destructor_context);
158  *
159  * DESCRIPTION
160  *
161  *    The destructor callback that was set in silc_fsm_thread_alloc or in
162  *    silc_fsm_thread_init function.  It will be called when a state function
163  *    returns SILC_FSM_FINISH.  This function will be called through
164  *    the scheduler; it will not be called immediately after the state
165  *    function returns SILC_FSM_FINISH, but will be called later.  The
166  *    `thread' may be freed in this function.
167  *
168  * NOTES
169  *
170  *    Even if the `thread' was executed in real system thread, this callback
171  *    is always received in the main machine thread, not in the created
172  *    thread.
173  *
174  ***/
175 typedef void (*SilcFSMThreadDestructor)(SilcFSMThread thread,
176                                         void *thread_context,
177                                         void *destructor_context);
178
179 /****d* silcutil/SilcFSMAPI/SILC_FSM_STATE
180  *
181  * NAME
182  *
183  *    #define SILC_FSM_STATE(name)
184  *
185  * DESCRIPTION
186  *
187  *    This macro is used to declare a FSM state function.  The `fsm' is
188  *    the SilcFSM or SilcFSMThread context, the `fsm_context' is the context
189  *    given as argument to silc_fsm_alloc, silc_fsm_init, silc_fsm_thread_init,
190  *    or silc_fsm_thread_alloc function.  The `state_context' is the optional
191  *    state specific context set with silc_fsm_set_state_context function.
192  *
193  * SOURCE
194  */
195 #define SILC_FSM_STATE(name)                                            \
196 SilcFSMStatus name(struct SilcFSMObject *fsm, void *fsm_context,        \
197                    void *state_context)
198 /***/
199
200 /* State function callback */
201 typedef SilcFSMStatus (*SilcFSMStateCallback)(struct SilcFSMObject *fsm,
202                                               void *fsm_context,
203                                               void *state_context);
204
205 /****d* silcutil/SilcFSMAPI/SILC_FSM_CALL
206  *
207  * NAME
208  *
209  *    SILC_FSM_CALL(function)
210  *
211  * DESCRIPTION
212  *
213  *    Macro used to call asynchronous calls from state function.  If the
214  *    call is not really asynchronous then this will cause the machine to
215  *    directly proceed to next state.  If the call is truly asynchronous
216  *    then this will set the machine to wait state.  The silc_fsm_next
217  *    must be called before this macro, so that the next state is set.
218  *
219  * NOTES
220  *
221  *    The state function returns in this macro.
222  *
223  * EXAMPLE
224  *
225  *    // Simple example
226  *    silc_fsm_next(fsm, some_next_state);
227  *    SILC_FSM_CALL(silc_some_async_call(server, some_callback, context));
228  *
229  *    // More complex example
230  *    silc_fsm_next(fsm, some_next_state);
231  *    SILC_FSM_CALL((some_context->operation =
232  *                   silc_some_async_call(server, some_callback, context)));
233  *
234  ***/
235 #define SILC_FSM_CALL(function)                 \
236 do {                                            \
237   assert(!silc_fsm_set_call(fsm, TRUE));        \
238   function;                                     \
239   if (!silc_fsm_set_call(fsm, FALSE))           \
240     return SILC_FSM_CONTINUE;                   \
241   return SILC_FSM_WAIT;                         \
242 } while(0)
243
244 /****d* silcutil/SilcFSMAPI/SILC_FSM_CALL_CONTINUE
245  *
246  * NAME
247  *
248  *    SILC_FSM_CALL_CONTINUE(fsm)
249  *
250  * DESCRIPTION
251  *
252  *    Macro used to proceed after asynchornous call.  This is called in the
253  *    callback of the asynchronous call to continue in the state machine.
254  *
255  * EXAMPLE
256  *
257  *    void some_callback(void *context) {
258  *      SilcFSM fsm = context;
259  *      ...
260  *      // Continue to the next state
261  *      SILC_FSM_CALL_CONTINUE(fsm);
262  *    }
263  *
264  ***/
265 #define SILC_FSM_CALL_CONTINUE(fsm)             \
266 do {                                            \
267   if (!silc_fsm_set_call(fsm, FALSE))           \
268     silc_fsm_continue(fsm);                     \
269 } while(0)
270
271 /****d* silcutil/SilcFSMAPI/SILC_FSM_CALL_CONTINUE_SYNC
272  *
273  * NAME
274  *
275  *    SILC_FSM_CALL_CONTINUE_SYNC(fsm)
276  *
277  * DESCRIPTION
278  *
279  *    Macro used to proceed after asynchornous call.  This is called in the
280  *    callback of the asynchronous call to continue in the state machine.
281  *    This continues to the next state synchronously, not through the
282  *    scheduler.
283  *
284  * EXAMPLE
285  *
286  *    void some_callback(void *context) {
287  *      SilcFSM fsm = context;
288  *      ...
289  *      // Continue to the next state immediately
290  *      SILC_FSM_CALL_CONTINUE_SYNC(fsm);
291  *    }
292  *
293  ***/
294 #define SILC_FSM_CALL_CONTINUE_SYNC(fsm)        \
295 do {                                            \
296   if (!silc_fsm_set_call(fsm, FALSE))           \
297     silc_fsm_continue_sync(fsm);                \
298 } while(0)
299
300 /****d* silcutil/SilcFSMAPI/SILC_FSM_THREAD_WAIT
301  *
302  * NAME
303  *
304  *    SILC_FSM_THREAD_WAIT(thread)
305  *
306  * DESCRIPTION
307  *
308  *    Macro used to wait for the `thread' to terminate.  The machine or
309  *    thread will be suspended while it is waiting for the thread to
310  *    terminate.  If the thread to be waited has already terminated (but
311  *    the context has not been freed yet), this will continue immediately
312  *    to the following state without waiting.
313  *
314  * NOTES
315  *
316  *    The state function returns in this macro.
317  *
318  *    This macro is the only way to safely make sure that the thread has
319  *    terminated by the time FSM continues from the waiting state.  Using
320  *    semaphores to signal from the thread before SILC_FSM_FINISH is returned
321  *    works with normal FSM threads, but especially with real system threads
322  *    it does not guarantee that the FSM won't continue before the thread has
323  *    actually terminated.  Usually this is not a problem, but it can be a
324  *    problem if the FSM is waiting to be freed.  In this case using this
325  *    macro is strongly recommended.
326  *
327  ***/
328 #define SILC_FSM_THREAD_WAIT(thread)            \
329 do {                                            \
330   if (silc_fsm_thread_wait(fsm, thread))        \
331     return SILC_FSM_WAIT;                       \
332   return SILC_FSM_CONTINUE;                     \
333 } while(0)
334
335 /****f* silcutil/SilcFSMAPI/silc_fsm_alloc
336  *
337  * SYNOPSIS
338  *
339  *    SilcFSM silc_fsm_alloc(void *fsm_context,
340  *                           SilcFSMDestructor destructor,
341  *                           void *destructor_context,
342  *                           SilcSchedule schedule);
343  *
344  * DESCRIPTION
345  *
346  *    Allocates SILC Finite State Machine context.  The `destructor' with
347  *    `destructor_context' will be called when the machines finishes.  The
348  *    caller must free the returned context with silc_fsm_free.  The
349  *    `fsm_context' is delivered to every FSM state function.  The `schedule'
350  *    is the caller's scheduler and the FSM will be run in the scheduler.
351  *
352  * EXAMPLE
353  *
354  *    SilcAsyncOperation silc_async_call(Callback callback, void *cb_context)
355  *    {
356  *      SilcAsyncOperation op;
357  *      SilcFSM fsm;
358  *      ...
359  *
360  *      // Allocate async operation so that caller can control us, like abort
361  *      op = silc_async_alloc(silc_async_call_abort, NULL, ourcontext);
362  *
363  *      // Start FSM
364  *      fsm = silc_fsm_alloc(ourcontext, fsm_destructor, ourcontext,
365  *                           schedule);
366  *      silc_fsm_start(fsm, first_state);
367  *      ...
368  *
369  *      // Return async operation for upper layer
370  *      return op;
371  *    }
372  *
373  ***/
374 SilcFSM silc_fsm_alloc(void *fsm_context,
375                        SilcFSMDestructor destructor,
376                        void *destructor_context,
377                        SilcSchedule schedule);
378
379 /****f* silcutil/SilcFSMAPI/silc_fsm_init
380  *
381  * SYNOPSIS
382  *
383  *    SilcBool silc_fsm_init(SilcFSM fsm,
384  *                           void *fsm_context,
385  *                           SilcFSMDestructor destructor,
386  *                           void *destructor_context,
387  *                           SilcSchedule schedule);
388  *
389  * DESCRIPTION
390  *
391  *    Initializes a pre-allocated SilcFSM context.  This call is equivalent
392  *    to silc_fsm_alloc except that this takes the pre-allocated context
393  *    as argument.  The silc_fsm_free must not be called if this was called.
394  *    Returns TRUE if the initialization is Ok or FALSE if error occurred.
395  *    This function does not allocate any memory.  The `schedule' is the
396  *    caller's scheduler and the FSM will be run in the scheduler.
397  *
398  * EXAMPLE
399  *
400  *    SilcFSMStruct fsm;
401  *
402  *    silc_fsm_init(&fsm, application, fsm_destructor, application, schedule);
403  *    silc_fsm_start(&fsm, first_state);
404  *
405  ***/
406 SilcBool silc_fsm_init(SilcFSM fsm,
407                        void *fsm_context,
408                        SilcFSMDestructor destructor,
409                        void *destructor_context,
410                        SilcSchedule schedule);
411
412 /****f* silcutil/SilcFSMAPI/silc_fsm_thread_alloc
413  *
414  * SYNOPSIS
415  *
416  *    SilcFSMThread silc_fsm_thread_alloc(SilcFSM fsm,
417  *                                        void *thread_context,
418  *                                        SilcFSMThreadDestructor destructor,
419  *                                        void *destructor_context,
420  *                                        SilcBool real_thread);
421  *
422  * DESCRIPTION
423  *
424  *    Allocates FSM thread context.  The thread will be executed in the
425  *    FSM machine indicated by `fsm'.  The caller must free the returned
426  *    thread context with silc_fsm_free.  If the 'real_thread' is TRUE
427  *    then the thread will actually be executed in real thread, if platform
428  *    supports them.  The `thread_context' is delivered to every state
429  *    function in the thread.
430  *
431  * NOTES
432  *
433  *    Note the limitations on using `real_thread' boolean to indicate running
434  *    the FSM thread in a real system thread:
435  *
436  *    If the system does not support threads, then this function will revert
437  *    back to normal FSM threads.
438  *
439  *    If the `real_thread' is TRUE then FSM will allocate new SilcSchedule
440  *    for the FSM thread.  This is done because the SilcSchedule that the
441  *    `fsm' use cannot be used in the thread.  This is limitation in the
442  *    SilcSchedule implementation.  If you need scheduler in the real thread
443  *    it is strongly recommended that you use the SilcSchedule that is
444  *    allocated for the thread.  You can retrieve the SilcSchedule from the
445  *    thread using silc_fsm_get_schedule function.  Note that, the allocated
446  *    SilcSchedule will become invalid after the thread finishes.
447  *
448  *    You may still however use the original SilcSchedule if you wish.  In
449  *    this case note its limitation: you may only add and/or remove tasks,
450  *    tasks cannot be executed in the thread.  You will need to deliver the
451  *    original SilcSchedule to the thread in the `thread_context' if you wish
452  *    to use it.
453  *
454  *    If `real_thread' is FALSE then no limitations on what can be run in
455  *    the thread exist.  In this case silc_fsm_get_schedule will return
456  *    the SilcSchedule that was originally given to silc_fsm_alloc or
457  *    silc_fsm_init.
458  *
459  * EXAMPLE
460  *
461  *    SILC_FSM_STATE(silc_foo_state)
462  *    {
463  *      SilcFSMThread thread;
464  *      ...
465  *
466  *      // Execute the route lookup in thread
467  *      thread = silc_fsm_thread_alloc(fsm, fsm_context, NULL, NULL, FALSE);
468  *      silc_fsm_start(thread, silc_route_lookup_start);
469  *
470  *      // Wait here for the thread to terminate. Set the state where to go
471  *      // after the thread has terminated.
472  *      silc_fsm_next(fsm, silc_foo_route_lookup_finished);
473  *      SILC_FSM_THREAD_WAIT(thread);
474  *    }
475  *
476  ***/
477 SilcFSMThread silc_fsm_thread_alloc(SilcFSM fsm,
478                                     void *thread_context,
479                                     SilcFSMThreadDestructor destructor,
480                                     void *destructor_context,
481                                     SilcBool real_thread);
482
483 /****f* silcutil/SilcFSMAPI/silc_fsm_thread_init
484  *
485  * SYNOPSIS
486  *
487  *    void silc_fsm_thread_init(SilcFSMThread thread,
488  *                              SilcFSM fsm,
489  *                              void *thread_context,
490  *                              SilcFSMThreadDestructor destructor,
491  *                              void *destructor_context,
492  *                              SilcBool real_thread);
493  *
494  * DESCRIPTION
495  *
496  *    Initializes a pre-allocated SilcFSMThread context.  This call is
497  *    equivalent to silc_fsm_thread_alloc except that this takes the
498  *    pre-allocated context as argument.  The silc_fsm_free must not be
499  *    called if this was called.  If the `real_thread' is TRUE then the
500  *    thread will actually be executed in real thread, if platform supports
501  *    them.
502  *
503  * NOTES
504  *
505  *    See the notes from the silc_fsm_thread_alloc.
506  *
507  * EXAMPLE
508  *
509  *    SilcFSMThreadStruct thread;
510  *
511  *    silc_fsm_thread_init(&thread, fsm, application, NULL, NULL, FALSE);
512  *    silc_fsm_start(&thread, first_state);
513  *
514  ***/
515 void silc_fsm_thread_init(SilcFSMThread thread,
516                           SilcFSM fsm,
517                           void *thread_context,
518                           SilcFSMThreadDestructor destructor,
519                           void *destructor_context,
520                           SilcBool real_thread);
521
522 /****f* silcutil/SilcFSMAPI/silc_fsm_free
523  *
524  * SYNOPSIS
525  *
526  *    void silc_fsm_free(void *fsm);
527  *
528  * DESCRIPTION
529  *
530  *    Free the SILC FSM context that was allocated with silc_fsm_alloc,
531  *    or free the SILC FSM thread context that was allocated with
532  *    silc_fsm_thread_alloc.  This function is used with both SilcFSM
533  *    and SilcFSMThread contexts.
534  *
535  * NOTES
536  *
537  *    When freeing FSM, it must not have any active threads.
538  *
539  ***/
540 void silc_fsm_free(void *fsm);
541
542 /****f* silcutil/SilcFSMAPI/silc_fsm_start
543  *
544  * SYNOPSIS
545  *
546  *    void silc_fsm_start(void *fsm, SilcFSMStateCallback start_state);
547  *
548  * DESCRIPTION
549  *
550  *    This function must be called after the SILC FSM context was created.
551  *    This actually starts the state machine.  Note that, the machine is
552  *    started later after this function returns.  The `start_state' is the
553  *    state where the machine or thread is started.  This function is used
554  *    with both SilcFSM and SilcFSMThread contexts.
555  *
556  * EXAMPLE
557  *
558  *    SilcFSM fsm;
559  *
560  *    fsm = silc_fsm_alloc(context, destructor, context, schedule);
561  *    silc_fsm_start(fsm, first_state);
562  *
563  ***/
564 void silc_fsm_start(void *fsm, SilcFSMStateCallback start_state);
565
566 /****f* silcutil/SilcFSMAPI/silc_fsm_start_sync
567  *
568  * SYNOPSIS
569  *
570  *    void silc_fsm_start_sync(void *fsm, SilcFSMStateCallback start_state);
571  *
572  * DESCRIPTION
573  *
574  *    This function is same as silc_fsm_start, except that the FSM will
575  *    be started immediately inside this function.  After this function
576  *    returns the `start_state' has already been executed.  If the machine
577  *    is completely synchronous (no waiting used in the machine) then
578  *    the machine will have finished once this function returns.  Also
579  *    note that if the machine is completely synchronous the destructor
580  *    will also be called from inside this function.  This function is used
581  *    with both SilcFSM and SilcFSMThread contexts.
582  *
583  ***/
584 void silc_fsm_start_sync(void *fsm, SilcFSMStateCallback start_state);
585
586 /****f* silcutil/SilcFSMAPI/silc_fsm_next
587  *
588  * SYNOPSIS
589  *
590  *    void silc_fsm_next(void *fsm, SilcFSMStateCallback next_state);
591  *
592  * DESCRIPTION
593  *
594  *    Set the next state to be executed.  If the state function that
595  *    call this function returns SILC_FSM_CONTINUE, the `next_state'
596  *    will be executed immediately.  If it returns SILC_FSM_YIELD it
597  *    yields the thread and the `next_state' will be run after other
598  *    threads have run first.  This function must always be used to set
599  *    the next state in the machine or thread.  This function is used
600  *    with both SilcFSM and SilcFSMThread contexts.
601  *
602  * EXAMPLE
603  *
604  *    // Move to next state
605  *    silc_fsm_next(fsm, next_state);
606  *    return SILC_FSM_CONTINUE;
607  *
608  ***/
609 void silc_fsm_next(void *fsm, SilcFSMStateCallback next_state);
610
611 /****f* silcutil/SilcFSMAPI/silc_fsm_next_later
612  *
613  * SYNOPSIS
614  *
615  *    void silc_fsm_next_later(void *fsm, SilcFSMStateCallback next_state,
616  *                             SilcUInt32 seconds, SilcUInt32 useconds);
617  *
618  * DESCRIPTION
619  *
620  *    Set the next state to be executed later, at the specified time.
621  *    The SILC_FSM_WAIT must be returned in the state function if this
622  *    function is called.  If any other state is returned machine operation
623  *    is undefined.  The machine or thread will move to `next_state' after
624  *    the specified timeout.  This function is used with both SilcFSM and
625  *    SilcFSMThread contexts.
626  *
627  * NOTES
628  *
629  *    If both `seconds' and `useconds' are 0, the effect is same as calling
630  *    silc_fsm_next function, and SILC_FSM_CONTINUE must be returned.
631  *
632  *    If silc_fsm_continue or silc_fsm_continue_sync is called while the
633  *    machine or thread is in SILC_FSM_WAIT state the timeout is automatically
634  *    canceled and the state moves to the next state.
635  *
636  * EXAMPLE
637  *
638  *    // Move to next state after 10 seconds
639  *    silc_fsm_next_later(fsm, next_state, 10, 0);
640  *    return SILC_FSM_WAIT;
641  *
642  ***/
643 void silc_fsm_next_later(void *fsm, SilcFSMStateCallback next_state,
644                          SilcUInt32 seconds, SilcUInt32 useconds);
645
646 /****f* silcutil/SilcFSMAPI/silc_fsm_continue
647  *
648  * SYNOPSIS
649  *
650  *    void silc_fsm_continue(void *fsm);
651  *
652  * DESCRIPTION
653  *
654  *    Continues in the state machine from a SILC_FSM_WAIT state.  This can
655  *    be called from outside waiting FSM to continue to the next state.
656  *    This function can be used instead of SILC_FSM_CALL_CONTINUE macro
657  *    in case the SILC_FSM_CALL was not used.  This must not be used if
658  *    SILC_FSM_CALL was used.  This function is used with both SilcFSM and
659  *    SilcFSMThread contexts.
660  *
661  ***/
662 void silc_fsm_continue(void *fsm);
663
664 /****f* silcutil/SilcFSMAPI/silc_fsm_continue_sync
665  *
666  * SYNOPSIS
667  *
668  *    void silc_fsm_continue_sync(void *fsm);
669  *
670  * DESCRIPTION
671  *
672  *    Continues immediately in the state machine from a SILC_FSM_WAIT state.
673  *    This can be called from outside waiting FSM to immediately continue to
674  *    the next state.  This function can be used instead of the
675  *    SILC_FSM_CALL_CONTINUE_SYNC macro in case the SILC_FSM_CALL was not used.
676  *    This must not be used if SILC_FSM_CALL was used.  This function is used
677  *    with both SilcFSM and SilcFSMThread contexts.
678  *
679  ***/
680 void silc_fsm_continue_sync(void *fsm);
681
682 /****f* silcutil/SilcFSMAPI/silc_fsm_set_context
683  *
684  * SYNOPSIS
685  *
686  *    void silc_fsm_set_context(void *fsm, void *fsm_context);
687  *
688  * DESCRIPTION
689  *
690  *    Set new context for the `fsm'.  This function can be used to change
691  *    the context inside the `fsm', if needed.  This function is used with
692  *    both SilcFSM and SilcFSMThread contexts.  The context is the
693  *    `fsm_context' in the state function (SILC_FSM_STATE).
694  *
695  ***/
696 void silc_fsm_set_context(void *fsm, void *fsm_context);
697
698 /****f* silcutil/SilcFSMAPI/silc_fsm_get_context
699  *
700  * SYNOPSIS
701  *
702  *    void *silc_fsm_get_context(void *fsm);
703  *
704  * DESCRIPTION
705  *
706  *    Returns the context associated with the `fsm'.  It is the context that
707  *    was given to silc_fsm_alloc, silc_fsm_init, silc_fsm_thread_alloc or
708  *    silc_fsm_thread_init.  This function is used with both SilcFSM and
709  *    SilcFSMThread contexts.
710  *
711  ***/
712 void *silc_fsm_get_context(void *fsm);
713
714 /****f* silcutil/SilcFSMAPI/silc_fsm_set_state_context
715  *
716  * SYNOPSIS
717  *
718  *    void silc_fsm_set_state_context(void *fsm, void *state_context);
719  *
720  * DESCRIPTION
721  *
722  *    Set's a state specific context for the `fsm'.  This function can be
723  *    used to change the state context inside the `fsm', if needed.  This
724  *    function is used with both SilcFSM and SilcFSMThread contexts.  The
725  *    context is the `state_context' in the state function (SILC_FSM_STATE).
726  *
727  ***/
728 void silc_fsm_set_state_context(void *fsm, void *state_context);
729
730 /****f* silcutil/SilcFSMAPI/silc_fsm_get_state_context
731  *
732  * SYNOPSIS
733  *
734  *    void *silc_fsm_get_state_context(void *fsm);
735  *
736  * DESCRIPTION
737  *
738  *    Returns the state context associated with the `fsm'.  It is the context
739  *    that was set with silc_fsm_set_state_context function.  This function
740  *    is used with both SilcFSM and SilcFSMThread contexts.
741  *
742  ***/
743 void *silc_fsm_get_state_context(void *fsm);
744
745 /****f* silcutil/SilcFSMAPI/silc_fsm_get_schedule
746  *
747  * SYNOPSIS
748  *
749  *    SilcSchedule silc_fsm_get_schedule(void *fsm);
750  *
751  * DESCRIPTION
752  *
753  *    Returns the SilcSchedule that has been associated with the `fsm'.
754  *    If caller needs scheduler it may retrieve it with this function.  This
755  *    function is used with both SilcFSM and SilcFSMThread contexts.
756  *
757  *    If the `fsm' is thread and real system threads are being used, and this
758  *    is called from the thread, it will return the SilcSchedule that was
759  *    allocated by the FSM for the thread.  It is strongly recommended to
760  *    use this SilcSchedule if you are using real threads, and you need
761  *    scheduler in the thread.  Note that, once the thread finishes the
762  *    returned SilcSchedule becomes invalid.
763  *
764  *    In other times this returns the SilcSchedule pointer that was given
765  *    to silc_fsm_alloc or silc_fsm_init.
766  *
767  ***/
768 SilcSchedule silc_fsm_get_schedule(void *fsm);
769
770 /****f* silcutil/SilcFSMAPI/silc_fsm_get_machine
771  *
772  * SYNOPSIS
773  *
774  *    SilcFSM silc_fsm_get_machine(SilcFSMThread thread);
775  *
776  * DESCRIPTION
777  *
778  *    Returns the machine from the FSM thread indicated by `thread'.
779  *
780  ***/
781 SilcFSM silc_fsm_get_machine(SilcFSMThread thread);
782
783
784 /* FSM Semaphores */
785
786 /****s* silcutil/SilcFSMAPI/SilcFSMSema
787  *
788  * NAME
789  *
790  *    typedef struct SilcFSMSemaObject *SilcFSMSema;
791  *
792  * DESCRIPTION
793  *
794  *    The FSM semaphore context allocated with silc_fsm_sema_alloc.  The
795  *    caller must free it with silc_fsm_sema_free.  It is also possible
796  *    to use pre-allocated SilcFSMSemaStruct instead of SilcFSMSema context.
797  *
798  ***/
799 typedef struct SilcFSMSemaObject *SilcFSMSema;
800
801 /****s* silcutil/SilcFSMAPI/SilcFSMSemaStruct
802  *
803  * NAME
804  *
805  *    typedef struct SilcFSMSemaObject SilcFSMSemaStruct;
806  *
807  * DESCRIPTION
808  *
809  *    The FSM semaphore context that can be used as pre-allocated context.
810  *    It is initialized with silc_fsm_sema_init.  It need not be
811  *    uninitialized.
812  *
813  ***/
814 typedef struct SilcFSMSemaObject SilcFSMSemaStruct;
815
816 /****f* silcutil/SilcFSMAPI/silc_fsm_sema_alloc
817  *
818  * SYNOPSIS
819  *
820  *    SilcFSMSema silc_fsm_sema_alloc(SilcFSM fsm, SilcUInt32 value);
821  *
822  * DESCRIPTION
823  *
824  *    Allocates FSM semaphore with initial value of `value'.  Semaphores are
825  *    counters for resources shared between machine and threads.  Semaphores
826  *    can be waited until the semaphore value is non-zero.  The FSM will be
827  *    suspended when waiting for semaphore.  When the semaphore is incremented
828  *    all that are waiting for the semaphore will be signalled and awaken.
829  *
830  *    Semaphores can be used to wait for example when thread terminates, or
831  *    when thread moves into a specific state, or to protect critical
832  *    sections.  The FSM semaphores can be used also in FSM threads that are
833  *    executed in real system threads.
834  *
835  *    Use the macros SILC_FSM_SEMA_WAIT and SILC_FSM_SEMA_TIMEDWAIT to wait
836  *    for semaphore.  Use the SILC_FSM_SEMA_POST macro to increment the
837  *    counter and wake up all waiters.
838  *
839  ***/
840 SilcFSMSema silc_fsm_sema_alloc(SilcFSM fsm, SilcUInt32 value);
841
842 /****f* silcutil/SilcFSMAPI/silc_fsm_sema_init
843  *
844  * SYNOPSIS
845  *
846  *    void silc_fsm_sema_init(SilcFSMSema sema, SilcFSM fsm, SilcUInt32 value);
847  *
848  * DESCRIPTION
849  *
850  *    Initializes a pre-allocates semaphore context.  This call is
851  *    equivalent to silc_fsm_sema_alloc except this use the pre-allocated
852  *    context.  This fuction does not allocate any memory.
853  *
854  ***/
855 void silc_fsm_sema_init(SilcFSMSema sema, SilcFSM fsm, SilcUInt32 value);
856
857 /****f* silcutil/SilcFSMAPI/silc_fsm_sema_free
858  *
859  * SYNOPSIS
860  *
861  *    void silc_fsm_sema_free(SilcFSMSema sema);
862  *
863  * DESCRIPTION
864  *
865  *    Free the semaphore allocated by silc_fsm_sema_alloc function.
866  *
867  ***/
868 void silc_fsm_sema_free(SilcFSMSema sema);
869
870 /****d* silcutil/SilcFSMAPI/SILC_FSM_SEMA_WAIT
871  *
872  * NAME
873  *
874  *    SILC_FSM_SEMA_WAIT(semaphore)
875  *
876  * DESCRIPTION
877  *
878  *    Macro used to wait for the `semaphore' to become non-zero.  The
879  *    machine will be suspended while it is waiting for the semaphore.
880  *    This macro can only be used in FSM state functions.  When the
881  *    semaphore is signalled the FSM will re-enter the current state (or
882  *    state that was set with silc_fsm_next before waiting).
883  *
884  * EXAMPLE
885  *
886  *    // Signalling example
887  *    ctx->async_sema = silc_fsm_sema_alloc(fsm, 0);
888  *    ...
889  *
890  *    SILC_FSM_STATE(silc_foo_state)
891  *    {
892  *      ...
893  *
894  *      // Wait here for async call to complete
895  *      SILC_FSM_SEMA_WAIT(ctx->async_sema);
896  *
897  *      // Async call completed
898  *      if (ctx->async_success == FALSE)
899  *        fatal(error);
900  *      ...
901  *    }
902  *
903  *    // Mutual exclusion example
904  *    ctx->lock = silc_fsm_sema_alloc(fsm, 1);
905  *    ...
906  *
907  *    SILC_FSM_STATE(silc_foo_state)
908  *    {
909  *      ...
910  *      SILC_FSM_SEMA_WAIT(ctx->lock);
911  *      very critical stuff...
912  *      SILC_FSM_SEMA_POST(ctx->lock);
913  *      ...
914  *    }
915  *
916  ***/
917 #define SILC_FSM_SEMA_WAIT(sema)                \
918 do {                                            \
919   if (silc_fsm_sema_wait(sema, fsm) == 0)       \
920     return SILC_FSM_WAIT;                       \
921 } while(0)
922
923 /****d* silcutil/SilcFSMAPI/SILC_FSM_SEMA_TIMEDWAIT
924  *
925  * NAME
926  *
927  *    SILC_FSM_SEMA_TIMEDWAIT(semaphore, seconds, useconds, timedout)
928  *
929  * DESCRIPTION
930  *
931  *    Macro used to wait for the `semaphore' to become non-zero, or until
932  *    the timeout specified by `seconds' and `useconds' has elapsed.  If
933  *    the timeout occurs before the semaphore becomes non-zero, the machine
934  *    will wakeup.  The `timedout' is SilcBool pointer and if it is
935  *    non-NULL indication of whether timeout occurred or not is saved to
936  *    the pointer.  This macro can only be used in FSM state functions.
937  *    When the semaphore is signalled or timedout the FSM will re-enter
938  *    the current state (or state that was set with silc_fsm_next before
939  *    waiting).
940  *
941  * EXAMPLE
942  *
943  *    SILC_FSM_STATE(silc_foo_state)
944  *    {
945  *      SilcBool timedout;
946  *      ...
947  *
948  *      // Wait here for async call to complete, or 10 seconds for timeout
949  *      SILC_FSM_SEMA_TIMEDWAIT(ctx->async_sema, 10, 0, &timedout);
950  *
951  *      // See if timeout occurred
952  *      if (timedout == TRUE)
953  *        fatal(error);
954  *
955  *      // Async call completed
956  *      if (ctx->async_success == FALSE)
957  *        fatal(error);
958  *      ...
959  *    }
960  *
961  ***/
962 #define SILC_FSM_SEMA_TIMEDWAIT(sema, seconds, useconds, ret_to)          \
963 do {                                                                      \
964   if (silc_fsm_sema_timedwait(sema, fsm, seconds, useconds, ret_to) == 0) \
965     return SILC_FSM_WAIT;                                                 \
966 } while(0)
967
968 /****f* silcutil/SilcFSMAPI/SILC_FSM_SEMA_POST
969  *
970  * SYNOPSIS
971  *
972  *    SILC_FSM_SEMA_POST(semaphore)
973  *
974  * DESCRIPTION
975  *
976  *    Increases the semaphore counter and awakens everybody that are
977  *    waiting for this semaphore.  This macro never blocks.  It can be
978  *    safely called at any place in state function and in asynchronous
979  *    callbacks or other functions.
980  *
981  * EXAMPLE
982  *
983  *    SILC_FSM_STATE(silc_foo_async_completion)
984  *    {
985  *      ...
986  *
987  *      // Notify all waiters
988  *      ctx->async_success = TRUE;
989  *      SILC_FSM_SEMA_POST(ctx->async_sema);
990  *      ...
991  *    }
992  *
993  ***/
994 #define SILC_FSM_SEMA_POST(sema)                \
995 do {                                            \
996   silc_fsm_sema_post(sema);                     \
997 } while(0)
998
999 #include "silcfsm_i.h"
1000
1001 #endif /* SILCFSM_H */