blob: 28f7f0487e5d115e24547c3ebf4a12439a64cb11 [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
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000370 self.run_dir = util.Dir(suite_run.get_test_run_dir().new_dir(self.name().strip('/')))
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200371 self.sms_received_list = []
Pau Espin Pedrole25cf042018-02-23 17:00:09 +0100372 self.dbus = ModemDbusInteraction(self.dbuspath)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200373 self.register_attempts = 0
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200374 self.call_list = []
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200375 # one Cancellable can handle several concurrent methods.
376 self.cancellable = Gio.Cancellable.new()
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200377 self.dbus.required_signals = {
378 I_SMS: ( ('IncomingMessage', self._on_incoming_message), ),
Pau Espin Pedrol56bf31c2017-05-31 12:05:20 +0200379 I_NETREG: ( ('PropertyChanged', self._on_netreg_property_changed), ),
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100380 I_CONNMGR: ( ('PropertyChanged', self._on_connmgr_property_changed), ),
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200381 I_CALLMGR: ( ('PropertyChanged', self._on_callmgr_property_changed),
382 ('CallAdded', self._on_callmgr_call_added),
383 ('CallRemoved', self._on_callmgr_call_removed), ),
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200384 }
385 self.dbus.watch_interfaces()
386
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200387 def cleanup(self):
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200388 self.dbg('cleanup')
389 if self.cancellable:
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200390 self.cancel_pending_dbus_methods()
Pau Espin Pedrolfbecf412017-06-14 12:14:53 +0200391 self.cancellable = None
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100392 if self.is_powered():
393 self.power_off()
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100394 for call_obj in self.call_list:
395 call_obj.cleanup()
396 self.call_list = []
Neels Hofmeyr4d688c22017-05-29 04:13:58 +0200397 self.dbus.cleanup()
398 self.dbus = None
399
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200400 def netns(self):
401 return os.path.basename(self.syspath.rstrip('/'))
402
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200403 def properties(self, *args, **kwargs):
404 '''Return a dict of properties on this modem. For the actual arguments,
405 see ModemDbusInteraction.properties(), which this function calls. The
406 returned dict is defined by ofono. An example is:
407 {'Lockdown': False,
408 'Powered': True,
409 'Model': 'MC7304',
410 'Revision': 'SWI9X15C_05.05.66.00 r29972 CARMD-EV-FRMWR1 2015/10/08 08:36:28',
411 'Manufacturer': 'Sierra Wireless, Incorporated',
412 'Emergency': False,
413 'Interfaces': ['org.ofono.SmartMessaging',
414 'org.ofono.PushNotification',
415 'org.ofono.MessageManager',
416 'org.ofono.NetworkRegistration',
417 'org.ofono.ConnectionManager',
418 'org.ofono.SupplementaryServices',
419 'org.ofono.RadioSettings',
420 'org.ofono.AllowedAccessPoints',
421 'org.ofono.SimManager',
422 'org.ofono.LocationReporting',
423 'org.ofono.VoiceCallManager'],
424 'Serial': '356853054230919',
425 'Features': ['sms', 'net', 'gprs', 'ussd', 'rat', 'sim', 'gps'],
426 'Type': 'hardware',
427 'Online': True}
428 '''
429 return self.dbus.properties(*args, **kwargs)
430
431 def set_powered(self, powered=True):
432 return self.dbus.set_powered(powered=powered)
433
434 def set_online(self, online=True):
435 return self.dbus.set_online(online=online)
436
437 def is_powered(self):
438 return self.dbus.is_powered()
439
440 def is_online(self):
441 return self.dbus.is_online()
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200442
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200443 def imsi(self):
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100444 if self._imsi is None:
445 if 'sim' in self.features():
446 if not self.is_powered():
447 self.set_powered()
448 # wait for SimManager iface to appear after we power on
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200449 MainLoop.wait(self, self.dbus.has_interface, I_SIMMGR, timeout=10)
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100450 simmgr = self.dbus.interface(I_SIMMGR)
451 # If properties are requested quickly, it may happen that Sim property is still not there.
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200452 MainLoop.wait(self, lambda: simmgr.GetProperties().get('SubscriberIdentity', None) is not None, timeout=10)
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100453 props = simmgr.GetProperties()
454 self.dbg('got SIM properties', props)
455 self._imsi = props.get('SubscriberIdentity', None)
456 else:
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000457 self._imsi = super().imsi()
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100458 if self._imsi is None:
459 raise log.Error('No IMSI')
460 return self._imsi
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200461
Pau Espin Pedrolcd6ad9d2017-08-22 19:10:20 +0200462 def set_ki(self, ki):
463 self._ki = ki
464
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200465 def ki(self):
Pau Espin Pedrolcd6ad9d2017-08-22 19:10:20 +0200466 if self._ki is not None:
467 return self._ki
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000468 return super().ki()
Pau Espin Pedrol713ce2c2017-08-24 16:57:17 +0200469
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100470 def features(self):
Holger Hans Peter Freyther48c83a82019-02-27 08:27:46 +0000471 return self._conf.get('features', [])
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100472
473 def _required_ifaces(self):
474 req_ifaces = (I_NETREG,)
475 req_ifaces += (I_SMS,) if 'sms' in self.features() else ()
476 req_ifaces += (I_SS,) if 'ussd' in self.features() else ()
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100477 req_ifaces += (I_CONNMGR,) if 'gprs' in self.features() else ()
Pau Espin Pedrolbfd0b232018-03-13 18:32:57 +0100478 req_ifaces += (I_SIMMGR,) if 'sim' in self.features() else ()
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100479 return req_ifaces
480
Pau Espin Pedrol56bf31c2017-05-31 12:05:20 +0200481 def _on_netreg_property_changed(self, name, value):
482 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_NETREG, name, value))
483
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200484 def is_connected(self, mcc_mnc=None):
485 netreg = self.dbus.interface(I_NETREG)
486 prop = netreg.GetProperties()
487 status = prop.get('Status')
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200488 self.dbg('status:', status)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200489 if not (status == NETREG_ST_REGISTERED or status == NETREG_ST_ROAMING):
490 return False
491 if mcc_mnc is None: # Any network is fine and we are registered.
492 return True
493 mcc = prop.get('MobileCountryCode')
494 mnc = prop.get('MobileNetworkCode')
495 if (mcc, mnc) == mcc_mnc:
496 return True
497 return False
498
499 def schedule_scan_register(self, mcc_mnc):
500 if self.register_attempts > NETREG_MAX_REGISTER_ATTEMPTS:
Pau Espin Pedrolcc5b5a22017-06-13 16:55:31 +0200501 raise log.Error('Failed to find Network Operator', mcc_mnc=mcc_mnc, attempts=self.register_attempts)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200502 self.register_attempts += 1
503 netreg = self.dbus.interface(I_NETREG)
504 self.dbg('Scanning for operators...')
505 # Scan method can take several seconds, and we don't want to block
506 # waiting for that. Make it async and try to register when the scan is
507 # finished.
508 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 +0200509 result_handler = lambda obj, result, user_data: MainLoop.defer(register_func, result, user_data)
510 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 +0200511 dbus_async_call(netreg, netreg.Scan, timeout=30, cancellable=self.cancellable,
512 result_handler=result_handler, error_handler=error_handler,
513 user_data=mcc_mnc)
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200514
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200515 def scan_cb_error_handler(self, e, mcc_mnc):
516 # It was detected that Scan() method can fail for some modems on some
517 # specific circumstances. For instance it fails with org.ofono.Error.Failed
518 # if the modem starts to register internally after we started Scan() and
519 # the registering succeeds while we are still waiting for Scan() to finsih.
520 # So far the easiest seems to check if we are now registered and
521 # otherwise schedule a scan again.
Pau Espin Pedrol910f3a12017-06-13 16:59:19 +0200522 self.err('Scan() failed, retrying if needed:', e)
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200523 if not self.is_connected(mcc_mnc):
524 self.schedule_scan_register(mcc_mnc)
Pau Espin Pedrol910f3a12017-06-13 16:59:19 +0200525 else:
526 self.log('Already registered with network', mcc_mnc)
Pau Espin Pedrol4d63d922017-06-13 16:23:23 +0200527
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200528 def scan_cb_register_automatic(self, scanned_operators, mcc_mnc):
529 self.dbg('scanned operators: ', scanned_operators);
530 for op_path, op_prop in scanned_operators:
531 if op_prop.get('Status') == 'current':
532 mcc = op_prop.get('MobileCountryCode')
533 mnc = op_prop.get('MobileNetworkCode')
534 self.log('Already registered with network', (mcc, mnc))
535 return
536 self.log('Registering with the default network')
537 netreg = self.dbus.interface(I_NETREG)
Pau Espin Pedrol7423d2e2017-08-25 12:58:25 +0200538 dbus_call_dismiss_error(self, 'org.ofono.Error.InProgress', netreg.Register)
539
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200540
541 def scan_cb_register(self, scanned_operators, mcc_mnc):
542 self.dbg('scanned operators: ', scanned_operators);
543 matching_op_path = None
544 for op_path, op_prop in scanned_operators:
545 mcc = op_prop.get('MobileCountryCode')
546 mnc = op_prop.get('MobileNetworkCode')
547 if (mcc, mnc) == mcc_mnc:
548 if op_prop.get('Status') == 'current':
549 self.log('Already registered with network', mcc_mnc)
550 # We discovered the network and we are already registered
551 # with it. Avoid calling op.Register() in this case (it
552 # won't act as a NO-OP, it actually returns an error).
553 return
554 matching_op_path = op_path
555 break
556 if matching_op_path is None:
557 self.dbg('Failed to find Network Operator', mcc_mnc=mcc_mnc, attempts=self.register_attempts)
558 self.schedule_scan_register(mcc_mnc)
559 return
560 dbus_op = systembus_get(matching_op_path)
561 self.log('Registering with operator', matching_op_path, mcc_mnc)
Pau Espin Pedrol9f59b822017-11-07 17:50:52 +0100562 try:
563 dbus_call_dismiss_error(self, 'org.ofono.Error.InProgress', dbus_op.Register)
564 except GLib.Error as e:
565 if Gio.DBusError.is_remote_error(e) and Gio.DBusError.get_remote_error(e) == 'org.ofono.Error.NotSupported':
566 self.log('modem does not support manual registering, attempting automatic registering')
567 self.scan_cb_register_automatic(scanned_operators, mcc_mnc)
568 return
569 raise e
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200570
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200571 def cancel_pending_dbus_methods(self):
572 self.cancellable.cancel()
573 # Cancel op is applied as a signal coming from glib mainloop, so we
574 # need to run it and wait for the callbacks to handle cancellations.
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200575 MainLoop.poll()
Pau Espin Pedrole685c622017-10-04 18:30:22 +0200576 # once it has been triggered, create a new one for next operation:
577 self.cancellable = Gio.Cancellable.new()
Pau Espin Pedrol6680ef22017-09-11 01:24:05 +0200578
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100579 def power_off(self):
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100580 if self.dbus.has_interface(I_CONNMGR) and self.is_attached():
581 self.detach()
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100582 self.set_online(False)
583 self.set_powered(False)
584 req_ifaces = self._required_ifaces()
585 for iface in req_ifaces:
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200586 MainLoop.wait(self, lambda: not self.dbus.has_interface(iface), timeout=10)
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100587
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200588 def power_cycle(self):
589 'Power the modem and put it online, power cycle it if it was already on'
Pau Espin Pedrole0f49862017-11-23 11:37:34 +0100590 req_ifaces = self._required_ifaces()
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200591 if self.is_powered():
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200592 self.dbg('Power cycling')
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200593 MainLoop.sleep(self, 1.0) # workaround for ofono bug OS#3064
Pau Espin Pedrol7aef3862017-11-23 12:15:55 +0100594 self.power_off()
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200595 else:
596 self.dbg('Powering on')
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200597 self.set_powered()
Pau Espin Pedrolb9955762017-05-02 09:39:27 +0200598 self.set_online()
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200599 MainLoop.wait(self, self.dbus.has_interface, *req_ifaces, timeout=10)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200600
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200601 def connect(self, mcc_mnc=None):
602 'Connect to MCC+MNC'
603 if (mcc_mnc is not None) and (len(mcc_mnc) != 2 or None in mcc_mnc):
Pau Espin Pedrolcc5b5a22017-06-13 16:55:31 +0200604 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 +0200605 # if test called connect() before and async scanning has not finished, we need to get rid of it:
606 self.cancel_pending_dbus_methods()
Pau Espin Pedrol0e57aad2017-05-29 14:25:22 +0200607 self.power_cycle()
608 self.register_attempts = 0
609 if self.is_connected(mcc_mnc):
610 self.log('Already registered with', mcc_mnc if mcc_mnc else 'default network')
611 else:
612 self.log('Connect to', mcc_mnc if mcc_mnc else 'default network')
613 self.schedule_scan_register(mcc_mnc)
614
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100615 def is_attached(self):
616 connmgr = self.dbus.interface(I_CONNMGR)
617 prop = connmgr.GetProperties()
618 attached = prop.get('Attached')
619 self.dbg('attached:', attached)
620 return attached
621
622 def attach(self, allow_roaming=False):
623 self.dbg('attach')
624 if self.is_attached():
625 self.detach()
626 connmgr = self.dbus.interface(I_CONNMGR)
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000627 connmgr.SetProperty('RoamingAllowed', Variant('b', allow_roaming))
628 connmgr.SetProperty('Powered', Variant('b', True))
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100629
630 def detach(self):
631 self.dbg('detach')
632 connmgr = self.dbus.interface(I_CONNMGR)
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000633 connmgr.SetProperty('RoamingAllowed', Variant('b', False))
634 connmgr.SetProperty('Powered', Variant('b', False))
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100635 connmgr.DeactivateAll()
636 connmgr.ResetContexts() # Requires Powered=false
637
638 def activate_context(self, apn='internet', user='ogt', pwd='', protocol='ip'):
Pau Espin Pedrolb05e36a2017-12-15 12:39:36 +0100639 self.dbg('activate_context', apn=apn, user=user, protocol=protocol)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100640
641 connmgr = self.dbus.interface(I_CONNMGR)
642 ctx_path = connmgr.AddContext('internet')
643
644 ctx = systembus_get(ctx_path)
645 ctx.SetProperty('AccessPointName', Variant('s', apn))
646 ctx.SetProperty('Username', Variant('s', user))
647 ctx.SetProperty('Password', Variant('s', pwd))
648 ctx.SetProperty('Protocol', Variant('s', protocol))
649
650 # Activate can only be called after we are attached
651 ctx.SetProperty('Active', Variant('b', True))
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200652 MainLoop.wait(self, lambda: ctx.GetProperties()['Active'] == True)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100653 self.log('context activated', path=ctx_path, apn=apn, user=user, properties=ctx.GetProperties())
654 return ctx_path
655
656 def deactivate_context(self, ctx_id):
Pau Espin Pedrol263dd3b2018-02-13 16:53:51 +0100657 self.dbg('deactivate_context', path=ctx_id)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100658 ctx = systembus_get(ctx_id)
659 ctx.SetProperty('Active', Variant('b', False))
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200660 MainLoop.wait(self, lambda: ctx.GetProperties()['Active'] == False)
Pau Espin Pedrolcdac2972018-02-16 15:14:32 +0100661 self.dbg('deactivate_context active=false, removing', path=ctx_id)
662 connmgr = self.dbus.interface(I_CONNMGR)
663 connmgr.RemoveContext(ctx_id)
Pau Espin Pedrolb05aa3c2018-02-16 15:03:50 +0100664 self.log('context deactivated', path=ctx_id)
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100665
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200666 def run_netns_wait(self, name, popen_args):
667 proc = process.NetNSProcess(name, self.run_dir.new_dir(name), self.netns(), popen_args,
668 env={})
Pau Espin Pedrol79df7392018-11-12 18:15:30 +0100669 proc.launch_sync()
Pau Espin Pedrolfd4c1442018-10-25 17:37:23 +0200670
671 def setup_context_data_plane(self, ctx_id):
672 self.dbg('setup_context_data', path=ctx_id)
673 ctx = systembus_get(ctx_id)
674 ctx_settings = ctx.GetProperties().get('Settings', None)
675 if not ctx_settings:
676 raise log.Error('%s no Settings found! No way to get iface!' % ctx_id)
677 iface = ctx_settings.get('Interface', None)
678 if not iface:
679 raise log.Error('%s Settings contains no iface! %r' % (ctx_id, repr(ctx_settings)))
680 self.run_netns_wait('ifup', ('ip', 'link', 'set', 'dev', iface, 'up'))
681 self.run_netns_wait('dhcp', ('udhcpc', '-q', '-i', iface))
682
Neels Hofmeyr8c7477f2017-05-25 04:33:53 +0200683 def sms_send(self, to_msisdn_or_modem, *tokens):
684 if isinstance(to_msisdn_or_modem, Modem):
685 to_msisdn = to_msisdn_or_modem.msisdn
686 tokens = list(tokens)
687 tokens.append('to ' + to_msisdn_or_modem.name())
688 else:
689 to_msisdn = str(to_msisdn_or_modem)
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200690 msg = sms.Sms(self.msisdn, to_msisdn, 'from ' + self.name(), *tokens)
691 self.log('sending sms to MSISDN', to_msisdn, sms=msg)
Neels Hofmeyr896f08f2017-05-24 20:17:26 +0200692 mm = self.dbus.interface(I_SMS)
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200693 mm.SendMessage(to_msisdn, str(msg))
694 return msg
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200695
696 def _on_incoming_message(self, message, info):
Neels Hofmeyr2e41def2017-05-06 22:42:57 +0200697 self.log('Incoming SMS:', repr(message))
Neels Hofmeyrf49c7da2017-05-06 22:43:32 +0200698 self.dbg(info=info)
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200699 self.sms_received_list.append((message, info))
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200700
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200701 def sms_was_received(self, sms_obj):
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200702 for msg, info in self.sms_received_list:
Pau Espin Pedrol996651a2017-05-30 15:13:29 +0200703 if sms_obj.matches(msg):
Neels Hofmeyr2e41def2017-05-06 22:42:57 +0200704 self.log('SMS received as expected:', repr(msg))
Neels Hofmeyrf49c7da2017-05-06 22:43:32 +0200705 self.dbg(info=info)
Neels Hofmeyrfec7d162017-05-02 16:29:09 +0200706 return True
707 return False
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +0200708
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200709 def call_id_list(self):
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100710 li = [call.dbuspath for call in self.call_list]
711 self.dbg('call_id_list: %r' % li)
712 return li
713
714 def call_find_by_id(self, id):
715 for call in self.call_list:
716 if call.dbuspath == id:
717 return call
718 return None
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200719
720 def call_dial(self, to_msisdn_or_modem):
721 if isinstance(to_msisdn_or_modem, Modem):
722 to_msisdn = to_msisdn_or_modem.msisdn
723 else:
724 to_msisdn = str(to_msisdn_or_modem)
725 self.dbg('Dialing:', to_msisdn)
726 cmgr = self.dbus.interface(I_CALLMGR)
727 call_obj_path = cmgr.Dial(to_msisdn, 'default')
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100728 if self.call_find_by_id(call_obj_path) is None:
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200729 self.dbg('Adding %s to call list' % call_obj_path)
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100730 self.call_list.append(ModemCall(self, call_obj_path))
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200731 else:
732 self.dbg('Dial returned already existing call')
733 return call_obj_path
734
735 def _find_call_msisdn_state(self, msisdn, state):
736 cmgr = self.dbus.interface(I_CALLMGR)
737 ret = cmgr.GetCalls()
738 for obj_path, props in ret:
739 if props['LineIdentification'] == msisdn and props['State'] == state:
740 return obj_path
741 return None
742
743 def call_wait_incoming(self, caller_msisdn_or_modem, timeout=60):
744 if isinstance(caller_msisdn_or_modem, Modem):
745 caller_msisdn = caller_msisdn_or_modem.msisdn
746 else:
747 caller_msisdn = str(caller_msisdn_or_modem)
748 self.dbg('Waiting for incoming call from:', caller_msisdn)
Pau Espin Pedrol9a4631c2018-03-28 19:17:34 +0200749 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 +0200750 return self._find_call_msisdn_state(caller_msisdn, 'incoming')
751
752 def call_answer(self, call_id):
753 self.dbg('Answer call %s' % call_id)
754 assert self.call_state(call_id) == 'incoming'
755 call_dbus_obj = systembus_get(call_id)
756 call_dbus_obj.Answer()
Pau Espin Pedrol4d7f7702019-02-13 19:30:38 +0100757 self.dbg('Answered call %s' % call_id)
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200758
759 def call_hangup(self, call_id):
760 self.dbg('Hang up call %s' % call_id)
761 call_dbus_obj = systembus_get(call_id)
762 call_dbus_obj.Hangup()
763
764 def call_is_active(self, call_id):
765 return self.call_state(call_id) == 'active'
766
767 def call_state(self, call_id):
Pau Espin Pedrolccb1bc62018-04-22 12:58:08 +0200768 try:
769 call_dbus_obj = systembus_get(call_id)
770 props = call_dbus_obj.GetProperties()
771 state = props.get('State')
Holger Hans Peter Freyther34dce0e2019-02-27 04:34:00 +0000772 except Exception:
Pau Espin Pedrolccb1bc62018-04-22 12:58:08 +0200773 self.log('asking call state for non existent call')
774 log.log_exn()
775 state = 'disconnected'
Pau Espin Pedrol32e9d8c2019-02-13 17:40:31 +0100776 self.dbg('call state: %s' % state, call_id=call_id)
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200777 return state
778
779 def _on_callmgr_call_added(self, obj_path, properties):
780 self.dbg('%r.CallAdded() -> %s=%r' % (I_CALLMGR, obj_path, repr(properties)))
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100781 if self.call_find_by_id(obj_path) is None:
782 self.call_list.append(ModemCall(self, obj_path))
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200783 else:
784 self.dbg('Call already exists %r' % obj_path)
785
786 def _on_callmgr_call_removed(self, obj_path):
787 self.dbg('%r.CallRemoved() -> %s' % (I_CALLMGR, obj_path))
Pau Espin Pedrole02158f2019-02-13 19:38:09 +0100788 call_obj = self.call_find_by_id(obj_path)
789 if call_obj is not None:
790 self.call_list.remove(call_obj)
791 call_obj.cleanup()
Pau Espin Pedrold71edd12017-10-06 13:53:54 +0200792 else:
793 self.dbg('Trying to remove non-existing call %r' % obj_path)
794
795 def _on_callmgr_property_changed(self, name, value):
796 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_CALLMGR, name, value))
797
Pau Espin Pedrolde899612017-11-23 17:18:40 +0100798 def _on_connmgr_property_changed(self, name, value):
799 self.dbg('%r.PropertyChanged() -> %s=%s' % (I_CONNMGR, name, value))
800
Pau Espin Pedrolee6e4912017-09-05 18:46:34 +0200801 def info(self, keys=('Manufacturer', 'Model', 'Revision', 'Serial')):
Neels Hofmeyrb8011692017-05-29 03:45:24 +0200802 props = self.properties()
803 return ', '.join(['%s: %r'%(k,props.get(k)) for k in keys])
804
805 def log_info(self, *args, **kwargs):
806 self.log(self.info(*args, **kwargs))
807
Pau Espin Pedrol03983aa2017-06-12 15:31:27 +0200808 def ussd_send(self, command):
809 ss = self.dbus.interface(I_SS)
810 service_type, response = ss.Initiate(command)
811 return response
812
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200813# vim: expandtab tabstop=4 shiftwidth=4