Make local handle for event loop
[platform/core/api/connection.git] / src / connection.c
index ce5421c..bde3359 100755 (executable)
 
 #include <glib.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include <vconf/vconf.h>
+#include <system_info.h>
 
 #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
 static int __connection_convert_net_state(int status)
 {
        switch (status) {
@@ -34,6 +38,8 @@ static int __connection_convert_net_state(int status)
                return CONNECTION_TYPE_ETHERNET;
        case VCONFKEY_NETWORK_BLUETOOTH:
                return CONNECTION_TYPE_BT;
+       case VCONFKEY_NETWORK_DEFAULT_PROXY:
+               return CONNECTION_TYPE_NET_PROXY;
        default:
                return CONNECTION_TYPE_DISCONNECTED;
        }
@@ -68,346 +74,110 @@ static bool __connection_check_handle_validity(connection_h connection)
        return ret;
 }
 
-static connection_type_changed_cb
-__connection_get_type_changed_callback(connection_handle_s *local_handle)
+bool _connection_check_handle_validity(connection_h connection)
 {
-       return local_handle->type_changed_callback;
+       return __connection_check_handle_validity(connection);
 }
 
-static void *__connection_get_type_changed_userdata(
-                                                       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_user_data;
-}
-
-static gboolean __connection_cb_type_changed_cb_idle(gpointer user_data)
-{
-       int state, status;
-       void *data;
-       connection_type_changed_cb callback;
-       connection_handle_s *local_handle = (connection_handle_s *)user_data;
-
-       if (__connection_check_handle_validity((connection_h)local_handle) != true)
-               return FALSE;
-
-       if (vconf_get_int(VCONFKEY_NETWORK_STATUS, &status) != 0)
-               return FALSE;
-
-       state = __connection_convert_net_state(status);
-
-       callback = __connection_get_type_changed_callback(local_handle);
-       data = __connection_get_type_changed_userdata(local_handle);
-       if (callback)
-               callback(state, data);
-
-       return FALSE;
-}
-
-static void __connection_cb_type_change_cb(keynode_t *node, void *user_data)
-{
-       GSList *list;
-       connection_h handle;
-
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
-
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-               _connection_callback_add(__connection_cb_type_changed_cb_idle, (gpointer)handle);
-       }
-}
-
-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)
-                       vconf_notify_key_changed(VCONFKEY_NETWORK_STATUS,
-                                       __connection_cb_type_change_cb, NULL);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_type_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               if (vconf_ignore_key_changed(VCONFKEY_NETWORK_STATUS,
-                                               __connection_cb_type_change_cb) < 0) {
-                                       CONNECTION_LOG(CONNECTION_ERROR,
-                                                       "Error to de-register vconf callback(%d)", refcount);
-                               } else {
-                                       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;
-}
-
-static gboolean __connection_cb_ip_changed_cb_idle(gpointer user_data)
-{
-       char *ip_addr;
-       void *data;
-       connection_address_changed_cb callback;
-       connection_handle_s *local_handle = (connection_handle_s *)user_data;
-
-       if (__connection_check_handle_validity((connection_h)local_handle) != true)
-               return FALSE;
-
-       ip_addr = vconf_get_str(VCONFKEY_NETWORK_IP);
-
-       callback = __connection_get_ip_changed_callback(local_handle);
-       data = __connection_get_ip_changed_userdata(local_handle);
-       /* TODO: IPv6 should be supported */
-       if (callback)
-               callback(ip_addr, NULL, data);
-
-       return FALSE;
-}
-
-static void __connection_cb_ip_change_cb(keynode_t *node, void *user_data)
-{
-       GSList *list;
-       connection_h handle;
-
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
-
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-               _connection_callback_add(__connection_cb_ip_changed_cb_idle, (gpointer)handle);
-       }
+       return CONNECTION_ERROR_NONE;
 }
 
-static int __connection_set_ip_changed_callback(connection_h connection,
-                                                       void *callback, void *user_data)
+static int __connection_set_proxy_changed_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)
-                       vconf_notify_key_changed(VCONFKEY_NETWORK_IP,
-                                       __connection_cb_ip_change_cb, NULL);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_ip_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               if (vconf_ignore_key_changed(VCONFKEY_NETWORK_IP,
-                                               __connection_cb_ip_change_cb) < 0) {
-                                       CONNECTION_LOG(CONNECTION_ERROR,
-                                                       "Error to de-register vconf callback(%d)", refcount);
-                               } else {
-                                       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->proxy_changed_user_data = user_data;
+       conn_handle->proxy_changed_callback = callback;
 
        return CONNECTION_ERROR_NONE;
 }
 
-static connection_address_changed_cb
-__connection_get_proxy_changed_callback(connection_handle_s *local_handle)
+static int __connection_set_ethernet_cable_state_changed_cb(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       return local_handle->proxy_changed_callback;
-}
+       conn_handle->ethernet_cable_state_changed_callback = callback;
+       conn_handle->ethernet_cable_state_changed_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 gboolean __connection_cb_proxy_changed_cb_idle(gpointer user_data)
+static int __connection_set_default_cellular_service_profile_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       char *proxy;
-       void *data;
-       connection_address_changed_cb callback;
-       connection_handle_s *local_handle = (connection_handle_s *)user_data;
-
-       if (__connection_check_handle_validity((connection_h)local_handle) != true)
-               return FALSE;
-
-       proxy = vconf_get_str(VCONFKEY_NETWORK_PROXY);
-
-       callback = __connection_get_proxy_changed_callback(local_handle);
-       data = __connection_get_proxy_changed_userdata(local_handle);
-       /* TODO: IPv6 should be supported */
-       if (callback)
-               callback(proxy, NULL, data);
+       conn_handle->set_default_callback = callback;
+       conn_handle->set_default_user_data = user_data;
 
-       return FALSE;
+       return CONNECTION_ERROR_NONE;
 }
 
-static void __connection_cb_proxy_change_cb(keynode_t *node, void *user_data)
+static int __connection_open_profile_set_callback(connection_handle_s *conn_handle,
+                       void *callback, void *user_data)
 {
-       GSList *list;
-       connection_h handle;
+       conn_handle->opened_callback = callback;
+       conn_handle->opened_user_data = user_data;
 
-       if (_connection_is_created() != true) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
-                               "If multi-threaded, thread integrity be broken.");
-               return;
-       }
-
-       for (list = conn_handle_list; list; list = list->next) {
-               handle = (connection_h)list->data;
-               _connection_callback_add(__connection_cb_proxy_changed_cb_idle, (gpointer)handle);
-       }
+       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)
-                       vconf_notify_key_changed(VCONFKEY_NETWORK_PROXY,
-                                       __connection_cb_proxy_change_cb, NULL);
-
-               refcount++;
-               CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
-       } else {
-               if (refcount > 0 &&
-                               __connection_get_proxy_changed_callback(local_handle) != NULL) {
-                       if (--refcount == 0) {
-                               if (vconf_ignore_key_changed(VCONFKEY_NETWORK_PROXY,
-                                               __connection_cb_proxy_change_cb) < 0) {
-                                       CONNECTION_LOG(CONNECTION_ERROR,
-                                                       "Error to de-register vconf callback(%d)", refcount);
-                               } else {
-                                       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_chaged_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);
-
-       } else {
-               if (__connection_get_ethernet_cable_state_changed_callback_count() == 1)
-                       _connection_libnet_set_ethernet_cable_state_changed_cb(NULL);
-       }
+       conn_handle->reset_callback = callback;
+       conn_handle->reset_user_data = user_data;
 
-       local_handle->ethernet_cable_state_changed_callback = callback;
-       local_handle->ethernet_cable_state_changed_user_data = user_data;
        return CONNECTION_ERROR_NONE;
 }
-
-static int __connection_get_handle_count(void)
-{
-       return ((int)g_slist_length(conn_handle_list));
-}
+//LCOV_EXCL_STOP
 
 /* 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();
-       if (rv == NET_ERR_ACCESS_DENIED) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
-               return CONNECTION_ERROR_PERMISSION_DENIED;
-       }
-       else if (rv != NET_ERR_NONE) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Failed to create connection[%d]", rv);
-               return CONNECTION_ERROR_OPERATION_FAILED;
-       }
-
        *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;
+               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
+       } else if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to create connection[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+       }
 
        conn_handle_list = g_slist_prepend(conn_handle_list, *connection);
 
@@ -429,20 +199,37 @@ 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;
 }
 
+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);
+
+       return rv;
+}
+
+EXPORT_API int connection_destroy_cs(int tid, connection_h connection)
+{
+       int rv;
+
+       _connection_unset_cs_tid(tid, connection);
+       rv = connection_destroy(connection);
+
+       return rv;
+}
+
 EXPORT_API int connection_get_type(connection_h connection, connection_type_e* type)
 {
        int rv = 0;
@@ -457,8 +244,8 @@ EXPORT_API int connection_get_type(connection_h connection, connection_type_e* t
 
        rv = vconf_get_int(VCONFKEY_NETWORK_STATUS, &status);
        if (rv != VCONF_OK) {
-               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_int Failed = %d", status);
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_int Failed = %d", status); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        CONNECTION_LOG(CONNECTION_INFO, "Connected Network = %d", status);
@@ -480,17 +267,19 @@ EXPORT_API int connection_get_ip_address(connection_h connection,
 
        switch (address_family) {
        case CONNECTION_ADDRESS_FAMILY_IPV4:
-       case CONNECTION_ADDRESS_FAMILY_IPV6:
                *ip_address = vconf_get_str(VCONFKEY_NETWORK_IP);
                break;
+       case CONNECTION_ADDRESS_FAMILY_IPV6:
+               *ip_address = vconf_get_str(VCONFKEY_NETWORK_IP6);
+               break;
        default:
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
        if (*ip_address == NULL) {
-               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed");
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED;//LCOV_EXCL_LINE
        }
 
        return CONNECTION_ERROR_NONE;
@@ -517,8 +306,8 @@ EXPORT_API int connection_get_proxy(connection_h connection,
        }
 
        if (*proxy == NULL) {
-               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed");
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        return CONNECTION_ERROR_NONE;
@@ -531,10 +320,10 @@ EXPORT_API int connection_get_mac_address(connection_h connection, connection_ty
 
        CHECK_FEATURE_SUPPORTED(WIFI_FEATURE, ETHERNET_FEATURE);
 
-       if(type == CONNECTION_TYPE_WIFI)
+       if (type == CONNECTION_TYPE_WIFI)
                CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
-       else if(type == CONNECTION_TYPE_ETHERNET)
-               CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
+       else if (type == CONNECTION_TYPE_ETHERNET) //LCOV_EXCL_LINE
+               CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE); //LCOV_EXCL_LINE
 
        if (mac_addr == NULL || !(__connection_check_handle_validity(connection))) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
@@ -543,29 +332,48 @@ EXPORT_API int connection_get_mac_address(connection_h connection, connection_ty
 
        switch (type) {
        case CONNECTION_TYPE_WIFI:
-               fp = fopen(WIFI_MAC_INFO_FILE, "r");
-               if (fp == NULL) {
-                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to open file %s", WIFI_MAC_INFO_FILE);
-                       return CONNECTION_ERROR_OUT_OF_MEMORY;
+               if (__builtin_expect(tv_profile == -1, 0)) {
+                       char *profileName;
+                       system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
+                       if (*profileName == 't' || *profileName == 'T')
+                               tv_profile = 1;
+                       else
+                               tv_profile = 0;
+                       free(profileName);
                }
+               if (tv_profile == 1) {
+                       fp = fopen(WIFI_MAC_INFO_FILE, "r");
+                       if (fp == NULL) {
+                               CONNECTION_LOG(CONNECTION_ERROR, "Failed to open file %s", WIFI_MAC_INFO_FILE); //LCOV_EXCL_LINE
+                               return CONNECTION_ERROR_OUT_OF_MEMORY; //LCOV_EXCL_LINE
+                       }
 
-               if (fgets(buf, sizeof(buf), fp) == NULL) {
-                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to get MAC info from %s", WIFI_MAC_INFO_FILE);
-                       fclose(fp);
-                       return CONNECTION_ERROR_OPERATION_FAILED;
-               }
+                       if (fgets(buf, sizeof(buf), fp) == NULL) {
+                               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get MAC info from %s", WIFI_MAC_INFO_FILE); //LCOV_EXCL_LINE
+                               fclose(fp); //LCOV_EXCL_LINE
+                               return CONNECTION_ERROR_OPERATION_FAILED;
+                       }
 
-               CONNECTION_LOG(CONNECTION_INFO, "%s : %s", WIFI_MAC_INFO_FILE, buf);
+                       CONNECTION_LOG(CONNECTION_INFO, "%s : %s", WIFI_MAC_INFO_FILE, buf);
 
-               *mac_addr = (char *)malloc(CONNECTION_MAC_INFO_LENGTH + 1);
-               if (*mac_addr == NULL) {
-                       CONNECTION_LOG(CONNECTION_ERROR, "malloc() failed");
+                       *mac_addr = (char *)malloc(CONNECTION_MAC_INFO_LENGTH + 1);
+                       if (*mac_addr == NULL) {
+                               CONNECTION_LOG(CONNECTION_ERROR, "malloc() failed"); //LCOV_EXCL_LINE
+                               fclose(fp); //LCOV_EXCL_LINE
+                               return CONNECTION_ERROR_OUT_OF_MEMORY; //LCOV_EXCL_LINE
+                       }
+                       g_strlcpy(*mac_addr, buf, CONNECTION_MAC_INFO_LENGTH + 1);
                        fclose(fp);
-                       return CONNECTION_ERROR_OUT_OF_MEMORY;
+               } else {
+                       *mac_addr = vconf_get_str(VCONFKEY_WIFI_BSSID_ADDRESS);
+
+                       if (*mac_addr == NULL) {
+                               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get vconf from %s", VCONFKEY_WIFI_BSSID_ADDRESS); //LCOV_EXCL_LINE
+                               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+                       }
                }
-               g_strlcpy(*mac_addr, buf, CONNECTION_MAC_INFO_LENGTH + 1);
-               fclose(fp);
                break;
+       //LCOV_EXCL_START
        case CONNECTION_TYPE_ETHERNET:
                fp = fopen(ETHERNET_MAC_INFO_FILE, "r");
                if (fp == NULL) {
@@ -588,20 +396,21 @@ EXPORT_API int connection_get_mac_address(connection_h connection, connection_ty
                        return CONNECTION_ERROR_OUT_OF_MEMORY;
                }
 
-               g_strlcpy(*mac_addr, buf,CONNECTION_MAC_INFO_LENGTH + 1);
+               g_strlcpy(*mac_addr, buf, CONNECTION_MAC_INFO_LENGTH + 1);
                fclose(fp);
 
                break;
+       //LCOV_EXCL_STOP
        default:
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
-               return CONNECTION_ERROR_INVALID_PARAMETER;
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
        }
 
        /* Checking Invalid MAC Address */
-       if((strcmp(*mac_addr, "00:00:00:00:00:00") == 0) ||
+       if ((strcmp(*mac_addr, "00:00:00:00:00:00") == 0) ||
                        (strcmp(*mac_addr, "ff:ff:ff:ff:ff:ff") == 0)) {
-               CONNECTION_LOG(CONNECTION_ERROR, "MAC Address(%s) is invalid", *mac_addr);
-               return CONNECTION_ERROR_INVALID_OPERATION;
+               CONNECTION_LOG(CONNECTION_ERROR, "MAC Address(%s) is invalid", *mac_addr); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_INVALID_OPERATION; //LCOV_EXCL_LINE
        }
 
        CONNECTION_LOG(CONNECTION_INFO, "MAC Address %s", *mac_addr);
@@ -609,6 +418,27 @@ EXPORT_API int connection_get_mac_address(connection_h connection, connection_ty
        return CONNECTION_ERROR_NONE;
 }
 
+
+EXPORT_API int connection_is_metered_network(connection_h connection, bool* is_metered)
+{
+       CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
+
+       if (is_metered == NULL || !(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       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
+       }
+
+       CONNECTION_LOG(CONNECTION_INFO, "metered state: %s", is_metered ? "true" : "false");
+       return CONNECTION_ERROR_NONE;
+}
+
+
 EXPORT_API int connection_get_cellular_state(connection_h connection, connection_cellular_state_e* state)
 {
        int rv = 0;
@@ -627,8 +457,8 @@ EXPORT_API int connection_get_cellular_state(connection_h connection, connection
 
        rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_STATE, &status);
        if (rv != VCONF_OK) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state");
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        CONNECTION_LOG(CONNECTION_INFO, "Cellular: %d", status);
@@ -660,8 +490,8 @@ EXPORT_API int connection_get_cellular_state(connection_h connection, connection
                }
 #endif
                if (rv != VCONF_OK) {
-                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state");
-                       return CONNECTION_ERROR_OPERATION_FAILED;
+                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state"); //LCOV_EXCL_LINE
+                       return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
                }
        }
 
@@ -684,10 +514,10 @@ 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);
-               return rv;
+               CONNECTION_LOG(CONNECTION_ERROR, "Fail to get Wi-Fi state[%d]", rv); //LCOV_EXCL_LINE
+               return rv; //LCOV_EXCL_LINE
        }
 
        CONNECTION_LOG(CONNECTION_INFO, "Wi-Fi state: %d", *state);
@@ -695,7 +525,8 @@ EXPORT_API int connection_get_wifi_state(connection_h connection, connection_wif
        return CONNECTION_ERROR_NONE;
 }
 
-EXPORT_API int connection_get_ethernet_state(connection_h connection, connection_ethernet_state_e* state)
+//LCOV_EXCL_START
+EXPORT_API int connection_get_ethernet_state(connection_h connection, connection_ethernet_state_e *state)
 {
        CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
 
@@ -704,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)
@@ -716,12 +547,13 @@ 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,
                          connection_ethernet_cable_state_chaged_cb callback, void *user_data)
 {
+       DEPRECATED_LOG(__FUNCTION__, "connection_set_ethernet_cable_state_changed_cb");
        CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
 
        if (callback == NULL || !(__connection_check_handle_validity(connection))) {
@@ -729,24 +561,52 @@ EXPORT_API int connection_set_ethernet_cable_state_chaged_cb(connection_h connec
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
-       return __connection_set_ethernet_cable_state_changed_cb(connection,
-                                                       callback, user_data);
+       DEPRECATED_LOG("connection_ethernet_cable_state_chaged_cb",
+                       "connection_ethernet_cable_state_changed_cb");
+
+       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)
 {
+       DEPRECATED_LOG(__FUNCTION__, "connection_unset_ethernet_cable_state_changed_cb");
+       CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
+
+       if (!(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       return __connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
+}
+
+EXPORT_API int connection_set_ethernet_cable_state_changed_cb(connection_h connection,
+                         connection_ethernet_cable_state_changed_cb callback, void *user_data)
+{
        CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
 
-       if ( !(__connection_check_handle_validity(connection)) ) {
+       if (callback == NULL || !(__connection_check_handle_validity(connection))) {
                CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
                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, callback, user_data);
 }
 
-EXPORT_API int connection_get_bt_state(connection_h connection, connection_bt_state_e* state)
+EXPORT_API int connection_unset_ethernet_cable_state_changed_cb(connection_h connection)
+{
+       CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
+
+       if (!(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       return __connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
+}
+//LCOV_EXCL_STOP
+
+EXPORT_API int connection_get_bt_state(connection_h connection, connection_bt_state_e *state)
 {
        CHECK_FEATURE_SUPPORTED(TETHERING_BLUETOOTH_FEATURE);
 
@@ -755,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,
@@ -836,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);
 
@@ -847,24 +708,24 @@ EXPORT_API int connection_add_profile(connection_h connection, connection_profil
        }
 
        if (profile_info->profile_type != NET_DEVICE_CELLULAR) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
-               return CONNECTION_ERROR_INVALID_PARAMETER;
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
        }
 
        if (profile_info->ProfileInfo.Pdp.PSModemPath[0] != '/' ||
                        strlen(profile_info->ProfileInfo.Pdp.PSModemPath) < 2) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Modem object path is NULL");
-               return CONNECTION_ERROR_INVALID_PARAMETER;
+               CONNECTION_LOG(CONNECTION_ERROR, "Modem object path is NULL"); //LCOV_EXCL_LINE
+               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");
-               return CONNECTION_ERROR_PERMISSION_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 add profile[%d]", rv);
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to add profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        return CONNECTION_ERROR_NONE;
@@ -873,29 +734,31 @@ 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;
        }
 
        if (profile_info->profile_type != NET_DEVICE_CELLULAR &&
+               profile_info->profile_type != NET_DEVICE_MESH &&
            profile_info->profile_type != NET_DEVICE_WIFI) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
-               return CONNECTION_ERROR_INVALID_PARAMETER;
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter"); //LCOV_EXCL_LINE
+               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");
-               return CONNECTION_ERROR_PERMISSION_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 delete profile[%d]", rv);
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to delete profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        return CONNECTION_ERROR_NONE;
@@ -904,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);
 
@@ -914,13 +778,14 @@ 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");
-               return CONNECTION_ERROR_PERMISSION_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 modify profile[%d]", rv);
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to modify profile[%d]", rv); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
        return CONNECTION_ERROR_NONE;
@@ -939,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,
@@ -973,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(
@@ -987,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,
@@ -1000,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,
@@ -1009,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,
@@ -1023,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,
@@ -1037,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,
@@ -1051,17 +955,30 @@ 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;
        }
 
-       if(id < 0 || id > 1) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed");
-               return CONNECTION_ERROR_INVALID_PARAMETER;
+       if (id < 0 || id > 1) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_INVALID_PARAMETER; //LCOV_EXCL_LINE
+       }
+
+       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
        }
 
-       return _connection_libnet_reset_profile(type, id, callback, user_data);
+       __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)
@@ -1074,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)
@@ -1087,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)
@@ -1100,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)
@@ -1113,7 +1030,55 @@ 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,
+               connection_address_family_e address_family,     const char *interface_name,
+               const char *host_address, const char *gateway)
+{
+       CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
+
+       if (!(__connection_check_handle_validity(connection)) ||
+               (address_family != CONNECTION_ADDRESS_FAMILY_IPV4 &&
+            address_family != CONNECTION_ADDRESS_FAMILY_IPV6) ||
+           interface_name == NULL || host_address == NULL) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       if (address_family == 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, CONNECTION_ADDRESS_FAMILY_IPV6,
+                                                               interface_name, host_address, gateway);
+
+       return CONNECTION_ERROR_NONE;
+}
+
+EXPORT_API int connection_remove_route_entry(connection_h connection,
+               connection_address_family_e address_family,     const char *interface_name,
+               const char *host_address, const char *gateway)
+{
+       CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
+
+       if (!(__connection_check_handle_validity(connection)) ||
+               (address_family != CONNECTION_ADDRESS_FAMILY_IPV4 &&
+            address_family != CONNECTION_ADDRESS_FAMILY_IPV6) ||
+           interface_name == NULL || host_address == NULL) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       if (address_family == 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, CONNECTION_ADDRESS_FAMILY_IPV6,
+                                                               interface_name, host_address, gateway);
+
+       return CONNECTION_ERROR_NONE;
 }
 
 static int __get_cellular_statistic(connection_statistics_type_e statistics_type, long long *llsize)
@@ -1125,7 +1090,7 @@ static int __get_cellular_statistic(connection_statistics_type_e statistics_type
 #endif
 
        if (llsize == NULL) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
@@ -1194,24 +1159,24 @@ static int __get_cellular_statistic(connection_statistics_type_e statistics_type
 #endif
 
        if (rv != VCONF_OK || rv1 != VCONF_OK) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular statistics");
-               return CONNECTION_ERROR_OPERATION_FAILED;
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular statistics"); //LCOV_EXCL_LINE
+               return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
-       *llsize = (long long)(last_size * 1000 + size * 1000);
-       CONNECTION_LOG(CONNECTION_INFO,"%lld bytes", *llsize);
+       *llsize = (long long)(last_size * 1000) + (long long)(size * 1000);
+       CONNECTION_LOG(CONNECTION_INFO, "%lld bytes", *llsize);
 
        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;
        unsigned long long ull_size;
 
        if (llsize == NULL) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_INVALID_PARAMETER;
        }
 
@@ -1219,7 +1184,7 @@ static int __get_statistic(connection_type_e connection_type,
        if (rv == CONNECTION_ERROR_PERMISSION_DENIED)
                return rv;
        else if (rv != CONNECTION_ERROR_NONE) {
-               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get statistics");
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to get statistics"); //LCOV_EXCL_LINE
                return CONNECTION_ERROR_OPERATION_FAILED;
        }
 
@@ -1243,16 +1208,16 @@ 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) {
-                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to get Wi-Fi statistics");
-                       *llsize = 0;
-                       return CONNECTION_ERROR_OPERATION_FAILED;
+                       CONNECTION_LOG(CONNECTION_ERROR, "Failed to get Wi-Fi statistics"); //LCOV_EXCL_LINE
+                       *llsize = 0; //LCOV_EXCL_LINE
+                       return CONNECTION_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
                }
 
-               CONNECTION_LOG(CONNECTION_INFO,"%lld bytes", ull_size);
+               CONNECTION_LOG(CONNECTION_INFO, "%lld bytes", ull_size);
                *llsize = (long long)ull_size;
        } else
                return CONNECTION_ERROR_INVALID_PARAMETER;
@@ -1260,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;
@@ -1291,11 +1256,11 @@ 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;
 
-       CONNECTION_LOG(CONNECTION_INFO,"connection_reset_statistics success");
+       CONNECTION_LOG(CONNECTION_INFO, "connection_reset_statistics success");
 
        return CONNECTION_ERROR_NONE;
 }
@@ -1306,9 +1271,9 @@ EXPORT_API int connection_get_statistics(connection_h connection,
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
 
-       if(connection_type == CONNECTION_TYPE_CELLULAR )
+       if (connection_type == CONNECTION_TYPE_CELLULAR)
                CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
-       else if(connection_type == CONNECTION_TYPE_WIFI)
+       else if (connection_type == CONNECTION_TYPE_WIFI)
                CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
 
        if (!(__connection_check_handle_validity(connection)) || size == NULL) {
@@ -1316,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,
@@ -1325,9 +1290,9 @@ EXPORT_API int connection_reset_statistics(connection_h connection,
 {
        CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
 
-       if(connection_type == CONNECTION_TYPE_CELLULAR )
+       if (connection_type == CONNECTION_TYPE_CELLULAR)
                CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
-       else if(connection_type == CONNECTION_TYPE_WIFI)
+       else if (connection_type == CONNECTION_TYPE_WIFI)
                CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
 
        if (!__connection_check_handle_validity(connection)) {
@@ -1335,6 +1300,116 @@ 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,
+               connection_type_e connection_type, connection_ipv6_address_cb callback,
+               void *user_data)
+{
+       CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE,
+                       TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
+
+       GSList *ipv6_address_list = NULL;
+
+       if (!(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       int rv = CONNECTION_ERROR_NONE;
+
+       switch (connection_type) {
+       case CONNECTION_TYPE_WIFI:
+               rv = net_foreach_ipv6_address(NET_DEVICE_WIFI,
+                               &ipv6_address_list);
+               break;
+       case CONNECTION_TYPE_CELLULAR:
+               rv = net_foreach_ipv6_address(NET_DEVICE_CELLULAR,
+                               &ipv6_address_list);
+               break;
+       case CONNECTION_TYPE_ETHERNET:
+               rv = net_foreach_ipv6_address(NET_DEVICE_ETHERNET,
+                               &ipv6_address_list);
+               break;
+       case CONNECTION_TYPE_BT:
+               rv = net_foreach_ipv6_address(NET_DEVICE_BLUETOOTH,
+                               &ipv6_address_list);
+               break;
+       default:
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       if (rv != NET_ERR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "net_get_multiple_id_address"
+                               " Failed = %d\n", rv);
+               return CONNECTION_ERROR_OPERATION_FAILED;
+       }
+
+       GSList *list;
+       for (list = ipv6_address_list; list; list = list->next) {
+               rv = callback((char *)list->data, user_data);
+               if (rv == false)
+                       break;
+       }
+
+       g_slist_free_full(ipv6_address_list, g_free);
+       ipv6_address_list = NULL;
+
+       return CONNECTION_ERROR_NONE;
+}
+
+EXPORT_API int connection_profile_start_tcpdump(connection_h connection)
+{
+       int ret = 0;
+
+       if (!(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       ret = _connection_libnet_start_tcpdump(connection);
+       if (ret != CONNECTION_ERROR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to start tcpdump (%d)", ret);
+               return ret;
+       }
+
+       return CONNECTION_ERROR_NONE;
+}
+
+EXPORT_API int connection_profile_stop_tcpdump(connection_h connection)
+{
+       int ret = 0;
+
+       if (!(__connection_check_handle_validity(connection))) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       ret = _connection_libnet_stop_tcpdump(connection);
+       if (ret != CONNECTION_ERROR_NONE) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Failed to stop tcpdump (%d)", ret);
+               return ret;
+       }
+
+       return CONNECTION_ERROR_NONE;
+}
+
+EXPORT_API int connection_profile_get_tcpdump_state(connection_h connection, gboolean *tcpdump_state)
+{
+       int ret = 0;
+
+       if (!(__connection_check_handle_validity(connection)) || !tcpdump_state) {
+               CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
+               return CONNECTION_ERROR_INVALID_PARAMETER;
+       }
+
+       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;
+       }
+
+       return CONNECTION_ERROR_NONE;
+}