blob: 81556883f6f5f81aa05cb6f35169b401599178da [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);
Neels Hofmeyr9655ed52019-09-11 01:48:11 +0200100int osmo_tdef_set(struct osmo_tdef *tdefs, int T, unsigned long val, enum osmo_tdef_unit val_unit);
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100101
102/*! Using osmo_tdef for osmo_fsm_inst: array entry for a mapping of state numbers to timeout definitions.
103 * For a usage example, see osmo_tdef_get_state_timeout() and test_tdef_state_timeout() in tdef_test.c. */
104struct osmo_tdef_state_timeout {
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100105 /*! Timer number to match struct osmo_tdef.T, and to pass to osmo_fsm_inst_state_chg(). Positive values for T
106 * are considered to be 3GPP spec compliant and appear in logging and VTY as "T1234", while negative values are
107 * considered to be Osmocom specific timers, represented in logging and VTY as "X1234". */
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100108 int T;
109 /*! If true, call osmo_fsm_inst_state_chg_keep_timer().
110 * If T == 0, keep previous T number, otherwise also set fi->T. */
111 bool keep_timer;
112};
113
114const struct osmo_tdef_state_timeout *osmo_tdef_get_state_timeout(uint32_t state,
115 const struct osmo_tdef_state_timeout *timeouts_array);
116
117/*! Call osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer(), depending on the timeouts_array, tdefs and
118 * default_timeout.
119 *
120 * A T timer configured in sub-second precision is rounded up to the next full second. A timer in unit =
121 * OSMO_TDEF_CUSTOM is applied as if the unit is in seconds (i.e. this macro does not make sense for custom units!).
122 *
123 * See osmo_tdef_get_state_timeout() and osmo_tdef_get().
124 *
125 * If no T timer is defined for the given state (T == 0), invoke the state change without a timeout.
126 *
127 * Should a T number be defined in timeouts_array that is not defined in tdefs, use default_timeout (in seconds). If
128 * default_timeout is negative, a missing T definition in tdefs instead causes a program abort.
129 *
130 * This is best used by wrapping this function call in a macro suitable for a specific FSM implementation, which can
131 * become as short as: my_fsm_state_chg(fi, NEXT_STATE):
132 *
133 * #define my_fsm_state_chg(fi, NEXT_STATE) \
134 * osmo_tdef_fsm_inst_state_chg(fi, NEXT_STATE, my_fsm_timeouts, global_T_defs, 5)
135 *
136 * my_fsm_state_chg(fi, MY_FSM_STATE_1);
137 * // -> No timeout configured, will enter state without timeout.
138 *
139 * my_fsm_state_chg(fi, MY_FSM_STATE_3);
140 * // T423 configured for this state, will look up T423 in tdefs, or use 5 seconds if unset.
141 *
142 * my_fsm_state_chg(fi, MY_FSM_STATE_8);
143 * // keep_timer == true for this state, will invoke osmo_fsm_inst_state_chg_keep_timer().
144 *
145 * \param[inout] fi osmo_fsm_inst to transition to another state.
146 * \param[in] state State number to transition to.
147 * \param[in] timeouts_array Array of struct osmo_tdef_state_timeout[32] to look up state in.
148 * \param[in] tdefs Array of struct osmo_tdef (last entry zero initialized) to look up T in.
149 * \param[in] default_timeout If a T is set in timeouts_array, but no timeout value is configured for T, then use this
150 * default timeout value as fallback, or pass -1 to abort the program.
151 * \return Return value from osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer().
152 */
153#define osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout) \
154 _osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout, \
155 __FILE__, __LINE__)
156int _osmo_tdef_fsm_inst_state_chg(struct osmo_fsm_inst *fi, uint32_t state,
157 const struct osmo_tdef_state_timeout *timeouts_array,
158 const struct osmo_tdef *tdefs, unsigned long default_timeout,
159 const char *file, int line);
160
161/*! Manage timer definitions in named groups.
162 * This should be defined as an array with the final element kept fully zero-initialized,
163 * to be compatible with osmo_tdef_vty* API. There must not be any tdefs == NULL entries except on the final
164 * zero-initialized entry. */
165struct osmo_tdef_group {
166 const char *name;
167 const char *desc;
168 struct osmo_tdef *tdefs;
169};
170
171/*! Iterate an array of struct osmo_tdef_group, the last item should be fully zero, i.e. "{}".
172 * \param[inout] g A struct osmo_tdef_group *g used for iteration, will point at the current entry inside the loop scope.
173 * \param[in] tdefs Array of struct osmo_tdef_group to iterate, zero-terminated.
174 */
175#define osmo_tdef_groups_for_each(g, tdef_groups) \
176 for (g = tdef_groups; g && g->tdefs; g++)
177
178/*! @} */