blob: f1a9bdf8b3da250ccf8e872c33a06ef2ac3e1856 [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 run_dir = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020031 inst = None
32 env = None
Pau Espin Pedrol47738532017-08-15 16:20:07 +020033 trx = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020034
Neels Hofmeyr3531a192017-03-28 14:30:28 +020035 BIN_BTS_TRX = 'osmo-bts-trx'
36 BIN_PCU = 'osmo-pcu'
37
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020038 CONF_BTS_TRX = 'osmo-bts-trx.cfg'
39
Neels Hofmeyr3531a192017-03-28 14:30:28 +020040 def __init__(self, suite_run, conf):
Pau Espin Pedrolc9817a52017-12-13 19:52:27 +010041 super().__init__(suite_run, conf, OsmoBtsTrx.BIN_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020042 self.env = {}
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020043
44 def trx_remote_ip(self):
45 conf_ip = self.conf.get('trx_remote_ip', None)
46 if conf_ip is not None:
47 return conf_ip
48 # if 'trx_remote_ip' is not configured, use same IP as BTS
49 return self.remote_addr()
50
51 def launch_trx_enabled(self):
52 return util.str2bool(self.conf.get('launch_trx'))
Neels Hofmeyrd41dae92017-05-22 19:58:41 +020053
Neels Hofmeyr3531a192017-03-28 14:30:28 +020054 def launch_process(self, binary_name, *args):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020055 binary = os.path.abspath(self.inst.child('bin', binary_name))
56 run_dir = self.run_dir.new_dir(binary_name)
57 if not os.path.isfile(binary):
58 raise RuntimeError('Binary missing: %r' % binary)
59 proc = process.Process(binary_name, run_dir,
60 (binary,) + args,
61 env=self.env)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020062 self.suite_run.remember_to_stop(proc)
63 proc.launch()
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020064 return proc
Neels Hofmeyr3531a192017-03-28 14:30:28 +020065
66 def configure(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020067 if self.bsc is None:
68 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be configured')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020069 self.config_file = self.run_dir.new_file(OsmoBtsTrx.CONF_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020070 self.dbg(config_file=self.config_file)
71
72 values = dict(osmo_bts_trx=config.get_defaults('osmo_bts_trx'))
73 config.overlay(values, self.suite_run.config())
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +020074 config.overlay(values, {
75 'osmo_bts_trx': {
76 'oml_remote_ip': self.bsc.addr(),
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020077 'trx_local_ip': self.remote_addr(),
78 'trx_remote_ip': self.trx_remote_ip(),
Pau Espin Pedrol15aae982017-09-08 13:55:54 +020079 'pcu_socket_path': self.pcu_socket_path(),
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +020080 }
81 })
82 config.overlay(values, { 'osmo_bts_trx': self.conf })
Neels Hofmeyr943c81d2017-05-22 20:16:03 +020083
84 self.dbg('OSMO-BTS-TRX CONFIG:\n' + pprint.pformat(values))
Neels Hofmeyr3531a192017-03-28 14:30:28 +020085
86 with open(self.config_file, 'w') as f:
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020087 r = template.render(OsmoBtsTrx.CONF_BTS_TRX, values)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020088 self.dbg(r)
89 f.write(r)
90
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010091########################
92# PUBLIC - INTERNAL API
93########################
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020094 def conf_for_bsc(self):
Pau Espin Pedrol530681f2018-05-07 02:26:18 +020095 values = self.conf_for_bsc_osmo('osmo_bts_trx')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020096 self.dbg(conf=values)
97 return values
98
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010099###################
100# PUBLIC (test API included)
101###################
102 def start(self):
103 if self.bsc is None:
104 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
105 self.suite_run.poll()
106
107 self.log('Starting to connect to', self.bsc)
108 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
109 self.configure()
110
111 if self.launch_trx_enabled():
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100112 self.trx = OsmoTrx(self.suite_run, self.conf, self.trx_remote_ip(), self.remote_addr())
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100113 self.trx.start()
114 self.log('Waiting for osmo-trx to start up...')
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200115 MainLoop.wait(self, self.trx.trx_ready)
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100116
117 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-bts')))
118 lib = self.inst.child('lib')
119 if not os.path.isdir(lib):
120 raise RuntimeError('No lib/ in %r' % self.inst)
121 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
122
123 self.proc_bts = self.launch_process(OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
124 '-c', os.path.abspath(self.config_file),
125 '-i', self.bsc.addr())
126 self.suite_run.poll()
127
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200128class OsmoTrx(log.Origin):
129 suite_run = None
130 run_dir = None
131 inst = None
132 env = None
133 proc_trx = None
134
Pau Espin Pedrol553eda62018-05-07 00:46:18 +0200135 BIN_TRX = 'osmo-trx-uhd'
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100136 CONF_OSMO_TRX = 'osmo-trx.cfg'
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200137
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100138 def __init__(self, suite_run, conf, listen_ip, bts_ip):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200139 super().__init__(log.C_RUN, OsmoTrx.BIN_TRX)
140 self.suite_run = suite_run
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100141 self.conf = conf
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200142 self.env = {}
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200143 self.listen_ip = listen_ip
144 self.bts_ip = bts_ip
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200145
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100146 def configure(self):
147 self.config_file = self.run_dir.new_file(OsmoTrx.CONF_OSMO_TRX)
148 self.dbg(config_file=self.config_file)
149
150 values = dict(osmo_bts_trx=config.get_defaults('osmo_trx'))
151 config.overlay(values, self.suite_run.config())
152 config.overlay(values, {
153 'osmo_trx': {
154 'bind_ip' : self.listen_ip,
155 }
156 })
157 config.overlay(values, { 'osmo_trx': self.conf })
158
159 self.dbg('OSMO-TRX CONFIG:\n' + pprint.pformat(values))
160
161 with open(self.config_file, 'w') as f:
162 r = template.render(OsmoTrx.CONF_OSMO_TRX, values)
163 self.dbg(r)
164 f.write(r)
165
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200166 def start(self):
167 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100168 self.configure()
Pau Espin Pedrol7d4bdf22018-05-07 11:00:30 +0200169 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-trx')))
Pau Espin Pedrol80a5c772017-08-21 19:03:08 +0200170 lib = self.inst.child('lib')
171 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100172 self.proc_trx = self.launch_process(OsmoTrx.BIN_TRX, '-x',
173 '-j', self.listen_ip, '-i', self.bts_ip,
174 '-C', os.path.abspath(self.config_file))
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200175
176 def launch_process(self, binary_name, *args):
177 binary = os.path.abspath(self.inst.child('bin', binary_name))
178 run_dir = self.run_dir.new_dir(binary_name)
179 if not os.path.isfile(binary):
180 raise RuntimeError('Binary missing: %r' % binary)
181 proc = process.Process(binary_name, run_dir,
182 (binary,) + args,
183 env=self.env)
184 self.suite_run.remember_to_stop(proc)
185 proc.launch()
186 return proc
187
188 def trx_ready(self):
189 if not self.proc_trx or not self.proc_trx.is_running:
190 return False
191 return '-- Transceiver active with' in (self.proc_trx.get_stdout() or '')
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200192# vim: expandtab tabstop=4 shiftwidth=4