blob: 3492f0653ce5b19e2c1dc89c8cf45ff9f604d75b [file] [log] [blame]
Neels Hofmeyr798e5922017-05-18 15:24:02 +02001# osmo_gsm_tester: specifics for running an osmo-hlr
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 re
22import pprint
23
24from . import log, util, config, template, process, osmo_ctrl, pcap_recorder
25
26class OsmoHlr(log.Origin):
27 suite_run = None
28 ip_address = None
29 run_dir = None
30 config_file = None
31 process = None
32 next_subscriber_id = 1
33
34 def __init__(self, suite_run, ip_address):
35 self.suite_run = suite_run
36 self.ip_address = ip_address
37 self.set_log_category(log.C_RUN)
38 self.set_name('osmo-hlr_%s' % ip_address.get('addr'))
39 self.bts = []
40
41 def start(self):
42 self.log('Starting osmo-hlr')
43 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
44 self.configure()
45
46 inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-hlr')))
47
48 binary = inst.child('bin', 'osmo-hlr')
49 if not os.path.isfile(binary):
50 self.raise_exn('Binary missing:', binary)
51 lib = inst.child('lib')
52 if not os.path.isdir(lib):
53 self.raise_exn('No lib/ in', inst)
54
55 # bootstrap an empty hlr.db
56 self.db_file = self.run_dir.new_file('hlr.db')
57 sql_input = inst.child('share/doc/osmo-hlr/hlr.sql')
58 if not os.path.isfile(sql_input):
59 self.raise_exn('hlr.sql missing:', sql_input)
60 self.run_local('create_hlr_db', ('/bin/sh', '-c', 'sqlite3 %r < %r' % (self.db_file, sql_input)))
61
62 iface = util.ip_to_iface(self.addr())
63 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'), iface,
64 'host %s' % self.addr())
65
66 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
67
68 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
69 self.process = process.Process(self.name(), self.run_dir,
70 (binary,
71 '-c', os.path.abspath(self.config_file),
72 '--database', self.db_file),
73 env=env)
74 self.suite_run.remember_to_stop(self.process)
75 self.process.launch()
76
77 def configure(self):
78 self.config_file = self.run_dir.new_file('osmo-hlr.cfg')
79 self.dbg(config_file=self.config_file)
80
81 values = dict(hlr=config.get_defaults('hlr'))
82 config.overlay(values, self.suite_run.config())
83 config.overlay(values, dict(hlr=dict(ip_address=self.ip_address)))
84
85 self.dbg('HLR CONFIG:\n' + pprint.pformat(values))
86
87 with open(self.config_file, 'w') as f:
88 r = template.render('osmo-hlr.cfg', values)
89 self.dbg(r)
90 f.write(r)
91
92 def addr(self):
93 return self.ip_address.get('addr')
94
95 def running(self):
96 return not self.process.terminated()
97
98 def run_local(self, name, popen_args):
99 with self:
100 run_dir = self.run_dir.new_dir(name)
101 proc = process.Process(name, run_dir, popen_args)
102 proc.launch()
103 proc.wait()
104 if proc.result != 0:
105 proc.raise_exn('Exited in error')
106
107 def run_sql_file(self, name, sql_file):
108 self.run_local(name, ('/bin/sh', '-c', 'sqlite3 %r < %r' % (self.db_file, sql_file)))
109
110 def run_sql(self, name, sql):
111 self.dbg('SQL:', repr(sql))
112 sql_file = self.run_dir.new_file(name + '.sql')
113 with open(sql_file, 'w') as f:
114 f.write(sql)
115 self.run_sql_file(name, sql_file)
116
117 def subscriber_add(self, modem, msisdn=None):
118 if msisdn is None:
119 msisdn = self.suite_run.resources_pool.next_msisdn(modem)
120 modem.set_msisdn(msisdn)
121 subscriber_id = self.next_subscriber_id
122 self.next_subscriber_id += 1
123 self.log('Add subscriber', msisdn=msisdn, imsi=modem.imsi(), subscriber_id=subscriber_id)
124 self.run_sql('add_subscriber',
125 'insert into subscriber (id, imsi, msisdn) values (%r, %r, %r);'
126 % (subscriber_id, modem.imsi(), modem.msisdn))
127 return subscriber_id
128
Neels Hofmeyr7b02ed02017-06-08 23:08:59 +0200129 def conf_for_msc(self):
130 return dict(hlr=dict(ip_address=self.ip_address))
131
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200132# vim: expandtab tabstop=4 shiftwidth=4