Revise background scan routine
[platform/core/connectivity/net-config.git] / src / wifi-state.c
1 /*
2  * Network Configuration Module
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <vconf.h>
21 #include <vconf-keys.h>
22
23 #include "log.h"
24 #include "util.h"
25 #include "netdbus.h"
26 #include "wifi-state.h"
27 #include "wifi-power.h"
28 #include "netsupplicant.h"
29 #include "network-state.h"
30 #include "wifi-indicator.h"
31 #include "network-statistics.h"
32 #include "wifi-background-scan.h"
33
34 #define NETCONFIG_NETWORK_NOTIFICATION_TIMEOUT  15 * 1000
35
36 static gboolean new_bss_found = FALSE;
37 static guint network_noti_timer_id = 0;
38
39 static wifi_service_state_e g_service_state = NETCONFIG_WIFI_UNKNOWN;
40 static wifi_tech_state_e g_tech_state = NETCONFIG_WIFI_TECH_UNKNOWN;
41
42 static GSList *notifier_list = NULL;
43
44 static guint network_connected_popup_timer_id = 0;
45 static gboolean block_network_connected_popup = FALSE;
46
47 char *_convert_wifi_service_state_to_string(wifi_service_state_e wifi_service_state_type)
48 {
49         switch (wifi_service_state_type) {
50         case NETCONFIG_WIFI_UNKNOWN:
51                 return "unknown";
52         case NETCONFIG_WIFI_IDLE:
53                 return "idle";
54         case NETCONFIG_WIFI_ASSOCIATION:
55                 return "association";
56         case NETCONFIG_WIFI_CONFIGURATION:
57                 return "configuration";
58         case NETCONFIG_WIFI_CONNECTED:
59                 return "connected";
60         case NETCONFIG_WIFI_FAILURE:
61                 return "failure";
62         default:
63                 ERR("Invalid wifi_service_state_e parameter");
64                 break;
65         }
66
67         return "Invalid parameter";
68 }
69
70 char *_convert_wifi_technology_state_to_string(wifi_tech_state_e wifi_tech_state_type)
71 {
72         switch (wifi_tech_state_type) {
73         case NETCONFIG_WIFI_TECH_UNKNOWN:
74                 return "unknown";
75         case NETCONFIG_WIFI_TECH_OFF:
76                 return "off";
77         case NETCONFIG_WIFI_TECH_WPS_ONLY:
78                 return "wps only";
79         case NETCONFIG_WIFI_TECH_POWERED:
80                 return "powered";
81         case NETCONFIG_WIFI_TECH_CONNECTED:
82                 return "connected";
83         case NETCONFIG_WIFI_TECH_TETHERED:
84                 return "tethered";
85         default:
86                 ERR("Invalid wifi_tech_state_e parameter");
87                 break;
88         }
89
90         return "Invalid parameter";
91 }
92
93 static gboolean _block_network_connection_popup(gpointer data)
94 {
95         block_network_connected_popup = FALSE;
96         netconfig_stop_timer(&network_connected_popup_timer_id);
97         return FALSE;
98 }
99
100 static void __set_wifi_connected_essid(void)
101 {
102         const char *essid_name = NULL;
103         const char *wifi_profile = netconfig_get_default_profile();
104
105         if (wifi_state_get_service_state() != NETCONFIG_WIFI_CONNECTED)
106                 return;
107
108         if (wifi_profile == NULL ||
109                         netconfig_is_wifi_profile(wifi_profile) != TRUE) {
110                 ERR("Can't get Wi-Fi profile");
111                 return;
112         }
113
114         essid_name = netconfig_wifi_get_connected_essid(wifi_profile);
115         if (essid_name == NULL) {
116                 ERR("Can't get Wi-Fi name");
117                 return;
118         }
119
120         netconfig_set_vconf_str(VCONFKEY_WIFI_CONNECTED_AP_NAME, essid_name);
121
122         /* Block Network Connected popup for 3sec
123          * to avoid multiple popup's due to ready signals */
124         if (block_network_connected_popup == FALSE) {
125                 block_network_connected_popup = TRUE;
126                 netconfig_start_timer(3000, _block_network_connection_popup,
127                                 NULL, &network_connected_popup_timer_id);
128                 __netconfig_pop_wifi_connected_poppup(essid_name);
129         }
130 }
131
132 static void __unset_wifi_connected_essid(void)
133 {
134         netconfig_set_vconf_str(VCONFKEY_WIFI_CONNECTED_AP_NAME, "");
135 }
136
137 static const char *__get_wifi_connected_essid(void)
138 {
139         const char *essid_name = NULL;
140         const char *wifi_profile = NULL;
141
142         if (wifi_state_get_service_state() != NETCONFIG_WIFI_CONNECTED)
143                 return NULL;
144
145         wifi_profile = netconfig_get_default_profile();
146
147         if (wifi_profile == NULL || netconfig_is_wifi_profile(wifi_profile) != TRUE) {
148                 ERR("Can't get Wi-Fi profile");
149                 return NULL;
150         }
151
152         essid_name = netconfig_wifi_get_connected_essid(wifi_profile);
153         if (essid_name == NULL) {
154                 ERR("Can't get Wi-Fi name");
155                 return NULL;
156         }
157
158         return essid_name;
159 }
160
161 static gboolean __is_wifi_profile_available(void)
162 {
163         GVariant *message = NULL;
164         GVariantIter *iter, *next;
165         gchar *obj;
166
167         message = netconfig_invoke_dbus_method(CONNMAN_SERVICE,
168                         CONNMAN_MANAGER_PATH, CONNMAN_MANAGER_INTERFACE,
169                         "GetServices", NULL);
170         if (message == NULL) {
171                 ERR("Failed to get service list");
172                 return FALSE;
173         }
174
175         g_variant_get(message, "(a(oa{sv}))", &iter);
176         while (g_variant_iter_loop(iter, "(oa{sv})", &obj, &next)) {
177                 if (obj == NULL || netconfig_is_wifi_profile((const gchar*)obj) == FALSE)
178                         continue;
179
180                 g_variant_iter_free(next);
181                 g_free(obj);
182                 break;
183         }
184
185         g_variant_unref(message);
186
187         g_variant_iter_free(iter);
188
189         return TRUE;
190 }
191
192 static gboolean __is_favorited(GVariantIter *array)
193 {
194         gboolean is_favorite = FALSE;
195         gchar *key;
196         GVariant *var;
197
198         while (g_variant_iter_loop(array, "{sv}", &key, &var)) {
199                 gboolean value;
200
201                 if (g_str_equal(key, "Favorite") != TRUE)
202                         continue;
203
204                 value = g_variant_get_boolean(var);
205                 if (value)
206                         is_favorite = TRUE;
207                 g_free(key);
208                 g_variant_unref(var);
209                 break;
210         }
211
212         return is_favorite;
213 }
214
215 static void _wifi_state_connected_activation(void)
216 {
217         /* Add activation of services when Wi-Fi is connected */
218 }
219
220 static void _wifi_state_changed(wifi_service_state_e state)
221 {
222         GSList *list;
223
224         for (list = notifier_list; list; list = list->next) {
225                 wifi_state_notifier *notifier = list->data;
226
227                 if (notifier->wifi_state_changed != NULL)
228                         notifier->wifi_state_changed(state, notifier->user_data);
229         }
230 }
231
232 static void _set_bss_found(gboolean found)
233 {
234         if (found != new_bss_found)
235                 new_bss_found = found;
236 }
237
238 static gboolean _check_network_notification(gpointer data)
239 {
240         int qs_enable = 0, ug_state = 0;
241         static gboolean check_again = FALSE;
242
243         wifi_tech_state_e tech_state;
244         wifi_service_state_e service_state;
245
246         tech_state = wifi_state_get_technology_state();
247         if (tech_state < NETCONFIG_WIFI_TECH_POWERED) {
248                 DBG("Wi-Fi off or WPS only supported[%d]", tech_state);
249                 goto cleanup;
250         }
251
252         service_state = wifi_state_get_service_state();
253         if (service_state == NETCONFIG_WIFI_CONNECTED) {
254                 DBG("Service state is connected");
255                 goto cleanup;
256         } else if (service_state == NETCONFIG_WIFI_ASSOCIATION ||
257                 service_state == NETCONFIG_WIFI_CONFIGURATION) {
258                 DBG("Service state is connecting (check again : %d)", check_again);
259                 if (!check_again) {
260                         check_again = TRUE;
261                         return TRUE;
262                 } else
263                         check_again = FALSE;
264         }
265
266         if (__is_wifi_profile_available() == FALSE) {
267                 netconfig_send_notification_to_net_popup(
268                 NETCONFIG_DEL_FOUND_AP_NOTI, NULL);
269                 goto cleanup;
270         }
271
272         netconfig_vconf_get_int(VCONFKEY_WIFI_ENABLE_QS, &qs_enable);
273         if (qs_enable != VCONFKEY_WIFI_QS_ENABLE) {
274                 DBG("qs_enable != VCONFKEY_WIFI_QS_ENABLE");
275                 goto cleanup;
276         }
277
278         netconfig_vconf_get_int(VCONFKEY_WIFI_UG_RUN_STATE, &ug_state);
279         if (ug_state == VCONFKEY_WIFI_UG_RUN_STATE_ON_FOREGROUND)
280                 goto cleanup;
281
282         netconfig_send_notification_to_net_popup(NETCONFIG_ADD_FOUND_AP_NOTI, NULL);
283
284         _set_bss_found(FALSE);
285
286 cleanup:
287         netconfig_stop_timer(&network_noti_timer_id);
288         return FALSE;
289 }
290
291 static char *_get_connman_favorite_service(void)
292 {
293         char *favorite_service = NULL;
294         GVariant *message = NULL;
295         gchar *obj;
296         GVariantIter *iter, *next;
297
298         message = netconfig_invoke_dbus_method(CONNMAN_SERVICE,
299                         CONNMAN_MANAGER_PATH, CONNMAN_MANAGER_INTERFACE,
300                         "GetServices", NULL);
301         if (message == NULL) {
302                 ERR("Failed to get service list");
303                 return NULL;
304         }
305
306         g_variant_get(message, "(a(oa{sv}))", &iter);
307         while (g_variant_iter_loop(iter, "(oa{sv})", &obj, &next)) {
308                 if (obj == NULL || netconfig_is_wifi_profile(obj) == FALSE)
309                         continue;
310
311                 if (__is_favorited(next) == TRUE) {
312                         favorite_service = g_strdup(obj);
313                         g_free(obj);
314                         g_variant_iter_free(next);
315                         break;
316                 }
317         }
318
319         g_variant_iter_free(iter);
320         g_variant_unref(message);
321
322         return favorite_service;
323 }
324
325 static void __notification_value_changed_cb(keynode_t *node, void *user_data)
326 {
327         int value = -1;
328
329         if (netconfig_vconf_get_int(VCONFKEY_WIFI_ENABLE_QS, &value) < 0)
330                 return;
331
332         if (value == VCONFKEY_WIFI_QS_DISABLE)
333                 netconfig_send_notification_to_net_popup(NETCONFIG_DEL_FOUND_AP_NOTI, NULL);
334 }
335
336 static void _register_network_notification(void)
337 {
338 #if defined TIZEN_WEARABLE
339         return;
340 #endif
341         vconf_notify_key_changed(VCONFKEY_WIFI_ENABLE_QS, __notification_value_changed_cb, NULL);
342 }
343
344 static void _deregister_network_notification(void)
345 {
346 #if defined TIZEN_WEARABLE
347                 return;
348 #endif
349         vconf_ignore_key_changed(VCONFKEY_WIFI_ENABLE_QS, __notification_value_changed_cb);
350 }
351
352 static void _set_power_save(gboolean power_save)
353 {
354         gboolean result;
355         const char *if_path;
356         GVariant *input_args = NULL;
357         static gboolean old_state = TRUE;
358         const gchar *args_disable = "POWERMODE 1";
359         const gchar *args_enable = "POWERMODE 0";
360         if (old_state == power_save)
361                 return;
362
363         if_path = netconfig_wifi_get_supplicant_interface();
364         if (if_path == NULL) {
365                 ERR("Fail to get wpa_supplicant DBus path");
366                 return;
367         }
368
369         if (power_save)
370                 input_args = g_variant_new("(s)", args_enable);
371         else
372                 input_args = g_variant_new("(s)", args_disable);
373
374         result = netconfig_supplicant_invoke_dbus_method_nonblock(
375                         SUPPLICANT_SERVICE,
376                         if_path,
377                         SUPPLICANT_INTERFACE ".Interface",
378                         "Driver",
379                         input_args,
380                         NULL);
381         if (result == FALSE)
382                 ERR("Fail to set power save mode POWERMODE %d", power_save);
383         else
384                 old_state = power_save;
385
386         return;
387 }
388
389 static void _set_power_lock(gboolean power_lock)
390 {
391         gint32 ret = 0;
392         GVariant *reply;
393         GVariant *params;
394         char state[] = "lcdoff";
395         char flag[] = "staycurstate";
396         char standby[] = "NULL";
397         int timeout = 0;
398         char sleepmargin[] = "sleepmargin";
399
400         const char *lockstate = "lockstate";
401         const char *unlockstate = "unlockstate";
402         static gboolean old_state = FALSE;
403         const char *lock_method;
404
405         if (old_state == power_lock)
406                 return;
407
408         if (power_lock == TRUE) {
409                 /* deviced power lock enable */
410                 params = g_variant_new("(sssi)", state, flag, standby, timeout);
411
412                 lock_method = lockstate;
413         } else {
414                 /* deviced power lock disable */
415                 params = g_variant_new("(ss)", state, sleepmargin);
416
417                 lock_method = unlockstate;
418         }
419
420         reply = netconfig_invoke_dbus_method(
421                         "org.tizen.system.deviced",
422                         "/Org/Tizen/System/DeviceD/Display",
423                         "org.tizen.system.deviced.display",
424                         lock_method,
425                         params);
426         if (reply == NULL) {
427                 ERR("Failed to set_power_lock");
428                 return;
429         }
430
431         if (g_variant_is_of_type(reply, G_VARIANT_TYPE_INT32)) {
432                 ret = g_variant_get_int32(reply);
433                 if (ret < 0)
434                         ERR("Failed to set power lock %s with ret %d",
435                                 power_lock == TRUE ? "enable" : "disable", ret);
436                 else
437                         old_state = power_lock;
438         }
439
440         g_variant_unref(reply);
441
442         return;
443 }
444
445 void wifi_state_emit_power_completed(gboolean power_on)
446 {
447         if (power_on)
448                 wifi_emit_power_on_completed((Wifi *)get_wifi_object());
449         else
450                 wifi_emit_power_off_completed((Wifi *)get_wifi_object());
451
452         DBG("Successfully sent signal [%s]", (power_on) ? "powerOn" : "powerOff");
453 }
454
455 void wifi_state_emit_power_failed(void)
456 {
457         wifi_emit_power_operation_failed((Wifi *)get_wifi_object());
458
459         DBG("Successfully sent signal [PowerOperationFailed]");
460 }
461
462 void wifi_state_update_power_state(gboolean powered)
463 {
464         wifi_tech_state_e tech_state;
465
466         /* It's automatically updated by signal-handler
467          * DO NOT update manually
468          * It includes Wi-Fi state configuration
469          */
470         tech_state = wifi_state_get_technology_state();
471
472         if (powered == TRUE) {
473                 if (tech_state < NETCONFIG_WIFI_TECH_POWERED && netconfig_is_wifi_tethering_on() != TRUE) {
474                         DBG("Wi-Fi turned on or waken up from power-save mode");
475
476                         wifi_state_set_tech_state(NETCONFIG_WIFI_TECH_POWERED);
477
478                         wifi_state_emit_power_completed(TRUE);
479
480                         netconfig_wifi_device_picker_service_start();
481
482                         netconfig_set_vconf_int(VCONF_WIFI_LAST_POWER_STATE, VCONFKEY_WIFI_UNCONNECTED);
483                         netconfig_set_vconf_int(VCONFKEY_WIFI_STATE, VCONFKEY_WIFI_UNCONNECTED);
484                         netconfig_set_vconf_int(VCONFKEY_NETWORK_WIFI_STATE, VCONFKEY_NETWORK_WIFI_NOT_CONNECTED);
485
486                         netconfig_set_system_event(SYS_EVT_WIFI_STATE, EKEY_WIFI_STATE, EVAL_WIFI_ON);
487
488                         netconfig_wifi_bgscan_stop();
489                         netconfig_wifi_bgscan_set_interval(SCAN_EXPONENTIAL_MIN);
490                         netconfig_wifi_bgscan_start(TRUE);
491
492                         /* Add callback to track change in notification setting */
493                         _register_network_notification();
494                 }
495         } else if (tech_state > NETCONFIG_WIFI_TECH_OFF) {
496                 DBG("Wi-Fi turned off or in power-save mode");
497
498                 wifi_state_set_tech_state(NETCONFIG_WIFI_TECH_WPS_ONLY);
499
500                 netconfig_wifi_device_picker_service_stop();
501
502                 wifi_power_disable_technology_state_by_only_connman_signal();
503                 wifi_power_driver_and_supplicant(FALSE);
504
505                 wifi_state_emit_power_completed(FALSE);
506
507                 netconfig_set_vconf_int(VCONF_WIFI_LAST_POWER_STATE, VCONFKEY_WIFI_OFF);
508                 netconfig_set_vconf_int(VCONFKEY_WIFI_STATE, VCONFKEY_WIFI_OFF);
509                 netconfig_set_vconf_int(VCONFKEY_NETWORK_WIFI_STATE, VCONFKEY_NETWORK_WIFI_OFF);
510
511                 netconfig_set_system_event(SYS_EVT_WIFI_STATE, EKEY_WIFI_STATE, EVAL_WIFI_OFF);
512
513                 netconfig_wifi_bgscan_stop();
514
515                 _set_bss_found(FALSE);
516
517                 /* Inform net-popup to remove the wifi found notification */
518                 netconfig_send_notification_to_net_popup(NETCONFIG_DEL_FOUND_AP_NOTI, NULL);
519                 netconfig_send_notification_to_net_popup(NETCONFIG_DEL_PORTAL_NOTI, NULL);
520
521                 _deregister_network_notification();
522         }
523 }
524
525 char *wifi_get_favorite_service(void)
526 {
527         return _get_connman_favorite_service();
528 }
529
530 void wifi_start_timer_network_notification(void)
531 {
532 #if defined TIZEN_WEARABLE
533                 /* In case of wearable device, no need to notify available Wi-Fi APs */
534                 return ;
535 #endif
536         netconfig_start_timer(NETCONFIG_NETWORK_NOTIFICATION_TIMEOUT, _check_network_notification, NULL, &network_noti_timer_id);
537 }
538
539 void wifi_state_notifier_register(wifi_state_notifier *notifier)
540 {
541         DBG("register notifier");
542
543         notifier_list = g_slist_append(notifier_list, notifier);
544 }
545
546 void wifi_state_notifier_unregister(wifi_state_notifier *notifier)
547 {
548         DBG("un-register notifier");
549
550         notifier_list = g_slist_remove_all(notifier_list, notifier);
551 }
552
553 void wifi_state_notifier_cleanup(void)
554 {
555         g_slist_free_full(notifier_list, NULL);
556 }
557
558 void wifi_state_set_bss_found(gboolean found)
559 {
560         _set_bss_found(found);
561 }
562
563 gboolean wifi_state_is_bss_found(void)
564 {
565         return new_bss_found;
566 }
567
568 void wifi_state_set_service_state(wifi_service_state_e new_state)
569 {
570         static gboolean dhcp_stage = FALSE;
571         wifi_service_state_e old_state = g_service_state;
572
573         if (old_state == new_state)
574                 return;
575
576         g_service_state = new_state;
577         DBG("Wi-Fi service state, old state[%s] ==> new state[%s]",
578                 _convert_wifi_service_state_to_string(old_state), _convert_wifi_service_state_to_string(new_state));
579
580         /* During DHCP, temporarily disable Wi-Fi power saving */
581         if ((old_state < NETCONFIG_WIFI_ASSOCIATION || old_state == NETCONFIG_WIFI_FAILURE) && new_state == NETCONFIG_WIFI_CONFIGURATION) {
582                 _set_power_lock(TRUE);
583                 _set_power_save(FALSE);
584                 dhcp_stage = TRUE;
585         } else if (dhcp_stage == TRUE) {
586                 _set_power_lock(FALSE);
587                 _set_power_save(TRUE);
588                 dhcp_stage = FALSE;
589         }
590
591         if (new_state == NETCONFIG_WIFI_CONNECTED) {
592                 netconfig_send_notification_to_net_popup(NETCONFIG_DEL_FOUND_AP_NOTI, NULL);
593
594                 netconfig_set_vconf_int(VCONFKEY_WIFI_STATE, VCONFKEY_WIFI_CONNECTED);
595                 netconfig_set_vconf_int(VCONFKEY_NETWORK_WIFI_STATE, VCONFKEY_NETWORK_WIFI_CONNECTED);
596
597                 netconfig_set_system_event(SYS_EVT_WIFI_STATE, EKEY_WIFI_STATE, EVAL_WIFI_CONNECTED);
598
599                 __set_wifi_connected_essid();
600
601                 netconfig_wifi_indicator_start();
602         } else if (old_state == NETCONFIG_WIFI_CONNECTED) {
603                 netconfig_send_notification_to_net_popup(NETCONFIG_DEL_PORTAL_NOTI, NULL);
604
605                 __unset_wifi_connected_essid();
606
607                 netconfig_set_vconf_int (VCONFKEY_WIFI_STATE, VCONFKEY_WIFI_UNCONNECTED);
608                 netconfig_set_vconf_int(VCONFKEY_NETWORK_WIFI_STATE, VCONFKEY_NETWORK_WIFI_NOT_CONNECTED);
609
610                 netconfig_set_system_event(SYS_EVT_WIFI_STATE, EKEY_WIFI_STATE, EVAL_WIFI_ON);
611
612                 netconfig_wifi_indicator_stop();
613
614                 netconfig_wifi_bgscan_stop();
615                 netconfig_wifi_bgscan_set_interval(SCAN_EXPONENTIAL_MIN);
616                 netconfig_wifi_bgscan_start(TRUE);
617         } else if ((old_state > NETCONFIG_WIFI_IDLE && old_state < NETCONFIG_WIFI_CONNECTED) && new_state == NETCONFIG_WIFI_IDLE) {
618                 /* in ipv6 case disconnect/association -> association */
619                 DBG("reset the bg scan period");
620
621                 netconfig_wifi_bgscan_stop();
622                 netconfig_wifi_bgscan_start(TRUE);
623         }
624
625         _wifi_state_changed(new_state);
626
627         if (new_state == NETCONFIG_WIFI_CONNECTED)
628                 _wifi_state_connected_activation();
629 }
630
631 wifi_service_state_e wifi_state_get_service_state(void)
632 {
633         return g_service_state;
634 }
635
636 void wifi_state_set_tech_state(wifi_tech_state_e new_state)
637 {
638         wifi_tech_state_e old_state = g_tech_state;
639
640         if (old_state == new_state)
641                 return;
642
643         g_tech_state = new_state;
644
645         DBG("Wi-Fi technology state, old state[%s] ==> new state[%s]",
646                 _convert_wifi_technology_state_to_string(old_state), _convert_wifi_technology_state_to_string(new_state));
647 }
648
649 wifi_tech_state_e wifi_state_get_technology_state(void)
650 {
651         GVariant *message = NULL, *variant;
652         GVariantIter *iter, *next;
653         wifi_tech_state_e ret = NETCONFIG_WIFI_TECH_OFF;
654         gboolean wifi_tech_powered = FALSE;
655         gboolean wifi_tech_connected = FALSE;
656         const char *path;
657         gchar *key;
658
659         if (g_tech_state > NETCONFIG_WIFI_TECH_UNKNOWN)
660                 return g_tech_state;
661
662         message = netconfig_invoke_dbus_method(CONNMAN_SERVICE,
663                         CONNMAN_MANAGER_PATH, CONNMAN_MANAGER_INTERFACE,
664                         "GetTechnologies", NULL);
665         if (message == NULL) {
666                 ERR("Failed to get_technology_state");
667                 return NETCONFIG_WIFI_TECH_UNKNOWN;
668         }
669
670         g_variant_get(message, "(a(oa{sv}))", &iter);
671         while (g_variant_iter_loop(iter, "(oa{sv})", &path, &next)) {
672                 if (path == NULL || g_strcmp0(path, CONNMAN_WIFI_TECHNOLOGY_PREFIX) != 0)
673                         continue;
674
675                 while (g_variant_iter_loop(next, "{sv}", &key, &variant)) {
676                         const gchar *sdata = NULL;
677                         gboolean data;
678
679                         if (g_variant_is_of_type(variant, G_VARIANT_TYPE_BOOLEAN)) {
680                                 data = g_variant_get_boolean(variant);
681                                 DBG("key-[%s] - %s", key, data ? "True" : "False");
682
683                                 if (strcmp(key, "Powered") == 0 && data)
684                                         wifi_tech_powered = TRUE;
685                                 else if (strcmp(key, "Connected") == 0 && data)
686                                         wifi_tech_connected = TRUE;
687                                 /* For further use
688                                 else if (strcmp(key, "Tethering") == 0 && data) {
689                                 } */
690                         } else if (g_variant_is_of_type(variant, G_VARIANT_TYPE_STRING)) {
691                                 sdata = g_variant_get_string(variant, NULL);
692                                 DBG("%s", sdata);
693                         }
694                 }
695         }
696
697         g_variant_unref(message);
698
699         g_variant_iter_free(iter);
700
701         if (wifi_tech_powered == TRUE)
702                 ret = NETCONFIG_WIFI_TECH_POWERED;
703
704         if (wifi_tech_connected == TRUE)
705                 ret = NETCONFIG_WIFI_TECH_CONNECTED;
706
707         g_tech_state = ret;
708
709         return g_tech_state;
710 }
711
712 void wifi_state_set_connected_essid(void)
713 {
714         __set_wifi_connected_essid();
715 }
716
717 void wifi_state_get_connected_essid(gchar **essid)
718 {
719         *essid = g_strdup(__get_wifi_connected_essid());
720 }
721
722 /*      wifi_connection_state_e in CAPI
723  *
724  *      WIFI_CONNECTION_STATE_FAILURE           = -1
725  *      WIFI_CONNECTION_STATE_DISCONNECTED      = 0
726  *      WIFI_CONNECTION_STATE_ASSOCIATION       = 1
727  *      WIFI_CONNECTION_STATE_CONFIGURATION     = 2
728  *      WIFI_CONNECTION_STATE_CONNECTED         = 3
729  */
730 /*      connection_wifi_state_e in CAPI
731  *
732  *      CONNECTION_WIFI_STATE_DEACTIVATED       = 0
733  *      CONNECTION_WIFI_STATE_DISCONNECTED      = 1
734  *      CONNECTION_WIFI_STATE_CONNECTED         = 2
735  */
736 gboolean handle_get_wifi_state(Wifi *wifi, GDBusMethodInvocation *context)
737 {
738         g_return_val_if_fail(wifi != NULL, FALSE);
739         GVariant *param = NULL;
740         wifi_tech_state_e tech_state = NETCONFIG_WIFI_TECH_UNKNOWN;
741         wifi_service_state_e service_state = NETCONFIG_WIFI_UNKNOWN;
742         tech_state = wifi_state_get_technology_state();
743         service_state = wifi_state_get_service_state();
744
745         if (tech_state == NETCONFIG_WIFI_TECH_UNKNOWN)
746                 param = g_variant_new("(s)", "unknown");
747         else if (tech_state == NETCONFIG_WIFI_TECH_OFF ||
748                 tech_state == NETCONFIG_WIFI_TECH_WPS_ONLY)
749                 param = g_variant_new("(s)", "deactivated");
750         else if (tech_state == NETCONFIG_WIFI_TECH_CONNECTED)
751                 param = g_variant_new("(s)", "connected");
752         else {
753                 switch (service_state) {
754                 case NETCONFIG_WIFI_FAILURE:
755                         param = g_variant_new("(s)", "failure");
756                         break;
757                 case NETCONFIG_WIFI_ASSOCIATION:
758                         param = g_variant_new("(s)", "association");
759                         break;
760                 case NETCONFIG_WIFI_CONFIGURATION:
761                         param = g_variant_new("(s)", "configuration");
762                         break;
763                 case NETCONFIG_WIFI_CONNECTED:
764                         param = g_variant_new("(s)", "connected");
765                         break;
766                 case NETCONFIG_WIFI_UNKNOWN:
767                 case NETCONFIG_WIFI_IDLE:
768                 default:
769                         param = g_variant_new("(s)", "disconnected");
770                 }
771         }
772
773         g_dbus_method_invocation_return_value(context, param);
774
775         return TRUE;
776 }