blob: 1584eb22878d8c38760617c3f3ee9be998e23c39 [file] [log] [blame]
Neels Hofmeyr17c139e2017-04-12 02:42:02 +02001# osmo_gsm_tester: specifics for running an osmo-bts-trx
Neels Hofmeyr3531a192017-03-28 14:30:28 +02002#
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 os
Neels Hofmeyr943c81d2017-05-22 20:16:03 +020021import pprint
Pau Espin Pedrol15aae982017-09-08 13:55:54 +020022import tempfile
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +020023from . import log, config, util, template, process, pcu_osmo, bts_osmo
24from .event_loop import MainLoop
Neels Hofmeyr3531a192017-03-28 14:30:28 +020025
Pau Espin Pedrolc9817a52017-12-13 19:52:27 +010026class OsmoBtsTrx(bts_osmo.OsmoBtsMainUnit):
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010027##############
28# PROTECTED
29##############
Neels Hofmeyr3531a192017-03-28 14:30:28 +020030
Neels Hofmeyr3531a192017-03-28 14:30:28 +020031 BIN_BTS_TRX = 'osmo-bts-trx'
32 BIN_PCU = 'osmo-pcu'
33
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020034 CONF_BTS_TRX = 'osmo-bts-trx.cfg'
35
Neels Hofmeyr3531a192017-03-28 14:30:28 +020036 def __init__(self, suite_run, conf):
Pau Espin Pedrole5194622018-05-07 13:36:58 +020037 super().__init__(suite_run, conf, OsmoBtsTrx.BIN_BTS_TRX, 'osmo_bts_trx')
Pau Espin Pedrol58603672018-08-09 13:45:55 +020038 self.run_dir = None
39 self.inst = None
40 self.trx = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020041 self.env = {}
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020042
43 def trx_remote_ip(self):
44 conf_ip = self.conf.get('trx_remote_ip', None)
45 if conf_ip is not None:
46 return conf_ip
47 # if 'trx_remote_ip' is not configured, use same IP as BTS
48 return self.remote_addr()
49
50 def launch_trx_enabled(self):
51 return util.str2bool(self.conf.get('launch_trx'))
Neels Hofmeyrd41dae92017-05-22 19:58:41 +020052
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +020053 def launch_process(self, keepalive, binary_name, *args):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020054 binary = os.path.abspath(self.inst.child('bin', binary_name))
55 run_dir = self.run_dir.new_dir(binary_name)
56 if not os.path.isfile(binary):
57 raise RuntimeError('Binary missing: %r' % binary)
58 proc = process.Process(binary_name, run_dir,
59 (binary,) + args,
60 env=self.env)
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +020061 self.suite_run.remember_to_stop(proc, keepalive)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020062 proc.launch()
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020063 return proc
Neels Hofmeyr3531a192017-03-28 14:30:28 +020064
65 def configure(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020066 if self.bsc is None:
67 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be configured')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020068 self.config_file = self.run_dir.new_file(OsmoBtsTrx.CONF_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020069 self.dbg(config_file=self.config_file)
70
71 values = dict(osmo_bts_trx=config.get_defaults('osmo_bts_trx'))
72 config.overlay(values, self.suite_run.config())
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +020073 config.overlay(values, {
74 'osmo_bts_trx': {
75 'oml_remote_ip': self.bsc.addr(),
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020076 'trx_local_ip': self.remote_addr(),
77 'trx_remote_ip': self.trx_remote_ip(),
Pau Espin Pedrol15aae982017-09-08 13:55:54 +020078 'pcu_socket_path': self.pcu_socket_path(),
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +020079 }
80 })
81 config.overlay(values, { 'osmo_bts_trx': self.conf })
Neels Hofmeyr943c81d2017-05-22 20:16:03 +020082
83 self.dbg('OSMO-BTS-TRX CONFIG:\n' + pprint.pformat(values))
Neels Hofmeyr3531a192017-03-28 14:30:28 +020084
85 with open(self.config_file, 'w') as f:
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020086 r = template.render(OsmoBtsTrx.CONF_BTS_TRX, values)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020087 self.dbg(r)
88 f.write(r)
89
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010090########################
91# PUBLIC - INTERNAL API
92########################
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020093 def conf_for_bsc(self):
Pau Espin Pedrole5194622018-05-07 13:36:58 +020094 values = self.conf_for_bsc_prepare()
Neels Hofmeyr3531a192017-03-28 14:30:28 +020095 self.dbg(conf=values)
96 return values
97
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010098###################
99# PUBLIC (test API included)
100###################
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200101 def start(self, keepalive=False):
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100102 if self.bsc is None:
103 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
104 self.suite_run.poll()
105
106 self.log('Starting to connect to', self.bsc)
107 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
108 self.configure()
109
110 if self.launch_trx_enabled():
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100111 self.trx = OsmoTrx(self.suite_run, self.conf, self.trx_remote_ip(), self.remote_addr())
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200112 self.trx.start(keepalive)
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100113 self.log('Waiting for osmo-trx to start up...')
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200114 MainLoop.wait(self, self.trx.trx_ready)
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100115
116 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-bts')))
117 lib = self.inst.child('lib')
118 if not os.path.isdir(lib):
119 raise RuntimeError('No lib/ in %r' % self.inst)
120 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
121
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200122 self.proc_bts = self.launch_process(keepalive, OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100123 '-c', os.path.abspath(self.config_file),
124 '-i', self.bsc.addr())
125 self.suite_run.poll()
126
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200127class OsmoTrx(log.Origin):
128 suite_run = None
129 run_dir = None
130 inst = None
131 env = None
132 proc_trx = None
133
Pau Espin Pedrol553eda62018-05-07 00:46:18 +0200134 BIN_TRX = 'osmo-trx-uhd'
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100135 CONF_OSMO_TRX = 'osmo-trx.cfg'
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200136
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100137 def __init__(self, suite_run, conf, listen_ip, bts_ip):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200138 super().__init__(log.C_RUN, OsmoTrx.BIN_TRX)
139 self.suite_run = suite_run
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100140 self.conf = conf
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200141 self.env = {}
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200142 self.listen_ip = listen_ip
143 self.bts_ip = bts_ip
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200144
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100145 def configure(self):
146 self.config_file = self.run_dir.new_file(OsmoTrx.CONF_OSMO_TRX)
147 self.dbg(config_file=self.config_file)
148
149 values = dict(osmo_bts_trx=config.get_defaults('osmo_trx'))
150 config.overlay(values, self.suite_run.config())
151 config.overlay(values, {
152 'osmo_trx': {
153 'bind_ip' : self.listen_ip,
154 }
155 })
156 config.overlay(values, { 'osmo_trx': self.conf })
157
158 self.dbg('OSMO-TRX CONFIG:\n' + pprint.pformat(values))
159
160 with open(self.config_file, 'w') as f:
161 r = template.render(OsmoTrx.CONF_OSMO_TRX, values)
162 self.dbg(r)
163 f.write(r)
164
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200165 def start(self, keepalive=False):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200166 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100167 self.configure()
Pau Espin Pedrol7d4bdf22018-05-07 11:00:30 +0200168 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-trx')))
Pau Espin Pedrol80a5c772017-08-21 19:03:08 +0200169 lib = self.inst.child('lib')
170 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200171 self.proc_trx = self.launch_process(keepalive, OsmoTrx.BIN_TRX, '-x',
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100172 '-j', self.listen_ip, '-i', self.bts_ip,
173 '-C', os.path.abspath(self.config_file))
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200174
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200175 def launch_process(self, keepalive, binary_name, *args):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200176 binary = os.path.abspath(self.inst.child('bin', binary_name))
177 run_dir = self.run_dir.new_dir(binary_name)
178 if not os.path.isfile(binary):
179 raise RuntimeError('Binary missing: %r' % binary)
180 proc = process.Process(binary_name, run_dir,
181 (binary,) + args,
182 env=self.env)
Pau Espin Pedrolb1526b92018-05-22 20:32:30 +0200183 self.suite_run.remember_to_stop(proc, keepalive)
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200184 proc.launch()
185 return proc
186
187 def trx_ready(self):
188 if not self.proc_trx or not self.proc_trx.is_running:
189 return False
190 return '-- Transceiver active with' in (self.proc_trx.get_stdout() or '')
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200191# vim: expandtab tabstop=4 shiftwidth=4