blob: 60103d74dd72aa3947389bfe960cb55b59f31c3c [file] [log] [blame]
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +00001# osmo_gsm_tester: Base class for Mobile Stations (MS)
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 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 General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20from abc import ABCMeta, abstractmethod
Pau Espin Pedrole1a58bd2020-04-10 20:46:07 +020021from ..core import log
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020022from ..core import schema
23
24def on_register_schemas():
25 resource_schema = {
26 'type': schema.STR,
27 'label': schema.STR,
28 'path': schema.STR,
29 'imsi': schema.IMSI,
30 'ki': schema.KI,
Pau Espin Pedrol0f7f2652020-07-13 12:01:10 +020031 'opc': schema.OPC,
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020032 'auth_algo': schema.AUTH_ALGO,
33 'apn_ipaddr': schema.IPV4,
34 'ciphers[]': schema.CIPHER,
35 'features[]': schema.MODEM_FEATURE
36 }
37 schema.register_resource_schema('modem', resource_schema)
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000038
39class MS(log.Origin, metaclass=ABCMeta):
40 """Base for everything about mobile/modem and SIMs."""
41
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +020042##############
43# PROTECTED
44##############
Pau Espin Pedrol83a2fdc2020-10-15 16:33:47 +020045 def __init__(self, name, testenv, conf):
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000046 super().__init__(log.C_TST, name)
Pau Espin Pedrol83a2fdc2020-10-15 16:33:47 +020047 self.testenv = testenv
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000048 self._conf = conf
Pau Espin Pedrol4b7c5852020-10-14 14:48:21 +020049 self._msisdn = None
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000050
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +020051########################
52# PUBLIC - INTERNAL API
53########################
54 @abstractmethod
55 def cleanup(self):
56 """Cleans up resources allocated."""
57 pass
58
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020059 def get_instance_by_type(testenv, conf):
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +020060 """Allocate a MS child class based on type. Opts are passed to the newly created object."""
61 ms_type = conf.get('type')
62 if ms_type is None:
63 # Map None to ofono for forward compability
64 ms_type = 'ofono'
65
66 if ms_type == 'ofono':
67 from .ms_ofono import Modem
68 ms_class = Modem
69 elif ms_type == 'osmo-mobile':
70 from .ms_osmo_mobile import MSOsmoMobile
71 ms_class = MSOsmoMobile
72 elif ms_type == 'srsue':
73 from .ms_srs import srsUE
74 ms_class = srsUE
75 elif ms_type == 'amarisoftue':
76 from .ms_amarisoft import AmarisoftUE
77 ms_class = AmarisoftUE
78 else:
79 raise log.Error('MS type not supported:', ms_type)
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020080 return ms_class(testenv, conf)
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +020081
Andre Puschmann419a6622020-05-27 18:46:12 +020082 @abstractmethod
83 def is_registered(self, mcc_mnc=None):
84 '''Check whether MS is considered registered with the target network. In
85 2G networks, and MS is registered if it had a successful Location Update
86 in CS. In 4G networks, an UE is considered registered with the core
87 network if it has obtained and IP address. If MCC/MNC are given it tries
88 to manually register against that specific network.'''
89 pass
90
91 @abstractmethod
92 def get_assigned_addr(self, ipv6=False):
93 ''' Returns last assigned IP address '''
94 pass
95
Pau Espin Pedrol1ee5ec52020-05-04 17:16:39 +020096###################
97# PUBLIC (test API included)
98###################
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000099 def imsi(self):
100 return self._conf.get('imsi')
101
102 def ki(self):
103 return self._conf.get('ki')
104
Pau Espin Pedrol0f7f2652020-07-13 12:01:10 +0200105 def opc(self):
106 return self._conf.get('opc', None)
107
Andre Puschmann22ec00a2020-03-24 09:58:06 +0100108 def apn_ipaddr(self):
109 return self._conf.get('apn_ipaddr', 'dynamic')
110
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000111 def auth_algo(self):
112 return self._conf.get('auth_algo', None)
113
114 def set_msisdn(self, msisdn):
Pau Espin Pedrol4b7c5852020-10-14 14:48:21 +0200115 self._msisdn = msisdn
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000116
117 def msisdn(self):
Pau Espin Pedrol83a2fdc2020-10-15 16:33:47 +0200118 # If none was set, allocate next one available:
119 if self._msisdn is None:
120 self.set_msisdn(self.testenv.msisdn())
Pau Espin Pedrol4b7c5852020-10-14 14:48:21 +0200121 return self._msisdn
Pau Espin Pedroleaefe6b2020-04-20 13:29:59 +0200122
123 def get_counter(self, counter_name):
124 raise log.Error('get_counter() not implemented!')