blob: b5262a2b1b697d3c8f95697f0ca5a66483a500a4 [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
Neels Hofmeyr206803d2017-05-29 03:45:51 +020022from . import log, config, util, template, process, event_loop
Neels Hofmeyr3531a192017-03-28 14:30:28 +020023
24class OsmoBtsTrx(log.Origin):
25 suite_run = None
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020026 bsc = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020027 run_dir = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020028 inst = None
29 env = None
Pau Espin Pedrol47738532017-08-15 16:20:07 +020030 trx = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020031
Neels Hofmeyr3531a192017-03-28 14:30:28 +020032 BIN_BTS_TRX = 'osmo-bts-trx'
33 BIN_PCU = 'osmo-pcu'
34
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020035 CONF_BTS_TRX = 'osmo-bts-trx.cfg'
36
Neels Hofmeyr3531a192017-03-28 14:30:28 +020037 def __init__(self, suite_run, conf):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020038 super().__init__(log.C_RUN, OsmoBtsTrx.BIN_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020039 self.suite_run = suite_run
40 self.conf = conf
Neels Hofmeyr3531a192017-03-28 14:30:28 +020041 self.env = {}
42
Neels Hofmeyrd41dae92017-05-22 19:58:41 +020043 def remote_addr(self):
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020044 return self.conf.get('addr')
45
46 def trx_remote_ip(self):
47 conf_ip = self.conf.get('trx_remote_ip', None)
48 if conf_ip is not None:
49 return conf_ip
50 # if 'trx_remote_ip' is not configured, use same IP as BTS
51 return self.remote_addr()
52
53 def launch_trx_enabled(self):
54 return util.str2bool(self.conf.get('launch_trx'))
Neels Hofmeyrd41dae92017-05-22 19:58:41 +020055
Neels Hofmeyr3531a192017-03-28 14:30:28 +020056 def start(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020057 if self.bsc is None:
58 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020059 self.suite_run.poll()
60
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020061 self.log('Starting to connect to', self.bsc)
Pau Espin Pedrold0912332017-06-14 13:27:08 +020062 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Neels Hofmeyr3531a192017-03-28 14:30:28 +020063 self.configure()
64
Pau Espin Pedrol404e1502017-08-22 11:17:43 +020065 if self.launch_trx_enabled():
66 self.trx = OsmoTrx(self.suite_run, self.trx_remote_ip(), self.remote_addr())
67 self.trx.start()
68 self.log('Waiting for osmo-trx to start up...')
69 event_loop.wait(self, self.trx.trx_ready)
Pau Espin Pedrol47738532017-08-15 16:20:07 +020070
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020071 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst(OsmoBtsTrx.BIN_BTS_TRX)))
Your Name3c6673a2017-04-08 18:52:39 +020072 lib = self.inst.child('lib')
73 if not os.path.isdir(lib):
74 raise RuntimeError('No lib/ in %r' % self.inst)
Pau Espin Pedrole39c6f12017-05-08 16:21:38 +020075 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Neels Hofmeyr3531a192017-03-28 14:30:28 +020076
Pau Espin Pedrol6ab98982017-05-12 16:07:35 +020077 self.launch_process(OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
78 '-c', os.path.abspath(self.config_file),
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020079 '-i', self.bsc.addr())
Neels Hofmeyr3531a192017-03-28 14:30:28 +020080 #self.launch_process(OsmoBtsTrx.BIN_PCU, '-r', '1')
81 self.suite_run.poll()
82
83 def launch_process(self, binary_name, *args):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020084 binary = os.path.abspath(self.inst.child('bin', binary_name))
85 run_dir = self.run_dir.new_dir(binary_name)
86 if not os.path.isfile(binary):
87 raise RuntimeError('Binary missing: %r' % binary)
88 proc = process.Process(binary_name, run_dir,
89 (binary,) + args,
90 env=self.env)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020091 self.suite_run.remember_to_stop(proc)
92 proc.launch()
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020093 return proc
Neels Hofmeyr3531a192017-03-28 14:30:28 +020094
95 def configure(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020096 if self.bsc is None:
97 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be configured')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020098 self.config_file = self.run_dir.new_file(OsmoBtsTrx.CONF_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020099 self.dbg(config_file=self.config_file)
100
101 values = dict(osmo_bts_trx=config.get_defaults('osmo_bts_trx'))
102 config.overlay(values, self.suite_run.config())
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +0200103 config.overlay(values, {
104 'osmo_bts_trx': {
105 'oml_remote_ip': self.bsc.addr(),
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200106 'trx_local_ip': self.remote_addr(),
107 'trx_remote_ip': self.trx_remote_ip(),
Pau Espin Pedrol329b6f42017-08-08 13:55:24 +0200108 'pcu_socket_path': os.path.join(str(self.run_dir), 'pcu_bts')
109 }
110 })
111 config.overlay(values, { 'osmo_bts_trx': self.conf })
Neels Hofmeyr943c81d2017-05-22 20:16:03 +0200112
113 self.dbg('OSMO-BTS-TRX CONFIG:\n' + pprint.pformat(values))
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200114
115 with open(self.config_file, 'w') as f:
Neels Hofmeyr17c139e2017-04-12 02:42:02 +0200116 r = template.render(OsmoBtsTrx.CONF_BTS_TRX, values)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200117 self.dbg(r)
118 f.write(r)
119
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +0200120 def conf_for_bsc(self):
121 values = config.get_defaults('bsc_bts')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +0200122 config.overlay(values, config.get_defaults('osmo_bts_trx'))
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200123 config.overlay(values, self.conf)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200124 self.dbg(conf=values)
125 return values
126
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +0200127 def set_bsc(self, bsc):
128 self.bsc = bsc
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200129
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200130class OsmoTrx(log.Origin):
131 suite_run = None
132 run_dir = None
133 inst = None
134 env = None
135 proc_trx = None
136
137 BIN_TRX = 'osmo-trx'
138
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200139 def __init__(self, suite_run, listen_ip, bts_ip):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200140 super().__init__(log.C_RUN, OsmoTrx.BIN_TRX)
141 self.suite_run = suite_run
142 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
146 def start(self):
147 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
148 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst(OsmoTrx.BIN_TRX)))
Pau Espin Pedrol80a5c772017-08-21 19:03:08 +0200149 lib = self.inst.child('lib')
150 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200151 self.proc_trx = self.launch_process(OsmoTrx.BIN_TRX, '-x', '-j', self.listen_ip, '-i', self.bts_ip)
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200152
153 def launch_process(self, binary_name, *args):
154 binary = os.path.abspath(self.inst.child('bin', binary_name))
155 run_dir = self.run_dir.new_dir(binary_name)
156 if not os.path.isfile(binary):
157 raise RuntimeError('Binary missing: %r' % binary)
158 proc = process.Process(binary_name, run_dir,
159 (binary,) + args,
160 env=self.env)
161 self.suite_run.remember_to_stop(proc)
162 proc.launch()
163 return proc
164
165 def trx_ready(self):
166 if not self.proc_trx or not self.proc_trx.is_running:
167 return False
168 return '-- Transceiver active with' in (self.proc_trx.get_stdout() or '')
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200169# vim: expandtab tabstop=4 shiftwidth=4