blob: 1c361ddac09cbda3e03f4ccc880b2113e22287c0 [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
Neels Hofmeyr798e5922017-05-18 15:24:02 +020021import pprint
Pau Espin Pedrol6610dfe2017-08-23 17:02:38 +020022import sqlite3
Neels Hofmeyr798e5922017-05-18 15:24:02 +020023
Holger Hans Peter Freyther91067232019-02-27 04:33:21 +000024from . import log, util, config, template, process, pcap_recorder
Neels Hofmeyr798e5922017-05-18 15:24:02 +020025
26class OsmoHlr(log.Origin):
Neels Hofmeyr798e5922017-05-18 15:24:02 +020027 run_dir = None
28 config_file = None
29 process = None
30 next_subscriber_id = 1
31
32 def __init__(self, suite_run, ip_address):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020033 super().__init__(log.C_RUN, 'osmo-hlr_%s' % ip_address.get('addr'))
Pau Espin Pedrol58603672018-08-09 13:45:55 +020034 self.run_dir = None
35 self.config_file = None
36 self.process = None
37 self.next_subscriber_id = 1
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
41 def start(self):
42 self.log('Starting osmo-hlr')
Pau Espin Pedrold0912332017-06-14 13:27:08 +020043 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
Neels Hofmeyr798e5922017-05-18 15:24:02 +020044 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):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020050 raise log.Error('Binary missing:', binary)
Neels Hofmeyr798e5922017-05-18 15:24:02 +020051 lib = inst.child('lib')
52 if not os.path.isdir(lib):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020053 raise log.Error('No lib/ in', inst)
Neels Hofmeyr798e5922017-05-18 15:24:02 +020054
55 # bootstrap an empty hlr.db
56 self.db_file = self.run_dir.new_file('hlr.db')
Pau Espin Pedrolc81e2652018-07-03 11:56:03 +020057 sql_input = inst.child('share/doc/osmo-hlr/sql/hlr.sql')
Neels Hofmeyr798e5922017-05-18 15:24:02 +020058 if not os.path.isfile(sql_input):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020059 raise log.Error('hlr.sql missing:', sql_input)
Neels Hofmeyr798e5922017-05-18 15:24:02 +020060 self.run_local('create_hlr_db', ('/bin/sh', '-c', 'sqlite3 %r < %r' % (self.db_file, sql_input)))
61
Pau Espin Pedrol9cc1d082017-11-20 17:40:25 +010062 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'), None,
Neels Hofmeyr798e5922017-05-18 15:24:02 +020063 'host %s' % self.addr())
64
65 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
66
67 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
68 self.process = process.Process(self.name(), self.run_dir,
69 (binary,
70 '-c', os.path.abspath(self.config_file),
71 '--database', self.db_file),
72 env=env)
73 self.suite_run.remember_to_stop(self.process)
74 self.process.launch()
75
76 def configure(self):
77 self.config_file = self.run_dir.new_file('osmo-hlr.cfg')
78 self.dbg(config_file=self.config_file)
79
80 values = dict(hlr=config.get_defaults('hlr'))
81 config.overlay(values, self.suite_run.config())
82 config.overlay(values, dict(hlr=dict(ip_address=self.ip_address)))
83
84 self.dbg('HLR CONFIG:\n' + pprint.pformat(values))
85
86 with open(self.config_file, 'w') as f:
87 r = template.render('osmo-hlr.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 running(self):
95 return not self.process.terminated()
96
97 def run_local(self, name, popen_args):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020098 run_dir = self.run_dir.new_dir(name)
99 proc = process.Process(name, run_dir, popen_args)
100 proc.launch()
101 proc.wait()
102 if proc.result != 0:
103 log.ctx(proc)
104 raise log.Error('Exited in error')
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200105
Neels Hofmeyr0af893c2017-12-14 15:18:05 +0100106 def subscriber_add(self, modem, msisdn=None, algo_str=None):
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200107 if msisdn is None:
108 msisdn = self.suite_run.resources_pool.next_msisdn(modem)
109 modem.set_msisdn(msisdn)
110 subscriber_id = self.next_subscriber_id
111 self.next_subscriber_id += 1
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200112
Neels Hofmeyr0af893c2017-12-14 15:18:05 +0100113 if algo_str is None:
114 algo_str = modem.auth_algo() or util.OSMO_AUTH_ALGO_NONE
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200115
Neels Hofmeyr0af893c2017-12-14 15:18:05 +0100116 if algo_str != util.OSMO_AUTH_ALGO_NONE and not modem.ki():
117 raise log.Error("Auth algo %r selected but no KI specified" % algo_str)
118
119 algo = util.osmo_auth_algo_by_name(algo_str)
120
121 self.log('Add subscriber', msisdn=msisdn, imsi=modem.imsi(), subscriber_id=subscriber_id,
122 algo_str=algo_str, algo=algo)
Pau Espin Pedrol6610dfe2017-08-23 17:02:38 +0200123 conn = sqlite3.connect(self.db_file)
124 try:
125 c = conn.cursor()
126 c.execute('insert into subscriber (id, imsi, msisdn) values (?, ?, ?)',
127 (subscriber_id, modem.imsi(), modem.msisdn,))
128 c.execute('insert into auc_2g (subscriber_id, algo_id_2g, ki) values (?, ?, ?)',
129 (subscriber_id, algo, modem.ki(),))
130 conn.commit()
131 finally:
132 conn.close()
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200133 return subscriber_id
134
Pau Espin Pedrol0755cdb2017-08-23 17:03:48 +0200135 def subscriber_delete(self, modem):
136 self.log('Add subscriber', imsi=modem.imsi())
137 conn = sqlite3.connect(self.db_file)
138 try:
139 c = conn.cursor()
140 c.execute('select id from subscriber where imsi = ?', (modem.imsi(),))
141 subscriber_id = c.fetchone()[0]
142 c.execute('delete from subscriber where id = ?', (subscriber_id,))
143 c.execute('delete from auc_2g where subscriber_id = ?', (subscriber_id,))
144 conn.commit()
145 finally:
146 conn.close()
147
Pau Espin Pedrol5bbb3002017-11-23 11:07:02 +0100148 def conf_for_client(self):
Neels Hofmeyr7b02ed02017-06-08 23:08:59 +0200149 return dict(hlr=dict(ip_address=self.ip_address))
150
Neels Hofmeyr798e5922017-05-18 15:24:02 +0200151# vim: expandtab tabstop=4 shiftwidth=4