blob: ba7258e27bd005013c8896b9c04aff7a7a6b130b [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 Pedrolc9817a52017-12-13 19:52:27 +010023from . import log, config, util, template, process, event_loop, pcu_osmo, bts_osmo
Neels Hofmeyr3531a192017-03-28 14:30:28 +020024
Pau Espin Pedrolc9817a52017-12-13 19:52:27 +010025class OsmoBtsTrx(bts_osmo.OsmoBtsMainUnit):
Pau Espin Pedrol2e542952017-12-14 19:08:51 +010026##############
27# PROTECTED
28##############
Neels Hofmeyr3531a192017-03-28 14:30:28 +020029 run_dir = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020030 inst = None
31 env = None
Pau Espin Pedrol47738532017-08-15 16:20:07 +020032 trx = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020033
Neels Hofmeyr3531a192017-03-28 14:30:28 +020034 BIN_BTS_TRX = 'osmo-bts-trx'
35 BIN_PCU = 'osmo-pcu'
36
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020037 CONF_BTS_TRX = 'osmo-bts-trx.cfg'
38
Neels Hofmeyr3531a192017-03-28 14:30:28 +020039 def __init__(self, suite_run, conf):
Pau Espin Pedrolc9817a52017-12-13 19:52:27 +010040 super().__init__(suite_run, conf, OsmoBtsTrx.BIN_BTS_TRX)
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
Neels Hofmeyr3531a192017-03-28 14:30:28 +020053 def launch_process(self, 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)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020061 self.suite_run.remember_to_stop(proc)
62 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):
94 values = config.get_defaults('bsc_bts')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020095 config.overlay(values, config.get_defaults('osmo_bts_trx'))
Pau Espin Pedrol5e0c2512017-11-06 18:40:23 +010096 if self.lac is not None:
97 config.overlay(values, { 'location_area_code': self.lac })
Pau Espin Pedrol8a3a7b52017-11-28 15:50:02 +010098 if self.rac is not None:
99 config.overlay(values, { 'routing_area_code': self.rac })
Pau Espin Pedrol4ccce7c2017-11-07 11:13:20 +0100100 if self.cellid is not None:
101 config.overlay(values, { 'cell_identity': self.cellid })
Pau Espin Pedrol8a3a7b52017-11-28 15:50:02 +0100102 if self.bvci is not None:
103 config.overlay(values, { 'bvci': self.bvci })
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200104 config.overlay(values, self.conf)
Pau Espin Pedrol5936d8f2017-11-23 13:34:27 +0100105
106 sgsn_conf = {} if self.sgsn is None else self.sgsn.conf_for_client()
107 config.overlay(values, sgsn_conf)
108
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200109 self.dbg(conf=values)
110 return values
111
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100112###################
113# PUBLIC (test API included)
114###################
115 def start(self):
116 if self.bsc is None:
117 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
118 self.suite_run.poll()
119
120 self.log('Starting to connect to', self.bsc)
121 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
122 self.configure()
123
124 if self.launch_trx_enabled():
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100125 self.trx = OsmoTrx(self.suite_run, self.conf, self.trx_remote_ip(), self.remote_addr())
Pau Espin Pedrol2e542952017-12-14 19:08:51 +0100126 self.trx.start()
127 self.log('Waiting for osmo-trx to start up...')
128 event_loop.wait(self, self.trx.trx_ready)
129
130 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-bts')))
131 lib = self.inst.child('lib')
132 if not os.path.isdir(lib):
133 raise RuntimeError('No lib/ in %r' % self.inst)
134 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
135
136 self.proc_bts = self.launch_process(OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
137 '-c', os.path.abspath(self.config_file),
138 '-i', self.bsc.addr())
139 self.suite_run.poll()
140
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200141class OsmoTrx(log.Origin):
142 suite_run = None
143 run_dir = None
144 inst = None
145 env = None
146 proc_trx = None
147
148 BIN_TRX = 'osmo-trx'
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100149 CONF_OSMO_TRX = 'osmo-trx.cfg'
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200150
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100151 def __init__(self, suite_run, conf, listen_ip, bts_ip):
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200152 super().__init__(log.C_RUN, OsmoTrx.BIN_TRX)
153 self.suite_run = suite_run
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100154 self.conf = conf
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200155 self.env = {}
Pau Espin Pedrol404e1502017-08-22 11:17:43 +0200156 self.listen_ip = listen_ip
157 self.bts_ip = bts_ip
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200158
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100159 def configure(self):
160 self.config_file = self.run_dir.new_file(OsmoTrx.CONF_OSMO_TRX)
161 self.dbg(config_file=self.config_file)
162
163 values = dict(osmo_bts_trx=config.get_defaults('osmo_trx'))
164 config.overlay(values, self.suite_run.config())
165 config.overlay(values, {
166 'osmo_trx': {
167 'bind_ip' : self.listen_ip,
168 }
169 })
170 config.overlay(values, { 'osmo_trx': self.conf })
171
172 self.dbg('OSMO-TRX CONFIG:\n' + pprint.pformat(values))
173
174 with open(self.config_file, 'w') as f:
175 r = template.render(OsmoTrx.CONF_OSMO_TRX, values)
176 self.dbg(r)
177 f.write(r)
178
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200179 def start(self):
180 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100181 self.configure()
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200182 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst(OsmoTrx.BIN_TRX)))
Pau Espin Pedrol80a5c772017-08-21 19:03:08 +0200183 lib = self.inst.child('lib')
184 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +0100185 self.proc_trx = self.launch_process(OsmoTrx.BIN_TRX, '-x',
186 '-j', self.listen_ip, '-i', self.bts_ip,
187 '-C', os.path.abspath(self.config_file))
Pau Espin Pedrol47738532017-08-15 16:20:07 +0200188
189 def launch_process(self, binary_name, *args):
190 binary = os.path.abspath(self.inst.child('bin', binary_name))
191 run_dir = self.run_dir.new_dir(binary_name)
192 if not os.path.isfile(binary):
193 raise RuntimeError('Binary missing: %r' % binary)
194 proc = process.Process(binary_name, run_dir,
195 (binary,) + args,
196 env=self.env)
197 self.suite_run.remember_to_stop(proc)
198 proc.launch()
199 return proc
200
201 def trx_ready(self):
202 if not self.proc_trx or not self.proc_trx.is_running:
203 return False
204 return '-- Transceiver active with' in (self.proc_trx.get_stdout() or '')
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200205# vim: expandtab tabstop=4 shiftwidth=4