blob: 566f5dd3331469254f7a01b5799c2ebb31e3404b [file] [log] [blame]
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +01001/*! \file tdef.h
2 * API to define Tnnn timers globally and use for FSM state changes.
3 */
4/*
5 * (C) 2018-2019 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
6 *
7 * All Rights Reserved
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 *
11 * Author: Neels Hofmeyr <neels@hofmeyr.de>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU Affero General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Affero General Public License for more details.
22 *
23 * You should have received a copy of the GNU Affero General Public License
24 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 */
26#pragma once
27
28#include <stdint.h>
29#include <osmocom/core/utils.h>
30
31struct osmo_fsm_inst;
32
33/*! \defgroup Tdef Tnnn timer configuration
34 * @{
35 * \file tdef.h
36 */
37
38enum osmo_tdef_unit {
39 OSMO_TDEF_S = 0, /*!< most T are in seconds, keep 0 as default. */
40 OSMO_TDEF_MS, /*!< milliseconds */
41 OSMO_TDEF_M, /*!< minutes */
42 OSMO_TDEF_CUSTOM, /*!< unspecified unit, explained in osmo_tdef.desc. */
43};
44
45extern const struct value_string osmo_tdef_unit_names[];
46/*! \return enum osmo_tdef_unit value as human readable unit letter, or "custom-unit". */
47static inline const char *osmo_tdef_unit_name(enum osmo_tdef_unit val)
48{ return get_value_string(osmo_tdef_unit_names, val); }
49
50/*! Define a GSM timer of the form Tnnn, with unit, default value and doc string.
51 * Typically used as an array with the last entry being left zero-initialized, e.g.:
52 *
53 * struct osmo_tdef tdefs[] = {
54 * { .T=10, .default_val=6, .desc="RR Assignment" },
55 * { .T=101, .default_val=10, .desc="inter-BSC Handover MT, HO Request to HO Accept" },
56 * { .T=3101, .default_val=3, .desc="RR Immediate Assignment" },
Neels Hofmeyr5734bff2019-02-21 02:27:48 +010057 * { .T=-23, .default_val=42, .desc="internal X23 timeout (contrived example)" },
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +010058 * {}
59 * };
60 *
61 * Program initialization should call osmo_tdefs_reset() so that all timers return the default_val, until e.g. the VTY
62 * configuration sets user-defined values (see osmo_tdef_vty_init()).
63 */
64struct osmo_tdef {
Neels Hofmeyr5734bff2019-02-21 02:27:48 +010065 /*! T1234 or X1234 number, corresponding to struct osmo_fsm_inst::T.
66 * Positive values for T are considered to be 3GPP spec compliant and appear in logging and VTY as "T1234",
67 * while negative values are considered to be Osmocom specific timers, represented in logging and VTY as
68 * "X1234". Be aware that osmo_tdef_fsm_inst_state_chg() interprets T == 0 as "state without timeout". */
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +010069 const int T;
70 /*! Timeout duration (according to unit), default value; type corresponds to osmo_fsm_inst_state_chg()'s
71 * timeout_secs argument. Note that osmo_fsm_inst_state_chg() clamps the range. */
72 const unsigned long default_val;
73 const enum osmo_tdef_unit unit;
74 /*! Human readable description. For unit == OSMO_TDEF_CUSTOM, this should include an explanation of the value's
75 * unit. Best keep this a short one-liner (e.g. for VTY output). */
76 const char *desc;
77 /*! Currently active timeout value, e.g. set by user config. This is the only mutable member: a user may
78 * configure the timeout value, but neither unit nor any other field. */
79 unsigned long val;
80};
81
82/*! Iterate an array of struct osmo_tdef, the last item should be fully zero, i.e. "{}".
83 * Example:
84 *
85 * struct osmo_tdef *t;
86 * osmo_tdef_for_each(t, tdefs) {
87 * printf("%lu %s %s\n", t->val, osmo_tdef_unit_name(t->unit), t->desc);
88 * }
89 *
90 * \param[inout] t A struct osmo_tdef *t used for iteration, will point at the current entry inside the loop scope.
91 * \param[in] tdefs Array of struct osmo_tdef to iterate, zero-terminated.
92 */
93#define osmo_tdef_for_each(t, tdefs) \
94 for (t = tdefs; t && (t->T || t->default_val || t->desc); t++)
95
96void osmo_tdefs_reset(struct osmo_tdef *tdefs);
97unsigned long osmo_tdef_get(const struct osmo_tdef *tdefs, int T, enum osmo_tdef_unit as_unit,
Neels Hofmeyr989f01c2019-08-15 02:52:55 +020098 long val_if_not_present);
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +010099struct osmo_tdef *osmo_tdef_get_entry(struct osmo_tdef *tdefs, int T);
100
101/*! Using osmo_tdef for osmo_fsm_inst: array entry for a mapping of state numbers to timeout definitions.
102 * For a usage example, see osmo_tdef_get_state_timeout() and test_tdef_state_timeout() in tdef_test.c. */
103struct osmo_tdef_state_timeout {
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100104 /*! Timer number to match struct osmo_tdef.T, and to pass to osmo_fsm_inst_state_chg(). Positive values for T
105 * are considered to be 3GPP spec compliant and appear in logging and VTY as "T1234", while negative values are
106 * considered to be Osmocom specific timers, represented in logging and VTY as "X1234". */
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100107 int T;
108 /*! If true, call osmo_fsm_inst_state_chg_keep_timer().
109 * If T == 0, keep previous T number, otherwise also set fi->T. */
110 bool keep_timer;
111};
112
113const struct osmo_tdef_state_timeout *osmo_tdef_get_state_timeout(uint32_t state,
114 const struct osmo_tdef_state_timeout *timeouts_array);
115
116/*! Call osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer(), depending on the timeouts_array, tdefs and
117 * default_timeout.
118 *
119 * A T timer configured in sub-second precision is rounded up to the next full second. A timer in unit =
120 * OSMO_TDEF_CUSTOM is applied as if the unit is in seconds (i.e. this macro does not make sense for custom units!).
121 *
122 * See osmo_tdef_get_state_timeout() and osmo_tdef_get().
123 *
124 * If no T timer is defined for the given state (T == 0), invoke the state change without a timeout.
125 *
126 * Should a T number be defined in timeouts_array that is not defined in tdefs, use default_timeout (in seconds). If
127 * default_timeout is negative, a missing T definition in tdefs instead causes a program abort.
128 *
129 * This is best used by wrapping this function call in a macro suitable for a specific FSM implementation, which can
130 * become as short as: my_fsm_state_chg(fi, NEXT_STATE):
131 *
132 * #define my_fsm_state_chg(fi, NEXT_STATE) \
133 * osmo_tdef_fsm_inst_state_chg(fi, NEXT_STATE, my_fsm_timeouts, global_T_defs, 5)
134 *
135 * my_fsm_state_chg(fi, MY_FSM_STATE_1);
136 * // -> No timeout configured, will enter state without timeout.
137 *
138 * my_fsm_state_chg(fi, MY_FSM_STATE_3);
139 * // T423 configured for this state, will look up T423 in tdefs, or use 5 seconds if unset.
140 *
141 * my_fsm_state_chg(fi, MY_FSM_STATE_8);
142 * // keep_timer == true for this state, will invoke osmo_fsm_inst_state_chg_keep_timer().
143 *
144 * \param[inout] fi osmo_fsm_inst to transition to another state.
145 * \param[in] state State number to transition to.
146 * \param[in] timeouts_array Array of struct osmo_tdef_state_timeout[32] to look up state in.
147 * \param[in] tdefs Array of struct osmo_tdef (last entry zero initialized) to look up T in.
148 * \param[in] default_timeout If a T is set in timeouts_array, but no timeout value is configured for T, then use this
149 * default timeout value as fallback, or pass -1 to abort the program.
150 * \return Return value from osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer().
151 */
152#define osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout) \
153 _osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout, \
154 __FILE__, __LINE__)
155int _osmo_tdef_fsm_inst_state_chg(struct osmo_fsm_inst *fi, uint32_t state,
156 const struct osmo_tdef_state_timeout *timeouts_array,
157 const struct osmo_tdef *tdefs, unsigned long default_timeout,
158 const char *file, int line);
159
160/*! Manage timer definitions in named groups.
161 * This should be defined as an array with the final element kept fully zero-initialized,
162 * to be compatible with osmo_tdef_vty* API. There must not be any tdefs == NULL entries except on the final
163 * zero-initialized entry. */
164struct osmo_tdef_group {
165 const char *name;
166 const char *desc;
167 struct osmo_tdef *tdefs;
168};
169
170/*! Iterate an array of struct osmo_tdef_group, the last item should be fully zero, i.e. "{}".
171 * \param[inout] g A struct osmo_tdef_group *g used for iteration, will point at the current entry inside the loop scope.
172 * \param[in] tdefs Array of struct osmo_tdef_group to iterate, zero-terminated.
173 */
174#define osmo_tdef_groups_for_each(g, tdef_groups) \
175 for (g = tdef_groups; g && g->tdefs; g++)
176
177/*! @} */