blob: 7424fb4582389a4711d887002d8ea77cc2f004f6 [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
Pau Espin Pedrol387526a2017-08-24 15:12:59 +020032 encryption = None
Pau Espin Pedrol386b78d2017-11-09 13:02:09 +010033 mgw = None
Pau Espin Pedrol1e1d3812017-11-16 18:06:37 +010034 stp = None
Neels Hofmeyr798e5922017-05-18 15:24:02 +020035
Pau Espin Pedrol1e1d3812017-11-16 18:06:37 +010036 def __init__(self, suite_run, msc, mgw, stp, ip_address):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020037 super().__init__(log.C_RUN, 'osmo-bsc_%s' % ip_address.get('addr'))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020038 self.suite_run = suite_run
39 self.ip_address = ip_address
Neels Hofmeyr798e5922017-05-18 15:24:02 +020040 self.bts = []
41 self.msc = msc
Pau Espin Pedrol386b78d2017-11-09 13:02:09 +010042 self.mgw = mgw
Pau Espin Pedrol1e1d3812017-11-16 18:06:37 +010043 self.stp = stp
Neels Hofmeyr798e5922017-05-18 15:24:02 +020044
45 def start(self):
46 self.log('Starting osmo-bsc')
Pau Espin Pedrold0912332017-06-14 13:27:08 +020047 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020048 self.configure()
49
Neels Hofmeyr36e04042017-09-04 16:49:17 +020050 inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-bsc')))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020051
52 binary = inst.child('bin', 'osmo-bsc')
53 if not os.path.isfile(binary):
54 raise RuntimeError('Binary missing: %r' % binary)
55 lib = inst.child('lib')
56 if not os.path.isdir(lib):
57 raise RuntimeError('No lib/ in %r' % inst)
58
Pau Espin Pedrol9cc1d082017-11-20 17:40:25 +010059 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'), None,
Neels Hofmeyr798e5922017-05-18 15:24:02 +020060 'host %s and port not 22' % self.addr())
61
62 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
63
64 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
65 self.process = process.Process(self.name(), self.run_dir,
66 (binary, '-c',
67 os.path.abspath(self.config_file)),
68 env=env)
69 self.suite_run.remember_to_stop(self.process)
70 self.process.launch()
71
72 def configure(self):
73 self.config_file = self.run_dir.new_file('osmo-bsc.cfg')
74 self.dbg(config_file=self.config_file)
75
76 values = dict(bsc=config.get_defaults('bsc'))
77 config.overlay(values, self.suite_run.config())
78 config.overlay(values, dict(bsc=dict(ip_address=self.ip_address)))
Pau Espin Pedrol386b78d2017-11-09 13:02:09 +010079 config.overlay(values, self.mgw.conf_for_client())
Pau Espin Pedrol1e1d3812017-11-16 18:06:37 +010080 config.overlay(values, self.stp.conf_for_client())
Neels Hofmeyr798e5922017-05-18 15:24:02 +020081
82 bts_list = []
83 for bts in self.bts:
84 bts_list.append(bts.conf_for_bsc())
85 config.overlay(values, dict(bsc=dict(net=dict(bts_list=bts_list))))
86
Pau Espin Pedrol387526a2017-08-24 15:12:59 +020087 # runtime parameters:
88 if self.encryption is not None:
Pau Espin Pedrolabd556a2017-09-04 16:26:08 +020089 encryption_vty = util.encryption2osmovty(self.encryption)
90 else:
91 encryption_vty = util.encryption2osmovty(values['bsc']['net']['encryption'])
92 config.overlay(values, dict(bsc=dict(net=dict(encryption=encryption_vty))))
Pau Espin Pedrol387526a2017-08-24 15:12:59 +020093
Neels Hofmeyr798e5922017-05-18 15:24:02 +020094 self.dbg('BSC CONFIG:\n' + pprint.pformat(values))
95
96 with open(self.config_file, 'w') as f:
97 r = template.render('osmo-bsc.cfg', values)
98 self.dbg(r)
99 f.write(r)
100
101 def addr(self):
102 return self.ip_address.get('addr')
103
Pau Espin Pedrol387526a2017-08-24 15:12:59 +0200104 def set_encryption(self, val):
105 self.encryption = val
106
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200107 def bts_add(self, bts):
108 self.bts.append(bts)
109 bts.set_bsc(self)
110
111 def running(self):
112 return not self.process.terminated()
113
114# vim: expandtab tabstop=4 shiftwidth=4