blob: 6ead67ac380c834ef60ec271675e19a5562bccb9 [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001# osmo_gsm_tester: specifics for running an osmo-nitb
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
8# it under the terms of the GNU Affero General Public License as
9# 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
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
21import random
22import re
23import socket
24
Neels Hofmeyr1fe012e2017-05-14 15:45:05 +020025from . import log, util, config, template, process, osmo_ctrl, pcap_recorder
Neels Hofmeyr3531a192017-03-28 14:30:28 +020026
27class OsmoNitb(log.Origin):
28 suite_run = None
29 nitb_iface = None
30 run_dir = None
31 config_file = None
32 process = None
33 bts = None
34
35 def __init__(self, suite_run, nitb_iface):
36 self.suite_run = suite_run
37 self.nitb_iface = nitb_iface
38 self.set_log_category(log.C_RUN)
39 self.set_name('osmo-nitb_%s' % nitb_iface.get('addr'))
40 self.bts = []
41
42 def start(self):
43 self.log('Starting osmo-nitb')
44 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
45 self.configure()
Your Name3c6673a2017-04-08 18:52:39 +020046 inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-nitb')))
47 binary = inst.child('bin', 'osmo-nitb')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020048 if not os.path.isfile(binary):
49 raise RuntimeError('Binary missing: %r' % binary)
Your Name3c6673a2017-04-08 18:52:39 +020050 lib = inst.child('lib')
51 if not os.path.isdir(lib):
52 raise RuntimeError('No lib/ in %r' % inst)
Pau Espin Pedrole39c6f12017-05-08 16:21:38 +020053
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020054 iface = util.ip_to_iface(self.addr())
Neels Hofmeyr1fe012e2017-05-14 15:45:05 +020055 pcap_recorder.PcapRecorder(self.suite_run, self.run_dir.new_dir('pcap'),
56 iface, self.addr())
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020057
Pau Espin Pedrole39c6f12017-05-08 16:21:38 +020058 env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
59
Neels Hofmeyr3531a192017-03-28 14:30:28 +020060 self.dbg(run_dir=self.run_dir, binary=binary, env=env)
61 self.process = process.Process(self.name(), self.run_dir,
62 (binary, '-c',
63 os.path.abspath(self.config_file)),
64 env=env)
65 self.suite_run.remember_to_stop(self.process)
66 self.process.launch()
67
68 def configure(self):
69 self.config_file = self.run_dir.new_file('osmo-nitb.cfg')
70 self.dbg(config_file=self.config_file)
71
72 values = dict(nitb=config.get_defaults('nitb'))
73 config.overlay(values, self.suite_run.config())
74 config.overlay(values, dict(nitb_iface=self.nitb_iface))
75
76 bts_list = []
77 for bts in self.bts:
78 bts_list.append(bts.conf_for_nitb())
79 config.overlay(values, dict(nitb=dict(net=dict(bts_list=bts_list))))
80
81 self.dbg(conf=values)
82
83 with open(self.config_file, 'w') as f:
84 r = template.render('osmo-nitb.cfg', values)
85 self.dbg(r)
86 f.write(r)
87
88 def addr(self):
89 return self.nitb_iface.get('addr')
90
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +020091 def bts_add(self, bts):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020092 self.bts.append(bts)
93 bts.set_nitb(self)
94
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +020095 def subscriber_add(self, modem, msisdn=None):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020096 if msisdn is None:
97 msisdn = self.suite_run.resources_pool.next_msisdn(modem)
98 modem.set_msisdn(msisdn)
99 self.log('Add subscriber', msisdn=msisdn, imsi=modem.imsi())
100 with self:
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200101 OsmoNitbCtrl(self).subscriber_add(modem.imsi(), msisdn, modem.ki())
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200102
103 def subscriber_attached(self, *modems):
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200104 return self.imsi_attached(*[m.imsi() for m in modems])
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200105
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200106 def imsi_attached(self, *imsis):
107 attached = self.imsi_list_attached()
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200108 self.dbg('attached:', attached)
109 return all([(imsi in attached) for imsi in imsis])
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200110
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200111 def imsi_list_attached(self):
112 with self:
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200113 return OsmoNitbCtrl(self).subscriber_list_active()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200114
115 def running(self):
116 return not self.process.terminated()
117
118
119class OsmoNitbCtrl(log.Origin):
120 PORT = 4249
121 SUBSCR_MODIFY_VAR = 'subscriber-modify-v1'
122 SUBSCR_MODIFY_REPLY_RE = re.compile("SET_REPLY (\d+) %s OK" % SUBSCR_MODIFY_VAR)
123 SUBSCR_LIST_ACTIVE_VAR = 'subscriber-list-active-v1'
124
125 def __init__(self, nitb):
126 self.nitb = nitb
127 self.set_name('CTRL(%s:%d)' % (self.nitb.addr(), OsmoNitbCtrl.PORT))
128 self.set_child_of(nitb)
129
130 def ctrl(self):
131 return osmo_ctrl.OsmoCtrl(self.nitb.addr(), OsmoNitbCtrl.PORT)
132
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200133 def subscriber_add(self, imsi, msisdn, ki=None, algo=None):
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200134 created = False
135 if ki and not algo:
136 algo = 'comp128v1'
137
138 if algo:
139 value = '%s,%s,%s,%s' % (imsi,msisdn,algo,ki)
140 else:
141 value = '%s,%s' % (imsi, msisdn)
142
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200143 with self.ctrl() as ctrl:
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200144 ctrl.do_set(OsmoNitbCtrl.SUBSCR_MODIFY_VAR, value)
145 data = ctrl.receive()
146 (answer, data) = ctrl.remove_ipa_ctrl_header(data)
147 answer_str = answer.decode('utf-8')
148 res = OsmoNitbCtrl.SUBSCR_MODIFY_REPLY_RE.match(answer_str)
149 if not res:
150 raise RuntimeError('Cannot create subscriber %r (answer=%r)' % (imsi, answer_str))
151 self.dbg('Created subscriber', imsi=imsi, msisdn=msisdn)
152 return True
153
154 def subscriber_list_active(self):
155 var = 'subscriber-list-active-v1'
156 aslist_str = ""
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200157 with self.ctrl() as ctrl:
158 ctrl.do_get(OsmoNitbCtrl.SUBSCR_LIST_ACTIVE_VAR)
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200159 # This is legacy code from the old osmo-gsm-tester.
160 # looks like this doesn't work for long data.
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200161 data = ctrl.receive()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200162 while (len(data) > 0):
Neels Hofmeyrb02c2112017-04-09 18:46:48 +0200163 (answer, data) = ctrl.remove_ipa_ctrl_header(data)
164 answer_str = answer.decode('utf-8')
165 answer_str = answer_str.replace('\n', ' ')
166 aslist_str = answer_str
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200167 return aslist_str
168
169# vim: expandtab tabstop=4 shiftwidth=4