e_dbus/connman: add Nameservers property
[framework/uifw/edbus.git] / src / lib / connman / e_connman.c
1 #include "e_connman_private.h"
2 #include <stdlib.h>
3 #include <string.h>
4
5 static E_DBus_Signal_Handler *cb_name_owner_changed = NULL;
6 static DBusPendingCall *pending_get_name_owner = NULL;
7 static unsigned int init_count = 0;
8 static char *unique_name = NULL;
9
10 static const char bus_name[] = "net.connman";
11
12 E_DBus_Connection *e_connman_conn = NULL;
13
14 EAPI int E_CONNMAN_EVENT_MANAGER_IN = 0;
15 EAPI int E_CONNMAN_EVENT_MANAGER_OUT = 0;
16 EAPI int E_CONNMAN_EVENT_ELEMENT_ADD = 0;
17 EAPI int E_CONNMAN_EVENT_ELEMENT_DEL = 0;
18 EAPI int E_CONNMAN_EVENT_ELEMENT_UPDATED = 0;
19
20 const char *e_connman_iface_manager = NULL;
21 const char *e_connman_iface_profile = NULL;
22 const char *e_connman_iface_service = NULL;
23 const char *e_connman_iface_connection = NULL;
24 const char *e_connman_iface_technology = NULL;
25
26 const char *e_connman_prop_available = NULL;
27 const char *e_connman_prop_connections = NULL;
28 const char *e_connman_prop_default = NULL;
29 const char *e_connman_prop_ipv4 = NULL;
30 const char *e_connman_prop_ipv4_configuration = NULL;
31 const char *e_connman_prop_ethernet = NULL;
32 const char *e_connman_prop_interface = NULL;
33 const char *e_connman_prop_speed = NULL;
34 const char *e_connman_prop_duplex = NULL;
35 const char *e_connman_prop_method = NULL;
36 const char *e_connman_prop_address = NULL;
37 const char *e_connman_prop_gateway = NULL;
38 const char *e_connman_prop_netmask = NULL;
39 const char *e_connman_prop_mtu = NULL;
40 const char *e_connman_prop_name = NULL;
41 const char *e_connman_prop_offline_mode = NULL;
42 const char *e_connman_prop_policy = NULL;
43 const char *e_connman_prop_priority = NULL;
44 const char *e_connman_prop_profiles = NULL;
45 const char *e_connman_prop_profile_active = NULL;
46 const char *e_connman_prop_services = NULL;
47 const char *e_connman_prop_technologies = NULL;
48 const char *e_connman_prop_remember = NULL;
49 const char *e_connman_prop_state = NULL;
50 const char *e_connman_prop_strength = NULL;
51 const char *e_connman_prop_type = NULL;
52 const char *e_connman_prop_error = NULL;
53 const char *e_connman_prop_security = NULL;
54 const char *e_connman_prop_passphrase = NULL;
55 const char *e_connman_prop_passphrase_required = NULL;
56 const char *e_connman_prop_login_required = NULL;
57 const char *e_connman_prop_favorite = NULL;
58 const char *e_connman_prop_immutable = NULL;
59 const char *e_connman_prop_auto_connect = NULL;
60 const char *e_connman_prop_roaming = NULL;
61 const char *e_connman_prop_technology_default = NULL;
62 const char *e_connman_prop_technologies_available = NULL;
63 const char *e_connman_prop_technologies_enabled = NULL;
64 const char *e_connman_prop_technologies_connected = NULL;
65 const char *e_connman_prop_nameservers = NULL;
66
67 int _e_dbus_connman_log_dom = -1;
68
69 const char *
70 e_connman_system_bus_name_get(void)
71 {
72    return unique_name ? unique_name : bus_name;
73 }
74
75 /***********************************************************************
76 * Manager
77 ***********************************************************************/
78
79 /**
80  * Synchronize elements with server.
81  *
82  * This will call Manager.GetProperties() on server, retrieve properties
83  * and some element paths and then request their properties.
84  *
85  * This call will add events E_CONNMAN_EVENT_ELEMENT_ADD and
86  * E_CONNMAN_EVENT_ELEMENT_UPDATED to the main loop.
87  *
88  * This will not remove stale elements.
89  *
90  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
91  */
92 Eina_Bool
93 e_connman_manager_sync_elements(void)
94 {
95    E_Connman_Element *manager;
96
97    if (!unique_name)
98       return EINA_FALSE;
99
100    manager = e_connman_element_register(manager_path, e_connman_iface_manager);
101    if (manager)
102       e_connman_element_properties_sync(manager);
103    else
104       return EINA_FALSE;
105
106    DBG("sync_manager: %s (%s)", unique_name, bus_name);
107
108    return EINA_TRUE;
109 }
110
111 static void
112 _e_connman_system_name_owner_exit(void)
113 {
114    e_connman_manager_clear_elements();
115    ecore_event_add(E_CONNMAN_EVENT_MANAGER_OUT, NULL, NULL, NULL);
116
117    free(unique_name);
118    unique_name = NULL;
119 }
120
121 static void
122 _e_connman_system_name_owner_enter(const char *uid)
123 {
124    DBG("enter connman at %s (old was %s)", uid, unique_name);
125    if (unique_name && strcmp(unique_name, uid) == 0)
126      {
127         DBG("same unique_name for connman, ignore.");
128         return;
129      }
130
131    if (unique_name)
132       _e_connman_system_name_owner_exit();
133
134    unique_name = strdup(uid);
135
136    ecore_event_add(E_CONNMAN_EVENT_MANAGER_IN, NULL, NULL, NULL);
137    e_connman_manager_sync_elements();
138 }
139
140 static void
141 _e_connman_system_name_owner_changed(void *data __UNUSED__, DBusMessage *msg)
142 {
143    DBusError err;
144    const char *name, *from, *to;
145
146    dbus_error_init(&err);
147    if (!dbus_message_get_args(msg, &err,
148                               DBUS_TYPE_STRING, &name,
149                               DBUS_TYPE_STRING, &from,
150                               DBUS_TYPE_STRING, &to,
151                               DBUS_TYPE_INVALID))
152      {
153         ERR("could not get NameOwnerChanged arguments: %s: %s",
154             err.name, err.message);
155         dbus_error_free(&err);
156         return;
157      }
158
159    if (strcmp(name, bus_name) != 0)
160       return;
161
162    DBG("NameOwnerChanged from=[%s] to=[%s]", from, to);
163
164    if (from[0] == '\0' && to[0] != '\0')
165      {
166         _e_connman_system_name_owner_enter(to);
167      }
168    else if (from[0] != '\0' && to[0] == '\0')
169      {
170         DBG("exit connman at %s", from);
171         if (strcmp(unique_name, from) != 0)
172            DBG("%s was not the known name %s, ignored.", from, unique_name);
173         else
174            _e_connman_system_name_owner_exit();
175      }
176    else
177      {
178         DBG("unknow change from %s to %s", from, to);
179      }
180 }
181
182 static void
183 _e_connman_get_name_owner(void *data __UNUSED__, DBusMessage *msg, DBusError *err)
184 {
185    DBusMessageIter itr;
186    int t;
187    const char *uid;
188
189    pending_get_name_owner = NULL;
190
191    if (!_dbus_callback_check_and_init(msg, &itr, err))
192       return;
193
194    t = dbus_message_iter_get_arg_type(&itr);
195    if (!_dbus_iter_type_check(t, DBUS_TYPE_STRING))
196       return;
197
198    dbus_message_iter_get_basic(&itr, &uid);
199    if (!uid)
200      {
201         ERR("no name owner!");
202         return;
203      }
204
205    _e_connman_system_name_owner_enter(uid);
206    return;
207 }
208
209 /**
210  * Initialize E Connection Manager (E_Connman) system.
211  *
212  * This will connect and watch net.connman.Manager and Element
213  * events and translate to Ecore main loop events, also provide a
214  * proxy for method invocation on server.
215  *
216  * Interesting events are:
217  *   - E_CONNMAN_EVENT_MANAGER_IN: issued when connman is avaiable.
218  *   - E_CONNMAN_EVENT_MANAGER_OUT: issued when connman connection is lost.
219  *   - E_CONNMAN_EVENT_ELEMENT_ADD: element was added.
220  *   - E_CONNMAN_EVENT_ELEMENT_DEL: element was deleted.
221  *   - E_CONNMAN_EVENT_ELEMENT_UPDATED: element was updated (properties
222  *     or state changed).
223  *
224  * Manager IN/OUT events do not provide any event information, just
225  * tells you that system is usable or not. After manager is out, all
226  * elements will be removed, so after this event do not use the system anymore.
227  *
228  * Element events will give you an element object. After DEL event callback
229  * returns, that element will not be valid anymore.
230  */
231 unsigned int
232 e_connman_system_init(E_DBus_Connection *edbus_conn)
233 {
234    init_count++;
235
236    if (init_count > 1)
237       return init_count;
238
239    _e_dbus_connman_log_dom = eina_log_domain_register
240          ("e_dbus_connman", EINA_LOG_DEFAULT_COLOR);
241
242    if (_e_dbus_connman_log_dom < 0)
243      {
244         EINA_LOG_ERR
245            ("impossible to create a log domain for edbus_connman module");
246         return -1;
247      }
248
249    if (E_CONNMAN_EVENT_MANAGER_IN == 0)
250       E_CONNMAN_EVENT_MANAGER_IN = ecore_event_type_new();
251
252    if (E_CONNMAN_EVENT_MANAGER_OUT == 0)
253       E_CONNMAN_EVENT_MANAGER_OUT = ecore_event_type_new();
254
255    if (E_CONNMAN_EVENT_ELEMENT_ADD == 0)
256       E_CONNMAN_EVENT_ELEMENT_ADD = ecore_event_type_new();
257
258    if (E_CONNMAN_EVENT_ELEMENT_DEL == 0)
259       E_CONNMAN_EVENT_ELEMENT_DEL = ecore_event_type_new();
260
261    if (E_CONNMAN_EVENT_ELEMENT_UPDATED == 0)
262       E_CONNMAN_EVENT_ELEMENT_UPDATED = ecore_event_type_new();
263
264 #define ADD_STRINGSHARE(name, s)       \
265    if (!name)                          \
266       name = eina_stringshare_add(s)
267
268    ADD_STRINGSHARE(e_connman_iface_manager, "net.connman.Manager");
269    ADD_STRINGSHARE(e_connman_iface_profile, "net.connman.Profile");
270    ADD_STRINGSHARE(e_connman_iface_service, "net.connman.Service");
271    ADD_STRINGSHARE(e_connman_iface_connection, "net.connman.Connection");
272    ADD_STRINGSHARE(e_connman_iface_technology, "net.connman.Technology");
273    ADD_STRINGSHARE(e_connman_prop_available, "Available");
274    ADD_STRINGSHARE(e_connman_prop_connections, "Connections");
275    ADD_STRINGSHARE(e_connman_prop_default, "Default");
276    ADD_STRINGSHARE(e_connman_prop_ipv4, "IPv4");
277    ADD_STRINGSHARE(e_connman_prop_ipv4_configuration, "IPv4.Configuration");
278    ADD_STRINGSHARE(e_connman_prop_ethernet, "Ethernet");
279    ADD_STRINGSHARE(e_connman_prop_interface, "Interface");
280    ADD_STRINGSHARE(e_connman_prop_speed, "Speed");
281    ADD_STRINGSHARE(e_connman_prop_duplex, "Duplex");
282    ADD_STRINGSHARE(e_connman_prop_method, "Method");
283    ADD_STRINGSHARE(e_connman_prop_address, "Address");
284    ADD_STRINGSHARE(e_connman_prop_gateway, "Gateway");
285    ADD_STRINGSHARE(e_connman_prop_netmask, "Netmask");
286    ADD_STRINGSHARE(e_connman_prop_mtu, "MTU");
287    ADD_STRINGSHARE(e_connman_prop_name, "Name");
288    ADD_STRINGSHARE(e_connman_prop_offline_mode, "OfflineMode");
289    ADD_STRINGSHARE(e_connman_prop_policy, "Policy");
290    ADD_STRINGSHARE(e_connman_prop_priority, "Priority");
291    ADD_STRINGSHARE(e_connman_prop_profiles, "Profiles");
292    ADD_STRINGSHARE(e_connman_prop_profile_active, "ActiveProfile");
293    ADD_STRINGSHARE(e_connman_prop_services, "Services");
294    ADD_STRINGSHARE(e_connman_prop_technologies, "Technologies");
295    ADD_STRINGSHARE(e_connman_prop_remember, "Remember");
296    ADD_STRINGSHARE(e_connman_prop_state, "State");
297    ADD_STRINGSHARE(e_connman_prop_strength, "Strength");
298    ADD_STRINGSHARE(e_connman_prop_type, "Type");
299    ADD_STRINGSHARE(e_connman_prop_error, "Error");
300    ADD_STRINGSHARE(e_connman_prop_security, "Security");
301    ADD_STRINGSHARE(e_connman_prop_passphrase, "Passphrase");
302    ADD_STRINGSHARE(e_connman_prop_passphrase_required, "PassphraseRequired");
303    ADD_STRINGSHARE(e_connman_prop_login_required, "LoginRequired");
304    ADD_STRINGSHARE(e_connman_prop_favorite, "Favorite");
305    ADD_STRINGSHARE(e_connman_prop_immutable, "Immutable");
306    ADD_STRINGSHARE(e_connman_prop_auto_connect, "AutoConnect");
307    ADD_STRINGSHARE(e_connman_prop_roaming, "Roaming");
308    ADD_STRINGSHARE(e_connman_prop_technology_default, "DefaultTechnology");
309    ADD_STRINGSHARE(e_connman_prop_technologies_available,
310                    "AvailableTechnologies");
311    ADD_STRINGSHARE(e_connman_prop_technologies_enabled, "EnabledTechnologies");
312    ADD_STRINGSHARE(e_connman_prop_technologies_connected,
313                    "ConnectedTechnologies");
314    ADD_STRINGSHARE(e_connman_prop_nameservers, "Nameservers");
315
316 #undef ADD_STRINGSHARE
317
318    e_connman_conn = edbus_conn;
319    cb_name_owner_changed = e_dbus_signal_handler_add
320          (e_connman_conn, E_DBUS_FDO_BUS, E_DBUS_FDO_PATH, E_DBUS_FDO_INTERFACE, "NameOwnerChanged",
321          _e_connman_system_name_owner_changed, NULL);
322
323    if (pending_get_name_owner)
324       dbus_pending_call_cancel(pending_get_name_owner);
325
326    pending_get_name_owner = e_dbus_get_name_owner
327          (e_connman_conn, bus_name, _e_connman_get_name_owner, NULL);
328
329    e_connman_elements_init();
330
331    return init_count;
332 }
333
334 static inline void
335 _stringshare_del(const char **str)
336 {
337    if (!*str)
338       return;
339
340    eina_stringshare_del(*str);
341    *str = NULL;
342 }
343
344 /**
345  * Shutdown connman system.
346  *
347  * When count drops to 0 resources will be released and no calls should be
348  * made anymore.
349  */
350 unsigned int
351 e_connman_system_shutdown(void)
352 {
353    if (init_count == 0)
354      {
355         ERR("connman system already shut down.");
356         return 0;
357      }
358
359    init_count--;
360    if (init_count > 0)
361       return init_count;
362
363    _stringshare_del(&e_connman_iface_manager);
364    _stringshare_del(&e_connman_iface_profile);
365    _stringshare_del(&e_connman_iface_service);
366    _stringshare_del(&e_connman_iface_connection);
367    _stringshare_del(&e_connman_iface_technology);
368
369    _stringshare_del(&e_connman_prop_available);
370    _stringshare_del(&e_connman_prop_connections);
371    _stringshare_del(&e_connman_prop_default);
372    _stringshare_del(&e_connman_prop_ipv4);
373    _stringshare_del(&e_connman_prop_ipv4_configuration);
374    _stringshare_del(&e_connman_prop_ethernet);
375    _stringshare_del(&e_connman_prop_interface);
376    _stringshare_del(&e_connman_prop_speed);
377    _stringshare_del(&e_connman_prop_duplex);
378    _stringshare_del(&e_connman_prop_method);
379    _stringshare_del(&e_connman_prop_address);
380    _stringshare_del(&e_connman_prop_gateway);
381    _stringshare_del(&e_connman_prop_netmask);
382    _stringshare_del(&e_connman_prop_mtu);
383    _stringshare_del(&e_connman_prop_name);
384    _stringshare_del(&e_connman_prop_offline_mode);
385    _stringshare_del(&e_connman_prop_policy);
386    _stringshare_del(&e_connman_prop_priority);
387    _stringshare_del(&e_connman_prop_profiles);
388    _stringshare_del(&e_connman_prop_profile_active);
389    _stringshare_del(&e_connman_prop_services);
390    _stringshare_del(&e_connman_prop_technologies);
391    _stringshare_del(&e_connman_prop_remember);
392    _stringshare_del(&e_connman_prop_state);
393    _stringshare_del(&e_connman_prop_strength);
394    _stringshare_del(&e_connman_prop_type);
395    _stringshare_del(&e_connman_prop_error);
396    _stringshare_del(&e_connman_prop_security);
397    _stringshare_del(&e_connman_prop_passphrase);
398    _stringshare_del(&e_connman_prop_passphrase_required);
399    _stringshare_del(&e_connman_prop_login_required);
400    _stringshare_del(&e_connman_prop_favorite);
401    _stringshare_del(&e_connman_prop_immutable);
402    _stringshare_del(&e_connman_prop_auto_connect);
403    _stringshare_del(&e_connman_prop_roaming);
404    _stringshare_del(&e_connman_prop_technology_default);
405    _stringshare_del(&e_connman_prop_technologies_available);
406    _stringshare_del(&e_connman_prop_technologies_enabled);
407    _stringshare_del(&e_connman_prop_technologies_connected);
408    _stringshare_del(&e_connman_prop_nameservers);
409
410    if (pending_get_name_owner)
411      {
412         dbus_pending_call_cancel(pending_get_name_owner);
413         pending_get_name_owner = NULL;
414      }
415
416    if (cb_name_owner_changed)
417      {
418         e_dbus_signal_handler_del(e_connman_conn, cb_name_owner_changed);
419         cb_name_owner_changed = NULL;
420      }
421
422    if (unique_name)
423       _e_connman_system_name_owner_exit();
424
425    e_connman_elements_shutdown();
426    eina_log_domain_unregister(_e_dbus_connman_log_dom);
427    e_connman_conn = NULL;
428
429    return init_count;
430 }
431