blob: 85c5fd6285a4b83953bed1f14735f6aa94187004 [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001# osmo_gsm_tester: validate dict structures
2#
3# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Neels Hofmeyr <neels@hofmeyr.de>
6#
7# This program is free software: you can redistribute it and/or modify
Harald Welte27205342017-06-03 09:51:45 +02008# it under the terms of the GNU General Public License as
Neels Hofmeyr3531a192017-03-28 14:30:28 +02009# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte27205342017-06-03 09:51:45 +020015# GNU General Public License for more details.
Neels Hofmeyr3531a192017-03-28 14:30:28 +020016#
Harald Welte27205342017-06-03 09:51:45 +020017# You should have received a copy of the GNU General Public License
Neels Hofmeyr3531a192017-03-28 14:30:28 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import re
21
22from . import log
Neels Hofmeyr0af893c2017-12-14 15:18:05 +010023from .util import is_dict, is_list, str2bool, ENUM_OSMO_AUTH_ALGO
Neels Hofmeyr3531a192017-03-28 14:30:28 +020024
25KEY_RE = re.compile('[a-zA-Z][a-zA-Z0-9_]*')
26IPV4_RE = re.compile('([0-9]{1,3}.){3}[0-9]{1,3}')
27HWADDR_RE = re.compile('([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}')
28IMSI_RE = re.compile('[0-9]{6,15}')
29KI_RE = re.compile('[0-9a-fA-F]{32}')
30MSISDN_RE = re.compile('[0-9]{1,15}')
31
32def match_re(name, regex, val):
33 while True:
34 if not isinstance(val, str):
35 break;
36 if not regex.fullmatch(val):
37 break;
38 return
39 raise ValueError('Invalid %s: %r' % (name, val))
40
41def band(val):
Pau Espin Pedrol05a838e2018-03-27 19:15:41 +020042 if val in ('GSM-900', 'GSM-1800', 'GSM-1900'):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020043 return
44 raise ValueError('Unknown GSM band: %r' % val)
45
46def ipv4(val):
47 match_re('IPv4 address', IPV4_RE, val)
48 els = [int(el) for el in val.split('.')]
49 if not all([el >= 0 and el <= 255 for el in els]):
50 raise ValueError('Invalid IPv4 address: %r' % val)
51
52def hwaddr(val):
53 match_re('hardware address', HWADDR_RE, val)
54
55def imsi(val):
56 match_re('IMSI', IMSI_RE, val)
57
58def ki(val):
59 match_re('KI', KI_RE, val)
60
61def msisdn(val):
62 match_re('MSISDN', MSISDN_RE, val)
63
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +020064def auth_algo(val):
Neels Hofmeyr0af893c2017-12-14 15:18:05 +010065 if val not in ENUM_OSMO_AUTH_ALGO:
66 raise ValueError('Unknown Authentication Algorithm: %r' % val)
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +020067
Pau Espin Pedrolfa9a6d32017-09-12 15:13:21 +020068def uint(val):
69 n = int(val)
70 if n < 0:
71 raise ValueError('Positive value expected instead of %d' % n)
72
Pau Espin Pedrol8a3a7b52017-11-28 15:50:02 +010073def uint8(val):
74 n = int(val)
75 if n < 0:
76 raise ValueError('Positive value expected instead of %d' % n)
77 if n > 255: # 2^8 - 1
78 raise ValueError('Value %d too big, max value is 255' % n)
79
Pau Espin Pedrol5e0c2512017-11-06 18:40:23 +010080def uint16(val):
81 n = int(val)
82 if n < 0:
83 raise ValueError('Positive value expected instead of %d' % n)
84 if n > 65535: # 2^16 - 1
85 raise ValueError('Value %d too big, max value is 65535' % n)
86
Pau Espin Pedrolead79ac2017-09-12 15:19:18 +020087def times(val):
88 n = int(val)
89 if n < 1:
90 raise ValueError('Positive value >0 expected instead of %d' % n)
91
Pau Espin Pedrol57497a62017-08-28 14:21:15 +020092def cipher(val):
93 if val in ('a5_0', 'a5_1', 'a5_2', 'a5_3', 'a5_4', 'a5_5', 'a5_6', 'a5_7'):
94 return
95 raise ValueError('Unknown Cipher value: %r' % val)
96
Pau Espin Pedrolac18fd32017-08-31 18:49:47 +020097def modem_feature(val):
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +010098 if val in ('sms', 'gprs', 'voice', 'ussd', 'sim'):
Pau Espin Pedrolac18fd32017-08-31 18:49:47 +020099 return
100 raise ValueError('Unknown Modem Feature: %r' % val)
101
Pau Espin Pedrolc9b63762018-05-07 01:57:01 +0200102def phy_channel_config(val):
103 if val in ('CCCH', 'CCCH+SDCCH4', 'TCH/F', 'TCH/H', 'SDCCH8', 'PDCH',
104 'TCH/F_PDCH', 'CCCH+SDCCH4+CBCH', 'SDCCH8+CBCH','TCH/F_TCH/H_PDCH'):
105 return
106 raise ValueError('Unknown Physical channel config: %r' % val)
107
Pau Espin Pedrol722e94e2018-08-22 11:01:32 +0200108def channel_allocator(val):
109 if val in ('ascending', 'descending'):
110 return
111 raise ValueError('Unknown Channel Allocator Policy %r' % val)
112
Pau Espin Pedrol4f23ab52018-10-29 11:30:00 +0100113def gprs_mode(val):
114 if val in ('none', 'gprs', 'egprs'):
115 return
116 raise ValueError('Unknown GPRS mode %r' % val)
117
Pau Espin Pedrol5dc24592018-08-27 12:53:41 +0200118def codec(val):
119 if val in ('hr1', 'hr2', 'hr3', 'fr1', 'fr2', 'fr3'):
120 return
121 raise ValueError('Unknown Codec value: %r' % val)
122
Pau Espin Pedrol0d455042018-08-27 17:07:41 +0200123def osmo_trx_clock_ref(val):
124 if val in ('internal', 'external', 'gspdo'):
125 return
126 raise ValueError('Unknown OsmoTRX clock reference value: %r' % val)
127
Pau Espin Pedrolb6937712020-02-27 18:02:20 +0100128def lte_transmission_mode(val):
129 n = int(val)
130 if n <= 4:
131 return
132 raise ValueError('LTE Transmission Mode %d not in expected range' % n)
133
134def lte_rlc_drb_mode(val):
135 if val.upper() in ('UM', 'AM'):
136 return
137 raise ValueError('Unknown LTE RLC DRB Mode value: %r' % val)
138
Andre Puschmann2dcc4312020-03-28 15:34:00 +0100139def duration(val):
140 if val.isdecimal() or val.endswith('m') or val.endswith('h'):
141 return
142 raise ValueError('Invalid duration value: %r' % val)
143
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200144INT = 'int'
145STR = 'str'
Pau Espin Pedrolfa9a6d32017-09-12 15:13:21 +0200146UINT = 'uint'
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200147BOOL_STR = 'bool_str'
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200148BAND = 'band'
149IPV4 = 'ipv4'
150HWADDR = 'hwaddr'
151IMSI = 'imsi'
152KI = 'ki'
153MSISDN = 'msisdn'
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200154AUTH_ALGO = 'auth_algo'
Pau Espin Pedrolead79ac2017-09-12 15:19:18 +0200155TIMES='times'
Pau Espin Pedrol57497a62017-08-28 14:21:15 +0200156CIPHER = 'cipher'
Pau Espin Pedrolac18fd32017-08-31 18:49:47 +0200157MODEM_FEATURE = 'modem_feature'
Pau Espin Pedrolc9b63762018-05-07 01:57:01 +0200158PHY_CHAN = 'chan'
Pau Espin Pedrol722e94e2018-08-22 11:01:32 +0200159CHAN_ALLOCATOR = 'chan_allocator'
Pau Espin Pedrol4f23ab52018-10-29 11:30:00 +0100160GPRS_MODE = 'gprs_mode'
Pau Espin Pedrol5dc24592018-08-27 12:53:41 +0200161CODEC = 'codec'
Pau Espin Pedrol0d455042018-08-27 17:07:41 +0200162OSMO_TRX_CLOCK_REF = 'osmo_trx_clock_ref'
Pau Espin Pedrolb6937712020-02-27 18:02:20 +0100163LTE_TRANSMISSION_MODE = 'lte_transmission_mode'
164LTE_RLC_DRB_MODE = 'lte_rlc_drb_mode'
Andre Puschmann2dcc4312020-03-28 15:34:00 +0100165DURATION = 'duration'
Pau Espin Pedrolac18fd32017-08-31 18:49:47 +0200166
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200167SCHEMA_TYPES = {
168 INT: int,
169 STR: str,
Pau Espin Pedrolfa9a6d32017-09-12 15:13:21 +0200170 UINT: uint,
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200171 BOOL_STR: str2bool,
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200172 BAND: band,
173 IPV4: ipv4,
174 HWADDR: hwaddr,
175 IMSI: imsi,
176 KI: ki,
177 MSISDN: msisdn,
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200178 AUTH_ALGO: auth_algo,
Pau Espin Pedrolead79ac2017-09-12 15:19:18 +0200179 TIMES: times,
Pau Espin Pedrol57497a62017-08-28 14:21:15 +0200180 CIPHER: cipher,
Pau Espin Pedrolac18fd32017-08-31 18:49:47 +0200181 MODEM_FEATURE: modem_feature,
Pau Espin Pedrolc9b63762018-05-07 01:57:01 +0200182 PHY_CHAN: phy_channel_config,
Pau Espin Pedrol722e94e2018-08-22 11:01:32 +0200183 CHAN_ALLOCATOR: channel_allocator,
Pau Espin Pedrol4f23ab52018-10-29 11:30:00 +0100184 GPRS_MODE: gprs_mode,
Pau Espin Pedrol5dc24592018-08-27 12:53:41 +0200185 CODEC: codec,
Pau Espin Pedrol0d455042018-08-27 17:07:41 +0200186 OSMO_TRX_CLOCK_REF: osmo_trx_clock_ref,
Pau Espin Pedrolb6937712020-02-27 18:02:20 +0100187 LTE_TRANSMISSION_MODE: lte_transmission_mode,
188 LTE_RLC_DRB_MODE: lte_rlc_drb_mode,
Andre Puschmann2dcc4312020-03-28 15:34:00 +0100189 DURATION: duration,
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200190 }
191
192def validate(config, schema):
193 '''Make sure the given config dict adheres to the schema.
194 The schema is a dict of 'dict paths' in dot-notation with permitted
195 value type. All leaf nodes are validated, nesting dicts are implicit.
196
197 validate( { 'a': 123, 'b': { 'b1': 'foo', 'b2': [ 1, 2, 3 ] } },
198 { 'a': int,
199 'b.b1': str,
200 'b.b2[]': int } )
201
202 Raise a ValueError in case the schema is violated.
203 '''
204
205 def validate_item(path, value, schema):
206 want_type = schema.get(path)
207
208 if is_list(value):
209 if want_type:
210 raise ValueError('config item is a list, should be %r: %r' % (want_type, path))
211 path = path + '[]'
212 want_type = schema.get(path)
213
214 if not want_type:
215 if is_dict(value):
216 nest(path, value, schema)
217 return
218 if is_list(value) and value:
219 for list_v in value:
220 validate_item(path, list_v, schema)
221 return
222 raise ValueError('config item not known: %r' % path)
223
224 if want_type not in SCHEMA_TYPES:
225 raise ValueError('unknown type %r at %r' % (want_type, path))
226
227 if is_dict(value):
228 raise ValueError('config item is dict but should be a leaf node of type %r: %r'
229 % (want_type, path))
230
231 if is_list(value):
232 for list_v in value:
233 validate_item(path, list_v, schema)
234 return
235
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +0200236 log.ctx(path)
237 type_validator = SCHEMA_TYPES.get(want_type)
238 type_validator(value)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200239
240 def nest(parent_path, config, schema):
241 if parent_path:
242 parent_path = parent_path + '.'
243 else:
244 parent_path = ''
245 for k,v in config.items():
246 if not KEY_RE.fullmatch(k):
247 raise ValueError('invalid config key: %r' % k)
248 path = parent_path + k
249 validate_item(path, v, schema)
250
251 nest(None, config, schema)
252
253# vim: expandtab tabstop=4 shiftwidth=4