blob: 54819d9574404e52fc87f952c71c58b335d4ccb3 [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;
Pau Espin Pedrol0cbe8f02019-09-17 13:13:52 +020080 /*! Minimum timer value (in this tdef unit), checked if set (not zero). */
81 unsigned long min_val;
82 /*! Maximum timer value (in this tdef unit), checked if set (not zero). */
83 unsigned long max_val;
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +010084};
85
86/*! Iterate an array of struct osmo_tdef, the last item should be fully zero, i.e. "{}".
87 * Example:
88 *
89 * struct osmo_tdef *t;
90 * osmo_tdef_for_each(t, tdefs) {
91 * printf("%lu %s %s\n", t->val, osmo_tdef_unit_name(t->unit), t->desc);
92 * }
93 *
94 * \param[inout] t A struct osmo_tdef *t used for iteration, will point at the current entry inside the loop scope.
95 * \param[in] tdefs Array of struct osmo_tdef to iterate, zero-terminated.
96 */
97#define osmo_tdef_for_each(t, tdefs) \
98 for (t = tdefs; t && (t->T || t->default_val || t->desc); t++)
99
100void osmo_tdefs_reset(struct osmo_tdef *tdefs);
101unsigned long osmo_tdef_get(const struct osmo_tdef *tdefs, int T, enum osmo_tdef_unit as_unit,
Neels Hofmeyr989f01c2019-08-15 02:52:55 +0200102 long val_if_not_present);
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100103struct osmo_tdef *osmo_tdef_get_entry(struct osmo_tdef *tdefs, int T);
Neels Hofmeyr9655ed52019-09-11 01:48:11 +0200104int osmo_tdef_set(struct osmo_tdef *tdefs, int T, unsigned long val, enum osmo_tdef_unit val_unit);
Pau Espin Pedrol0cbe8f02019-09-17 13:13:52 +0200105bool osmo_tdef_val_in_range(struct osmo_tdef *tdef, unsigned long new_val);
106int osmo_tdef_range_str_buf(char *buf, size_t buf_len, struct osmo_tdef *t);
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100107
108/*! Using osmo_tdef for osmo_fsm_inst: array entry for a mapping of state numbers to timeout definitions.
109 * For a usage example, see osmo_tdef_get_state_timeout() and test_tdef_state_timeout() in tdef_test.c. */
110struct osmo_tdef_state_timeout {
Neels Hofmeyr5734bff2019-02-21 02:27:48 +0100111 /*! Timer number to match struct osmo_tdef.T, and to pass to osmo_fsm_inst_state_chg(). Positive values for T
112 * are considered to be 3GPP spec compliant and appear in logging and VTY as "T1234", while negative values are
113 * considered to be Osmocom specific timers, represented in logging and VTY as "X1234". */
Neels Hofmeyr0fd615f2019-01-26 20:36:12 +0100114 int T;
115 /*! If true, call osmo_fsm_inst_state_chg_keep_timer().
116 * If T == 0, keep previous T number, otherwise also set fi->T. */
117 bool keep_timer;
118};
119
120const struct osmo_tdef_state_timeout *osmo_tdef_get_state_timeout(uint32_t state,
121 const struct osmo_tdef_state_timeout *timeouts_array);
122
123/*! Call osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer(), depending on the timeouts_array, tdefs and
124 * default_timeout.
125 *
126 * A T timer configured in sub-second precision is rounded up to the next full second. A timer in unit =
127 * OSMO_TDEF_CUSTOM is applied as if the unit is in seconds (i.e. this macro does not make sense for custom units!).
128 *
129 * See osmo_tdef_get_state_timeout() and osmo_tdef_get().
130 *
131 * If no T timer is defined for the given state (T == 0), invoke the state change without a timeout.
132 *
133 * Should a T number be defined in timeouts_array that is not defined in tdefs, use default_timeout (in seconds). If
134 * default_timeout is negative, a missing T definition in tdefs instead causes a program abort.
135 *
136 * This is best used by wrapping this function call in a macro suitable for a specific FSM implementation, which can
137 * become as short as: my_fsm_state_chg(fi, NEXT_STATE):
138 *
139 * #define my_fsm_state_chg(fi, NEXT_STATE) \
140 * osmo_tdef_fsm_inst_state_chg(fi, NEXT_STATE, my_fsm_timeouts, global_T_defs, 5)
141 *
142 * my_fsm_state_chg(fi, MY_FSM_STATE_1);
143 * // -> No timeout configured, will enter state without timeout.
144 *
145 * my_fsm_state_chg(fi, MY_FSM_STATE_3);
146 * // T423 configured for this state, will look up T423 in tdefs, or use 5 seconds if unset.
147 *
148 * my_fsm_state_chg(fi, MY_FSM_STATE_8);
149 * // keep_timer == true for this state, will invoke osmo_fsm_inst_state_chg_keep_timer().
150 *
151 * \param[inout] fi osmo_fsm_inst to transition to another state.
152 * \param[in] state State number to transition to.
153 * \param[in] timeouts_array Array of struct osmo_tdef_state_timeout[32] to look up state in.
154 * \param[in] tdefs Array of struct osmo_tdef (last entry zero initialized) to look up T in.
155 * \param[in] default_timeout If a T is set in timeouts_array, but no timeout value is configured for T, then use this
156 * default timeout value as fallback, or pass -1 to abort the program.
157 * \return Return value from osmo_fsm_inst_state_chg() or osmo_fsm_inst_state_chg_keep_timer().
158 */
159#define osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout) \
160 _osmo_tdef_fsm_inst_state_chg(fi, state, timeouts_array, tdefs, default_timeout, \
161 __FILE__, __LINE__)
162int _osmo_tdef_fsm_inst_state_chg(struct osmo_fsm_inst *fi, uint32_t state,
163 const struct osmo_tdef_state_timeout *timeouts_array,
164 const struct osmo_tdef *tdefs, unsigned long default_timeout,
165 const char *file, int line);
166
167/*! Manage timer definitions in named groups.
168 * This should be defined as an array with the final element kept fully zero-initialized,
169 * to be compatible with osmo_tdef_vty* API. There must not be any tdefs == NULL entries except on the final
170 * zero-initialized entry. */
171struct osmo_tdef_group {
172 const char *name;
173 const char *desc;
174 struct osmo_tdef *tdefs;
175};
176
177/*! Iterate an array of struct osmo_tdef_group, the last item should be fully zero, i.e. "{}".
178 * \param[inout] g A struct osmo_tdef_group *g used for iteration, will point at the current entry inside the loop scope.
179 * \param[in] tdefs Array of struct osmo_tdef_group to iterate, zero-terminated.
180 */
181#define osmo_tdef_groups_for_each(g, tdef_groups) \
182 for (g = tdef_groups; g && g->tdefs; g++)
183
184/*! @} */