blob: a1e5e972b63c8f2267310a5cc5d580b181359666 [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001# osmo_gsm_tester: DBUS client to talk to ofono
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 Hofmeyr3531a192017-03-28 14:30:28 +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 Hofmeyr3531a192017-03-28 14:30:28 +020016#
Harald Welte27205342017-06-03 09:51:45 +020017# You should have received a copy of the GNU General Public License
Neels Hofmeyr3531a192017-03-28 14:30:28 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +020020from . import log, util, sms, process
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +020021from .event_loop import MainLoop
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +000022from .ms import MS
Neels Hofmeyr3531a192017-03-28 14:30:28 +020023
24from pydbus import SystemBus, Variant
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +020025import os
Neels Hofmeyr3531a192017-03-28 14:30:28 +020026
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +020027# Required for Gio.Cancellable.
28# See https://lazka.github.io/pgi-docs/Gio-2.0/classes/Cancellable.html#Gio.Cancellable
29from gi.module import get_introspection_module
30Gio = get_introspection_module('Gio')
31
Neels Hofmeyr3531a192017-03-28 14:30:28 +020032from gi.repository import GLib
Holger Hans Peter Freytherae0dae82019-02-20 08:57:46 +000033bus = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020034
Pau Espin Pedrol504a6642017-05-04 11:38:23 +020035I_MODEM = 'org.ofono.Modem'
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +020036I_NETREG = 'org.ofono.NetworkRegistration'
37I_SMS = 'org.ofono.MessageManager'
Pau Espin Pedrolde899612017-11-23 17:18:40 +010038I_CONNMGR = 'org.ofono.ConnectionManager'
Pau Espin Pedrold71edd12017-10-06 13:53:54 +020039I_CALLMGR = 'org.ofono.VoiceCallManager'
40I_CALL = 'org.ofono.VoiceCall'
Pau Espin Pedrol03983aa2017-06-12 15:31:27 +020041I_SS = 'org.ofono.SupplementaryServices'
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +010042I_SIMMGR = 'org.ofono.SimManager'
Pau Espin Pedrole02158f2019-02-13 19:38:09 +010043I_VOICECALL = 'org.ofono.VoiceCall'
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +020044
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +020045# See https://github.com/intgr/ofono/blob/master/doc/network-api.txt#L78
46NETREG_ST_REGISTERED = 'registered'
47NETREG_ST_ROAMING = 'roaming'
48
49NETREG_MAX_REGISTER_ATTEMPTS = 3
50
Pau Espin Pedrolbf176e42018-03-26 19:13:32 +020051class DeferredDBus:
Neels Hofmeyr035cda82017-05-05 17:52:45 +020052
53 def __init__(self, dbus_iface, handler):
54 self.handler = handler
Neels Hofmeyr47de6b02017-05-10 13:24:05 +020055 self.subscription_id = dbus_iface.connect(self.receive_signal)
Neels Hofmeyr035cda82017-05-05 17:52:45 +020056
57 def receive_signal(self, *args, **kwargs):
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +020058 MainLoop.defer(self.handler, *args, **kwargs)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +020059
Neels Hofmeyr035cda82017-05-05 17:52:45 +020060def dbus_connect(dbus_iface, handler):
61 '''This function shall be used instead of directly connecting DBus signals.
62 It ensures that we don't nest a glib main loop within another, and also
63 that we receive exceptions raised within the signal handlers. This makes it
64 so that a signal handler is invoked only after the DBus polling is through
65 by enlisting signals that should be handled in the
66 DeferredHandling.defer_queue.'''
Pau Espin Pedrolbf176e42018-03-26 19:13:32 +020067 return DeferredDBus(dbus_iface, handler).subscription_id
Pau Espin Pedrol927344b2017-05-22 16:38:49 +020068
Neels Hofmeyr93f58662017-05-03 16:32:16 +020069def systembus_get(path):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020070 global bus
Holger Hans Peter Freytherae0dae82019-02-20 08:57:46 +000071 if not bus:
72 bus = SystemBus()
Neels Hofmeyr3531a192017-03-28 14:30:28 +020073 return bus.get('org.ofono', path)
74
75def list_modems():
Neels Hofmeyr93f58662017-05-03 16:32:16 +020076 root = systembus_get('/')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020077 return sorted(root.GetModems())
78
Pau Espin Pedrole25cf042018-02-23 17:00:09 +010079def get_dbuspath_from_syspath(syspath):
80 modems = list_modems()
81 for dbuspath, props in modems:
82 if props.get('SystemPath', '') == syspath:
83 return dbuspath
84 raise ValueError('could not find %s in modem list: %s' % (syspath, modems))
85
86
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +020087def _async_result_handler(obj, result, user_data):
88 '''Generic callback dispatcher called from glib loop when an async method
89 call has returned. This callback is set up by method dbus_async_call.'''
90 (result_callback, error_callback, real_user_data) = user_data
91 try:
92 ret = obj.call_finish(result)
93 except Exception as e:
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +020094 if isinstance(e, GLib.Error) and e.code == Gio.IOErrorEnum.CANCELLED:
95 log.dbg('DBus method cancelled')
96 return
97
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +020098 if error_callback:
99 error_callback(obj, e, real_user_data)
100 else:
101 result_callback(obj, e, real_user_data)
102 return
103
104 ret = ret.unpack()
105 # to be compatible with standard Python behaviour, unbox
106 # single-element tuples and return None for empty result tuples
107 if len(ret) == 1:
108 ret = ret[0]
109 elif len(ret) == 0:
110 ret = None
111 result_callback(obj, ret, real_user_data)
112
113def dbus_async_call(instance, proxymethod, *proxymethod_args,
114 result_handler=None, error_handler=None,
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200115 user_data=None, timeout=30, cancellable=None,
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200116 **proxymethod_kwargs):
117 '''pydbus doesn't support asynchronous methods. This method adds support for
118 it until pydbus implements it'''
119
120 argdiff = len(proxymethod_args) - len(proxymethod._inargs)
121 if argdiff < 0:
122 raise TypeError(proxymethod.__qualname__ + " missing {} required positional argument(s)".format(-argdiff))
123 elif argdiff > 0:
124 raise TypeError(proxymethod.__qualname__ + " takes {} positional argument(s) but {} was/were given".format(len(proxymethod._inargs), len(proxymethod_args)))
125
126 timeout = timeout * 1000
127 user_data = (result_handler, error_handler, user_data)
128
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200129 # See https://lazka.github.io/pgi-docs/Gio-2.0/classes/DBusProxy.html#Gio.DBusProxy.call
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000130 instance._bus.con.call(
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200131 instance._bus_name, instance._path,
132 proxymethod._iface_name, proxymethod.__name__,
133 GLib.Variant(proxymethod._sinargs, proxymethod_args),
134 GLib.VariantType.new(proxymethod._soutargs),
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200135 0, timeout, cancellable,
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200136 _async_result_handler, user_data)
137
Pau Espin Pedrol7423d2e2017-08-25 12:58:25 +0200138def dbus_call_dismiss_error(log_obj, err_str, method):
139 try:
140 method()
Pau Espin Pedrol9b670212017-11-07 17:50:20 +0100141 except GLib.Error as e:
142 if Gio.DBusError.is_remote_error(e) and Gio.DBusError.get_remote_error(e) == err_str:
Pau Espin Pedrol7423d2e2017-08-25 12:58:25 +0200143 log_obj.log('Dismissed Dbus method error: %r' % e)
144 return
Pau Espin Pedrol9b670212017-11-07 17:50:20 +0100145 raise e
Pau Espin Pedrol7423d2e2017-08-25 12:58:25 +0200146
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200147class ModemDbusInteraction(log.Origin):
148 '''Work around inconveniences specific to pydbus and ofono.
149 ofono adds and removes DBus interfaces and notifies about them.
150 Upon changes we need a fresh pydbus object to benefit from that.
151 Watching the interfaces change is optional; be sure to call
152 watch_interfaces() if you'd like to have signals subscribed.
153 Related: https://github.com/LEW21/pydbus/issues/56
154 '''
155
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +0200156 modem_path = None
157 watch_props_subscription = None
158 _dbus_obj = None
159 interfaces = None
160
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200161 def __init__(self, modem_path):
162 self.modem_path = modem_path
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +0200163 super().__init__(log.C_BUS, self.modem_path)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200164 self.interfaces = set()
165
166 # A dict listing signal handlers to connect, e.g.
167 # { I_SMS: ( ('IncomingMessage', self._on_incoming_message), ), }
168 self.required_signals = {}
169
170 # A dict collecting subscription tokens for connected signal handlers.
171 # { I_SMS: ( token1, token2, ... ), }
172 self.connected_signals = util.listdict()
173
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200174 def cleanup(self):
Pau Espin Pedrol58ff38d2017-06-23 13:10:38 +0200175 self.set_powered(False)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200176 self.unwatch_interfaces()
177 for interface_name in list(self.connected_signals.keys()):
178 self.remove_signals(interface_name)
179
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200180 def __del__(self):
181 self.cleanup()
182
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200183 def get_new_dbus_obj(self):
184 return systembus_get(self.modem_path)
185
186 def dbus_obj(self):
187 if self._dbus_obj is None:
188 self._dbus_obj = self.get_new_dbus_obj()
189 return self._dbus_obj
190
191 def interface(self, interface_name):
192 try:
193 return self.dbus_obj()[interface_name]
194 except KeyError:
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +0200195 raise log.Error('Modem interface is not available:', interface_name)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200196
197 def signal(self, interface_name, signal):
198 return getattr(self.interface(interface_name), signal)
199
200 def watch_interfaces(self):
201 self.unwatch_interfaces()
202 # Note: we are watching the properties on a get_new_dbus_obj() that is
203 # separate from the one used to interact with interfaces. We need to
204 # refresh the pydbus object to interact with Interfaces that have newly
205 # appeared, but exchanging the DBus object to watch Interfaces being
206 # enabled and disabled is racy: we may skip some removals and
207 # additions. Hence do not exchange this DBus object. We don't even
208 # need to store the dbus object used for this, we will not touch it
209 # again. We only store the signal subscription.
210 self.watch_props_subscription = dbus_connect(self.get_new_dbus_obj().PropertyChanged,
211 self.on_property_change)
212 self.on_interfaces_change(self.properties().get('Interfaces'))
213
214 def unwatch_interfaces(self):
215 if self.watch_props_subscription is None:
216 return
217 self.watch_props_subscription.disconnect()
218 self.watch_props_subscription = None
219
220 def on_property_change(self, name, value):
221 if name == 'Interfaces':
222 self.on_interfaces_change(value)
Pau Espin Pedrol77631212017-09-05 19:04:06 +0200223 else:
224 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_MODEM, name, value))
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200225
226 def on_interfaces_change(self, interfaces_now):
227 # First some logging.
228 now = set(interfaces_now)
229 additions = now - self.interfaces
230 removals = self.interfaces - now
231 self.interfaces = now
232 if not (additions or removals):
233 # nothing changed.
234 return
235
236 if additions:
237 self.dbg('interface enabled:', ', '.join(sorted(additions)))
238
239 if removals:
240 self.dbg('interface disabled:', ', '.join(sorted(removals)))
241
242 # The dbus object is now stale and needs refreshing before we
243 # access the next interface function.
244 self._dbus_obj = None
245
246 # If an interface disappeared, disconnect the signal handlers for it.
247 # Even though we're going to use a fresh dbus object for new
248 # subscriptions, we will still keep active subscriptions alive on the
249 # old dbus object which will linger, associated with the respective
250 # signal subscription.
251 for removed in removals:
252 self.remove_signals(removed)
253
254 # Connect signals for added interfaces.
255 for interface_name in additions:
256 self.connect_signals(interface_name)
257
258 def remove_signals(self, interface_name):
259 got = self.connected_signals.pop(interface_name, [])
260
261 if not got:
262 return
263
264 self.dbg('Disconnecting', len(got), 'signals for', interface_name)
265 for subscription in got:
266 subscription.disconnect()
267
268 def connect_signals(self, interface_name):
269 # If an interface was added, it must not have existed before. For
270 # paranoia, make sure we have no handlers for those.
271 self.remove_signals(interface_name)
272
273 want = self.required_signals.get(interface_name, [])
274 if not want:
275 return
276
277 self.dbg('Connecting', len(want), 'signals for', interface_name)
278 for signal, cb in self.required_signals.get(interface_name, []):
279 subscription = dbus_connect(self.signal(interface_name, signal), cb)
280 self.connected_signals.add(interface_name, subscription)
281
282 def has_interface(self, *interface_names):
283 try:
284 for interface_name in interface_names:
285 self.dbus_obj()[interface_name]
286 result = True
287 except KeyError:
288 result = False
289 self.dbg('has_interface(%s) ==' % (', '.join(interface_names)), result)
290 return result
291
292 def properties(self, iface=I_MODEM):
293 return self.dbus_obj()[iface].GetProperties()
294
295 def property_is(self, name, val, iface=I_MODEM):
296 is_val = self.properties(iface).get(name)
297 self.dbg(name, '==', is_val)
298 return is_val is not None and is_val == val
299
300 def set_bool(self, name, bool_val, iface=I_MODEM):
301 # to make sure any pending signals are received before we send out more DBus requests
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200302 MainLoop.poll()
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200303
304 val = bool(bool_val)
305 self.log('Setting', name, val)
306 self.interface(iface).SetProperty(name, Variant('b', val))
307
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200308 MainLoop.wait(self, self.property_is, name, bool_val)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200309
310 def set_powered(self, powered=True):
311 self.set_bool('Powered', powered)
312
313 def set_online(self, online=True):
314 self.set_bool('Online', online)
315
316 def is_powered(self):
317 return self.property_is('Powered', True)
318
319 def is_online(self):
320 return self.property_is('Online', True)
321
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100322class ModemCall(log.Origin):
323 'ofono Modem voicecall dbus object'
324
325 def __init__(self, modem, dbuspath):
326 super().__init__(log.C_TST, dbuspath)
327 self.modem = modem
328 self.dbuspath = dbuspath
329 self.signal_list = []
330 self.register_signals()
331
332 def register_signals(self):
333 call_dbus_obj = systembus_get(self.dbuspath)
334 subscr = dbus_connect(call_dbus_obj.PropertyChanged, lambda name, value: self.on_voicecall_property_change(self.dbuspath, name, value))
335 self.signal_list.append(subscr)
336 subscr = dbus_connect(call_dbus_obj.DisconnectReason, lambda reason: self.on_voicecall_disconnect_reason(self.dbuspath, reason))
337 self.signal_list.append(subscr)
338
339 def unregister_signals(self):
340 for subscr in self.signal_list:
341 subscr.disconnect()
342 self.signal_list = []
343
344 def cleanup(self):
345 self.unregister_signals()
346
347 def __del__(self):
348 self.cleanup()
349
350 def on_voicecall_property_change(self, obj_path, name, value):
351 self.dbg('%r:%r.PropertyChanged() -> %s=%s' % (obj_path, I_VOICECALL, name, value))
352
353 def on_voicecall_disconnect_reason(self, obj_path, reason):
354 self.dbg('%r:%r.DisconnectReason() -> %s' % (obj_path, I_VOICECALL, reason))
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200355
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000356class Modem(MS):
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200357 'convenience for ofono Modem interaction'
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200358
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100359 CTX_PROT_IPv4 = 'ip'
360 CTX_PROT_IPv6 = 'ipv6'
361 CTX_PROT_IPv46 = 'dual'
362
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200363 def __init__(self, suite_run, conf):
Pau Espin Pedrole25cf042018-02-23 17:00:09 +0100364 self.syspath = conf.get('path')
365 self.dbuspath = get_dbuspath_from_syspath(self.syspath)
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000366 super().__init__(self.dbuspath, conf)
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200367 self.dbg('creating from syspath %s' % self.syspath)
Pau Espin Pedrol58603672018-08-09 13:45:55 +0200368 self._ki = None
369 self._imsi = None
Andre Puschmann22ec00a2020-03-24 09:58:06 +0100370 self._apn_ipaddr = None
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000371 self.run_dir = util.Dir(suite_run.get_test_run_dir().new_dir(self.name().strip('/')))
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200372 self.sms_received_list = []
Pau Espin Pedrole25cf042018-02-23 17:00:09 +0100373 self.dbus = ModemDbusInteraction(self.dbuspath)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200374 self.register_attempts = 0
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200375 self.call_list = []
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200376 # one Cancellable can handle several concurrent methods.
377 self.cancellable = Gio.Cancellable.new()
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200378 self.dbus.required_signals = {
379 I_SMS: ( ('IncomingMessage', self._on_incoming_message), ),
Pau Espin Pedrol56bf31c2017-05-31 12:05:20 +0200380 I_NETREG: ( ('PropertyChanged', self._on_netreg_property_changed), ),
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100381 I_CONNMGR: ( ('PropertyChanged', self._on_connmgr_property_changed), ),
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200382 I_CALLMGR: ( ('PropertyChanged', self._on_callmgr_property_changed),
383 ('CallAdded', self._on_callmgr_call_added),
384 ('CallRemoved', self._on_callmgr_call_removed), ),
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200385 }
386 self.dbus.watch_interfaces()
387
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200388 def cleanup(self):
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200389 self.dbg('cleanup')
390 if self.cancellable:
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200391 self.cancel_pending_dbus_methods()
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200392 self.cancellable = None
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100393 if self.is_powered():
394 self.power_off()
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100395 for call_obj in self.call_list:
396 call_obj.cleanup()
397 self.call_list = []
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200398 self.dbus.cleanup()
399 self.dbus = None
400
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200401 def netns(self):
402 return os.path.basename(self.syspath.rstrip('/'))
403
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200404 def properties(self, *args, **kwargs):
405 '''Return a dict of properties on this modem. For the actual arguments,
406 see ModemDbusInteraction.properties(), which this function calls. The
407 returned dict is defined by ofono. An example is:
408 {'Lockdown': False,
409 'Powered': True,
410 'Model': 'MC7304',
411 'Revision': 'SWI9X15C_05.05.66.00 r29972 CARMD-EV-FRMWR1 2015/10/08 08:36:28',
412 'Manufacturer': 'Sierra Wireless, Incorporated',
413 'Emergency': False,
414 'Interfaces': ['org.ofono.SmartMessaging',
415 'org.ofono.PushNotification',
416 'org.ofono.MessageManager',
417 'org.ofono.NetworkRegistration',
418 'org.ofono.ConnectionManager',
419 'org.ofono.SupplementaryServices',
420 'org.ofono.RadioSettings',
421 'org.ofono.AllowedAccessPoints',
422 'org.ofono.SimManager',
423 'org.ofono.LocationReporting',
424 'org.ofono.VoiceCallManager'],
425 'Serial': '356853054230919',
426 'Features': ['sms', 'net', 'gprs', 'ussd', 'rat', 'sim', 'gps'],
427 'Type': 'hardware',
428 'Online': True}
429 '''
430 return self.dbus.properties(*args, **kwargs)
431
432 def set_powered(self, powered=True):
433 return self.dbus.set_powered(powered=powered)
434
435 def set_online(self, online=True):
436 return self.dbus.set_online(online=online)
437
438 def is_powered(self):
439 return self.dbus.is_powered()
440
441 def is_online(self):
442 return self.dbus.is_online()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200443
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200444 def imsi(self):
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100445 if self._imsi is None:
446 if 'sim' in self.features():
447 if not self.is_powered():
448 self.set_powered()
449 # wait for SimManager iface to appear after we power on
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200450 MainLoop.wait(self, self.dbus.has_interface, I_SIMMGR, timeout=10)
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100451 simmgr = self.dbus.interface(I_SIMMGR)
452 # If properties are requested quickly, it may happen that Sim property is still not there.
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200453 MainLoop.wait(self, lambda: simmgr.GetProperties().get('SubscriberIdentity', None) is not None, timeout=10)
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100454 props = simmgr.GetProperties()
455 self.dbg('got SIM properties', props)
456 self._imsi = props.get('SubscriberIdentity', None)
457 else:
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000458 self._imsi = super().imsi()
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100459 if self._imsi is None:
460 raise log.Error('No IMSI')
461 return self._imsi
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200462
Pau Espin Pedrolcd6ad9d2017-08-22 19:10:20 +0200463 def set_ki(self, ki):
464 self._ki = ki
465
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200466 def ki(self):
Pau Espin Pedrolcd6ad9d2017-08-22 19:10:20 +0200467 if self._ki is not None:
468 return self._ki
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000469 return super().ki()
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200470
Andre Puschmann22ec00a2020-03-24 09:58:06 +0100471 def apn_ipaddr(self):
472 if self._apn_ipaddr is not None:
473 return self._apn_ipaddr
474 return 'dynamic'
475
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100476 def features(self):
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000477 return self._conf.get('features', [])
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100478
479 def _required_ifaces(self):
480 req_ifaces = (I_NETREG,)
481 req_ifaces += (I_SMS,) if 'sms' in self.features() else ()
482 req_ifaces += (I_SS,) if 'ussd' in self.features() else ()
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100483 req_ifaces += (I_CONNMGR,) if 'gprs' in self.features() else ()
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100484 req_ifaces += (I_SIMMGR,) if 'sim' in self.features() else ()
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100485 return req_ifaces
486
Pau Espin Pedrol56bf31c2017-05-31 12:05:20 +0200487 def _on_netreg_property_changed(self, name, value):
488 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_NETREG, name, value))
489
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200490 def is_connected(self, mcc_mnc=None):
491 netreg = self.dbus.interface(I_NETREG)
492 prop = netreg.GetProperties()
493 status = prop.get('Status')
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200494 self.dbg('status:', status)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200495 if not (status == NETREG_ST_REGISTERED or status == NETREG_ST_ROAMING):
496 return False
497 if mcc_mnc is None: # Any network is fine and we are registered.
498 return True
499 mcc = prop.get('MobileCountryCode')
500 mnc = prop.get('MobileNetworkCode')
501 if (mcc, mnc) == mcc_mnc:
502 return True
503 return False
504
505 def schedule_scan_register(self, mcc_mnc):
506 if self.register_attempts > NETREG_MAX_REGISTER_ATTEMPTS:
Pau Espin Pedrolcc5b5a22017-06-13 16:55:31 +0200507 raise log.Error('Failed to find Network Operator', mcc_mnc=mcc_mnc, attempts=self.register_attempts)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200508 self.register_attempts += 1
509 netreg = self.dbus.interface(I_NETREG)
510 self.dbg('Scanning for operators...')
511 # Scan method can take several seconds, and we don't want to block
512 # waiting for that. Make it async and try to register when the scan is
513 # finished.
514 register_func = self.scan_cb_register_automatic if mcc_mnc is None else self.scan_cb_register
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200515 result_handler = lambda obj, result, user_data: MainLoop.defer(register_func, result, user_data)
516 error_handler = lambda obj, e, user_data: MainLoop.defer(self.scan_cb_error_handler, e, mcc_mnc)
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200517 dbus_async_call(netreg, netreg.Scan, timeout=30, cancellable=self.cancellable,
518 result_handler=result_handler, error_handler=error_handler,
519 user_data=mcc_mnc)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200520
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200521 def scan_cb_error_handler(self, e, mcc_mnc):
522 # It was detected that Scan() method can fail for some modems on some
523 # specific circumstances. For instance it fails with org.ofono.Error.Failed
524 # if the modem starts to register internally after we started Scan() and
525 # the registering succeeds while we are still waiting for Scan() to finsih.
526 # So far the easiest seems to check if we are now registered and
527 # otherwise schedule a scan again.
Pau Espin Pedrol910f3a12017-06-13 16:59:19 +0200528 self.err('Scan() failed, retrying if needed:', e)
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200529 if not self.is_connected(mcc_mnc):
530 self.schedule_scan_register(mcc_mnc)
Pau Espin Pedrol910f3a12017-06-13 16:59:19 +0200531 else:
532 self.log('Already registered with network', mcc_mnc)
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200533
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200534 def scan_cb_register_automatic(self, scanned_operators, mcc_mnc):
535 self.dbg('scanned operators: ', scanned_operators);
536 for op_path, op_prop in scanned_operators:
537 if op_prop.get('Status') == 'current':
538 mcc = op_prop.get('MobileCountryCode')
539 mnc = op_prop.get('MobileNetworkCode')
540 self.log('Already registered with network', (mcc, mnc))
541 return
542 self.log('Registering with the default network')
543 netreg = self.dbus.interface(I_NETREG)
Pau Espin Pedrol7423d2e2017-08-25 12:58:25 +0200544 dbus_call_dismiss_error(self, 'org.ofono.Error.InProgress', netreg.Register)
545
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200546
547 def scan_cb_register(self, scanned_operators, mcc_mnc):
548 self.dbg('scanned operators: ', scanned_operators);
549 matching_op_path = None
550 for op_path, op_prop in scanned_operators:
551 mcc = op_prop.get('MobileCountryCode')
552 mnc = op_prop.get('MobileNetworkCode')
553 if (mcc, mnc) == mcc_mnc:
554 if op_prop.get('Status') == 'current':
555 self.log('Already registered with network', mcc_mnc)
556 # We discovered the network and we are already registered
557 # with it. Avoid calling op.Register() in this case (it
558 # won't act as a NO-OP, it actually returns an error).
559 return
560 matching_op_path = op_path
561 break
562 if matching_op_path is None:
563 self.dbg('Failed to find Network Operator', mcc_mnc=mcc_mnc, attempts=self.register_attempts)
564 self.schedule_scan_register(mcc_mnc)
565 return
566 dbus_op = systembus_get(matching_op_path)
567 self.log('Registering with operator', matching_op_path, mcc_mnc)
Pau Espin Pedrol9f59b822017-11-07 17:50:52 +0100568 try:
569 dbus_call_dismiss_error(self, 'org.ofono.Error.InProgress', dbus_op.Register)
570 except GLib.Error as e:
571 if Gio.DBusError.is_remote_error(e) and Gio.DBusError.get_remote_error(e) == 'org.ofono.Error.NotSupported':
572 self.log('modem does not support manual registering, attempting automatic registering')
573 self.scan_cb_register_automatic(scanned_operators, mcc_mnc)
574 return
575 raise e
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200576
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200577 def cancel_pending_dbus_methods(self):
578 self.cancellable.cancel()
579 # Cancel op is applied as a signal coming from glib mainloop, so we
580 # need to run it and wait for the callbacks to handle cancellations.
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200581 MainLoop.poll()
Pau Espin Pedrole685c622017-10-04 18:30:22 +0200582 # once it has been triggered, create a new one for next operation:
583 self.cancellable = Gio.Cancellable.new()
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200584
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100585 def power_off(self):
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100586 if self.dbus.has_interface(I_CONNMGR) and self.is_attached():
587 self.detach()
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100588 self.set_online(False)
589 self.set_powered(False)
590 req_ifaces = self._required_ifaces()
591 for iface in req_ifaces:
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200592 MainLoop.wait(self, lambda: not self.dbus.has_interface(iface), timeout=10)
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100593
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200594 def power_cycle(self):
595 'Power the modem and put it online, power cycle it if it was already on'
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100596 req_ifaces = self._required_ifaces()
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200597 if self.is_powered():
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200598 self.dbg('Power cycling')
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100599 self.power_off()
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200600 else:
601 self.dbg('Powering on')
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200602 self.set_powered()
Pau Espin Pedrolb9955762017-05-02 09:39:27 +0200603 self.set_online()
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200604 MainLoop.wait(self, self.dbus.has_interface, *req_ifaces, timeout=10)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200605
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200606 def connect(self, mcc_mnc=None):
607 'Connect to MCC+MNC'
608 if (mcc_mnc is not None) and (len(mcc_mnc) != 2 or None in mcc_mnc):
Pau Espin Pedrolcc5b5a22017-06-13 16:55:31 +0200609 raise log.Error('mcc_mnc value is invalid. It should be None or contain both valid mcc and mnc values:', mcc_mnc=mcc_mnc)
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200610 # if test called connect() before and async scanning has not finished, we need to get rid of it:
611 self.cancel_pending_dbus_methods()
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200612 self.power_cycle()
613 self.register_attempts = 0
614 if self.is_connected(mcc_mnc):
615 self.log('Already registered with', mcc_mnc if mcc_mnc else 'default network')
616 else:
617 self.log('Connect to', mcc_mnc if mcc_mnc else 'default network')
618 self.schedule_scan_register(mcc_mnc)
619
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100620 def is_attached(self):
621 connmgr = self.dbus.interface(I_CONNMGR)
622 prop = connmgr.GetProperties()
623 attached = prop.get('Attached')
624 self.dbg('attached:', attached)
625 return attached
626
627 def attach(self, allow_roaming=False):
628 self.dbg('attach')
629 if self.is_attached():
630 self.detach()
631 connmgr = self.dbus.interface(I_CONNMGR)
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000632 connmgr.SetProperty('RoamingAllowed', Variant('b', allow_roaming))
633 connmgr.SetProperty('Powered', Variant('b', True))
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100634
635 def detach(self):
636 self.dbg('detach')
637 connmgr = self.dbus.interface(I_CONNMGR)
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000638 connmgr.SetProperty('RoamingAllowed', Variant('b', False))
639 connmgr.SetProperty('Powered', Variant('b', False))
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100640 connmgr.DeactivateAll()
641 connmgr.ResetContexts() # Requires Powered=false
642
643 def activate_context(self, apn='internet', user='ogt', pwd='', protocol='ip'):
Pau Espin Pedrolb05e36a2017-12-15 12:39:36 +0100644 self.dbg('activate_context', apn=apn, user=user, protocol=protocol)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100645
646 connmgr = self.dbus.interface(I_CONNMGR)
647 ctx_path = connmgr.AddContext('internet')
648
649 ctx = systembus_get(ctx_path)
650 ctx.SetProperty('AccessPointName', Variant('s', apn))
651 ctx.SetProperty('Username', Variant('s', user))
652 ctx.SetProperty('Password', Variant('s', pwd))
653 ctx.SetProperty('Protocol', Variant('s', protocol))
654
655 # Activate can only be called after we are attached
656 ctx.SetProperty('Active', Variant('b', True))
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200657 MainLoop.wait(self, lambda: ctx.GetProperties()['Active'] == True)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100658 self.log('context activated', path=ctx_path, apn=apn, user=user, properties=ctx.GetProperties())
659 return ctx_path
660
661 def deactivate_context(self, ctx_id):
Pau Espin Pedrol263dd3b2018-02-13 16:53:51 +0100662 self.dbg('deactivate_context', path=ctx_id)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100663 ctx = systembus_get(ctx_id)
664 ctx.SetProperty('Active', Variant('b', False))
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200665 MainLoop.wait(self, lambda: ctx.GetProperties()['Active'] == False)
Pau Espin Pedrolcdac2972018-02-16 15:14:32 +0100666 self.dbg('deactivate_context active=false, removing', path=ctx_id)
667 connmgr = self.dbus.interface(I_CONNMGR)
668 connmgr.RemoveContext(ctx_id)
Pau Espin Pedrolb05aa3c2018-02-16 15:03:50 +0100669 self.log('context deactivated', path=ctx_id)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100670
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200671 def run_netns_wait(self, name, popen_args):
672 proc = process.NetNSProcess(name, self.run_dir.new_dir(name), self.netns(), popen_args,
673 env={})
Pau Espin Pedrol79df7392018-11-12 18:15:30 +0100674 proc.launch_sync()
Pau Espin Pedrol2bcd3462020-03-05 18:30:37 +0100675 return proc
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200676
677 def setup_context_data_plane(self, ctx_id):
678 self.dbg('setup_context_data', path=ctx_id)
679 ctx = systembus_get(ctx_id)
680 ctx_settings = ctx.GetProperties().get('Settings', None)
681 if not ctx_settings:
682 raise log.Error('%s no Settings found! No way to get iface!' % ctx_id)
683 iface = ctx_settings.get('Interface', None)
684 if not iface:
685 raise log.Error('%s Settings contains no iface! %r' % (ctx_id, repr(ctx_settings)))
Pau Espin Pedrol4c8cd7b2019-04-04 16:08:27 +0200686 util.move_iface_to_netns(iface, self.netns(), self.run_dir.new_dir('move_netns'))
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200687 self.run_netns_wait('ifup', ('ip', 'link', 'set', 'dev', iface, 'up'))
688 self.run_netns_wait('dhcp', ('udhcpc', '-q', '-i', iface))
689
Neels Hofmeyr8c7477f2017-05-25 04:33:53 +0200690 def sms_send(self, to_msisdn_or_modem, *tokens):
691 if isinstance(to_msisdn_or_modem, Modem):
692 to_msisdn = to_msisdn_or_modem.msisdn
693 tokens = list(tokens)
694 tokens.append('to ' + to_msisdn_or_modem.name())
695 else:
696 to_msisdn = str(to_msisdn_or_modem)
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200697 msg = sms.Sms(self.msisdn, to_msisdn, 'from ' + self.name(), *tokens)
698 self.log('sending sms to MSISDN', to_msisdn, sms=msg)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200699 mm = self.dbus.interface(I_SMS)
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200700 mm.SendMessage(to_msisdn, str(msg))
701 return msg
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200702
703 def _on_incoming_message(self, message, info):
Neels Hofmeyr2e41def2017-05-06 22:42:57 +0200704 self.log('Incoming SMS:', repr(message))
Neels Hofmeyrf49c7da2017-05-06 22:43:32 +0200705 self.dbg(info=info)
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200706 self.sms_received_list.append((message, info))
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200707
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200708 def sms_was_received(self, sms_obj):
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200709 for msg, info in self.sms_received_list:
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200710 if sms_obj.matches(msg):
Neels Hofmeyr2e41def2017-05-06 22:42:57 +0200711 self.log('SMS received as expected:', repr(msg))
Neels Hofmeyrf49c7da2017-05-06 22:43:32 +0200712 self.dbg(info=info)
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200713 return True
714 return False
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200715
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200716 def call_id_list(self):
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100717 li = [call.dbuspath for call in self.call_list]
718 self.dbg('call_id_list: %r' % li)
719 return li
720
721 def call_find_by_id(self, id):
722 for call in self.call_list:
723 if call.dbuspath == id:
724 return call
725 return None
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200726
727 def call_dial(self, to_msisdn_or_modem):
728 if isinstance(to_msisdn_or_modem, Modem):
729 to_msisdn = to_msisdn_or_modem.msisdn
730 else:
731 to_msisdn = str(to_msisdn_or_modem)
732 self.dbg('Dialing:', to_msisdn)
733 cmgr = self.dbus.interface(I_CALLMGR)
734 call_obj_path = cmgr.Dial(to_msisdn, 'default')
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100735 if self.call_find_by_id(call_obj_path) is None:
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200736 self.dbg('Adding %s to call list' % call_obj_path)
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100737 self.call_list.append(ModemCall(self, call_obj_path))
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200738 else:
739 self.dbg('Dial returned already existing call')
740 return call_obj_path
741
742 def _find_call_msisdn_state(self, msisdn, state):
743 cmgr = self.dbus.interface(I_CALLMGR)
744 ret = cmgr.GetCalls()
745 for obj_path, props in ret:
746 if props['LineIdentification'] == msisdn and props['State'] == state:
747 return obj_path
748 return None
749
750 def call_wait_incoming(self, caller_msisdn_or_modem, timeout=60):
751 if isinstance(caller_msisdn_or_modem, Modem):
752 caller_msisdn = caller_msisdn_or_modem.msisdn
753 else:
754 caller_msisdn = str(caller_msisdn_or_modem)
755 self.dbg('Waiting for incoming call from:', caller_msisdn)
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200756 MainLoop.wait(self, lambda: self._find_call_msisdn_state(caller_msisdn, 'incoming') is not None, timeout=timeout)
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200757 return self._find_call_msisdn_state(caller_msisdn, 'incoming')
758
759 def call_answer(self, call_id):
760 self.dbg('Answer call %s' % call_id)
761 assert self.call_state(call_id) == 'incoming'
762 call_dbus_obj = systembus_get(call_id)
763 call_dbus_obj.Answer()
Pau Espin Pedrol4d7f7702019-02-13 19:30:38 +0100764 self.dbg('Answered call %s' % call_id)
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200765
766 def call_hangup(self, call_id):
767 self.dbg('Hang up call %s' % call_id)
768 call_dbus_obj = systembus_get(call_id)
769 call_dbus_obj.Hangup()
770
771 def call_is_active(self, call_id):
772 return self.call_state(call_id) == 'active'
773
774 def call_state(self, call_id):
Pau Espin Pedrolccb1bc62018-04-22 12:58:08 +0200775 try:
776 call_dbus_obj = systembus_get(call_id)
777 props = call_dbus_obj.GetProperties()
778 state = props.get('State')
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000779 except Exception:
Pau Espin Pedrolccb1bc62018-04-22 12:58:08 +0200780 self.log('asking call state for non existent call')
781 log.log_exn()
782 state = 'disconnected'
Pau Espin Pedrol32e9d8c2019-02-13 17:40:31 +0100783 self.dbg('call state: %s' % state, call_id=call_id)
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200784 return state
785
786 def _on_callmgr_call_added(self, obj_path, properties):
787 self.dbg('%r.CallAdded() -> %s=%r' % (I_CALLMGR, obj_path, repr(properties)))
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100788 if self.call_find_by_id(obj_path) is None:
789 self.call_list.append(ModemCall(self, obj_path))
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200790 else:
791 self.dbg('Call already exists %r' % obj_path)
792
793 def _on_callmgr_call_removed(self, obj_path):
794 self.dbg('%r.CallRemoved() -> %s' % (I_CALLMGR, obj_path))
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100795 call_obj = self.call_find_by_id(obj_path)
796 if call_obj is not None:
797 self.call_list.remove(call_obj)
798 call_obj.cleanup()
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200799 else:
800 self.dbg('Trying to remove non-existing call %r' % obj_path)
801
802 def _on_callmgr_property_changed(self, name, value):
803 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_CALLMGR, name, value))
804
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100805 def _on_connmgr_property_changed(self, name, value):
806 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_CONNMGR, name, value))
807
Pau Espin Pedrolee6e4912017-09-05 18:46:34 +0200808 def info(self, keys=('Manufacturer', 'Model', 'Revision', 'Serial')):
Neels Hofmeyrb8011692017-05-29 03:45:24 +0200809 props = self.properties()
810 return ', '.join(['%s: %r'%(k,props.get(k)) for k in keys])
811
812 def log_info(self, *args, **kwargs):
813 self.log(self.info(*args, **kwargs))
814
Pau Espin Pedrol03983aa2017-06-12 15:31:27 +0200815 def ussd_send(self, command):
816 ss = self.dbus.interface(I_SS)
817 service_type, response = ss.Initiate(command)
818 return response
819
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200820# vim: expandtab tabstop=4 shiftwidth=4