blob: 8fedae269c87efac22abb4dcb07bd4f1c601524e [file] [log] [blame]
Harald Welte136e7372016-05-29 10:53:17 +09001/* Osmocom generic Finite State Machine implementation
2 *
3 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 * MA 02110-1301, USA.
19 */
20
21#include <errno.h>
22#include <stdbool.h>
23
24#include <osmocom/core/fsm.h>
25#include <osmocom/core/talloc.h>
26#include <osmocom/core/logging.h>
27#include <osmocom/core/utils.h>
28
29/*! \addtogroup fsm
30 * @{
31 */
32
33/*! \file fsm.c
34 * \brief Finite State Machine abstraction
35 *
36 * This is a generic C-language abstraction for implementing finite
37 * state machines within the Osmocom framework. It is intended to
38 * replace existing hand-coded or even only implicitly existing FSMs
39 * all over the existing code base.
40 *
41 * An libosmocore FSM is described by its \ref osmo_fsm description,
42 * which in turn refers to an array of \ref osmo_fsm_state descriptor,
43 * each describing a single state in the FSM.
44 *
45 * The general idea is that all actions performed within one state are
46 * located at one position in the code (the state's action function),
47 * as opposed to the 'message-centric' view of e.g. the existing
48 * state machines of the LAPD(m) coe, where there is one message for
49 * eahc possible event (primitive), and the function then needs to
50 * concern itself on how to handle that event over all possible states.
51 *
52 * For each state, there is a bit-mask of permitted input events for
53 * this state, as well as a bit-mask of permitted new output states to
54 * which the state can change. Furthermore, there is a function
55 * pointer implementing the actual handling of the input events
56 * occurring whilst in thta state.
57 *
58 * Furthermore, each state offers a function pointer that can be
59 * executed just before leaving a state, and another one just after
60 * entering a state.
61 *
62 * When transitioning into a new state, an optional timer number and
63 * time-out can be passed along. The timer is started just after
64 * entering the new state, and will call the \ref osmo_fsm timer_cb
65 * function once it expires. This is intended to be used in telecom
66 * state machines where a given timer (identified by a certain number)
67 * is started to terminate the fsm or terminate the fsm once expected
68 * events are not happening before timeout expiration.
69 *
70 * As there can often be many concurrent FSMs of one given class, we
71 * introduce the concept of \ref osmo_fsm_inst, i.e. an FSM instance.
72 * The instance keeps the actual state, while the \ref osmo_fsm
73 * descriptor contains the static/const descriptor of the FSM's states
74 * and possible transitions.
75 *
76 * osmo_fsm are integrated with the libosmocore logging system. The
77 * logging sub-system is determined by the FSM descriptor, as we assume
78 * one FSM (let's say one related to a location update procedure) is
79 * inevitably always tied to a sub-system. The logging level however
80 * is configurable for each FSM instance, to ensure that e.g. DEBUG
81 * logging can be used for the LU procedure of one subscriber, while
82 * NOTICE level is used for all other subscribers.
83 *
84 * In order to attach private state to the \ref osmo_fsm_inst, it
85 * offers an opaque priv pointer.
86 *
87 */
88
89static LLIST_HEAD(g_fsms);
90static bool fsm_log_addr = true;
91
92/*! \brief specify if FSM instance addresses should be logged or not
93 *
94 * By default, the FSM name includes the pointer address of the \ref
95 * osmo_fsm_inst. This behaviro can be disabled (and re-enabled)
96 * using this function.
97 *
98 * \param[in] log_addr Indicate if FSM instance address shall be logged
99 */
100void osmo_fsm_log_addr(bool log_addr)
101{
102 fsm_log_addr = false;
103}
104
105/*! \brief register a FSM with the core
106 *
107 * A FSM descriptor needs to be registered with the core before any
108 * instances can be created for it.
109 *
110 * \param[in] fsm Descriptor of Finite State Machine to be registered
111 * \returns 0 on success; negative on error
112 */
113int osmo_fsm_register(struct osmo_fsm *fsm)
114{
115 /* FIXME:check for duplicate name? */
116 llist_add_tail(&fsm->list, &g_fsms);
117 INIT_LLIST_HEAD(&fsm->instances);
118
119 return 0;
120}
121
122/*! \brief unregister a FSM from the core
123 *
124 * Once the FSM descriptor is unregistered, active instances can still
125 * use it, but no new instances may be created for it.
126 *
127 * \param[in] fsm Descriptor of Finite State Machine to be removed
128 */
129void osmo_fsm_unregister(struct osmo_fsm *fsm)
130{
131 llist_del(&fsm->list);
132}
133
134/* small wrapper function around timer expiration (for logging) */
135static void fsm_tmr_cb(void *data)
136{
137 struct osmo_fsm_inst *fi = data;
138 struct osmo_fsm *fsm = fi->fsm;
Harald Weltef627c0f2016-06-18 10:36:25 +0200139 uint32_t T = fi->T;
Harald Welte136e7372016-05-29 10:53:17 +0900140
141 LOGPFSM(fi, "Timeout of T%u\n", fi->T);
142
Harald Weltef627c0f2016-06-18 10:36:25 +0200143 if (fsm->timer_cb) {
144 int rc = fsm->timer_cb(fi);
145 if (rc != 1)
146 return;
147 LOGPFSM(fi, "timer_cb requested termination\n");
148 } else
149 LOGPFSM(fi, "No timer_cb, automatic termination\n");
150
151 /* if timer_cb returns 1 or there is no timer_cb */
152 osmo_fsm_inst_term(fi, OSMO_FSM_TERM_TIMEOUT, &T);
Harald Welte136e7372016-05-29 10:53:17 +0900153}
154
155/*! \brief allocate a new instance of a specified FSM
156 * \param[in] fsm Descriptor of the FSM
157 * \param[in] ctx talloc context from which to allocate memory
158 * \param[in] priv private data reference store in fsm instance
159 * \param[in] log_level The log level for events of this FSM
160 * \returns newly-allocated, initialized and registered FSM instance
161 */
162struct osmo_fsm_inst *osmo_fsm_inst_alloc(struct osmo_fsm *fsm, void *ctx, void *priv,
163 int log_level, const char *id)
164{
165 struct osmo_fsm_inst *fi = talloc_zero(ctx, struct osmo_fsm_inst);
166
167 fi->fsm = fsm;
168 fi->priv = priv;
169 fi->log_level = log_level;
170 fi->timer.data = fi;
171 fi->timer.cb = fsm_tmr_cb;
172 fi->id = id;
173
174 if (!fsm_log_addr) {
175 if (id)
176 fi->name = talloc_asprintf(fi, "%s(%s)", fsm->name, id);
177 else
178 fi->name = talloc_asprintf(fi, "%s", fsm->name);
179 } else {
180 if (id)
181 fi->name = talloc_asprintf(fi, "%s(%s)[%p]", fsm->name,
182 id, fi);
183 else
184 fi->name = talloc_asprintf(fi, "%s[%p]", fsm->name, fi);
185 }
186
187 INIT_LLIST_HEAD(&fi->proc.children);
188 INIT_LLIST_HEAD(&fi->proc.child);
189 llist_add(&fi->list, &fsm->instances);
190
191 LOGPFSM(fi, "Allocated\n");
192
193 return fi;
194}
195
196/*! \brief allocate a new instance of a specified FSM as child of
197 * other FSM instance
198 *
199 * This is like \ref osmo_fsm_inst_alloc but using the parent FSM as
200 * talloc context, and inheriting the log level of the parent.
201 *
202 * \param[in] fsm Descriptor of the to-be-allocated FSM
203 * \param[in] parent Parent FSM instance
204 * \param[in] parent_term_event Event to be sent to parent when terminating
205 * \returns newly-allocated, initialized and registered FSM instance
206 */
207struct osmo_fsm_inst *osmo_fsm_inst_alloc_child(struct osmo_fsm *fsm,
208 struct osmo_fsm_inst *parent,
209 uint32_t parent_term_event)
210{
211 struct osmo_fsm_inst *fi;
212
213 fi = osmo_fsm_inst_alloc(fsm, parent, NULL, parent->log_level,
214 parent->id);
215 if (!fi) {
216 /* indicate immediate termination to caller */
217 osmo_fsm_inst_dispatch(parent, parent_term_event, NULL);
218 return NULL;
219 }
220
221 LOGPFSM(fi, "is child of %s\n", osmo_fsm_inst_name(parent));
222
223 fi->proc.parent = parent;
224 fi->proc.parent_term_event = parent_term_event;
225 llist_add(&fi->proc.child, &parent->proc.children);
226
227 return fi;
228}
229
230/*! \brief delete a given instance of a FSM
231 * \param[in] fsm The FSM to be un-registered and deleted
232 */
233void osmo_fsm_inst_free(struct osmo_fsm_inst *fi)
234{
235 osmo_timer_del(&fi->timer);
236 llist_del(&fi->list);
237 talloc_free(fi);
238}
239
240/*! \brief get human-readable name of FSM event
241 * \param[in] fsm FSM descriptor of event
242 * \param[in] event Event integer value
243 * \returns string rendering of the event
244 */
245const char *osmo_fsm_event_name(struct osmo_fsm *fsm, uint32_t event)
246{
247 static char buf[32];
248 if (!fsm->event_names) {
249 snprintf(buf, sizeof(buf), "%u", event);
250 return buf;
251 } else
252 return get_value_string(fsm->event_names, event);
253}
254
255/*! \brief get human-readable name of FSM instance
256 * \param[in] fi FSM instance
257 * \returns string rendering of the FSM identity
258 */
259const char *osmo_fsm_inst_name(struct osmo_fsm_inst *fi)
260{
261 if (!fi)
262 return "NULL";
263
264 if (fi->name)
265 return fi->name;
266 else
267 return fi->fsm->name;
268}
269
270/*! \brief get human-readable name of FSM instance
271 * \param[in] fsm FSM descriptor
272 * \param[in] state FSM state number
273 * \returns string rendering of the FSM state
274 */
275const char *osmo_fsm_state_name(struct osmo_fsm *fsm, uint32_t state)
276{
277 static char buf[32];
278 if (state >= fsm->num_states) {
279 snprintf(buf, sizeof(buf), "unknown %u", state);
280 return buf;
281 } else
282 return fsm->states[state].name;
283}
284
285/*! \brief perform a state change of the given FSM instance
286 *
287 * All changes to the FSM instance state must be made via this
288 * function. It verifies that the existing state actually permits a
289 * transiiton to new_state.
290 *
291 * timeout_secs and T are optional parameters, and only have any effect
292 * if timeout_secs is not 0. If the timeout function is used, then the
293 * new_state is entered, and the FSM instances timer is set to expire
294 * in timeout_secs functions. At that time, the FSM's timer_cb
295 * function will be called for handling of the timeout by the user.
296 *
297 * \param[in] fi FSM instance whose state is to change
298 * \param[in] new_state The new state into which we should change
299 * \param[in] timeout_secs Timeout in seconds (if !=0)
300 * \param[in] T Timer number (if \ref timeout_secs != 0)
301 * \returns 0 on success; negative on error
302 */
303int osmo_fsm_inst_state_chg(struct osmo_fsm_inst *fi, uint32_t new_state,
304 unsigned long timeout_secs, int T)
305{
306 struct osmo_fsm *fsm = fi->fsm;
307 uint32_t old_state = fi->state;
308 const struct osmo_fsm_state *st = &fsm->states[fi->state];
309
310 /* validate if new_state is a valid state */
311 if (!(st->out_state_mask & (1 << new_state))) {
312 LOGP(fsm->log_subsys, LOGL_ERROR, "%s(%s): transition to "
313 "state %s not permitted!\n",
314 osmo_fsm_inst_name(fi),
315 osmo_fsm_state_name(fsm, fi->state),
316 osmo_fsm_state_name(fsm, new_state));
317 return -EPERM;
318 }
319
320 if (st->onleave)
321 st->onleave(fi, new_state);
322
323 LOGPFSM(fi, "state_chg to %s\n", osmo_fsm_state_name(fsm, new_state));
324 fi->state = new_state;
325
326 if (st->onenter)
327 st->onenter(fi, old_state);
328
329 if (timeout_secs) {
Harald Weltef627c0f2016-06-18 10:36:25 +0200330 fi->T = T;
331 osmo_timer_schedule(&fi->timer, timeout_secs, 0);
Harald Welte136e7372016-05-29 10:53:17 +0900332 }
333
334 return 0;
335}
336
337/*! \brief dispatch an event to an osmocom finite state machine instance
338 *
339 * Any incoming events to \ref osmo_fsm instances must be dispatched to
340 * them via this function. It verifies, whether the event is permitted
341 * based on the current state of the FSM. If not, -1 is returned.
342 *
343 * \param[in] fi FSM instance
344 * \param[in] event Event to send to FSM instance
345 * \param[in] data Data to pass along with the event
346 * \returns 0 in case of success; negative on error
347 */
348int osmo_fsm_inst_dispatch(struct osmo_fsm_inst *fi, uint32_t event, void *data)
349{
350 struct osmo_fsm *fsm;
351 const struct osmo_fsm_state *fs;
352
353 if (!fi) {
354 LOGP(DLGLOBAL, LOGL_ERROR, "Trying to dispatch event %u to "
355 "non-existing FSM Instance!\n", event);
356 osmo_log_backtrace(DLGLOBAL, LOGL_ERROR);
357 return -ENODEV;
358 }
359
360 fsm = fi->fsm;
361 OSMO_ASSERT(fi->state < fsm->num_states);
362 fs = &fi->fsm->states[fi->state];
363
364 LOGPFSM(fi, "Received Event %s\n", osmo_fsm_event_name(fsm, event));
365
366 if (((1 << event) & fsm->allstate_event_mask) && fsm->allstate_action) {
367 fsm->allstate_action(fi, event, data);
368 return 0;
369 }
370
371 if (!((1 << event) & fs->in_event_mask)) {
372 LOGP(fsm->log_subsys, LOGL_ERROR, "%s(%s): Event %s not "
373 "permitted\n", osmo_fsm_inst_name(fi),
374 osmo_fsm_state_name(fsm, fi->state),
375 osmo_fsm_event_name(fsm, event));
376 return -1;
377 }
378 fs->action(fi, event, data);
379
380 return 0;
381}
382
383/*! \brief Terminate FSM instance with given cause
384 *
385 * This safely terminates the given FSM instance by first iterating
386 * over all children and sending them a termination event. Next, it
387 * calls the FSM descriptors cleanup function (if any), followed by
388 * releasing any memory associated with the FSM instance.
389 *
390 * Finally, the parent FSM instance (if any) is notified using the
391 * parent termination event configured at time of FSM instance start.
392 *
393 * \param[in] fi FSM instance to be terminated
394 * \param[in] cause Cause / reason for termination
395 * \param[in] data Opaqueevent data to be passed to parent
396 */
397void osmo_fsm_inst_term(struct osmo_fsm_inst *fi,
398 enum osmo_fsm_term_cause cause, void *data)
399{
400 struct osmo_fsm_inst *child, *child2;
401 struct osmo_fsm_inst *parent = fi->proc.parent;
402 uint32_t parent_term_event = fi->proc.parent_term_event;
403
404 LOGPFSM(fi, "Terminating (cause = %u)\n", cause);
405
406 /* iterate over all children */
407 llist_for_each_entry_safe(child, child2, &fi->proc.children, proc.child) {
408 /* terminate child */
409 osmo_fsm_inst_term(child, OSMO_FSM_TERM_PARENT, NULL);
410 }
411
412 /* delete ourselves from the parent */
413 llist_del(&fi->proc.child);
414
415 /* call destructor / clean-up function */
416 if (fi->fsm->cleanup)
417 fi->fsm->cleanup(fi, cause);
418
419 LOGPFSM(fi, "Release\n");
420 osmo_fsm_inst_free(fi);
421
422 /* indicate our termination to the parent */
423 if (parent && cause != OSMO_FSM_TERM_PARENT)
424 osmo_fsm_inst_dispatch(parent, parent_term_event, data);
425}
426
427/*! @} */