blob: 5447118a538ea8ebffbc57ce11b3cd6a64afb08c [file] [log] [blame]
Neels Hofmeyr798e5922017-05-18 15:24:02 +02001# osmo_gsm_tester: specifics for running an osmo-bsc
2#
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 Hofmeyr798e5922017-05-18 15:24:02 +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 Hofmeyr798e5922017-05-18 15:24:02 +020016#
Harald Welte27205342017-06-03 09:51:45 +020017# You should have received a copy of the GNU General Public License
Neels Hofmeyr798e5922017-05-18 15:24:02 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
21import pprint
22
23from . import log, util, config, template, process, osmo_ctrl, pcap_recorder
24
25class OsmoBsc(log.Origin):
26 suite_run = None
27 ip_address = None
28 run_dir = None
29 config_file = None
30 process = None
31 bts = None
32
33 def __init__(self, suite_run, msc, ip_address):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020034 super().__init__(log.C_RUN, 'osmo-bsc_%s' % ip_address.get('addr'))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020035 self.suite_run = suite_run
36 self.ip_address = ip_address
Neels Hofmeyr798e5922017-05-18 15:24:02 +020037 self.bts = []
38 self.msc = msc
39
40 def start(self):
41 self.log('Starting osmo-bsc')
42 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
43 self.configure()
44
45 # NOTE: While OsmoMSC and OsmoBSC live in the same git repository, the
46 # osmo-msc build will also provide the OsmoBSC binary. As soon as the
47 # repositories are separate, there shall be a separate artifact.
48 inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-msc')))
49
50 binary = inst.child('bin', 'osmo-bsc')
51 if not os.path.isfile(binary):
52 raise RuntimeError('Binary missing: %r' % binary)
53 lib = inst.child('lib')
54 if not os.path.isdir(lib):
55 raise RuntimeError('No lib/ in %r' % inst)
56
57 iface = util.ip_to_iface(self.addr())
58 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'), iface,
59 'host %s and port not 22' % self.addr())
60
61 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
62
63 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
64 self.process = process.Process(self.name(), self.run_dir,
65 (binary, '-c',
66 os.path.abspath(self.config_file)),
67 env=env)
68 self.suite_run.remember_to_stop(self.process)
69 self.process.launch()
70
71 def configure(self):
72 self.config_file = self.run_dir.new_file('osmo-bsc.cfg')
73 self.dbg(config_file=self.config_file)
74
75 values = dict(bsc=config.get_defaults('bsc'))
76 config.overlay(values, self.suite_run.config())
77 config.overlay(values, dict(bsc=dict(ip_address=self.ip_address)))
78
79 bts_list = []
80 for bts in self.bts:
81 bts_list.append(bts.conf_for_bsc())
82 config.overlay(values, dict(bsc=dict(net=dict(bts_list=bts_list))))
83
84 self.dbg('BSC CONFIG:\n' + pprint.pformat(values))
85
86 with open(self.config_file, 'w') as f:
87 r = template.render('osmo-bsc.cfg', values)
88 self.dbg(r)
89 f.write(r)
90
91 def addr(self):
92 return self.ip_address.get('addr')
93
94 def bts_add(self, bts):
95 self.bts.append(bts)
96 bts.set_bsc(self)
97
98 def running(self):
99 return not self.process.terminated()
100
101# vim: expandtab tabstop=4 shiftwidth=4