blob: f15bbe3087ece011457e6e80dc2140753def1d8c [file] [log] [blame]
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +02001# osmo_gsm_tester: base classes to share code among eNodeB subclasses.
2#
3# Copyright (C) 2020 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Pau Espin Pedrol <pespin@sysmocom.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as
9# 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
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20from abc import ABCMeta, abstractmethod
Pau Espin Pedrole1a58bd2020-04-10 20:46:07 +020021from ..core import log, config
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020022from ..core import schema
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020023from . import run_node
Pau Espin Pedrol41091232020-10-05 19:23:38 +020024from .rfemu_gnuradio_zmq import GrBroker
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +020025
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020026def on_register_schemas():
27 resource_schema = {
28 'label': schema.STR,
29 'type': schema.STR,
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020030 'gtp_bind_addr': schema.IPV4,
31 'id': schema.UINT,
32 'num_prb': schema.UINT,
33 'transmission_mode': schema.LTE_TRANSMISSION_MODE,
34 'tx_gain': schema.UINT,
35 'rx_gain': schema.UINT,
36 'rf_dev_type': schema.STR,
37 'rf_dev_args': schema.STR,
Andre Puschmannc489f192020-10-09 14:46:38 +020038 'rf_dev_sync': schema.STR,
Pau Espin Pedrole592de82020-06-15 17:01:16 +020039 'additional_args[]': schema.STR,
Andre Puschmann0cfc0842020-08-26 18:19:15 +020040 'inactivity_timer': schema.INT,
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020041 'enable_measurements': schema.BOOL_STR,
Andre Puschmann955249d2020-07-01 15:44:09 +020042 'enable_dl_awgn': schema.BOOL_STR,
43 'dl_awgn_snr': schema.INT,
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020044 'a1_report_type': schema.STR,
45 'a1_report_value': schema.INT,
46 'a1_hysteresis': schema.INT,
47 'a1_time_to_trigger': schema.INT,
48 'a2_report_type': schema.STR,
49 'a2_report_value': schema.INT,
50 'a2_hysteresis': schema.INT,
51 'a2_time_to_trigger': schema.INT,
52 'a3_report_type': schema.STR,
53 'a3_report_value': schema.INT,
54 'a3_hysteresis': schema.INT,
55 'a3_time_to_trigger': schema.INT,
56 'num_cells': schema.UINT,
57 'cell_list[].cell_id': schema.UINT,
Andre Puschmann549826d2020-04-21 21:14:30 +020058 'cell_list[].rf_port': schema.UINT,
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020059 'cell_list[].pci': schema.UINT,
60 'cell_list[].ncell_list[]': schema.UINT,
61 'cell_list[].scell_list[]': schema.UINT,
62 'cell_list[].dl_earfcn': schema.UINT,
63 'cell_list[].dl_rfemu.type': schema.STR,
64 'cell_list[].dl_rfemu.addr': schema.IPV4,
65 'cell_list[].dl_rfemu.ports[]': schema.UINT,
66 }
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020067 for key, val in run_node.RunNode.schema().items():
68 resource_schema['run_node.%s' % key] = val
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020069 schema.register_resource_schema('enb', resource_schema)
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +020070
71class eNodeB(log.Origin, metaclass=ABCMeta):
72
73##############
74# PROTECTED
75##############
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020076 def __init__(self, testenv, conf, name):
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +020077 super().__init__(log.C_RUN, '%s' % name)
78 self._conf = conf
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020079 self._run_node = run_node.RunNode.from_conf(conf.get('run_node', {}))
Andre Puschmann4b5a09a2020-04-14 22:24:00 +020080 self._gtp_bind_addr = conf.get('gtp_bind_addr', None)
81 if self._gtp_bind_addr is None:
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020082 self._gtp_bind_addr = self._run_node.run_addr()
83 self.set_name('%s_%s' % (name, self._run_node.run_addr()))
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +020084 self._txmode = 0
Pau Espin Pedrol491f77c2020-04-20 14:20:43 +020085 self._id = None
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +020086 self._num_prb = 0
Pau Espin Pedrolf46ae222020-04-17 16:23:54 +020087 self._num_cells = None
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +020088 self._epc = None
Pau Espin Pedrol41091232020-10-05 19:23:38 +020089 self.gen_conf = None
90 self.gr_broker = None
91
92 def using_grbroker(self, cfg_values):
93 # whether we are to use Grbroker in between ENB and UE.
94 # Initial checks:
95 if cfg_values['enb'].get('rf_dev_type') != 'zmq':
96 return False
97 cell_list = cfg_values['enb']['cell_list']
98 use_match = False
99 notuse_match = False
100 for cell in cell_list:
101 if cell.get('dl_rfemu', False) and cell['dl_rfemu'].get('type', None) == 'gnuradio_zmq':
102 use_match = True
103 else:
104 notuse_match = True
105 if use_match and notuse_match:
106 raise log.Error('Some Cells are configured to use gnuradio_zmq and some are not, unsupported')
107 return use_match
108
109 def calc_required_zmq_ports(self, cfg_values):
110 cell_list = cfg_values['enb']['cell_list']
111 return len(cell_list) * self.num_ports() # *2 if MIMO
112
113 def calc_required_zmq_ports_joined_earfcn(self, cfg_values):
114 #gr_broker will join the earfcns, so we need to count uniqe earfcns:
115 cell_list = cfg_values['enb']['cell_list']
116 earfcn_li = []
117 [earfcn_li.append(int(cell['dl_earfcn'])) for cell in cell_list if int(cell['dl_earfcn']) not in earfcn_li]
118 return len(earfcn_li) * self.num_ports() # *2 if MIMO
119
120
121 def assign_enb_zmq_ports(self, cfg_values, port_name, base_port):
122 port_offset = 0
123 cell_list = cfg_values['enb']['cell_list']
124 for cell in cell_list:
125 cell[port_name] = base_port + port_offset
126 port_offset += self.num_ports()
127 # TODO: do we need to assign cell_list back?
128
129 def assign_enb_zmq_ports_joined_earfcn(self, cfg_values, port_name, base_port):
130 # TODO: Set in cell one bind port per unique earfcn, this is where UE will connect to when we use grbroker.
131 cell_list = cfg_values['enb']['cell_list']
132 earfcn_li = []
133 [earfcn_li.append(int(cell['dl_earfcn'])) for cell in cell_list if int(cell['dl_earfcn']) not in earfcn_li]
134 for cell in cell_list:
135 cell[port_name] = base_port + earfcn_li.index(int(cell['dl_earfcn'])) * self.num_ports()
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200136
Pau Espin Pedrolc04528c2020-04-01 13:55:51 +0200137 def configure(self, config_specifics_li):
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200138 values = dict(enb=config.get_defaults('enb'))
Pau Espin Pedrolc04528c2020-04-01 13:55:51 +0200139 for config_specifics in config_specifics_li:
140 config.overlay(values, dict(enb=config.get_defaults(config_specifics)))
Pau Espin Pedrola442cb82020-05-05 12:54:37 +0200141 config.overlay(values, dict(enb=self.testenv.suite().config().get('enb', {})))
Pau Espin Pedrolc04528c2020-04-01 13:55:51 +0200142 for config_specifics in config_specifics_li:
Pau Espin Pedrola442cb82020-05-05 12:54:37 +0200143 config.overlay(values, dict(enb=self.testenv.suite().config().get(config_specifics, {})))
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200144 config.overlay(values, dict(enb=self._conf))
Pau Espin Pedrol491f77c2020-04-20 14:20:43 +0200145 self._id = int(values['enb'].get('id', None))
146 assert self._id is not None
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200147 self._num_prb = int(values['enb'].get('num_prb', None))
148 assert self._num_prb
149 self._txmode = int(values['enb'].get('transmission_mode', None))
150 assert self._txmode
151 config.overlay(values, dict(enb={ 'num_ports': self.num_ports() }))
Andre Puschmann0cfc0842020-08-26 18:19:15 +0200152 self._inactivity_timer = int(values['enb'].get('inactivity_timer', None))
153 assert self._inactivity_timer
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200154 assert self._epc is not None
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +0200155 config.overlay(values, dict(enb={ 'addr': self.addr() }))
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200156 config.overlay(values, dict(enb={ 'mme_addr': self._epc.addr() }))
Andre Puschmann4b5a09a2020-04-14 22:24:00 +0200157 config.overlay(values, dict(enb={ 'gtp_bind_addr': self._gtp_bind_addr }))
Pau Espin Pedrolf46ae222020-04-17 16:23:54 +0200158 self._num_cells = int(values['enb'].get('num_cells', None))
159 assert self._num_cells
160
161 # adjust cell_list to num_cells length:
162 len_cell_list = len(values['enb']['cell_list'])
163 if len_cell_list >= self._num_cells:
164 values['enb']['cell_list'] = values['enb']['cell_list'][:self._num_cells]
165 else:
166 raise log.Error('enb.cell_list items (%d) < enb.num_cells (%d) attribute!' % (len_cell_list, self._num_cells))
167 # adjust scell list (to only contain values available in cell_list):
168 cell_id_list = [c['cell_id'] for c in values['enb']['cell_list']]
169 for i in range(len(values['enb']['cell_list'])):
170 scell_list_old = values['enb']['cell_list'][i]['scell_list']
171 scell_list_new = []
172 for scell_id in scell_list_old:
173 if scell_id in cell_id_list:
174 scell_list_new.append(scell_id)
175 values['enb']['cell_list'][i]['scell_list'] = scell_list_new
176
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200177 # Assign ZMQ ports to each Cell/EARFCN.
178 if values['enb'].get('rf_dev_type') == 'zmq':
179 resourcep = self.testenv.suite().resource_pool()
180 num_ports = self.calc_required_zmq_ports(values)
181 num_ports_joined_earfcn = self.calc_required_zmq_ports_joined_earfcn(values)
182 ue_bind_port = self.ue.zmq_base_bind_port()
183 enb_bind_port = resourcep.next_zmq_port_range(self, num_ports)
184 self.assign_enb_zmq_ports(values, 'zmq_enb_bind_port', enb_bind_port)
185 # If we are to use a GrBroker, then initialize here to have remote zmq ports available:
186 if self.using_grbroker(values):
187 zmq_enb_peer_port = resourcep.next_zmq_port_range(self, num_ports)
188 self.assign_enb_zmq_ports(values, 'zmq_enb_peer_port', zmq_enb_peer_port) # These are actually bound to GrBroker
189 self.assign_enb_zmq_ports_joined_earfcn(values, 'zmq_ue_bind_port', ue_bind_port) # This is were GrBroker binds on the UE side
190 zmq_ue_peer_port = resourcep.next_zmq_port_range(self, num_ports_joined_earfcn)
191 self.assign_enb_zmq_ports_joined_earfcn(values, 'zmq_ue_peer_port', zmq_ue_peer_port) # This is were GrBroker binds on the UE side
192 # Already set gen_conf here in advance since gr_broker needs the cell list
193 self.gen_conf = values
194 self.gr_broker = GrBroker.ref()
195 self.gr_broker.handle_enb(self)
196 else:
197 self.assign_enb_zmq_ports(values, 'zmq_enb_peer_port', ue_bind_port)
198 self.assign_enb_zmq_ports(values, 'zmq_ue_bind_port', ue_bind_port) #If no broker we need to match amount of ports
199 self.assign_enb_zmq_ports(values, 'zmq_ue_peer_port', enb_bind_port)
200
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200201 return values
202
Pau Espin Pedrol491f77c2020-04-20 14:20:43 +0200203 def id(self):
204 return self._id
205
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200206 def num_ports(self):
207 if self._txmode == 1:
208 return 1
209 return 2
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200210
Andre Puschmann0957e9e2020-06-16 16:29:27 +0200211 def num_cells(self):
212 return self._num_cells
213
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200214########################
215# PUBLIC - INTERNAL API
216########################
217 def cleanup(self):
218 'Nothing to do by default. Subclass can override if required.'
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200219 if self.gr_broker:
220 GrBroker.unref()
221 self.gr_broker = None
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200222
Pau Espin Pedrole44e76a2020-03-31 12:35:19 +0200223 def num_prb(self):
224 return self._num_prb
225
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200226 #reference: srsLTE.git srslte_symbol_sz()
227 def num_prb2symbol_sz(self, num_prb):
Andre Puschmann0a501102020-06-02 22:35:27 +0200228 if num_prb == 6:
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200229 return 128
Andre Puschmann0a501102020-06-02 22:35:27 +0200230 if num_prb == 50:
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200231 return 768
Andre Puschmann0a501102020-06-02 22:35:27 +0200232 if num_prb == 75:
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200233 return 1024
Andre Puschmann0a501102020-06-02 22:35:27 +0200234 return 1536
235
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200236 raise log.Error('invalid num_prb %r', num_prb)
237
238 def num_prb2base_srate(self, num_prb):
239 return self.num_prb2symbol_sz(num_prb) * 15 * 1000
240
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200241 def get_zmq_rf_dev_args(self, cfg_values):
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200242 base_srate = self.num_prb2base_srate(self.num_prb())
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200243
244 if self.gr_broker:
245 ul_rem_addr = self.addr()
246 else:
247 ul_rem_addr = self.ue.addr()
248
249 rf_dev_args = 'fail_on_disconnect=true'
250 idx = 0
251 cell_list = cfg_values['enb']['cell_list']
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200252 # Define all 8 possible RF ports (2x CA with 2x2 MIMO)
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200253 for cell in cell_list:
254 rf_dev_args += ',tx_port%u=tcp://%s:%u' %(idx, self.addr(), cell['zmq_enb_bind_port'] + 0)
255 if self.num_ports() > 1:
256 rf_dev_args += ',tx_port%u=tcp://%s:%u' %(idx + 1, self.addr(), cell['zmq_enb_bind_port'] + 1)
257 rf_dev_args += ',rx_port%u=tcp://%s:%u' %(idx, ul_rem_addr, cell['zmq_enb_peer_port'] + 0)
258 if self.num_ports() > 1:
259 rf_dev_args += ',rx_port%u=tcp://%s:%u' %(idx + 1, ul_rem_addr, cell['zmq_enb_peer_port'] + 1)
260 idx += self.num_ports()
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200261
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200262 rf_dev_args += ',id=enb,base_srate=' + str(base_srate)
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200263 return rf_dev_args
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200264
Pau Espin Pedrol41091232020-10-05 19:23:38 +0200265 def get_zmq_rf_dev_args_for_ue(self, ue):
266 cell_list = self.gen_conf['enb']['cell_list']
267 rf_dev_args = ''
268 idx = 0
269 earfcns_done = []
270 for cell in cell_list:
271 if self.gr_broker:
272 if cell['dl_earfcn'] in earfcns_done:
273 continue
274 earfcns_done.append(cell['dl_earfcn'])
275 rf_dev_args += ',tx_port%u=tcp://%s:%u' %(idx, ue.addr(), cell['zmq_ue_bind_port'] + 0)
276 if self.num_ports() > 1:
277 rf_dev_args += ',tx_port%u=tcp://%s:%u' %(idx + 1, ue.addr(), cell['zmq_ue_bind_port'] + 1)
278 rf_dev_args += ',rx_port%u=tcp://%s:%u' %(idx, self.addr(), cell['zmq_ue_peer_port'] + 0)
279 if self.num_ports() > 1:
280 rf_dev_args += ',rx_port%u=tcp://%s:%u' %(idx + 1, self.addr(), cell['zmq_ue_peer_port'] + 1)
281 idx += self.num_ports()
282 # remove trailing comma:
283 if rf_dev_args[0] == ',':
284 return rf_dev_args[1:]
Andre Puschmanne2a6da62020-04-20 20:39:34 +0200285 return rf_dev_args
286
Pau Espin Pedrola442cb82020-05-05 12:54:37 +0200287 def get_instance_by_type(testenv, conf):
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +0200288 """Allocate a ENB child class based on type. Opts are passed to the newly created object."""
289 enb_type = conf.get('type')
290 if enb_type is None:
291 raise RuntimeError('ENB type is not defined!')
292
293 if enb_type == 'amarisoftenb':
294 from .enb_amarisoft import AmarisoftENB
295 enb_class = AmarisoftENB
296 elif enb_type == 'srsenb':
297 from .enb_srs import srsENB
298 enb_class = srsENB
299 else:
300 raise log.Error('ENB type not supported:', enb_type)
Pau Espin Pedrola442cb82020-05-05 12:54:37 +0200301 return enb_class(testenv, conf)
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +0200302
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200303###################
304# PUBLIC (test API included)
305###################
306 @abstractmethod
307 def start(self, epc):
308 'Starts ENB, it will connect to "epc"'
309 pass
310
311 @abstractmethod
312 def ue_add(self, ue):
313 pass
314
315 @abstractmethod
316 def running(self):
317 pass
318
319 @abstractmethod
Andre Puschmann7d3b83e2020-09-02 22:17:54 +0200320 def ue_max_rate(self, downlink=True, num_carriers=1):
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200321 pass
322
Pau Espin Pedrold4404d52020-04-20 13:29:31 +0200323 @abstractmethod
324 def get_rfemu(self, cell=0, dl=True):
325 'Get rfemu.RFemulation subclass implementation object for given cell index and direction.'
326 pass
327
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200328 def addr(self):
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +0200329 return self._run_node.run_addr()
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200330
Pau Espin Pedrol786a6bc2020-03-30 13:51:21 +0200331# vim: expandtab tabstop=4 shiftwidth=4