blob: b6912c6bd6be9bf7c5b59e795f10fd73922ce3bc [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file fsm.c
2 * Osmocom generic Finite State Machine implementation. */
3/*
Harald Welte136e7372016-05-29 10:53:17 +09004 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
5 *
Harald Weltee08da972017-11-13 01:00:26 +09006 * SPDX-License-Identifier: GPL-2.0+
7 *
Harald Welte136e7372016-05-29 10:53:17 +09008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 * MA 02110-1301, USA.
22 */
23
24#include <errno.h>
25#include <stdbool.h>
Harald Welte8808bb42017-01-07 11:11:03 +010026#include <string.h>
Pau Espin Pedrol4f8857e2017-06-18 12:23:00 +020027#include <inttypes.h>
Harald Welte136e7372016-05-29 10:53:17 +090028
29#include <osmocom/core/fsm.h>
30#include <osmocom/core/talloc.h>
31#include <osmocom/core/logging.h>
32#include <osmocom/core/utils.h>
33
34/*! \addtogroup fsm
35 * @{
Neels Hofmeyr87e45502017-06-20 00:17:59 +020036 * Finite State Machine abstraction
Harald Welte136e7372016-05-29 10:53:17 +090037 *
38 * This is a generic C-language abstraction for implementing finite
39 * state machines within the Osmocom framework. It is intended to
40 * replace existing hand-coded or even only implicitly existing FSMs
41 * all over the existing code base.
42 *
43 * An libosmocore FSM is described by its \ref osmo_fsm description,
44 * which in turn refers to an array of \ref osmo_fsm_state descriptor,
45 * each describing a single state in the FSM.
46 *
47 * The general idea is that all actions performed within one state are
48 * located at one position in the code (the state's action function),
49 * as opposed to the 'message-centric' view of e.g. the existing
50 * state machines of the LAPD(m) coe, where there is one message for
51 * eahc possible event (primitive), and the function then needs to
52 * concern itself on how to handle that event over all possible states.
53 *
54 * For each state, there is a bit-mask of permitted input events for
55 * this state, as well as a bit-mask of permitted new output states to
56 * which the state can change. Furthermore, there is a function
57 * pointer implementing the actual handling of the input events
58 * occurring whilst in thta state.
59 *
60 * Furthermore, each state offers a function pointer that can be
61 * executed just before leaving a state, and another one just after
62 * entering a state.
63 *
64 * When transitioning into a new state, an optional timer number and
65 * time-out can be passed along. The timer is started just after
66 * entering the new state, and will call the \ref osmo_fsm timer_cb
67 * function once it expires. This is intended to be used in telecom
68 * state machines where a given timer (identified by a certain number)
69 * is started to terminate the fsm or terminate the fsm once expected
70 * events are not happening before timeout expiration.
71 *
72 * As there can often be many concurrent FSMs of one given class, we
73 * introduce the concept of \ref osmo_fsm_inst, i.e. an FSM instance.
74 * The instance keeps the actual state, while the \ref osmo_fsm
75 * descriptor contains the static/const descriptor of the FSM's states
76 * and possible transitions.
77 *
78 * osmo_fsm are integrated with the libosmocore logging system. The
79 * logging sub-system is determined by the FSM descriptor, as we assume
80 * one FSM (let's say one related to a location update procedure) is
81 * inevitably always tied to a sub-system. The logging level however
82 * is configurable for each FSM instance, to ensure that e.g. DEBUG
83 * logging can be used for the LU procedure of one subscriber, while
84 * NOTICE level is used for all other subscribers.
85 *
86 * In order to attach private state to the \ref osmo_fsm_inst, it
87 * offers an opaque priv pointer.
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020088 *
89 * \file fsm.c */
Harald Welte96e2a002017-06-12 21:44:18 +020090
Harald Welte34193912017-01-07 11:49:55 +010091LLIST_HEAD(osmo_g_fsms);
Harald Welte136e7372016-05-29 10:53:17 +090092static bool fsm_log_addr = true;
Neels Hofmeyr050f2d32018-05-31 15:30:15 +020093static bool fsm_log_timeouts = false;
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +010094/*! See osmo_fsm_term_safely(). */
95static bool fsm_term_safely_enabled = false;
96
97/*! Internal state for FSM instance termination cascades. */
98static __thread struct {
99 /*! The first FSM instance that invoked osmo_fsm_inst_term() in the current cascade. */
100 struct osmo_fsm_inst *root_fi;
101 /*! 2 if a secondary FSM terminates, 3 if a secondary FSM causes a tertiary FSM to terminate, and so on. */
102 unsigned int depth;
103 /*! Talloc context to collect all deferred deallocations (FSM instances, and talloc objects if any). */
104 void *collect_ctx;
105} fsm_term_safely;
Harald Welte136e7372016-05-29 10:53:17 +0900106
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200107/*! specify if FSM instance addresses should be logged or not
Harald Welte136e7372016-05-29 10:53:17 +0900108 *
109 * By default, the FSM name includes the pointer address of the \ref
Neels Hofmeyra3953e02016-12-14 18:34:30 +0100110 * osmo_fsm_inst. This behavior can be disabled (and re-enabled)
Harald Welte136e7372016-05-29 10:53:17 +0900111 * using this function.
112 *
113 * \param[in] log_addr Indicate if FSM instance address shall be logged
114 */
115void osmo_fsm_log_addr(bool log_addr)
116{
Max61281f42016-11-01 10:49:31 +0100117 fsm_log_addr = log_addr;
Harald Welte136e7372016-05-29 10:53:17 +0900118}
119
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200120/*! Enable or disable logging of timeout values for FSM instance state changes.
121 *
122 * By default, state changes are logged by state name only, omitting the timeout. When passing true, each state change
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100123 * will also log the T number (or Osmocom-specific X number) and the chosen timeout in seconds.
124 * osmo_fsm_inst_state_chg_keep_timer() will log remaining timeout in millisecond precision.
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200125 *
126 * The default for this is false to reflect legacy behavior. Since various C tests that verify logging output already
127 * existed prior to this option, keeping timeout logging off makes sure that they continue to pass. Particularly,
128 * osmo_fsm_inst_state_chg_keep_timer() may cause non-deterministic logging of remaining timeout values.
129 *
130 * For any program that does not explicitly require deterministic logging output, i.e. anything besides regression tests
131 * involving FSM instances, it is recommended to call osmo_fsm_log_timeouts(true).
132 *
133 * \param[in] log_timeouts Pass true to log timeouts on state transitions, false to omit timeouts.
134 */
135void osmo_fsm_log_timeouts(bool log_timeouts)
136{
137 fsm_log_timeouts = log_timeouts;
138}
139
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +0100140/*! Enable safer way to deallocate cascades of terminating FSM instances.
141 *
142 * For legacy compatibility, this is disabled by default. In newer programs / releases, it is recommended to enable this
143 * feature during main() startup, since it greatly simplifies deallocating child, parent and other FSM instances without
144 * running into double-free or use-after-free scenarios. When enabled, this feature changes the order of logging, which
145 * may break legacy unit test expectations, and changes the order of deallocation to after the parent term event is
146 * dispatched.
147 *
148 * When enabled, an FSM instance termination detects whether another FSM instance is already terminating, and instead of
149 * deallocating immediately, collects all terminating FSM instances in a talloc context, to be bulk deallocated once all
150 * event handling and termination cascades are done.
151 *
152 * For example, if an FSM's cleanup() sends an event to some "other" FSM, which in turn causes the FSM's parent to
153 * deallocate, then the parent would talloc_free() the child's memory, causing a use-after-free. There are infinite
154 * constellations like this, which all are trivially solved with this feature enabled.
155 *
156 * For illustration, see fsm_dealloc_test.c.
157 *
158 * \param[in] term_safely Pass true to switch to safer FSM instance termination behavior.
159 */
160void osmo_fsm_term_safely(bool term_safely)
161{
162 fsm_term_safely_enabled = term_safely;
163}
164
165/*! talloc_free() the given object immediately, or once ongoing FSM terminations are done.
166 *
167 * If an FSM deallocation cascade is ongoing, talloc_steal() the given talloc_object into the talloc context that is
168 * freed once the cascade is done. If no FSM deallocation cascade is ongoing, or if osmo_fsm_term_safely() is disabled,
169 * immediately talloc_free the object.
170 *
171 * This can be useful if some higher order talloc object, which is the talloc parent for FSM instances or their priv
172 * objects, is not itself tied to an FSM instance. This function allows safely freeing it without affecting ongoing FSM
173 * termination cascades.
174 *
175 * Once passed to this function, the talloc_object should be considered as already freed. Only FSM instance pre_term()
176 * and cleanup() functions as well as event handling caused by these may safely assume that it is still valid memory.
177 *
178 * The talloc_object should not have multiple parents.
179 *
180 * (This function may some day move to public API, which might be redundant if we introduce a select-loop volatile
181 * context mechanism to defer deallocation instead.)
182 *
183 * \param[in] talloc_object Object pointer to free.
184 */
185static void osmo_fsm_defer_free(void *talloc_object)
186{
187 if (!fsm_term_safely.depth) {
188 talloc_free(talloc_object);
189 return;
190 }
191
192 if (!fsm_term_safely.collect_ctx) {
193 /* This is actually the first other object / FSM instance besides the root terminating inst. Create the
194 * ctx to collect this and possibly more objects to free. Avoid talloc parent loops: don't make this ctx
195 * the child of the root inst or anything like that. */
196 fsm_term_safely.collect_ctx = talloc_named_const(NULL, 0, "fsm_term_safely.collect_ctx");
197 OSMO_ASSERT(fsm_term_safely.collect_ctx);
198 }
199 talloc_steal(fsm_term_safely.collect_ctx, talloc_object);
200}
201
Harald Welte8808bb42017-01-07 11:11:03 +0100202struct osmo_fsm *osmo_fsm_find_by_name(const char *name)
203{
204 struct osmo_fsm *fsm;
Harald Welte34193912017-01-07 11:49:55 +0100205 llist_for_each_entry(fsm, &osmo_g_fsms, list) {
Harald Welte8808bb42017-01-07 11:11:03 +0100206 if (!strcmp(name, fsm->name))
207 return fsm;
208 }
209 return NULL;
210}
211
Harald Welte4585e672017-04-16 17:23:56 +0200212struct osmo_fsm_inst *osmo_fsm_inst_find_by_name(const struct osmo_fsm *fsm,
213 const char *name)
214{
215 struct osmo_fsm_inst *fi;
216
Neels Hofmeyr2bcc8732018-04-09 01:35:02 +0200217 if (!name)
218 return NULL;
219
Harald Welte4585e672017-04-16 17:23:56 +0200220 llist_for_each_entry(fi, &fsm->instances, list) {
Neels Hofmeyr2bcc8732018-04-09 01:35:02 +0200221 if (!fi->name)
222 continue;
Harald Welte4585e672017-04-16 17:23:56 +0200223 if (!strcmp(name, fi->name))
224 return fi;
225 }
226 return NULL;
227}
228
229struct osmo_fsm_inst *osmo_fsm_inst_find_by_id(const struct osmo_fsm *fsm,
230 const char *id)
231{
232 struct osmo_fsm_inst *fi;
233
234 llist_for_each_entry(fi, &fsm->instances, list) {
235 if (!strcmp(id, fi->id))
236 return fi;
237 }
238 return NULL;
239}
240
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200241/*! register a FSM with the core
Harald Welte136e7372016-05-29 10:53:17 +0900242 *
243 * A FSM descriptor needs to be registered with the core before any
244 * instances can be created for it.
245 *
246 * \param[in] fsm Descriptor of Finite State Machine to be registered
247 * \returns 0 on success; negative on error
248 */
249int osmo_fsm_register(struct osmo_fsm *fsm)
250{
Harald Welte8c4f5452017-10-03 17:44:03 +0800251 if (!osmo_identifier_valid(fsm->name)) {
252 LOGP(DLGLOBAL, LOGL_ERROR, "Attempting to register FSM with illegal identifier '%s'\n", fsm->name);
253 return -EINVAL;
254 }
Harald Welte8808bb42017-01-07 11:11:03 +0100255 if (osmo_fsm_find_by_name(fsm->name))
256 return -EEXIST;
Stefan Sperling888dc7d2018-02-26 19:17:02 +0100257 if (fsm->event_names == NULL)
258 LOGP(DLGLOBAL, LOGL_ERROR, "FSM '%s' has no event names! Please fix!\n", fsm->name);
Harald Welte34193912017-01-07 11:49:55 +0100259 llist_add_tail(&fsm->list, &osmo_g_fsms);
Harald Welte136e7372016-05-29 10:53:17 +0900260 INIT_LLIST_HEAD(&fsm->instances);
261
262 return 0;
263}
264
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200265/*! unregister a FSM from the core
Harald Welte136e7372016-05-29 10:53:17 +0900266 *
267 * Once the FSM descriptor is unregistered, active instances can still
268 * use it, but no new instances may be created for it.
269 *
270 * \param[in] fsm Descriptor of Finite State Machine to be removed
271 */
272void osmo_fsm_unregister(struct osmo_fsm *fsm)
273{
274 llist_del(&fsm->list);
275}
276
277/* small wrapper function around timer expiration (for logging) */
278static void fsm_tmr_cb(void *data)
279{
280 struct osmo_fsm_inst *fi = data;
281 struct osmo_fsm *fsm = fi->fsm;
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100282 int32_t T = fi->T;
Harald Welte136e7372016-05-29 10:53:17 +0900283
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100284 LOGPFSM(fi, "Timeout of " OSMO_T_FMT "\n", OSMO_T_FMT_ARGS(fi->T));
Harald Welte136e7372016-05-29 10:53:17 +0900285
Harald Weltef627c0f2016-06-18 10:36:25 +0200286 if (fsm->timer_cb) {
287 int rc = fsm->timer_cb(fi);
Neels Hofmeyr19ec7b92017-11-18 23:10:24 +0100288 if (rc != 1)
289 /* We don't actually know whether fi exists anymore.
290 * Make sure to not access it and return right away. */
Harald Weltef627c0f2016-06-18 10:36:25 +0200291 return;
Neels Hofmeyr19ec7b92017-11-18 23:10:24 +0100292 /* The timer_cb told us to terminate, so we can safely assume
293 * that fi still exists. */
Harald Weltef627c0f2016-06-18 10:36:25 +0200294 LOGPFSM(fi, "timer_cb requested termination\n");
295 } else
296 LOGPFSM(fi, "No timer_cb, automatic termination\n");
297
298 /* if timer_cb returns 1 or there is no timer_cb */
299 osmo_fsm_inst_term(fi, OSMO_FSM_TERM_TIMEOUT, &T);
Harald Welte136e7372016-05-29 10:53:17 +0900300}
301
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100302/*! Change id of the FSM instance
303 * \param[in] fi FSM instance
304 * \param[in] id new ID
305 * \returns 0 if the ID was updated, otherwise -EINVAL
306 */
307int osmo_fsm_inst_update_id(struct osmo_fsm_inst *fi, const char *id)
308{
Neels Hofmeyra64c45a2018-03-31 16:34:49 +0200309 if (!id)
310 return osmo_fsm_inst_update_id_f(fi, NULL);
311 else
312 return osmo_fsm_inst_update_id_f(fi, "%s", id);
313}
314
315static void update_name(struct osmo_fsm_inst *fi)
316{
317 if (fi->name)
318 talloc_free((char*)fi->name);
319
320 if (!fsm_log_addr) {
321 if (fi->id)
322 fi->name = talloc_asprintf(fi, "%s(%s)", fi->fsm->name, fi->id);
323 else
324 fi->name = talloc_asprintf(fi, "%s", fi->fsm->name);
325 } else {
326 if (fi->id)
327 fi->name = talloc_asprintf(fi, "%s(%s)[%p]", fi->fsm->name, fi->id, fi);
328 else
329 fi->name = talloc_asprintf(fi, "%s[%p]", fi->fsm->name, fi);
330 }
331}
332
333/*! Change id of the FSM instance using a string format.
334 * \param[in] fi FSM instance.
335 * \param[in] fmt format string to compose new ID.
336 * \param[in] ... variable argument list for format string.
337 * \returns 0 if the ID was updated, otherwise -EINVAL.
338 */
339int osmo_fsm_inst_update_id_f(struct osmo_fsm_inst *fi, const char *fmt, ...)
340{
341 char *id = NULL;
342
343 if (fmt) {
344 va_list ap;
345
346 va_start(ap, fmt);
347 id = talloc_vasprintf(fi, fmt, ap);
348 va_end(ap);
349
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100350 if (!osmo_identifier_valid(id)) {
Neels Hofmeyr6e8c0882018-04-09 02:28:34 +0200351 LOGP(DLGLOBAL, LOGL_ERROR,
352 "Attempting to set illegal id for FSM instance of type '%s': %s\n",
353 fi->fsm->name, osmo_quote_str(id, -1));
Neels Hofmeyra64c45a2018-03-31 16:34:49 +0200354 talloc_free(id);
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100355 return -EINVAL;
356 }
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100357 }
Daniel Willmann04a2a322018-03-14 18:31:33 +0100358
359 if (fi->id)
Neels Hofmeyra64c45a2018-03-31 16:34:49 +0200360 talloc_free((char*)fi->id);
361 fi->id = id;
Daniel Willmann04a2a322018-03-14 18:31:33 +0100362
Neels Hofmeyra64c45a2018-03-31 16:34:49 +0200363 update_name(fi);
Daniel Willmann04a2a322018-03-14 18:31:33 +0100364 return 0;
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100365}
366
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200367/*! allocate a new instance of a specified FSM
Harald Welte136e7372016-05-29 10:53:17 +0900368 * \param[in] fsm Descriptor of the FSM
369 * \param[in] ctx talloc context from which to allocate memory
370 * \param[in] priv private data reference store in fsm instance
371 * \param[in] log_level The log level for events of this FSM
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100372 * \param[in] id The name/ID of the FSM instance
Harald Welte136e7372016-05-29 10:53:17 +0900373 * \returns newly-allocated, initialized and registered FSM instance
374 */
375struct osmo_fsm_inst *osmo_fsm_inst_alloc(struct osmo_fsm *fsm, void *ctx, void *priv,
376 int log_level, const char *id)
377{
378 struct osmo_fsm_inst *fi = talloc_zero(ctx, struct osmo_fsm_inst);
379
380 fi->fsm = fsm;
381 fi->priv = priv;
382 fi->log_level = log_level;
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +0200383 osmo_timer_setup(&fi->timer, fsm_tmr_cb, fi);
Daniel Willmannb0c43a62018-02-08 18:00:37 +0100384
Neels Hofmeyr71f76a12018-03-31 16:30:25 +0200385 if (osmo_fsm_inst_update_id(fi, id) < 0) {
386 talloc_free(fi);
387 return NULL;
Harald Welte8c4f5452017-10-03 17:44:03 +0800388 }
Harald Welte136e7372016-05-29 10:53:17 +0900389
Harald Welte136e7372016-05-29 10:53:17 +0900390 INIT_LLIST_HEAD(&fi->proc.children);
391 INIT_LLIST_HEAD(&fi->proc.child);
392 llist_add(&fi->list, &fsm->instances);
393
394 LOGPFSM(fi, "Allocated\n");
395
396 return fi;
397}
398
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200399/*! allocate a new instance of a specified FSM as child of
Harald Welte136e7372016-05-29 10:53:17 +0900400 * other FSM instance
401 *
402 * This is like \ref osmo_fsm_inst_alloc but using the parent FSM as
403 * talloc context, and inheriting the log level of the parent.
404 *
405 * \param[in] fsm Descriptor of the to-be-allocated FSM
406 * \param[in] parent Parent FSM instance
407 * \param[in] parent_term_event Event to be sent to parent when terminating
408 * \returns newly-allocated, initialized and registered FSM instance
409 */
410struct osmo_fsm_inst *osmo_fsm_inst_alloc_child(struct osmo_fsm *fsm,
411 struct osmo_fsm_inst *parent,
412 uint32_t parent_term_event)
413{
414 struct osmo_fsm_inst *fi;
415
416 fi = osmo_fsm_inst_alloc(fsm, parent, NULL, parent->log_level,
417 parent->id);
418 if (!fi) {
419 /* indicate immediate termination to caller */
420 osmo_fsm_inst_dispatch(parent, parent_term_event, NULL);
421 return NULL;
422 }
423
424 LOGPFSM(fi, "is child of %s\n", osmo_fsm_inst_name(parent));
425
Philipp Maier2a06a492018-01-16 18:45:56 +0100426 osmo_fsm_inst_change_parent(fi, parent, parent_term_event);
Harald Welte136e7372016-05-29 10:53:17 +0900427
428 return fi;
429}
430
Philipp Maier2a06a492018-01-16 18:45:56 +0100431/*! unlink child FSM from its parent FSM.
432 * \param[in] fi Descriptor of the child FSM to unlink.
Philipp Maierd1f57932018-02-14 18:20:07 +0100433 * \param[in] ctx New talloc context
434 *
435 * Never call this function from the cleanup callback, because at that time
436 * the child FSMs will already be terminated. If unlinking should be performed
437 * on FSM termination, use the grace callback instead. */
Philipp Maier2a06a492018-01-16 18:45:56 +0100438void osmo_fsm_inst_unlink_parent(struct osmo_fsm_inst *fi, void *ctx)
439{
440 if (fi->proc.parent) {
441 talloc_steal(ctx, fi);
442 fi->proc.parent = NULL;
443 fi->proc.parent_term_event = 0;
444 llist_del(&fi->proc.child);
445 }
446}
447
448/*! change parent instance of an FSM.
449 * \param[in] fi Descriptor of the to-be-allocated FSM.
450 * \param[in] new_parent New parent FSM instance.
Philipp Maierd1f57932018-02-14 18:20:07 +0100451 * \param[in] new_parent_term_event Event to be sent to parent when terminating.
452 *
453 * Never call this function from the cleanup callback!
454 * (see also osmo_fsm_inst_unlink_parent()).*/
Philipp Maier2a06a492018-01-16 18:45:56 +0100455void osmo_fsm_inst_change_parent(struct osmo_fsm_inst *fi,
456 struct osmo_fsm_inst *new_parent,
457 uint32_t new_parent_term_event)
458{
459 /* Make sure a possibly existing old parent is unlinked first
460 * (new_parent can be NULL) */
461 osmo_fsm_inst_unlink_parent(fi, new_parent);
462
463 /* Add new parent */
464 if (new_parent) {
465 fi->proc.parent = new_parent;
466 fi->proc.parent_term_event = new_parent_term_event;
467 llist_add(&fi->proc.child, &new_parent->proc.children);
468 }
469}
470
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200471/*! delete a given instance of a FSM
Vadim Yanitskiy2f65bb12019-03-25 15:57:09 +0700472 * \param[in] fi FSM instance to be un-registered and deleted
Harald Welte136e7372016-05-29 10:53:17 +0900473 */
474void osmo_fsm_inst_free(struct osmo_fsm_inst *fi)
475{
476 osmo_timer_del(&fi->timer);
477 llist_del(&fi->list);
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +0100478
479 if (fsm_term_safely.depth) {
480 /* Another FSM instance has caused this one to free and is still busy with its termination. Don't free
481 * yet, until the other FSM instance is done. */
482 osmo_fsm_defer_free(fi);
483 /* The root_fi can't go missing really, but to be safe... */
484 if (fsm_term_safely.root_fi)
485 LOGPFSM(fi, "Deferring: will deallocate with %s\n", fsm_term_safely.root_fi->name);
486 else
487 LOGPFSM(fi, "Deferring deallocation\n");
488
489 /* Don't free anything yet. Exit. */
490 return;
491 }
492
493 /* fsm_term_safely.depth == 0.
494 * - If fsm_term_safely is enabled, this is the original FSM instance that started terminating first. Free this
495 * and along with it all other collected terminated FSM instances.
496 * - If fsm_term_safely is disabled, this is just any FSM instance deallocating. */
497
498 if (fsm_term_safely.collect_ctx) {
499 /* The fi may be a child of any other FSM instances or objects collected in the collect_ctx. Don't
500 * deallocate separately to avoid use-after-free errors, put it in there and deallocate all at once. */
501 LOGPFSM(fi, "Deallocated, including all deferred deallocations\n");
502 osmo_fsm_defer_free(fi);
503 talloc_free(fsm_term_safely.collect_ctx);
504 fsm_term_safely.collect_ctx = NULL;
505 } else {
506 LOGPFSM(fi, "Deallocated\n");
507 talloc_free(fi);
508 }
509 fsm_term_safely.root_fi = NULL;
Harald Welte136e7372016-05-29 10:53:17 +0900510}
511
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200512/*! get human-readable name of FSM event
Harald Welte136e7372016-05-29 10:53:17 +0900513 * \param[in] fsm FSM descriptor of event
514 * \param[in] event Event integer value
515 * \returns string rendering of the event
516 */
517const char *osmo_fsm_event_name(struct osmo_fsm *fsm, uint32_t event)
518{
519 static char buf[32];
520 if (!fsm->event_names) {
Pau Espin Pedrol4f8857e2017-06-18 12:23:00 +0200521 snprintf(buf, sizeof(buf), "%"PRIu32, event);
Harald Welte136e7372016-05-29 10:53:17 +0900522 return buf;
523 } else
524 return get_value_string(fsm->event_names, event);
525}
526
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200527/*! get human-readable name of FSM instance
Harald Welte136e7372016-05-29 10:53:17 +0900528 * \param[in] fi FSM instance
529 * \returns string rendering of the FSM identity
530 */
531const char *osmo_fsm_inst_name(struct osmo_fsm_inst *fi)
532{
533 if (!fi)
534 return "NULL";
535
536 if (fi->name)
537 return fi->name;
538 else
539 return fi->fsm->name;
540}
541
Philipp Maieraf6710f2018-11-16 17:45:40 +0100542/*! get human-readable name of FSM state
Harald Welte136e7372016-05-29 10:53:17 +0900543 * \param[in] fsm FSM descriptor
544 * \param[in] state FSM state number
545 * \returns string rendering of the FSM state
546 */
547const char *osmo_fsm_state_name(struct osmo_fsm *fsm, uint32_t state)
548{
549 static char buf[32];
550 if (state >= fsm->num_states) {
Pau Espin Pedrol4f8857e2017-06-18 12:23:00 +0200551 snprintf(buf, sizeof(buf), "unknown %"PRIu32, state);
Harald Welte136e7372016-05-29 10:53:17 +0900552 return buf;
553 } else
554 return fsm->states[state].name;
555}
556
Neels Hofmeyr407df022018-05-25 18:20:06 +0200557static int state_chg(struct osmo_fsm_inst *fi, uint32_t new_state,
558 bool keep_timer, unsigned long timeout_secs, int T,
559 const char *file, int line)
560{
561 struct osmo_fsm *fsm = fi->fsm;
562 uint32_t old_state = fi->state;
563 const struct osmo_fsm_state *st = &fsm->states[fi->state];
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200564 struct timeval remaining;
Neels Hofmeyr407df022018-05-25 18:20:06 +0200565
Neels Hofmeyr89991fd2019-01-28 19:06:53 +0100566 /* Limit to 0x7fffffff seconds as explained by
567 * _osmo_fsm_inst_state_chg()'s API doc. */
568 if (timeout_secs > 0x7fffffff)
569 timeout_secs = 0x7fffffff;
570
Neels Hofmeyr407df022018-05-25 18:20:06 +0200571 /* validate if new_state is a valid state */
572 if (!(st->out_state_mask & (1 << new_state))) {
573 LOGPFSMLSRC(fi, LOGL_ERROR, file, line,
574 "transition to state %s not permitted!\n",
575 osmo_fsm_state_name(fsm, new_state));
576 return -EPERM;
577 }
578
579 if (!keep_timer) {
580 /* delete the old timer */
581 osmo_timer_del(&fi->timer);
582 }
583
584 if (st->onleave)
585 st->onleave(fi, new_state);
586
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200587 if (fsm_log_timeouts) {
Neels Hofmeyrd4b79c82019-03-06 05:43:23 +0100588 if (keep_timer && fi->timer.active) {
589 /* This should always give us a timeout, but just in case the return value indicates error, omit
590 * logging the remaining time. */
591 if (osmo_timer_remaining(&fi->timer, NULL, &remaining))
592 LOGPFSMSRC(fi, file, line,
593 "State change to %s (keeping " OSMO_T_FMT ")\n",
594 osmo_fsm_state_name(fsm, new_state),
595 OSMO_T_FMT_ARGS(fi->T));
596 else
597 LOGPFSMSRC(fi, file, line,
598 "State change to %s (keeping " OSMO_T_FMT ", %ld.%03lds remaining)\n",
599 osmo_fsm_state_name(fsm, new_state),
600 OSMO_T_FMT_ARGS(fi->T), remaining.tv_sec, remaining.tv_usec / 1000);
601 } else if (timeout_secs)
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100602 LOGPFSMSRC(fi, file, line, "State change to %s (" OSMO_T_FMT ", %lus)\n",
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200603 osmo_fsm_state_name(fsm, new_state),
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100604 OSMO_T_FMT_ARGS(T), timeout_secs);
Neels Hofmeyr050f2d32018-05-31 15:30:15 +0200605 else
606 LOGPFSMSRC(fi, file, line, "State change to %s (no timeout)\n",
607 osmo_fsm_state_name(fsm, new_state));
608 } else {
609 LOGPFSMSRC(fi, file, line, "state_chg to %s\n",
610 osmo_fsm_state_name(fsm, new_state));
611 }
612
Neels Hofmeyr407df022018-05-25 18:20:06 +0200613 fi->state = new_state;
614 st = &fsm->states[new_state];
615
Neels Hofmeyrd4b79c82019-03-06 05:43:23 +0100616 if (!keep_timer
617 || (keep_timer && !osmo_timer_pending(&fi->timer))) {
Neels Hofmeyr407df022018-05-25 18:20:06 +0200618 fi->T = T;
Neels Hofmeyrbd5a1dc2019-01-28 15:38:09 +0100619 if (timeout_secs)
620 osmo_timer_schedule(&fi->timer, timeout_secs, 0);
Neels Hofmeyr407df022018-05-25 18:20:06 +0200621 }
622
623 /* Call 'onenter' last, user might terminate FSM from there */
624 if (st->onenter)
625 st->onenter(fi, old_state);
626
627 return 0;
628}
629
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200630/*! perform a state change of the given FSM instance
Harald Welte136e7372016-05-29 10:53:17 +0900631 *
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100632 * Best invoke via the osmo_fsm_inst_state_chg() macro which logs the source
633 * file where the state change was effected. Alternatively, you may pass \a
634 * file as NULL to use the normal file/line indication instead.
635 *
Neels Hofmeyr407df022018-05-25 18:20:06 +0200636 * All changes to the FSM instance state must be made via an osmo_fsm_inst_state_chg_*
Harald Welte136e7372016-05-29 10:53:17 +0900637 * function. It verifies that the existing state actually permits a
Neels Hofmeyr407df022018-05-25 18:20:06 +0200638 * transition to new_state.
Harald Welte136e7372016-05-29 10:53:17 +0900639 *
Neels Hofmeyrbd5a1dc2019-01-28 15:38:09 +0100640 * If timeout_secs is 0, stay in the new state indefinitely, without a timeout
641 * (stop the FSM instance's timer if it was runnning).
642 *
643 * If timeout_secs > 0, start or reset the FSM instance's timer with this
644 * timeout. On expiry, invoke the FSM instance's timer_cb -- if no timer_cb is
645 * set, an expired timer immediately terminates the FSM instance with
646 * OSMO_FSM_TERM_TIMEOUT.
647 *
648 * The value of T is stored in fi->T and is then available for query in
649 * timer_cb. If passing timeout_secs == 0, it is recommended to also pass T ==
650 * 0, so that fi->T is reset to 0 when no timeout is invoked.
Harald Welte136e7372016-05-29 10:53:17 +0900651 *
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100652 * Positive values for T are considered to be 3GPP spec compliant and appear in
653 * logging and VTY as "T1234", while negative values are considered to be
654 * Osmocom specific timers, represented in logging and VTY as "X1234".
655 *
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100656 * See also osmo_tdef_fsm_inst_state_chg() from the osmo_tdef API, which
657 * provides a unified way to configure and apply GSM style Tnnnn timers to FSM
658 * state transitions.
659 *
Neels Hofmeyr89991fd2019-01-28 19:06:53 +0100660 * Range: since time_t's maximum value is not well defined in a cross platform
661 * way, clamp timeout_secs to the maximum of the signed 32bit range, or roughly
662 * 68 years (float(0x7fffffff) / (60. * 60 * 24 * 365.25) = 68.0497). Thus
663 * ensure that very large timeouts do not wrap around to become very small
664 * ones. Note though that this might still be unsafe on systems with a time_t
665 * range below 32 bits.
666 *
Harald Welte136e7372016-05-29 10:53:17 +0900667 * \param[in] fi FSM instance whose state is to change
668 * \param[in] new_state The new state into which we should change
Neels Hofmeyr89991fd2019-01-28 19:06:53 +0100669 * \param[in] timeout_secs Timeout in seconds (if !=0), maximum-clamped to 2147483647 seconds.
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100670 * \param[in] T Timer number, where positive numbers are considered to be 3GPP spec compliant timer numbers and are
671 * logged as "T1234", while negative numbers are considered Osmocom specific timer numbers logged as
672 * "X1234".
Neels Hofmeyrb805cc12016-12-23 04:23:18 +0100673 * \param[in] file Calling source file (from osmo_fsm_inst_state_chg macro)
674 * \param[in] line Calling source line (from osmo_fsm_inst_state_chg macro)
Harald Welte136e7372016-05-29 10:53:17 +0900675 * \returns 0 on success; negative on error
676 */
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100677int _osmo_fsm_inst_state_chg(struct osmo_fsm_inst *fi, uint32_t new_state,
678 unsigned long timeout_secs, int T,
679 const char *file, int line)
Harald Welte136e7372016-05-29 10:53:17 +0900680{
Neels Hofmeyr407df022018-05-25 18:20:06 +0200681 return state_chg(fi, new_state, false, timeout_secs, T, file, line);
682}
Harald Welte136e7372016-05-29 10:53:17 +0900683
Neels Hofmeyr407df022018-05-25 18:20:06 +0200684/*! perform a state change while keeping the current timer running.
685 *
686 * This is useful to keep a timeout across several states (without having to round the
687 * remaining time to seconds).
688 *
689 * Best invoke via the osmo_fsm_inst_state_chg_keep_timer() macro which logs the source
690 * file where the state change was effected. Alternatively, you may pass \a
691 * file as NULL to use the normal file/line indication instead.
692 *
693 * All changes to the FSM instance state must be made via an osmo_fsm_inst_state_chg_*
694 * function. It verifies that the existing state actually permits a
695 * transition to new_state.
696 *
697 * \param[in] fi FSM instance whose state is to change
698 * \param[in] new_state The new state into which we should change
699 * \param[in] file Calling source file (from osmo_fsm_inst_state_chg macro)
700 * \param[in] line Calling source line (from osmo_fsm_inst_state_chg macro)
701 * \returns 0 on success; negative on error
702 */
703int _osmo_fsm_inst_state_chg_keep_timer(struct osmo_fsm_inst *fi, uint32_t new_state,
704 const char *file, int line)
705{
706 return state_chg(fi, new_state, true, 0, 0, file, line);
Harald Welte136e7372016-05-29 10:53:17 +0900707}
708
Neels Hofmeyrd4b79c82019-03-06 05:43:23 +0100709/*! perform a state change while keeping the current timer if running, or starting a timer otherwise.
710 *
711 * This is useful to keep a timeout across several states, but to make sure that some timeout is actually running.
712 *
713 * Best invoke via the osmo_fsm_inst_state_chg_keep_or_start_timer() macro which logs the source file where the state
714 * change was effected. Alternatively, you may pass file as NULL to use the normal file/line indication instead.
715 *
716 * All changes to the FSM instance state must be made via an osmo_fsm_inst_state_chg_*
717 * function. It verifies that the existing state actually permits a
718 * transition to new_state.
719 *
720 * \param[in] fi FSM instance whose state is to change
721 * \param[in] new_state The new state into which we should change
722 * \param[in] timeout_secs If no timer is running yet, set this timeout in seconds (if !=0), maximum-clamped to
723 * 2147483647 seconds.
724 * \param[in] T Timer number, where positive numbers are considered to be 3GPP spec compliant timer numbers and are
725 * logged as "T1234", while negative numbers are considered Osmocom specific timer numbers logged as
726 * "X1234".
727 * \param[in] file Calling source file (from osmo_fsm_inst_state_chg macro)
728 * \param[in] line Calling source line (from osmo_fsm_inst_state_chg macro)
729 * \returns 0 on success; negative on error
730 */
731int _osmo_fsm_inst_state_chg_keep_or_start_timer(struct osmo_fsm_inst *fi, uint32_t new_state,
732 unsigned long timeout_secs, int T,
733 const char *file, int line)
734{
735 return state_chg(fi, new_state, true, timeout_secs, T, file, line);
736}
737
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200738/*! dispatch an event to an osmocom finite state machine instance
Harald Welte136e7372016-05-29 10:53:17 +0900739 *
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100740 * Best invoke via the osmo_fsm_inst_dispatch() macro which logs the source
741 * file where the event was effected. Alternatively, you may pass \a file as
742 * NULL to use the normal file/line indication instead.
743 *
Harald Welte136e7372016-05-29 10:53:17 +0900744 * Any incoming events to \ref osmo_fsm instances must be dispatched to
745 * them via this function. It verifies, whether the event is permitted
746 * based on the current state of the FSM. If not, -1 is returned.
747 *
748 * \param[in] fi FSM instance
749 * \param[in] event Event to send to FSM instance
750 * \param[in] data Data to pass along with the event
Neels Hofmeyrb805cc12016-12-23 04:23:18 +0100751 * \param[in] file Calling source file (from osmo_fsm_inst_dispatch macro)
752 * \param[in] line Calling source line (from osmo_fsm_inst_dispatch macro)
Harald Welte136e7372016-05-29 10:53:17 +0900753 * \returns 0 in case of success; negative on error
754 */
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100755int _osmo_fsm_inst_dispatch(struct osmo_fsm_inst *fi, uint32_t event, void *data,
756 const char *file, int line)
Harald Welte136e7372016-05-29 10:53:17 +0900757{
758 struct osmo_fsm *fsm;
759 const struct osmo_fsm_state *fs;
760
761 if (!fi) {
Neels Hofmeyrc7155df2016-12-23 04:24:51 +0100762 LOGPSRC(DLGLOBAL, LOGL_ERROR, file, line,
Pau Espin Pedrol4f8857e2017-06-18 12:23:00 +0200763 "Trying to dispatch event %"PRIu32" to non-existent"
Neels Hofmeyrc7155df2016-12-23 04:24:51 +0100764 " FSM instance!\n", event);
Harald Welte136e7372016-05-29 10:53:17 +0900765 osmo_log_backtrace(DLGLOBAL, LOGL_ERROR);
766 return -ENODEV;
767 }
768
769 fsm = fi->fsm;
770 OSMO_ASSERT(fi->state < fsm->num_states);
771 fs = &fi->fsm->states[fi->state];
772
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100773 LOGPFSMSRC(fi, file, line,
774 "Received Event %s\n", osmo_fsm_event_name(fsm, event));
Harald Welte136e7372016-05-29 10:53:17 +0900775
776 if (((1 << event) & fsm->allstate_event_mask) && fsm->allstate_action) {
777 fsm->allstate_action(fi, event, data);
778 return 0;
779 }
780
781 if (!((1 << event) & fs->in_event_mask)) {
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100782 LOGPFSMLSRC(fi, LOGL_ERROR, file, line,
783 "Event %s not permitted\n",
784 osmo_fsm_event_name(fsm, event));
Harald Welte136e7372016-05-29 10:53:17 +0900785 return -1;
786 }
Philipp Maier3d4fb592018-05-15 10:06:22 +0200787
788 if (fs->action)
789 fs->action(fi, event, data);
Harald Welte136e7372016-05-29 10:53:17 +0900790
791 return 0;
792}
793
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200794/*! Terminate FSM instance with given cause
Harald Welte136e7372016-05-29 10:53:17 +0900795 *
796 * This safely terminates the given FSM instance by first iterating
797 * over all children and sending them a termination event. Next, it
798 * calls the FSM descriptors cleanup function (if any), followed by
799 * releasing any memory associated with the FSM instance.
800 *
801 * Finally, the parent FSM instance (if any) is notified using the
802 * parent termination event configured at time of FSM instance start.
803 *
804 * \param[in] fi FSM instance to be terminated
805 * \param[in] cause Cause / reason for termination
Neels Hofmeyrb805cc12016-12-23 04:23:18 +0100806 * \param[in] data Opaque event data to be passed with the parent term event
807 * \param[in] file Calling source file (from osmo_fsm_inst_term macro)
808 * \param[in] line Calling source line (from osmo_fsm_inst_term macro)
Harald Welte136e7372016-05-29 10:53:17 +0900809 */
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100810void _osmo_fsm_inst_term(struct osmo_fsm_inst *fi,
811 enum osmo_fsm_term_cause cause, void *data,
812 const char *file, int line)
Harald Welte136e7372016-05-29 10:53:17 +0900813{
Neels Hofmeyr3faa0142016-12-18 23:41:41 +0100814 struct osmo_fsm_inst *parent;
Harald Welte136e7372016-05-29 10:53:17 +0900815 uint32_t parent_term_event = fi->proc.parent_term_event;
816
Neels Hofmeyr3b414a42019-04-08 00:33:53 +0200817 if (fi->proc.terminating) {
818 LOGPFSMSRC(fi, file, line, "Ignoring trigger to terminate: already terminating\n");
819 return;
820 }
821 fi->proc.terminating = true;
822
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +0100823 /* Start termination cascade handling only if the feature is enabled. Also check the current depth: though
824 * unlikely, theoretically the fsm_term_safely_enabled flag could be toggled in the middle of a cascaded
825 * termination, so make sure to continue if it already started. */
826 if (fsm_term_safely_enabled || fsm_term_safely.depth) {
827 fsm_term_safely.depth++;
828 /* root_fi is just for logging, so no need to be extra careful about it. */
829 if (!fsm_term_safely.root_fi)
830 fsm_term_safely.root_fi = fi;
831 }
832
833 if (fsm_term_safely.depth > 1) {
834 /* fsm_term_safely is enabled and this is a secondary FSM instance terminated, caused by the root_fi. */
835 LOGPFSMSRC(fi, file, line, "Terminating in cascade, depth %d (cause = %s, caused by: %s)\n",
836 fsm_term_safely.depth, osmo_fsm_term_cause_name(cause),
837 fsm_term_safely.root_fi ? fsm_term_safely.root_fi->name : "unknown");
838 /* The root_fi can't go missing really, but to be safe, log "unknown" in that case. */
839 } else {
840 /* fsm_term_safely is disabled, or this is the root_fi. */
841 LOGPFSMSRC(fi, file, line, "Terminating (cause = %s)\n", osmo_fsm_term_cause_name(cause));
842 }
Harald Welte136e7372016-05-29 10:53:17 +0900843
Philipp Maierd1f57932018-02-14 18:20:07 +0100844 /* graceful exit (optional) */
845 if (fi->fsm->pre_term)
846 fi->fsm->pre_term(fi, cause);
847
Harald Welte65900442018-02-09 09:58:57 +0000848 _osmo_fsm_inst_term_children(fi, OSMO_FSM_TERM_PARENT, NULL,
849 file, line);
850
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100851 /* delete ourselves from the parent */
Neels Hofmeyr3faa0142016-12-18 23:41:41 +0100852 parent = fi->proc.parent;
Philipp Maier23d31612018-01-16 18:50:23 +0100853 if (parent) {
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100854 LOGPFSMSRC(fi, file, line, "Removing from parent %s\n",
855 osmo_fsm_inst_name(parent));
Philipp Maier23d31612018-01-16 18:50:23 +0100856 llist_del(&fi->proc.child);
857 }
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100858
859 /* call destructor / clean-up function */
860 if (fi->fsm->cleanup)
861 fi->fsm->cleanup(fi, cause);
862
Neels Hofmeyr3faa0142016-12-18 23:41:41 +0100863 /* Fetch parent again in case it has changed. */
864 parent = fi->proc.parent;
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +0100865
866 /* Legacy behavior if fsm_term_safely is disabled: free before dispatching parent event. (If fsm_term_safely is
867 * enabled, depth will *always* be > 0 here.) Pivot on depth instead of the enabled flag in case the enabled
868 * flag is toggled in the middle of an FSM term. */
869 if (!fsm_term_safely.depth) {
870 LOGPFSMSRC(fi, file, line, "Freeing instance\n");
871 osmo_fsm_inst_free(fi);
872 }
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100873
874 /* indicate our termination to the parent */
875 if (parent && cause != OSMO_FSM_TERM_PARENT)
876 _osmo_fsm_inst_dispatch(parent, parent_term_event, data,
877 file, line);
Neels Hofmeyr1f9cc012019-03-24 05:56:21 +0100878
879 /* Newer, safe deallocation: free only after the parent_term_event was dispatched, to catch all termination
880 * cascades, and free all FSM instances at once. (If fsm_term_safely is enabled, depth will *always* be > 0
881 * here.) osmo_fsm_inst_free() will do the defer magic depending on the fsm_term_safely.depth. */
882 if (fsm_term_safely.depth) {
883 fsm_term_safely.depth--;
884 osmo_fsm_inst_free(fi);
885 }
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100886}
887
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200888/*! Terminate all child FSM instances of an FSM instance.
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100889 *
890 * Iterate over all children and send them a termination event, with the given
891 * cause. Pass OSMO_FSM_TERM_PARENT to avoid dispatching events from the
892 * terminated child FSMs.
893 *
894 * \param[in] fi FSM instance that should be cleared of child FSMs
895 * \param[in] cause Cause / reason for termination (OSMO_FSM_TERM_PARENT)
896 * \param[in] data Opaque event data to be passed with the parent term events
897 * \param[in] file Calling source file (from osmo_fsm_inst_term_children macro)
898 * \param[in] line Calling source line (from osmo_fsm_inst_term_children macro)
899 */
900void _osmo_fsm_inst_term_children(struct osmo_fsm_inst *fi,
901 enum osmo_fsm_term_cause cause,
902 void *data,
903 const char *file, int line)
904{
905 struct osmo_fsm_inst *first_child, *last_seen_first_child;
906
Neels Hofmeyr06ac9b42016-12-20 12:05:19 +0100907 /* iterate over all children, starting from the beginning every time:
908 * terminating an FSM may emit events that cause other FSMs to also
909 * terminate and remove themselves from this list. */
910 last_seen_first_child = NULL;
911 while (!llist_empty(&fi->proc.children)) {
912 first_child = llist_entry(fi->proc.children.next,
913 typeof(*first_child),
914 proc.child);
915
916 /* paranoia: do not loop forever */
917 if (first_child == last_seen_first_child) {
918 LOGPFSMLSRC(fi, LOGL_ERROR, file, line,
919 "Internal error while terminating child"
920 " FSMs: a child FSM is stuck\n");
921 break;
922 }
923 last_seen_first_child = first_child;
924
Harald Welte136e7372016-05-29 10:53:17 +0900925 /* terminate child */
Neels Hofmeyrc014f602016-12-23 04:26:39 +0100926 _osmo_fsm_inst_term(first_child, cause, data,
Neels Hofmeyr725698a2016-12-14 17:24:54 +0100927 file, line);
Harald Welte136e7372016-05-29 10:53:17 +0900928 }
Harald Welte136e7372016-05-29 10:53:17 +0900929}
930
Neels Hofmeyr5c5c78a2016-12-14 18:35:47 +0100931const struct value_string osmo_fsm_term_cause_names[] = {
Neels Hofmeyr18080962016-12-16 13:43:54 +0100932 OSMO_VALUE_STRING(OSMO_FSM_TERM_PARENT),
933 OSMO_VALUE_STRING(OSMO_FSM_TERM_REQUEST),
934 OSMO_VALUE_STRING(OSMO_FSM_TERM_REGULAR),
935 OSMO_VALUE_STRING(OSMO_FSM_TERM_ERROR),
936 OSMO_VALUE_STRING(OSMO_FSM_TERM_TIMEOUT),
Neels Hofmeyr5c5c78a2016-12-14 18:35:47 +0100937 { 0, NULL }
938};
939
Harald Welte136e7372016-05-29 10:53:17 +0900940/*! @} */