blob: b38527495313eac5e8d45b54b5d96155af8c332c [file] [log] [blame]
Neels Hofmeyr798e5922017-05-18 15:24:02 +02001# osmo_gsm_tester: specifics for running an osmo-mgcp-gw (osmo-bsc_mgcp)
2#
3# Copyright (C) 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 OsmoMgcpgw(log.Origin):
26 suite_run = None
27 ip_address = None
28 run_dir = None
29 config_file = None
30 process = None
31
32 def __init__(self, suite_run, ip_address, bts_ip):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020033 super().__init__(log.C_RUN, 'osmo-mgcpgw_%s' % ip_address.get('addr'))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020034 self.suite_run = suite_run
35 self.ip_address = ip_address
Neels Hofmeyr798e5922017-05-18 15:24:02 +020036 # hack: so far mgcpgw needs one specific BTS IP.
37 self.bts_ip = bts_ip
38
39 def start(self):
40 self.log('Starting osmo-mgcpgw')
41 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
42 self.configure()
43 inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-msc')))
44 binary = inst.child('bin', 'osmo-bsc_mgcp')
45 if not os.path.isfile(binary):
46 raise RuntimeError('Binary missing: %r' % binary)
47 lib = inst.child('lib')
48 if not os.path.isdir(lib):
49 raise RuntimeError('No lib/ in %r' % inst)
50
51 iface = util.ip_to_iface(self.addr())
52 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'), iface,
53 'host %s and port not 22' % self.addr())
54
55 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
56
57 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
58 self.process = process.Process(self.name(), self.run_dir,
59 (binary, '-c',
60 os.path.abspath(self.config_file)),
61 env=env)
62 self.suite_run.remember_to_stop(self.process)
63 self.process.launch()
64
65 def configure(self):
66 self.config_file = self.run_dir.new_file('osmo-mgcpgw.cfg')
67 self.dbg(config_file=self.config_file)
68
69 values = dict(mgcpgw=config.get_defaults('mgcpgw'))
70 config.overlay(values, self.suite_run.config())
71 config.overlay(values, dict(mgcpgw=dict(ip_address=self.ip_address, bts_ip=self.bts_ip)))
72
73 self.dbg('MGCPGW CONFIG:\n' + pprint.pformat(values))
74
75 with open(self.config_file, 'w') as f:
76 r = template.render('osmo-mgcpgw.cfg', values)
77 self.dbg(r)
78 f.write(r)
79
80 def addr(self):
81 return self.ip_address.get('addr')
82
83 def conf_for_msc(self):
84 return dict(mgcpgw=dict(ip_address=self.ip_address))
85
86 def running(self):
87 return not self.process.terminated()
88
89# vim: expandtab tabstop=4 shiftwidth=4