Make local handle for event loop
[platform/core/api/connection.git] / src / connection.c
index 64ccf56..bde3359 100755 (executable)
@@ -23,7 +23,7 @@
 
 #include "net_connection_private.h"
 
-static __thread GSList *conn_handle_list = NULL;
+static GSList *conn_handle_list = NULL;
 static int tv_profile = -1; // Unknown
 
 //LCOV_EXCL_START
@@ -79,308 +79,98 @@ bool _connection_check_handle_validity(connection_h connection)
        return __connection_check_handle_validity(connection);
 }
 
-static connection_type_changed_cb
-__connection_get_type_changed_callback(connection_handle_s *local_handle)
+static int __connection_set_type_changed_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       return local_handle->type_changed_callback;
-}
-
-static void *__connection_get_type_changed_userdata(
-                                                       connection_handle_s *local_handle)
-{
-       return local_handle->type_changed_user_data;
-}
-
-static void __connection_cb_type_change_cb(int type)
-{
-       GSList *list;
-       connection_h handle;
-       void *data;
-       connection_type_changed_cb callback;
-       int state;
-
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
-
-       state = __connection_convert_net_state(type);
-
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-
-               callback = __connection_get_type_changed_callback(handle);
-               data = __connection_get_type_changed_userdata(handle);
-               if (callback)
-                       callback(state, data);
-       }
-}
-
-static void __connection_cb_ethernet_cable_state_changed_cb(connection_ethernet_cable_state_e state)
-{
-       CONNECTION_LOG(CONNECTION_INFO, "Ethernet Cable state Indication");
-
-       GSList *list;
-
-       for (list = conn_handle_list; list; list = list->next) {
-               connection_handle_s *local_handle = (connection_handle_s *)list->data;
-               if (local_handle->ethernet_cable_state_changed_callback)
-                       local_handle->ethernet_cable_state_changed_callback(state,
-                                       local_handle->ethernet_cable_state_changed_user_data);
-       }
-}
-
-static int __connection_get_ethernet_cable_state_changed_callback_count(void)
-{
-       GSList *list;
-       int count = 0;
-
-       for (list = conn_handle_list; list; list = list->next) {
-               connection_handle_s *local_handle = (connection_handle_s *)list->data;
-               if (local_handle->ethernet_cable_state_changed_callback) count++;
-       }
-
-       return count;
-}
-
-static int __connection_set_type_changed_callback(connection_h connection,
-                                                       void *callback, void *user_data)
-{
-       static __thread gint refcount = 0;
-       connection_handle_s *local_handle;
-
-       local_handle = (connection_handle_s *)connection;
-
-       if (callback) {
-               if (refcount == 0)
-                       _connection_libnet_set_type_changed_cb(
-                                                          __connection_cb_type_change_cb);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)",
-                                          refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_type_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               _connection_libnet_set_type_changed_cb(NULL);
-                               CONNECTION_LOG(CONNECTION_INFO,
-                                               "Successfully de-registered(%d)", refcount);
-                       }
-               }
-       }
-
-       local_handle->type_changed_user_data = user_data;
-       local_handle->type_changed_callback = callback;
+       conn_handle->type_changed_user_data = user_data;
+       conn_handle->type_changed_callback = callback;
 
        return CONNECTION_ERROR_NONE;
 }
 
-static connection_address_changed_cb
-__connection_get_ip_changed_callback(connection_handle_s *local_handle)
+static int __connection_set_ip_changed_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       return local_handle->ip_changed_callback;
-}
+       conn_handle->ip_changed_user_data = user_data;
+       conn_handle->ip_changed_callback = callback;
 
-static void *__connection_get_ip_changed_userdata(
-                                                       connection_handle_s *local_handle)
-{
-       return local_handle->ip_changed_user_data;
+       return CONNECTION_ERROR_NONE;
 }
 
-static void __connection_cb_ip_change_cb(
-                        connection_address_family_e addr_family, char *ip_addr)
+static int __connection_set_proxy_changed_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       GSList *list;
-       connection_h handle;
-       char *ip4_addr = NULL;
-       char *ip6_addr = NULL;
-       void *data;
-       connection_address_changed_cb callback;
-
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
-
-       switch (addr_family) {
-       case CONNECTION_ADDRESS_FAMILY_IPV4:
-               ip4_addr = g_strdup(ip_addr);
-
-               ip6_addr = vconf_get_str(VCONFKEY_NETWORK_IP6);
-               if (ip6_addr == NULL)
-                       CONNECTION_LOG(CONNECTION_ERROR, //LCOV_EXCL_LINE
-                                                  "vconf_get_str(VCONFKEY_NETWORK_IP6) failed");
-               break;
-       case CONNECTION_ADDRESS_FAMILY_IPV6:
-               ip6_addr = g_strdup(ip_addr);
-
-               ip4_addr = vconf_get_str(VCONFKEY_NETWORK_IP);
-               if (ip4_addr == NULL)
-                       CONNECTION_LOG(CONNECTION_ERROR, //LCOV_EXCL_LINE
-                                                  "vconf_get_str(VCONFKEY_NETWORK_IP) failed");
-               break;
-       default:
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid Address Type");
-               return;
-       }
-
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-
-               callback = __connection_get_ip_changed_callback(handle);
-               data = __connection_get_ip_changed_userdata(handle);
-
-               if (callback)
-                       callback(ip4_addr, ip6_addr, data);
-       }
+       conn_handle->proxy_changed_user_data = user_data;
+       conn_handle->proxy_changed_callback = callback;
 
-       g_free(ip4_addr);
-       g_free(ip6_addr);
+       return CONNECTION_ERROR_NONE;
 }
 
-static int __connection_set_ip_changed_callback(connection_h connection,
-                                                       void *callback, void *user_data)
+static int __connection_set_ethernet_cable_state_changed_cb(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       static __thread gint refcount = 0;
-       connection_handle_s *local_handle;
-
-       local_handle = (connection_handle_s *)connection;
-
-       if (callback) {
-               if (refcount == 0)
-                       _connection_libnet_set_ip_changed_cb(
-                                                          __connection_cb_ip_change_cb);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)",
-                                          refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_ip_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               _connection_libnet_set_ip_changed_cb(NULL);
-                               CONNECTION_LOG(CONNECTION_INFO,
-                                                          "Successfully de-registered(%d)", refcount);
-                       }
-               }
-       }
-
-       local_handle->ip_changed_user_data = user_data;
-       local_handle->ip_changed_callback = callback;
+       conn_handle->ethernet_cable_state_changed_callback = callback;
+       conn_handle->ethernet_cable_state_changed_user_data = user_data;
 
        return CONNECTION_ERROR_NONE;
 }
 
-static connection_address_changed_cb
-__connection_get_proxy_changed_callback(connection_handle_s *local_handle)
+static int __connection_set_default_cellular_service_profile_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       return local_handle->proxy_changed_callback;
-}
+       conn_handle->set_default_callback = callback;
+       conn_handle->set_default_user_data = user_data;
 
-static void *__connection_get_proxy_changed_userdata(
-                                                       connection_handle_s *local_handle)
-{
-       return local_handle->proxy_changed_user_data;
+       return CONNECTION_ERROR_NONE;
 }
 
-static void __connection_cb_proxy_change_cb(char *proxy_addr)
+static int __connection_open_profile_set_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       GSList *list;
-       connection_h handle;
-       void *data;
-       connection_address_changed_cb callback;
-
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
+       conn_handle->opened_callback = callback;
+       conn_handle->opened_user_data = user_data;
 
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-
-               callback = __connection_get_proxy_changed_callback(handle);
-               data = __connection_get_proxy_changed_userdata(handle);
-               /* TODO: IPv6 should be supported */
-               if (callback)
-                       callback(proxy_addr, NULL, data);
-       }
+       return CONNECTION_ERROR_NONE;
 }
 
-static int __connection_set_proxy_changed_callback(connection_h connection,
-                                                       void *callback, void *user_data)
+static int __connection_close_profile_set_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       static __thread gint refcount = 0;
-       connection_handle_s *local_handle;
-
-       local_handle = (connection_handle_s *)connection;
-
-       if (callback) {
-               if (refcount == 0)
-                       _connection_libnet_set_proxy_changed_cb(
-                               __connection_cb_proxy_change_cb);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)",
-                                          refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_proxy_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               _connection_libnet_set_proxy_changed_cb(NULL);
-                               CONNECTION_LOG(CONNECTION_INFO,
-                                               "Successfully de-registered(%d)", refcount);
-                       }
-               }
-       }
-
-       local_handle->proxy_changed_user_data = user_data;
-       local_handle->proxy_changed_callback = callback;
+       conn_handle->closed_callback = callback;
+       conn_handle->closed_user_data = user_data;
 
        return CONNECTION_ERROR_NONE;
 }
 
-static int __connection_set_ethernet_cable_state_changed_cb(connection_h connection,
-               connection_ethernet_cable_state_changed_cb callback, void *user_data)
+static int __connection_reset_profile_set_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       connection_handle_s *local_handle = (connection_handle_s *)connection;
-
-       if (callback) {
-               if (__connection_get_ethernet_cable_state_changed_callback_count() == 0)
-                       _connection_libnet_set_ethernet_cable_state_changed_cb(
-                                       __connection_cb_ethernet_cable_state_changed_cb);
+       conn_handle->reset_callback = callback;
+       conn_handle->reset_user_data = user_data;
 
-       } else {
-               if (__connection_get_ethernet_cable_state_changed_callback_count() == 1 &&
-                                 local_handle->ethernet_cable_state_changed_callback)
-                       _connection_libnet_set_ethernet_cable_state_changed_cb(NULL);
-       }
-
-       local_handle->ethernet_cable_state_changed_callback = callback;
-       local_handle->ethernet_cable_state_changed_user_data = user_data;
        return CONNECTION_ERROR_NONE;
 }
 //LCOV_EXCL_STOP
 
-static int __connection_get_handle_count(void)
-{
-       return ((int)g_slist_length(conn_handle_list));
-}
-
 /* Connection Manager ********************************************************/
 EXPORT_API int connection_create(connection_h *connection)
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
 
+       int rv;
+
        if (connection == NULL || __connection_check_handle_validity(*connection)) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       int rv = _connection_libnet_init();
+       *connection = g_try_malloc0(sizeof(connection_handle_s));
+       if (*connection != NULL)
+               CONNECTION_LOG(CONNECTION_INFO, "New handle created[%p]", *connection);
+       else
+               return CONNECTION_ERROR_OUT_OF_MEMORY; //LCOV_EXCL_LINE
+
+       rv = _connection_libnet_init(*connection);
        if (rv == NET_ERR_ACCESS_DENIED) {
                CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
@@ -389,12 +179,6 @@ EXPORT_API int connection_create(connection_h *connection)
                return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
-       *connection = g_try_malloc0(sizeof(connection_handle_s));
-       if (*connection != NULL)
-               CONNECTION_LOG(CONNECTION_INFO, "New handle created[%p]", *connection);
-       else
-               return CONNECTION_ERROR_OUT_OF_MEMORY; //LCOV_EXCL_LINE
-
        conn_handle_list = g_slist_prepend(conn_handle_list, *connection);
 
        return CONNECTION_ERROR_NONE;
@@ -415,17 +199,13 @@ EXPORT_API int connection_destroy(connection_h connection)
        __connection_set_ip_changed_callback(connection, NULL, NULL);
        __connection_set_proxy_changed_callback(connection, NULL, NULL);
        __connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
+       _connection_libnet_deinit(connection);
 
        conn_handle_list = g_slist_remove(conn_handle_list, connection);
 
        g_free(connection);
        connection = NULL;
 
-       if (__connection_get_handle_count() == 0) {
-               _connection_libnet_deinit();
-               _connection_callback_cleanup();
-       }
-
        return CONNECTION_ERROR_NONE;
 }
 
@@ -434,9 +214,8 @@ EXPORT_API int connection_create_cs(int tid, connection_h *connection)
        int rv;
 
        rv = connection_create(connection);
-
        if (rv == CONNECTION_ERROR_NONE)
-               _connection_set_cs_tid(tid);
+               _connection_set_cs_tid(tid, *connection);
 
        return rv;
 }
@@ -445,7 +224,7 @@ EXPORT_API int connection_destroy_cs(int tid, connection_h connection)
 {
        int rv;
 
-       _connection_unset_cs_tid(tid);
+       _connection_unset_cs_tid(tid, connection);
        rv = connection_destroy(connection);
 
        return rv;
@@ -649,7 +428,7 @@ EXPORT_API int connection_is_metered_network(connection_h connection, bool* is_m
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       int rv = _connection_libnet_get_metered_state(is_metered);
+       int rv = _connection_libnet_get_metered_state(connection, is_metered);
        if (rv != CONNECTION_ERROR_NONE) {
                CONNECTION_LOG(CONNECTION_ERROR, "Fail to get metered state[%d]", rv); //LCOV_EXCL_LINE
                return rv; //LCOV_EXCL_LINE
@@ -735,7 +514,7 @@ EXPORT_API int connection_get_wifi_state(connection_h connection, connection_wif
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       int rv = _connection_libnet_get_wifi_state(state);
+       int rv = _connection_libnet_get_wifi_state(connection, state);
        if (rv != CONNECTION_ERROR_NONE) {
                CONNECTION_LOG(CONNECTION_ERROR, "Fail to get Wi-Fi state[%d]", rv); //LCOV_EXCL_LINE
                return rv; //LCOV_EXCL_LINE
@@ -756,7 +535,7 @@ EXPORT_API int connection_get_ethernet_state(connection_h connection, connection
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_ethernet_state(state);
+       return _connection_libnet_get_ethernet_state(connection, state);
 }
 
 EXPORT_API int connection_get_ethernet_cable_state(connection_h connection, connection_ethernet_cable_state_e *state)
@@ -768,7 +547,7 @@ EXPORT_API int connection_get_ethernet_cable_state(connection_h connection, conn
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_ethernet_cable_state(state);
+       return _connection_libnet_get_ethernet_cable_state(connection, state);
 }
 
 EXPORT_API int connection_set_ethernet_cable_state_chaged_cb(connection_h connection,
@@ -785,8 +564,7 @@ EXPORT_API int connection_set_ethernet_cable_state_chaged_cb(connection_h connec
        DEPRECATED_LOG("connection_ethernet_cable_state_chaged_cb",
                        "connection_ethernet_cable_state_changed_cb");
 
-       return __connection_set_ethernet_cable_state_changed_cb(connection,
-                       (connection_ethernet_cable_state_changed_cb)callback, user_data);
+       return __connection_set_ethernet_cable_state_changed_cb(connection, callback, user_data);
 }
 
 EXPORT_API int connection_unset_ethernet_cable_state_chaged_cb(connection_h connection)
@@ -799,8 +577,7 @@ EXPORT_API int connection_unset_ethernet_cable_state_chaged_cb(connection_h conn
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __connection_set_ethernet_cable_state_changed_cb(connection,
-                                                       NULL, NULL);
+       return __connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
 }
 
 EXPORT_API int connection_set_ethernet_cable_state_changed_cb(connection_h connection,
@@ -813,8 +590,7 @@ EXPORT_API int connection_set_ethernet_cable_state_changed_cb(connection_h conne
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __connection_set_ethernet_cable_state_changed_cb(connection,
-                                                       callback, user_data);
+       return __connection_set_ethernet_cable_state_changed_cb(connection, callback, user_data);
 }
 
 EXPORT_API int connection_unset_ethernet_cable_state_changed_cb(connection_h connection)
@@ -826,8 +602,7 @@ EXPORT_API int connection_unset_ethernet_cable_state_changed_cb(connection_h con
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __connection_set_ethernet_cable_state_changed_cb(connection,
-                                                       NULL, NULL);
+       return __connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
 }
 //LCOV_EXCL_STOP
 
@@ -840,7 +615,7 @@ EXPORT_API int connection_get_bt_state(connection_h connection, connection_bt_st
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_bluetooth_state(state);
+       return _connection_libnet_get_bluetooth_state(connection, state);
 }
 
 EXPORT_API int connection_set_type_changed_cb(connection_h connection,
@@ -921,7 +696,8 @@ EXPORT_API int connection_unset_proxy_address_changed_cb(connection_h connection
 EXPORT_API int connection_add_profile(connection_h connection, connection_profile_h profile)
 {
        int rv = 0;
-       net_profile_info_t *profile_info = profile;
+       connection_handle_s *conn_handle = (connection_handle_s *)connection;
+       net_profile_info_t *profile_info = (net_profile_info_t *)profile;
 
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
 
@@ -942,8 +718,8 @@ EXPORT_API int connection_add_profile(connection_h connection, connection_profil
                return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
        }
 
-       rv = net_add_profile(profile_info->ProfileInfo.Pdp.ServiceType,
-                                                       (net_profile_info_t*)profile);
+       rv = net_add_profile(conn_handle->network_info_handle,
+                               profile_info->ProfileInfo.Pdp.ServiceType, profile_info);
        if (rv == NET_ERR_ACCESS_DENIED) {
                CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
@@ -958,12 +734,13 @@ EXPORT_API int connection_add_profile(connection_h connection, connection_profil
 EXPORT_API int connection_remove_profile(connection_h connection, connection_profile_h profile)
 {
        int rv = 0;
-       net_profile_info_t *profile_info = profile;
+       connection_handle_s *conn_handle = (connection_handle_s *)connection;
+       net_profile_info_t *profile_info = (net_profile_info_t *)profile;
 
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
 
        if (!(__connection_check_handle_validity(connection)) ||
-                       !(_connection_libnet_check_profile_validity(profile))) {
+               !(_connection_libnet_check_profile_validity(profile))) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
@@ -975,7 +752,7 @@ EXPORT_API int connection_remove_profile(connection_h connection, connection_pro
                return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
        }
 
-       rv = net_delete_profile(profile_info->ProfileName);
+       rv = net_delete_profile(conn_handle->network_info_handle, profile_info->ProfileName);
        if (rv == NET_ERR_ACCESS_DENIED) {
                CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
@@ -990,7 +767,8 @@ EXPORT_API int connection_remove_profile(connection_h connection, connection_pro
 EXPORT_API int connection_update_profile(connection_h connection, connection_profile_h profile)
 {
        int rv = 0;
-       net_profile_info_t *profile_info = profile;
+       connection_handle_s *conn_handle = (connection_handle_s *)connection;
+       net_profile_info_t *profile_info = (net_profile_info_t *)profile;
 
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
 
@@ -1000,7 +778,8 @@ EXPORT_API int connection_update_profile(connection_h connection, connection_pro
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       rv = net_modify_profile(profile_info->ProfileName, (net_profile_info_t*)profile);
+       rv = net_modify_profile(conn_handle->network_info_handle,
+                       profile_info->ProfileName, (net_profile_info_t*)profile);
        if (rv == NET_ERR_ACCESS_DENIED) {
                CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
@@ -1025,7 +804,7 @@ EXPORT_API int connection_get_profile_iterator(connection_h connection,
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_profile_iterator(type, profile_iterator);
+       return _connection_libnet_get_profile_iterator(connection, type, profile_iterator);
 }
 
 EXPORT_API int connection_profile_iterator_next(connection_profile_iterator_h profile_iterator,
@@ -1059,7 +838,7 @@ EXPORT_API int connection_get_current_profile(connection_h connection, connectio
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_current_profile(profile);
+       return _connection_libnet_get_current_profile(connection, profile);
 }
 
 EXPORT_API int connection_get_default_cellular_service_profile(
@@ -1073,7 +852,7 @@ EXPORT_API int connection_get_default_cellular_service_profile(
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_get_cellular_service_profile(type, profile);
+       return _connection_libnet_get_cellular_service_profile(connection, type, profile);
 }
 
 EXPORT_API int connection_set_default_cellular_service_profile(connection_h connection,
@@ -1086,7 +865,7 @@ EXPORT_API int connection_set_default_cellular_service_profile(connection_h conn
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_set_cellular_service_profile_sync(type, profile);
+       return _connection_libnet_set_cellular_service_profile_sync(connection, type, profile);
 }
 
 EXPORT_API int connection_set_default_cellular_service_profile_async(connection_h connection,
@@ -1095,13 +874,26 @@ EXPORT_API int connection_set_default_cellular_service_profile_async(connection_
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
 
+       int rv;
+
        if (!(__connection_check_handle_validity(connection)) ||
            profile == NULL || callback == NULL) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_set_cellular_service_profile_async(type, profile, callback, user_data);
+       rv = _connection_libnet_set_cellular_service_profile_async(connection, type, profile);
+       if (rv == NET_ERR_ACCESS_DENIED) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
+       } else if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to set default cellular service profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+       }
+
+       __connection_set_default_cellular_service_profile_callback(connection, callback, user_data);
+
+       return CONNECTION_ERROR_NONE;
 }
 
 EXPORT_API int connection_open_profile(connection_h connection, connection_profile_h profile,
@@ -1109,13 +901,26 @@ EXPORT_API int connection_open_profile(connection_h connection, connection_profi
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE);
 
+       int rv;
+
        if (!(__connection_check_handle_validity(connection)) ||
            profile == NULL || callback == NULL) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_open_profile(profile, callback, user_data);
+       rv = _connection_libnet_open_profile(connection, profile);
+       if (rv == NET_ERR_ACCESS_DENIED) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
+       } else if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to open profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+       }
+
+       __connection_open_profile_set_callback(connection, callback, user_data);
+
+       return CONNECTION_ERROR_NONE;
 }
 
 EXPORT_API int connection_close_profile(connection_h connection, connection_profile_h profile,
@@ -1123,13 +928,26 @@ EXPORT_API int connection_close_profile(connection_h connection, connection_prof
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE);
 
+       int rv;
+
        if (!(__connection_check_handle_validity(connection)) ||
            profile == NULL || callback == NULL) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_close_profile(profile, callback, user_data);
+       rv = _connection_libnet_close_profile(connection, profile);
+       if (rv == NET_ERR_ACCESS_DENIED) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
+       } else if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to close profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+       }
+
+       __connection_close_profile_set_callback(connection, callback, user_data);
+
+       return CONNECTION_ERROR_NONE;
 }
 
 EXPORT_API int connection_reset_profile(connection_h connection,
@@ -1137,6 +955,8 @@ EXPORT_API int connection_reset_profile(connection_h connection,
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
 
+       int rv;
+
        if (!(__connection_check_handle_validity(connection))) {
                CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed");
                return CONNECTION_ERROR_INVALID_PARAMETER;
@@ -1147,7 +967,18 @@ EXPORT_API int connection_reset_profile(connection_h connection,
                return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
        }
 
-       return _connection_libnet_reset_profile(type, id, callback, user_data);
+       rv = _connection_libnet_reset_profile(connection, type, id);
+       if (rv == NET_ERR_ACCESS_DENIED) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Access denied"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_PERMISSION_DENIED; //LCOV_EXCL_LINE
+       } else if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to reset profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+       }
+
+       __connection_reset_profile_set_callback(connection, callback, user_data);
+
+       return CONNECTION_ERROR_NONE;
 }
 
 EXPORT_API int connection_add_route(connection_h connection, const char* interface_name, const char* host_address)
@@ -1160,7 +991,7 @@ EXPORT_API int connection_add_route(connection_h connection, const char* interfa
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_add_route(interface_name, host_address);
+       return _connection_libnet_add_route(connection, interface_name, host_address);
 }
 
 EXPORT_API int connection_remove_route(connection_h connection, const char* interface_name, const char* host_address)
@@ -1173,7 +1004,7 @@ EXPORT_API int connection_remove_route(connection_h connection, const char* inte
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_remove_route(interface_name, host_address);
+       return _connection_libnet_remove_route(connection, interface_name, host_address);
 }
 
 EXPORT_API int connection_add_route_ipv6(connection_h connection, const char *interface_name, const char *host_address, const char * gateway)
@@ -1186,7 +1017,7 @@ EXPORT_API int connection_add_route_ipv6(connection_h connection, const char *in
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_add_route_ipv6(interface_name, host_address, gateway);
+       return _connection_libnet_add_route_ipv6(connection, interface_name, host_address, gateway);
 }
 
 EXPORT_API int connection_remove_route_ipv6(connection_h connection, const char *interface_name, const char *host_address, const char * gateway)
@@ -1199,7 +1030,7 @@ EXPORT_API int connection_remove_route_ipv6(connection_h connection, const char
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return _connection_libnet_remove_route_ipv6(interface_name, host_address, gateway);
+       return _connection_libnet_remove_route_ipv6(connection, interface_name, host_address, gateway);
 }
 
 EXPORT_API int connection_add_route_entry(connection_h connection,
@@ -1217,10 +1048,10 @@ EXPORT_API int connection_add_route_entry(connection_h connection,
        }
 
        if (address_family == CONNECTION_ADDRESS_FAMILY_IPV4)
-               return _connection_libnet_add_route_entry(CONNECTION_ADDRESS_FAMILY_IPV4,
+               return _connection_libnet_add_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV4,
                                                                interface_name, host_address, gateway);
        else
-               return _connection_libnet_add_route_entry(CONNECTION_ADDRESS_FAMILY_IPV6,
+               return _connection_libnet_add_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV6,
                                                                interface_name, host_address, gateway);
 
        return CONNECTION_ERROR_NONE;
@@ -1241,10 +1072,10 @@ EXPORT_API int connection_remove_route_entry(connection_h connection,
        }
 
        if (address_family == CONNECTION_ADDRESS_FAMILY_IPV4)
-               return _connection_libnet_remove_route_entry(CONNECTION_ADDRESS_FAMILY_IPV4,
+               return _connection_libnet_remove_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV4,
                                                                interface_name, host_address, gateway);
        else
-               return _connection_libnet_remove_route_entry(CONNECTION_ADDRESS_FAMILY_IPV6,
+               return _connection_libnet_remove_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV6,
                                                                interface_name, host_address, gateway);
 
        return CONNECTION_ERROR_NONE;
@@ -1338,7 +1169,7 @@ static int __get_cellular_statistic(connection_statistics_type_e statistics_type
        return CONNECTION_ERROR_NONE;
 }
 
-static int __get_statistic(connection_type_e connection_type,
+static int __get_statistic(connection_handle_s *conn_handle, connection_type_e connection_type,
                connection_statistics_type_e statistics_type, long long *llsize)
 {
        int rv, stat_type;
@@ -1377,7 +1208,7 @@ static int __get_statistic(connection_type_e connection_type,
                        return CONNECTION_ERROR_INVALID_PARAMETER;
                }
 
-               rv  = _connection_libnet_get_statistics(stat_type, &ull_size);
+               rv  = _connection_libnet_get_statistics(conn_handle, stat_type, &ull_size);
                if (rv == CONNECTION_ERROR_PERMISSION_DENIED)
                        return rv;
                else if (rv != CONNECTION_ERROR_NONE) {
@@ -1394,8 +1225,8 @@ static int __get_statistic(connection_type_e connection_type,
        return CONNECTION_ERROR_NONE;
 }
 
-static int __reset_statistic(connection_type_e connection_type,
-               connection_statistics_type_e statistics_type)
+static int __reset_statistic(connection_handle_s *conn_handle,
+                       connection_type_e connection_type, connection_statistics_type_e statistics_type)
 {
        int conn_type;
        int stat_type;
@@ -1425,7 +1256,7 @@ static int __reset_statistic(connection_type_e connection_type,
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       rv = _connection_libnet_set_statistics(conn_type, stat_type);
+       rv = _connection_libnet_set_statistics(conn_handle, conn_type, stat_type);
        if (rv != CONNECTION_ERROR_NONE)
                return rv;
 
@@ -1450,7 +1281,7 @@ EXPORT_API int connection_get_statistics(connection_h connection,
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __get_statistic(connection_type, statistics_type, size);
+       return __get_statistic(connection, connection_type, statistics_type, size);
 }
 
 EXPORT_API int connection_reset_statistics(connection_h connection,
@@ -1469,7 +1300,7 @@ EXPORT_API int connection_reset_statistics(connection_h connection,
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __reset_statistic(connection_type, statistics_type);
+       return __reset_statistic(connection, connection_type, statistics_type);
 }
 
 EXPORT_API int connection_foreach_ipv6_address(connection_h connection,
@@ -1538,7 +1369,7 @@ EXPORT_API int connection_profile_start_tcpdump(connection_h connection)
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       ret = _connection_libnet_start_tcpdump();
+       ret = _connection_libnet_start_tcpdump(connection);
        if (ret != CONNECTION_ERROR_NONE) {
                CONNECTION_LOG(CONNECTION_ERROR, "Failed to start tcpdump (%d)", ret);
                return ret;
@@ -1556,7 +1387,7 @@ EXPORT_API int connection_profile_stop_tcpdump(connection_h connection)
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       ret = _connection_libnet_stop_tcpdump();
+       ret = _connection_libnet_stop_tcpdump(connection);
        if (ret != CONNECTION_ERROR_NONE) {
                CONNECTION_LOG(CONNECTION_ERROR, "Failed to stop tcpdump (%d)", ret);
                return ret;
@@ -1574,7 +1405,7 @@ EXPORT_API int connection_profile_get_tcpdump_state(connection_h connection, gbo
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       ret = _connection_libnet_get_tcpdump_state(tcpdump_state);
+       ret = _connection_libnet_get_tcpdump_state(connection, tcpdump_state);
        if (ret != CONNECTION_ERROR_NONE) {
                CONNECTION_LOG(CONNECTION_ERROR, "Failed to get the tcpdump state (%d)", ret);
                return ret;