2 * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
20 #include <vconf/vconf.h>
21 #include <arpa/inet.h>
23 #include "net_connection_private.h"
25 static GSList *prof_handle_list = NULL;
26 static GHashTable *profile_cb_table = NULL;
28 struct _profile_cb_s {
29 connection_profile_state_changed_cb callback;
30 connection_profile_state_e state;
34 struct _profile_list_s {
37 net_profile_info_t *profiles;
41 connection_opened_cb opened_cb;
42 connection_closed_cb closed_cb;
43 connection_set_default_cb set_default_cb;
44 connection_reset_cb reset_profile_cb;
45 libnet_ethernet_cable_state_changed_cb ethernet_cable_state_changed_cb;
46 void *opened_user_data;
47 void *closed_user_data;
48 void *set_default_user_data;
49 void *reset_profile_user_data;
54 struct managed_idle_data {
63 bool tethering_bluetooth;
66 static struct _profile_list_s profile_iterator = {0, 0, NULL};
67 static struct _libnet_s libnet = {NULL, NULL, NULL, NULL, NULL, NULL, false};
68 static __thread GSList *managed_idler_list = NULL;
69 static __thread bool is_check_enable_feature = false;
70 static __thread struct feature_type enable_feature = {false, false, false};
72 bool _connection_is_created(void)
74 return libnet.is_created;
77 static connection_error_e __libnet_convert_to_cp_error_type(net_err_t err_type)
81 return CONNECTION_ERROR_NONE;
82 case NET_ERR_APP_ALREADY_REGISTERED:
83 return CONNECTION_ERROR_INVALID_OPERATION;
84 case NET_ERR_APP_NOT_REGISTERED:
85 return CONNECTION_ERROR_INVALID_OPERATION;
86 case NET_ERR_NO_ACTIVE_CONNECTIONS:
87 return CONNECTION_ERROR_NO_CONNECTION;
88 case NET_ERR_ACTIVE_CONNECTION_EXISTS:
89 return CONNECTION_ERROR_ALREADY_EXISTS;
90 case NET_ERR_CONNECTION_DHCP_FAILED:
91 return CONNECTION_ERROR_DHCP_FAILED;
92 case NET_ERR_CONNECTION_INVALID_KEY:
93 return CONNECTION_ERROR_INVALID_KEY;
94 case NET_ERR_IN_PROGRESS:
95 return CONNECTION_ERROR_NOW_IN_PROGRESS;
96 case NET_ERR_OPERATION_ABORTED:
97 return CONNECTION_ERROR_OPERATION_ABORTED;
98 case NET_ERR_TIME_OUT:
99 return CONNECTION_ERROR_NO_REPLY;
100 case NET_ERR_ACCESS_DENIED:
101 return CONNECTION_ERROR_PERMISSION_DENIED;
103 return CONNECTION_ERROR_OPERATION_FAILED;
107 static const char *__libnet_convert_cp_error_type_to_string(connection_error_e err_type)
110 case CONNECTION_ERROR_NONE:
112 case CONNECTION_ERROR_INVALID_PARAMETER:
113 return "INVALID_PARAMETER";
114 case CONNECTION_ERROR_OUT_OF_MEMORY:
115 return "OUT_OF_MEMORY";
116 case CONNECTION_ERROR_INVALID_OPERATION:
117 return "INVALID_OPERATION";
118 case CONNECTION_ERROR_ADDRESS_FAMILY_NOT_SUPPORTED:
119 return "ADDRESS_FAMILY_NOT_SUPPORTED";
120 case CONNECTION_ERROR_OPERATION_FAILED:
121 return "OPERATION_FAILED";
122 case CONNECTION_ERROR_ITERATOR_END:
123 return "ITERATOR_END";
124 case CONNECTION_ERROR_NO_CONNECTION:
125 return "NO_CONNECTION";
126 case CONNECTION_ERROR_NOW_IN_PROGRESS:
127 return "NOW_IN_PROGRESS";
128 case CONNECTION_ERROR_ALREADY_EXISTS:
129 return "ALREADY_EXISTS";
130 case CONNECTION_ERROR_OPERATION_ABORTED:
131 return "OPERATION_ABORTED";
132 case CONNECTION_ERROR_DHCP_FAILED:
133 return "DHCP_FAILED";
134 case CONNECTION_ERROR_INVALID_KEY:
135 return "INVALID_KEY";
136 case CONNECTION_ERROR_NO_REPLY:
138 case CONNECTION_ERROR_PERMISSION_DENIED:
139 return "PERMISSION_DENIED";
140 case CONNECTION_ERROR_NOT_SUPPORTED:
141 return "NOT_SUPPORTED";
147 static const char *__libnet_convert_cp_state_to_string(connection_profile_state_e state)
150 case CONNECTION_PROFILE_STATE_DISCONNECTED:
151 return "DISCONNECTED";
152 case CONNECTION_PROFILE_STATE_ASSOCIATION:
153 return "ASSOCIATION";
154 case CONNECTION_PROFILE_STATE_CONFIGURATION:
155 return "CONFIGURATION";
156 case CONNECTION_PROFILE_STATE_CONNECTED:
163 static void __libnet_set_reset_profile_cb(connection_opened_cb user_cb, void *user_data)
165 if (user_cb != NULL) {
166 libnet.reset_profile_cb = user_cb;
167 libnet.reset_profile_user_data = user_data;
171 static void __libnet_set_opened_cb(connection_opened_cb user_cb, void *user_data)
174 libnet.opened_cb = user_cb;
175 libnet.opened_user_data = user_data;
179 static gboolean __libnet_reset_profile_cb_idle(gpointer data)
181 connection_error_e result = (connection_error_e)data;
183 if (libnet.reset_profile_cb != NULL)
184 libnet.reset_profile_cb(result, libnet.reset_profile_user_data);
186 libnet.reset_profile_cb = NULL;
187 libnet.reset_profile_user_data = NULL;
192 static void __libnet_reset_profile_cb(connection_error_e result)
194 if (_connection_is_created() != true) {
195 CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
196 "If multi-threaded, thread integrity be broken.");
200 if (libnet.reset_profile_cb != NULL)
201 _connection_callback_add(__libnet_reset_profile_cb_idle, (gpointer)result);
204 static void __libnet_opened_cb(connection_error_e result)
206 if (libnet.opened_cb)
207 libnet.opened_cb(result, libnet.opened_user_data);
209 libnet.opened_cb = NULL;
210 libnet.opened_user_data = NULL;
213 static void __libnet_set_closed_cb(connection_closed_cb user_cb, void *user_data)
216 libnet.closed_cb = user_cb;
217 libnet.closed_user_data = user_data;
221 static void __libnet_closed_cb(connection_error_e result)
223 if (libnet.closed_cb)
224 libnet.closed_cb(result, libnet.closed_user_data);
226 libnet.closed_cb = NULL;
227 libnet.closed_user_data = NULL;
230 static void __libnet_set_default_cb(connection_set_default_cb user_cb, void *user_data)
233 libnet.set_default_cb = user_cb;
234 libnet.set_default_user_data = user_data;
238 static void __libnet_default_cb(connection_error_e result)
240 if (libnet.set_default_cb)
241 libnet.set_default_cb(result, libnet.set_default_user_data);
243 libnet.set_default_cb = NULL;
244 libnet.set_default_user_data = NULL;
247 static void __libnet_set_ethernet_cable_state_changed_cb(
248 libnet_ethernet_cable_state_changed_cb user_cb)
250 libnet.ethernet_cable_state_changed_cb = user_cb;
253 static void __libnet_ethernet_cable_state_changed_cb(
254 connection_ethernet_cable_state_e state)
256 if (libnet.ethernet_cable_state_changed_cb)
257 libnet.ethernet_cable_state_changed_cb(state);
260 static void __libnet_state_changed_cb(char *profile_name, connection_profile_state_e state)
262 if (profile_name == NULL)
265 struct _profile_cb_s *cb_info;
266 cb_info = g_hash_table_lookup(profile_cb_table, profile_name);
271 if (cb_info->state == state)
274 cb_info->state = state;
276 if (state >= 0 && cb_info->callback)
277 cb_info->callback(state, cb_info->user_data);
280 static void __libnet_clear_profile_list(struct _profile_list_s *profile_list)
282 if (profile_list->count > 0)
283 g_free(profile_list->profiles);
285 profile_list->count = 0;
286 profile_list->next = 0;
287 profile_list->profiles = NULL;
290 static void __libnet_evt_cb(net_event_info_t* event_cb, void* user_data)
292 bool is_requested = false;
293 connection_error_e result = CONNECTION_ERROR_NONE;
295 switch (event_cb->Event) {
296 case NET_EVENT_OPEN_RSP:
299 case NET_EVENT_OPEN_IND:
300 result = __libnet_convert_to_cp_error_type(event_cb->Error);
301 CONNECTION_LOG(CONNECTION_INFO, "Got connection open %s : %s\n",
302 (is_requested) ? "RSP":"IND",
303 __libnet_convert_cp_error_type_to_string(result));
306 __libnet_opened_cb(result);
308 switch (event_cb->Error) {
310 case NET_ERR_ACTIVE_CONNECTION_EXISTS:
311 CONNECTION_LOG(CONNECTION_INFO, "'Open connection' succeeded\n");
313 __libnet_state_changed_cb(event_cb->ProfileName, CONNECTION_PROFILE_STATE_CONNECTED);
316 CONNECTION_LOG(CONNECTION_ERROR, "'Open connection' failed!! [%s]\n",
317 __libnet_convert_cp_error_type_to_string(result));
320 __libnet_state_changed_cb(event_cb->ProfileName, CONNECTION_PROFILE_STATE_DISCONNECTED);
323 case NET_EVENT_CLOSE_RSP:
326 case NET_EVENT_CLOSE_IND:
327 result = __libnet_convert_to_cp_error_type(event_cb->Error);
328 CONNECTION_LOG(CONNECTION_INFO, "Got connection close %s : %s\n",
329 (is_requested) ? "RSP":"IND",
330 __libnet_convert_cp_error_type_to_string(result));
333 __libnet_closed_cb(result);
335 switch (event_cb->Error) {
337 CONNECTION_LOG(CONNECTION_INFO, "'Close connection' succeeded!\n");
339 __libnet_state_changed_cb(event_cb->ProfileName, CONNECTION_PROFILE_STATE_DISCONNECTED);
342 CONNECTION_LOG(CONNECTION_ERROR, "'Close connection' failed!! [%s]\n",
343 __libnet_convert_cp_error_type_to_string(result));
347 case NET_EVENT_NET_STATE_IND:
348 CONNECTION_LOG(CONNECTION_INFO, "Got State changed IND\n");
350 if (event_cb->Datalength != sizeof(net_state_type_t))
353 net_state_type_t *profile_state = (net_state_type_t*)event_cb->Data;
354 connection_profile_state_e cp_state = _profile_convert_to_cp_state(*profile_state);
356 CONNECTION_LOG(CONNECTION_INFO,
357 "Profile State : %s, profile name : %s\n",
358 __libnet_convert_cp_state_to_string(cp_state),
359 event_cb->ProfileName);
361 __libnet_state_changed_cb(event_cb->ProfileName, cp_state);
364 case NET_EVENT_WIFI_SCAN_IND:
365 case NET_EVENT_WIFI_SCAN_RSP:
366 CONNECTION_LOG(CONNECTION_INFO, "Got wifi scan IND\n");
368 case NET_EVENT_WIFI_POWER_IND:
369 case NET_EVENT_WIFI_POWER_RSP:
370 CONNECTION_LOG(CONNECTION_INFO, "Got wifi power IND\n");
372 case NET_EVENT_CELLULAR_SET_DEFAULT_RSP:
373 result = __libnet_convert_to_cp_error_type(event_cb->Error);
374 CONNECTION_LOG(CONNECTION_INFO, "Got set default profile RSP %d\n", result);
375 __libnet_default_cb(result);
377 case NET_EVENT_WIFI_WPS_RSP:
378 CONNECTION_LOG(CONNECTION_INFO, "Got wifi WPS RSP\n");
380 case NET_EVENT_CELLULAR_RESET_DEFAULT_RSP:
381 result = __libnet_convert_to_cp_error_type(event_cb->Error);
382 CONNECTION_LOG(CONNECTION_INFO, "Got reset default profile RSP %d", result);
383 __libnet_reset_profile_cb(result);
385 case NET_EVENT_ETHERNET_CABLE_ATTACHED:
386 CONNECTION_LOG(CONNECTION_INFO, "Got Ethernet cable Attached Indication\n");
387 __libnet_ethernet_cable_state_changed_cb(CONNECTION_ETHERNET_CABLE_ATTACHED);
389 case NET_EVENT_ETHERNET_CABLE_DETACHED:
390 CONNECTION_LOG(CONNECTION_INFO, "Got Ethernet cable detached Indication\n");
391 __libnet_ethernet_cable_state_changed_cb(CONNECTION_ETHERNET_CABLE_DETACHED);
394 CONNECTION_LOG(CONNECTION_ERROR, "Error! Unknown Event\n\n");
399 static int __libnet_check_address_type(int address_family, const char *address)
404 err = inet_pton(address_family, address, &buf);
411 int __libnet_get_connected_count(struct _profile_list_s *profile_list)
416 for (;i < profile_list->count;i++) {
417 if (profile_list->profiles[i].ProfileState == NET_STATE_TYPE_ONLINE ||
418 profile_list->profiles[i].ProfileState == NET_STATE_TYPE_READY)
425 void __libnet_copy_connected_profile(net_profile_info_t **dest, struct _profile_list_s *source)
429 for (;i < source->count;i++) {
430 if (source->profiles[i].ProfileState == NET_STATE_TYPE_ONLINE ||
431 source->profiles[i].ProfileState == NET_STATE_TYPE_READY) {
432 memcpy(*dest, &source->profiles[i], sizeof(net_profile_info_t));
438 int _connection_libnet_init(void)
442 if (!libnet.registered) {
443 rv = net_register_client_ext((net_event_cb_t)__libnet_evt_cb, NET_DEVICE_DEFAULT, NULL);
444 if (rv != NET_ERR_NONE)
447 libnet.registered = true;
449 if (profile_cb_table == NULL)
450 profile_cb_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
456 bool _connection_libnet_deinit(void)
458 if (libnet.registered) {
459 if (net_deregister_client_ext(NET_DEVICE_DEFAULT) != NET_ERR_NONE)
462 libnet.registered = false;
464 if (profile_cb_table) {
465 g_hash_table_destroy(profile_cb_table);
466 profile_cb_table = NULL;
469 __libnet_clear_profile_list(&profile_iterator);
471 if (prof_handle_list) {
472 g_slist_free_full(prof_handle_list, g_free);
473 prof_handle_list = NULL;
480 bool _connection_libnet_check_profile_validity(connection_profile_h profile)
485 for (list = prof_handle_list; list; list = list->next)
486 if (profile == list->data) return true;
488 for (;i < profile_iterator.count;i++)
489 if (profile == &profile_iterator.profiles[i]) return true;
494 bool _connection_libnet_check_profile_cb_validity(connection_profile_h profile)
496 struct _profile_cb_s *cb_info;
497 net_profile_info_t *profile_info = profile;
502 cb_info = g_hash_table_lookup(profile_cb_table, profile_info->ProfileName);
510 int _connection_libnet_get_wifi_state(connection_wifi_state_e *state)
513 net_wifi_state_t wlan_state;
514 net_profile_name_t profile_name;
516 rv = net_get_wifi_state(&wlan_state, &profile_name);
517 if (rv == NET_ERR_ACCESS_DENIED) {
518 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
519 return CONNECTION_ERROR_PERMISSION_DENIED;
520 } else if (rv != NET_ERR_NONE) {
521 CONNECTION_LOG(CONNECTION_ERROR, "Failed to get Wi-Fi state[%d]", rv);
522 return CONNECTION_ERROR_OPERATION_FAILED;
525 switch (wlan_state) {
527 *state = CONNECTION_WIFI_STATE_DEACTIVATED;
530 case WIFI_CONNECTING:
531 *state = CONNECTION_WIFI_STATE_DISCONNECTED;
534 case WIFI_DISCONNECTING:
535 *state = CONNECTION_WIFI_STATE_CONNECTED;
538 CONNECTION_LOG(CONNECTION_ERROR, "Error!! Unknown state\n");
539 return CONNECTION_ERROR_INVALID_OPERATION;
542 return CONNECTION_ERROR_NONE;
545 int _connection_libnet_get_ethernet_state(connection_ethernet_state_e* state)
548 struct _profile_list_s ethernet_profiles = {0, 0, NULL};
549 rv = net_get_profile_list(NET_DEVICE_ETHERNET, ðernet_profiles.profiles, ðernet_profiles.count);
550 if (rv == NET_ERR_ACCESS_DENIED) {
551 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
552 return CONNECTION_ERROR_PERMISSION_DENIED;
555 switch (ethernet_profiles.profiles->ProfileState) {
556 case NET_STATE_TYPE_ONLINE:
557 case NET_STATE_TYPE_READY:
558 *state = CONNECTION_ETHERNET_STATE_CONNECTED;
560 case NET_STATE_TYPE_IDLE:
561 case NET_STATE_TYPE_FAILURE:
562 case NET_STATE_TYPE_ASSOCIATION:
563 case NET_STATE_TYPE_CONFIGURATION:
564 case NET_STATE_TYPE_DISCONNECT:
565 *state = CONNECTION_ETHERNET_STATE_DISCONNECTED;
568 return CONNECTION_ERROR_OPERATION_FAILED;
571 __libnet_clear_profile_list(ðernet_profiles);
573 return CONNECTION_ERROR_NONE;
576 int _connection_libnet_get_ethernet_cable_state(connection_ethernet_cable_state_e* state)
581 rv = net_get_ethernet_cable_state(&status);
582 if (rv == NET_ERR_ACCESS_DENIED) {
583 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
584 return CONNECTION_ERROR_PERMISSION_DENIED;
585 } else if (rv != NET_ERR_NONE) {
586 CONNECTION_LOG(CONNECTION_ERROR, "Failed to get ethernet cable state[%d]", rv);
587 return CONNECTION_ERROR_OPERATION_FAILED;
591 *state = CONNECTION_ETHERNET_CABLE_ATTACHED;
593 *state = CONNECTION_ETHERNET_CABLE_DETACHED;
594 return CONNECTION_ERROR_NONE;
597 int _connection_libnet_set_ethernet_cable_state_changed_cb(
598 libnet_ethernet_cable_state_changed_cb callback)
600 __libnet_set_ethernet_cable_state_changed_cb(callback);
602 return CONNECTION_ERROR_NONE;
605 int _connection_libnet_get_bluetooth_state(connection_bt_state_e* state)
609 struct _profile_list_s bluetooth_profiles = {0, 0, NULL};
610 rv = net_get_profile_list(NET_DEVICE_BLUETOOTH, &bluetooth_profiles.profiles, &bluetooth_profiles.count);
611 if (rv == NET_ERR_ACCESS_DENIED) {
612 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
613 return CONNECTION_ERROR_PERMISSION_DENIED;
616 if (bluetooth_profiles.count == 0) {
617 *state = CONNECTION_BT_STATE_DEACTIVATED;
618 return CONNECTION_ERROR_NONE;
621 for (; i < bluetooth_profiles.count; i++) {
622 switch (bluetooth_profiles.profiles[i].ProfileState) {
623 case NET_STATE_TYPE_ONLINE:
624 case NET_STATE_TYPE_READY:
625 *state = CONNECTION_BT_STATE_CONNECTED;
627 case NET_STATE_TYPE_IDLE:
628 case NET_STATE_TYPE_FAILURE:
629 case NET_STATE_TYPE_ASSOCIATION:
630 case NET_STATE_TYPE_CONFIGURATION:
631 case NET_STATE_TYPE_DISCONNECT:
632 *state = CONNECTION_BT_STATE_DISCONNECTED;
635 __libnet_clear_profile_list(&bluetooth_profiles);
636 return CONNECTION_ERROR_OPERATION_FAILED;
641 __libnet_clear_profile_list(&bluetooth_profiles);
643 return CONNECTION_ERROR_NONE;
646 int _connection_libnet_get_profile_iterator(connection_iterator_type_e type, connection_profile_iterator_h* profile_iter_h)
650 net_profile_info_t *profiles = NULL;
652 struct _profile_list_s all_profiles = {0, 0, NULL};
654 __libnet_clear_profile_list(&profile_iterator);
656 rv = net_get_profile_list(NET_DEVICE_MAX, &all_profiles.profiles, &all_profiles.count);
658 if (rv != NET_ERR_NONE) {
659 if (rv == NET_ERR_NO_SERVICE) {
660 *profile_iter_h = &profile_iterator;
661 return CONNECTION_ERROR_NONE;
663 return CONNECTION_ERROR_OPERATION_FAILED;
666 *profile_iter_h = &profile_iterator;
669 case CONNECTION_ITERATOR_TYPE_REGISTERED:
670 count = all_profiles.count;
671 CONNECTION_LOG(CONNECTION_INFO, "Total profile count : %d\n", count);
674 return CONNECTION_ERROR_NONE;
676 profile_iterator.profiles = all_profiles.profiles;
679 case CONNECTION_ITERATOR_TYPE_CONNECTED:
680 count = __libnet_get_connected_count(&all_profiles);
681 CONNECTION_LOG(CONNECTION_INFO, "Total connected profile count : %d\n", count);
684 return CONNECTION_ERROR_NONE;
686 profiles = g_try_new0(net_profile_info_t, count);
687 if (profiles == NULL) {
688 __libnet_clear_profile_list(&all_profiles);
689 return CONNECTION_ERROR_OUT_OF_MEMORY;
691 case CONNECTION_ITERATOR_TYPE_DEFAULT:
692 /* To do : Not supported yet */
696 profile_iterator.profiles = profiles;
698 __libnet_copy_connected_profile(&profiles, &all_profiles);
700 __libnet_clear_profile_list(&all_profiles);
703 profile_iterator.count = count;
705 return CONNECTION_ERROR_NONE;
708 int _connection_libnet_get_iterator_next(connection_profile_iterator_h profile_iter_h, connection_profile_h *profile)
710 if (profile_iter_h != &profile_iterator)
711 return CONNECTION_ERROR_INVALID_PARAMETER;
713 if (profile_iterator.count <= profile_iterator.next)
714 return CONNECTION_ERROR_ITERATOR_END;
716 *profile = &profile_iterator.profiles[profile_iterator.next];
717 profile_iterator.next++;
719 return CONNECTION_ERROR_NONE;
722 bool _connection_libnet_iterator_has_next(connection_profile_iterator_h profile_iter_h)
724 if (profile_iter_h != &profile_iterator)
727 if (profile_iterator.count <= profile_iterator.next)
733 int _connection_libnet_destroy_iterator(connection_profile_iterator_h profile_iter_h)
735 if (profile_iter_h != &profile_iterator)
736 return CONNECTION_ERROR_INVALID_PARAMETER;
738 __libnet_clear_profile_list(&profile_iterator);
740 return CONNECTION_ERROR_NONE;
743 int _connection_libnet_get_current_profile(connection_profile_h *profile)
745 net_profile_info_t active_profile;
748 rv = net_get_active_net_info(&active_profile);
749 if (rv == NET_ERR_NO_SERVICE)
750 return CONNECTION_ERROR_NO_CONNECTION;
751 else if (rv == NET_ERR_ACCESS_DENIED) {
752 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
753 return CONNECTION_ERROR_PERMISSION_DENIED;
754 } else if (rv != NET_ERR_NONE)
755 return CONNECTION_ERROR_OPERATION_FAILED;
757 *profile = g_try_malloc0(sizeof(net_profile_info_t));
758 if (*profile == NULL)
759 return CONNECTION_ERROR_OUT_OF_MEMORY;
761 memcpy(*profile, &active_profile, sizeof(net_profile_info_t));
762 prof_handle_list = g_slist_append(prof_handle_list, *profile);
764 return CONNECTION_ERROR_NONE;
767 int _connection_libnet_reset_profile(connection_reset_option_e type,
768 connection_cellular_subscriber_id_e id, connection_reset_cb callback, void *user_data)
772 rv = net_reset_profile(type, id);
773 if (rv == NET_ERR_ACCESS_DENIED) {
774 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
775 return CONNECTION_ERROR_PERMISSION_DENIED;
776 } else if (rv != NET_ERR_NONE) {
777 CONNECTION_LOG(CONNECTION_ERROR, "Failed to add profile[%d]", rv);
778 return CONNECTION_ERROR_OPERATION_FAILED;
781 __libnet_set_reset_profile_cb(callback, user_data);
783 return CONNECTION_ERROR_NONE;
786 int _connection_libnet_open_profile(connection_profile_h profile, connection_opened_cb callback, void* user_data)
790 if (!(_connection_libnet_check_profile_validity(profile))) {
791 CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
792 return CONNECTION_ERROR_INVALID_PARAMETER;
795 net_profile_info_t *profile_info = profile;
797 rv = net_open_connection_with_profile(profile_info->ProfileName);
798 if (rv == NET_ERR_ACCESS_DENIED) {
799 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
800 return CONNECTION_ERROR_PERMISSION_DENIED;
801 } else if (rv != NET_ERR_NONE)
802 return CONNECTION_ERROR_OPERATION_FAILED;
804 __libnet_set_opened_cb(callback, user_data);
806 return CONNECTION_ERROR_NONE;
809 int _connection_libnet_get_cellular_service_profile(connection_cellular_service_type_e type, connection_profile_h *profile)
813 int rv = NET_ERR_NONE;
814 net_service_type_t service_type = _connection_profile_convert_to_libnet_cellular_service_type(type);
816 struct _profile_list_s cellular_profiles = {0, 0, NULL};
818 rv = net_get_profile_list(NET_DEVICE_CELLULAR, &cellular_profiles.profiles, &cellular_profiles.count);
819 if (rv == NET_ERR_ACCESS_DENIED) {
820 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
821 return CONNECTION_ERROR_PERMISSION_DENIED;
822 } else if (rv != NET_ERR_NONE) {
823 CONNECTION_LOG(CONNECTION_ERROR, "Failed to get profile list (%d)", rv);
824 return CONNECTION_ERROR_OPERATION_FAILED;
827 for (;i < cellular_profiles.count;i++)
828 if (cellular_profiles.profiles[i].ProfileInfo.Pdp.ServiceType == service_type)
831 if (i >= cellular_profiles.count)
832 return CONNECTION_ERROR_OPERATION_FAILED;
834 *profile = g_try_malloc0(sizeof(net_profile_info_t));
835 if (*profile == NULL)
836 return CONNECTION_ERROR_OUT_OF_MEMORY;
838 memcpy(*profile, &cellular_profiles.profiles[i], sizeof(net_profile_info_t));
840 if (cellular_profiles.profiles[i].ProfileInfo.Pdp.DefaultConn)
843 if (type != CONNECTION_CELLULAR_SERVICE_TYPE_INTERNET &&
844 type != CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_INTERNET)
847 for (;j < cellular_profiles.count;j++) {
851 if (cellular_profiles.profiles[j].ProfileInfo.Pdp.ServiceType != service_type)
854 if (cellular_profiles.profiles[j].ProfileInfo.Pdp.DefaultConn) {
855 memcpy(*profile, &cellular_profiles.profiles[j], sizeof(net_profile_info_t));
861 prof_handle_list = g_slist_append(prof_handle_list, *profile);
863 return CONNECTION_ERROR_NONE;
866 int _connection_libnet_set_cellular_service_profile_sync(connection_cellular_service_type_e type, connection_profile_h profile)
870 if (!(_connection_libnet_check_profile_validity(profile))) {
871 CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed\n");
872 return CONNECTION_ERROR_INVALID_PARAMETER;
875 net_profile_info_t *profile_info = profile;
876 connection_cellular_service_type_e service_type;
878 service_type = _profile_convert_to_connection_cellular_service_type(profile_info->ProfileInfo.Pdp.ServiceType);
880 if (service_type != type)
881 return CONNECTION_ERROR_INVALID_PARAMETER;
883 rv = net_set_default_cellular_service_profile(profile_info->ProfileName);
884 if (rv == NET_ERR_ACCESS_DENIED) {
885 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
886 return CONNECTION_ERROR_PERMISSION_DENIED;
887 } else if (rv != NET_ERR_NONE)
888 return CONNECTION_ERROR_OPERATION_FAILED;
890 return CONNECTION_ERROR_NONE;
893 int _connection_libnet_set_cellular_service_profile_async(connection_cellular_service_type_e type,
894 connection_profile_h profile, connection_set_default_cb callback, void* user_data)
898 if (!(_connection_libnet_check_profile_validity(profile))) {
899 CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed\n");
900 return CONNECTION_ERROR_INVALID_PARAMETER;
903 net_profile_info_t *profile_info = profile;
904 connection_cellular_service_type_e service_type;
906 service_type = _profile_convert_to_connection_cellular_service_type(profile_info->ProfileInfo.Pdp.ServiceType);
908 if (service_type != type)
909 return CONNECTION_ERROR_INVALID_PARAMETER;
911 rv = net_set_default_cellular_service_profile_async(profile_info->ProfileName);
912 if (rv == NET_ERR_ACCESS_DENIED) {
913 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
914 return CONNECTION_ERROR_PERMISSION_DENIED;
915 } else if (rv != NET_ERR_NONE)
916 return CONNECTION_ERROR_OPERATION_FAILED;
918 __libnet_set_default_cb(callback, user_data);
920 return CONNECTION_ERROR_NONE;
923 int _connection_libnet_close_profile(connection_profile_h profile, connection_closed_cb callback, void *user_data)
927 if (!(_connection_libnet_check_profile_validity(profile))) {
928 CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed\n");
929 return CONNECTION_ERROR_INVALID_PARAMETER;
932 net_profile_info_t *profile_info = profile;
934 rv = net_close_connection(profile_info->ProfileName);
935 if (rv == NET_ERR_ACCESS_DENIED) {
936 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
937 return CONNECTION_ERROR_PERMISSION_DENIED;
938 } else if (rv != NET_ERR_NONE)
939 return CONNECTION_ERROR_OPERATION_FAILED;
941 if (net_close_connection(profile_info->ProfileName) != NET_ERR_NONE)
942 return CONNECTION_ERROR_OPERATION_FAILED;
944 __libnet_set_closed_cb(callback, user_data);
946 return CONNECTION_ERROR_NONE;
949 int _connection_libnet_add_route(const char *interface_name, const char *host_address)
953 int address_family = 0;
955 if(__libnet_check_address_type(AF_INET, host_address))
956 address_family = AF_INET;
958 return CONNECTION_ERROR_INVALID_PARAMETER;
960 switch(address_family) {
962 endstr = strrchr(host_address, '.');
963 if (endstr == NULL ||
964 strcmp(endstr, ".0") == 0 ||
965 strncmp(host_address, "0.", 2) == 0 ||
966 strstr(host_address, "255") != NULL) {
967 CONNECTION_LOG(CONNECTION_ERROR, "Invalid IP address Passed\n");
968 return CONNECTION_ERROR_INVALID_PARAMETER;
972 return CONNECTION_ERROR_OPERATION_FAILED;
975 rv = net_add_route(host_address, interface_name, address_family);
976 if (rv == NET_ERR_ACCESS_DENIED) {
977 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
978 return CONNECTION_ERROR_PERMISSION_DENIED;
979 } else if (rv != NET_ERR_NONE)
980 return CONNECTION_ERROR_OPERATION_FAILED;
982 return CONNECTION_ERROR_NONE;
985 int _connection_libnet_remove_route(const char *interface_name, const char *host_address)
988 char *endstr = strrchr(host_address, '.');
989 int address_family = 0;
991 if (__libnet_check_address_type(AF_INET, host_address))
992 address_family = AF_INET;
994 return CONNECTION_ERROR_INVALID_PARAMETER;
996 switch(address_family) {
998 endstr = strrchr(host_address, '.');
999 if (endstr == NULL ||
1000 strcmp(endstr, ".0") == 0 ||
1001 strncmp(host_address, "0.", 2) == 0 ||
1002 strstr(host_address, ".0.") != NULL ||strstr(host_address, "255") != NULL) {
1003 CONNECTION_LOG(CONNECTION_ERROR, "Invalid IP address Passed");
1004 return CONNECTION_ERROR_INVALID_PARAMETER;
1008 return CONNECTION_ERROR_OPERATION_FAILED;
1011 rv = net_remove_route(host_address, interface_name, address_family);
1012 if (rv == NET_ERR_ACCESS_DENIED) {
1013 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1014 return CONNECTION_ERROR_PERMISSION_DENIED;
1015 } else if (rv != NET_ERR_NONE)
1016 return CONNECTION_ERROR_OPERATION_FAILED;
1018 return CONNECTION_ERROR_NONE;
1021 int _connection_libnet_add_route_ipv6(const char *interface_name, const char *host_address, const char *gateway)
1024 int address_family = 0;
1026 address_family = AF_INET6;
1027 /* if(__libnet_check_address_type(AF_INET6, host_address))
1028 address_family = AF_INET6;
1030 return CONNECTION_ERROR_INVALID_PARAMETER;*/
1032 switch(address_family) {
1034 if (strncmp(host_address, "fe80:", 5) == 0 ||
1035 strncmp(host_address, "ff00:", 5) == 0 ||
1036 strncmp(host_address, "::", 2) == 0) {
1037 CONNECTION_LOG(CONNECTION_ERROR, "Invalid IP address Passed\n");
1038 return CONNECTION_ERROR_INVALID_PARAMETER;
1042 return CONNECTION_ERROR_OPERATION_FAILED;
1045 rv = net_add_route_ipv6(host_address, interface_name, address_family, gateway);
1046 if (rv == NET_ERR_ACCESS_DENIED) {
1047 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1048 return CONNECTION_ERROR_PERMISSION_DENIED;
1049 } else if (rv != NET_ERR_NONE)
1050 return CONNECTION_ERROR_OPERATION_FAILED;
1052 return CONNECTION_ERROR_NONE;
1055 int _connection_libnet_remove_route_ipv6(const char *interface_name, const char *host_address, const char *gateway)
1058 int address_family = 0;
1060 address_family = AF_INET6;
1061 /* if (__libnet_check_address_type(AF_INET6, host_address))
1062 address_family = AF_INET6;
1064 return CONNECTION_ERROR_INVALID_PARAMETER;*/
1066 switch(address_family) {
1068 if (strncmp(host_address, "fe80:", 5) == 0 ||
1069 strncmp(host_address, "ff00:", 5) == 0 ||
1070 strncmp(host_address, "::", 2) == 0) {
1071 CONNECTION_LOG(CONNECTION_ERROR, "Invalid IP address Passed\n");
1072 return CONNECTION_ERROR_INVALID_PARAMETER;
1076 return CONNECTION_ERROR_OPERATION_FAILED;
1079 rv = net_remove_route_ipv6(host_address, interface_name, address_family, gateway);
1080 if (rv == NET_ERR_ACCESS_DENIED) {
1081 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1082 return CONNECTION_ERROR_PERMISSION_DENIED;
1083 } else if (rv != NET_ERR_NONE)
1084 return CONNECTION_ERROR_OPERATION_FAILED;
1086 return CONNECTION_ERROR_NONE;
1089 void _connection_libnet_add_to_profile_list(connection_profile_h profile)
1091 prof_handle_list = g_slist_append(prof_handle_list, profile);
1094 void _connection_libnet_remove_from_profile_list(connection_profile_h profile)
1096 prof_handle_list = g_slist_remove(prof_handle_list, profile);
1100 bool _connection_libnet_add_to_profile_cb_list(connection_profile_h profile,
1101 connection_profile_state_changed_cb callback, void *user_data)
1103 net_profile_info_t *profile_info = profile;
1104 char *profile_name = g_strdup(profile_info->ProfileName);
1106 struct _profile_cb_s *profile_cb_info = g_try_malloc0(sizeof(struct _profile_cb_s));
1107 if (profile_cb_info == NULL) {
1108 g_free(profile_name);
1112 profile_cb_info->callback = callback;
1113 profile_cb_info->user_data = user_data;
1115 g_hash_table_insert(profile_cb_table, profile_name, profile_cb_info);
1120 bool _connection_libnet_remove_from_profile_cb_list(connection_profile_h profile)
1122 net_profile_info_t *profile_info = profile;
1123 if (g_hash_table_remove(profile_cb_table, profile_info->ProfileName) == TRUE)
1129 int _connection_libnet_set_statistics(net_device_t device_type, net_statistics_type_e statistics_type)
1132 rv = net_set_statistics(device_type, statistics_type);
1133 if (rv == NET_ERR_ACCESS_DENIED) {
1134 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1135 return CONNECTION_ERROR_PERMISSION_DENIED;
1136 } else if (rv != NET_ERR_NONE)
1137 return CONNECTION_ERROR_OPERATION_FAILED;
1139 return CONNECTION_ERROR_NONE;
1142 int _connection_libnet_get_statistics(net_statistics_type_e statistics_type, unsigned long long *size)
1145 rv = net_get_statistics(NET_DEVICE_WIFI, statistics_type, size);
1146 if (rv == NET_ERR_ACCESS_DENIED) {
1147 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1148 return CONNECTION_ERROR_PERMISSION_DENIED;
1149 }else if (rv != NET_ERR_NONE)
1150 return CONNECTION_ERROR_OPERATION_FAILED;
1152 return CONNECTION_ERROR_NONE;
1155 int _connection_libnet_set_cellular_subscriber_id(connection_profile_h profile,
1156 connection_cellular_subscriber_id_e sim_id)
1158 char *modem_path = NULL;
1159 net_profile_info_t *profile_info = (net_profile_info_t *)profile;
1161 if (net_get_cellular_modem_object_path(&modem_path, sim_id) != NET_ERR_NONE) {
1162 CONNECTION_LOG(CONNECTION_ERROR, "Failed to get subscriber[%d]", sim_id);
1163 return CONNECTION_ERROR_OPERATION_FAILED;
1167 CONNECTION_LOG(CONNECTION_ERROR, "NULL modem object path");
1168 return CONNECTION_ERROR_OPERATION_FAILED;
1171 g_strlcpy(profile_info->ProfileInfo.Pdp.PSModemPath, modem_path,
1172 NET_PROFILE_NAME_LEN_MAX);
1175 return CONNECTION_ERROR_NONE;
1178 static void __connection_idle_destroy_cb(gpointer data)
1183 managed_idler_list = g_slist_remove(managed_idler_list, data);
1187 static gboolean __connection_idle_cb(gpointer user_data)
1189 struct managed_idle_data *data = (struct managed_idle_data *)user_data;
1194 return data->func(data->user_data);
1197 guint _connection_callback_add(GSourceFunc func, gpointer user_data)
1200 struct managed_idle_data *data;
1205 data = g_try_new0(struct managed_idle_data, 1);
1210 data->user_data = user_data;
1212 id = g_idle_add_full(G_PRIORITY_DEFAULT_IDLE, __connection_idle_cb, data,
1213 __connection_idle_destroy_cb);
1221 managed_idler_list = g_slist_append(managed_idler_list, data);
1226 void _connection_callback_cleanup(void)
1228 GSList *cur = managed_idler_list;
1230 struct managed_idle_data *data;
1233 GSList *next = cur->next;
1234 data = (struct managed_idle_data *)cur->data;
1236 src = g_main_context_find_source_by_id(g_main_context_default(), data->id);
1238 g_source_destroy(src);
1239 cur = managed_idler_list;
1244 g_slist_free(managed_idler_list);
1245 managed_idler_list = NULL;
1248 int _connection_libnet_check_get_privilege()
1252 rv = net_check_get_privilege();
1253 if (rv == NET_ERR_ACCESS_DENIED) {
1254 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1255 return CONNECTION_ERROR_PERMISSION_DENIED;
1256 } else if (rv != NET_ERR_NONE)
1257 return CONNECTION_ERROR_OPERATION_FAILED;
1259 return CONNECTION_ERROR_NONE;
1262 int _connection_libnet_check_profile_privilege()
1266 rv = net_check_profile_privilege();
1267 if (rv == NET_ERR_ACCESS_DENIED) {
1268 CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
1269 return CONNECTION_ERROR_PERMISSION_DENIED;
1270 } else if (rv != NET_ERR_NONE)
1271 return CONNECTION_ERROR_OPERATION_FAILED;
1273 return CONNECTION_ERROR_NONE;
1276 bool _connection_libnet_get_is_check_enable_feature()
1278 return is_check_enable_feature;
1281 bool _connection_libnet_get_enable_feature_state(enable_feature_type_e feature_type)
1283 if(is_check_enable_feature){
1284 switch(feature_type) {
1285 case FEATURE_TYPE_TELEPHONY:
1286 return enable_feature.telephony;
1287 case FEATURE_TYPE_WIFI:
1288 return enable_feature.wifi;
1289 case FEATURE_TYPE_TETHERING_BLUETOOTH:
1290 return enable_feature.tethering_bluetooth;
1292 CONNECTION_LOG(CONNECTION_ERROR, "Invalid feature type");
1296 CONNECTION_LOG(CONNECTION_ERROR, "Not checked enable feature yet");