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