Revert: [TNEXT-136] Check model name for wlan driver
[platform/core/connectivity/net-config.git] / src / utils / util.c
index d028cd5..6efd972 100755 (executable)
@@ -17,7 +17,7 @@
  *
  */
 
-#include <app.h>
+#include <dlfcn.h>
 #include <errno.h>
 #include <vconf.h>
 #include <stdio.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <vconf-keys.h>
-#include <syspopup_caller.h>
-#include <bundle.h>
-#include <bundle_internal.h>
-#include <eventsystem.h>
 #include <tzplatform_config.h>
+#include <system_info.h>
 
 #include "log.h"
 #include "util.h"
 #include "neterror.h"
 #include "wifi-state.h"
+#include "netdbus.h"
 
+#define DBUS_SERVICE_DBUS              "org.freedesktop.DBus"
+#define DBUS_INTERFACE_DBUS            "org.freedesktop.DBus"
 #define MAC_INFO_FILEPATH              tzplatform_mkpath(TZ_SYS_ETC, "/.mac.info")
+#define MAC_ADDRESS_FILEPATH   "/sys/class/net/wlan0/address"
 #define MAC_ADDRESS_MAX_LEN            18
+#define HEADED_PLUGIN_FILEPATH         "/usr/lib/net-config-plugin-headed.so"
 
 static gboolean netconfig_device_picker_test = FALSE;
 static int mdnsd_ref_count = 0;
+typedef struct {
+       char *conn_name;
+       int conn_id;
+} dnssd_conn_destroy_data;
+
+static gboolean netconfig_plugin_headed_enabled = FALSE;
+static void *handle_headed;
+static struct netconfig_headed_plugin_t *headed_plugin;
 
 GKeyFile *netconfig_keyfile_load(const char *pathname)
 {
@@ -190,39 +200,13 @@ static gboolean __netconfig_test_device_picker()
 
 static void __netconfig_pop_device_picker(void)
 {
-#if defined TIZEN_WEARABLE
-       int ret = 0;
-       app_control_h   control = NULL;
-
-       ret = app_control_create(&control);
-       if (APP_CONTROL_ERROR_NONE != ret) {
-               DBG("failed to create app control");
-               return ;
-       }
-
-       app_control_add_extra_data(control, "viewtype", "scanlist");
-
-       app_control_set_app_id(control, "org.tizen.wifi");
-       ret = app_control_send_launch_request(control, NULL, NULL);
-       if (APP_CONTROL_ERROR_NONE == ret)
-               DBG("Launch request sent successfully");
-
-       app_control_destroy(control);
-#else
-       bundle *b = NULL;
-       int wifi_ug_state = 0;
-
-       netconfig_vconf_get_int(VCONFKEY_WIFI_UG_RUN_STATE, &wifi_ug_state);
-       if (wifi_ug_state == VCONFKEY_WIFI_UG_RUN_STATE_ON_FOREGROUND)
+       if (!netconfig_plugin_headed_enabled)
                return;
 
-       b = bundle_create();
-
-       DBG("Launch Wi-Fi device picker");
-       syspopup_launch("wifi-qs", b);
+       if (!headed_plugin)
+               return;
 
-       bundle_free(b);
-#endif
+       headed_plugin->pop_device_picker();
 }
 
 static gboolean __netconfig_wifi_try_device_picker(gpointer data)
@@ -319,9 +303,13 @@ gboolean netconfig_is_wifi_tethering_on(void)
 
        netconfig_vconf_get_int(VCONFKEY_MOBILE_HOTSPOT_MODE, &wifi_tethering_state);
        DBG("Wi-Ti tethering mode %d", wifi_tethering_state);
-       if (wifi_tethering_state & VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI)
+       if ((wifi_tethering_state & VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI)
+               || (wifi_tethering_state & VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI_AP)) {
+               DBG("Mobile AP is on");
                return TRUE;
+       }
 #endif
+       DBG("Mobile AP is off");
        return FALSE;
 }
 
@@ -350,7 +338,7 @@ gboolean netconfig_interface_up(const char *ifname)
 
        close(fd);
 
-       DBG("Successfully activated wireless interface");
+       DBG("Successfully activated wireless interface %s", ifname);
        return TRUE;
 }
 
@@ -379,7 +367,7 @@ gboolean netconfig_interface_down(const char *ifname)
 
        close(fd);
 
-       DBG("Successfully de-activated wireless interface");
+       DBG("Successfully de-activated wireless interface %s", ifname);
        return TRUE;
 }
 
@@ -766,7 +754,8 @@ gboolean handle_launch_direct(Wifi *wifi, GDBusMethodInvocation *context)
 #endif
 }
 
-int execute_mdnsd_script(char* op) {
+int execute_mdnsd_script(char* op)
+{
        const char *path = "/usr/bin/mdnsresponder-server.sh";
        char *const args[] = { "mdnsresponder-server.sh", op, NULL };
        char *const envs[] = { NULL };
@@ -774,149 +763,136 @@ int execute_mdnsd_script(char* op) {
        return netconfig_execute_file(path, args, envs);
 }
 
-gboolean handle_launch_mdns(Network *object, GDBusMethodInvocation *context)
+static void __dnssd_conn_destroyed_cb(GDBusConnection *conn,
+               const gchar *Name, const gchar *path, const gchar *interface,
+               const gchar *sig, GVariant *param, gpointer user_data)
 {
-       DBG("Launch mdnsresponder daemon");
+       gchar *name = NULL;
+       gchar *old = NULL;
+       gchar *new = NULL;
+       dnssd_conn_destroy_data *data = user_data;
+       GDBusConnection *connection = NULL;
+       connection = netdbus_get_connection();
+
+       if (param == NULL)
+               return;
 
-       if (execute_mdnsd_script("start") < 0) {
-               ERR("Failed to launch mdnsresponder daemon");
-               netconfig_error_invalid_parameter(context);
-               return FALSE;
+       g_variant_get(param, "(sss)", &name, &old, &new);
+
+       if (g_strcmp0(name, data->conn_name) == 0 && *new == '\0') {
+               DBG("Connection %s Destroyed: name %s id %d", data->conn_name, name,
+                       data->conn_id);
+               mdnsd_ref_count--;
+               g_dbus_connection_signal_unsubscribe(connection, data->conn_id);
+               if (mdnsd_ref_count == 0) {
+                       if (execute_mdnsd_script("stop") < 0)
+                               ERR("Failed to stop mdnsresponder daemon");
+               }
        }
+       g_free(name);
+       g_free(old);
+       g_free(new);
+       g_free(data->conn_name);
+       g_free(data);
+       return;
+}
 
-       mdnsd_ref_count++;
-       DBG("Ref mdnsresponder daemon. ref count: %d", mdnsd_ref_count);
+static void register_dnssd_conn_destroy_signal(gchar *name)
+{
+       dnssd_conn_destroy_data *data;
+       GDBusConnection *connection = NULL;
+       connection = netdbus_get_connection();
 
-       network_complete_launch_mdns(object, context);
-       return TRUE;
+       if (connection == NULL) {
+               ERR("Failed to get GDbus Connection");
+               return;
+       }
+
+       data = g_try_malloc0(sizeof(dnssd_conn_destroy_data));
+       data->conn_name = g_strdup(name);
+
+       data->conn_id = g_dbus_connection_signal_subscribe(connection,
+                                                       DBUS_SERVICE_DBUS, DBUS_INTERFACE_DBUS,
+                                                       "NameOwnerChanged", NULL, name,
+                                                       G_DBUS_SIGNAL_FLAGS_NONE, __dnssd_conn_destroyed_cb,
+                                                       data, NULL);
+       return;
 }
 
-gboolean handle_unref_mdns(Network *object, GDBusMethodInvocation *context)
+gboolean handle_launch_mdns(Network *object, GDBusMethodInvocation *context,
+                                                       gchar *name)
 {
-       DBG("Unef mdnsresponder daemon");
+       DBG("Launch mdnsresponder daemon");
 
-       if (mdnsd_ref_count <= 0) {
-               ERR("Invalid access");
+       if (execute_mdnsd_script("start") < 0) {
+               ERR("Failed to launch mdnsresponder daemon");
                netconfig_error_invalid_parameter(context);
                return FALSE;
        }
 
-       mdnsd_ref_count--;
-
-       DBG("Unref mdnsresponder daemon. ref count: %d", mdnsd_ref_count);
-       if (mdnsd_ref_count == 0) {
-               if (execute_mdnsd_script("stop") < 0) {
-                       ERR("Failed to stop mdnsresponder daemon");
-                       netconfig_error_invalid_parameter(context);
-                       return FALSE;
-               }
-       }
+       mdnsd_ref_count++;
+       register_dnssd_conn_destroy_signal(name);
+       DBG("Ref mdnsresponder daemon. ref count: %d", mdnsd_ref_count);
 
-       network_complete_unref_mdns(object, context);
+       network_complete_launch_mdns(object, context);
        return TRUE;
 }
 
 gboolean netconfig_send_notification_to_net_popup(const char * noti, const char * ssid)
 {
-       int ret = 0;
-       bundle *b;
-       static gboolean is_found_noti_exists = FALSE;
-       static gboolean is_portal_noti_exists = FALSE;
-
-       if (noti == NULL) {
-               ERR("Invalid notification");
+       if (!netconfig_plugin_headed_enabled)
                return FALSE;
-       }
-
-       if (g_strcmp0(noti, NETCONFIG_DEL_FOUND_AP_NOTI) == 0) {
-               if (is_found_noti_exists == FALSE)
-                       return TRUE;
-
-               is_found_noti_exists = FALSE;
-       } else if (g_strcmp0(noti, NETCONFIG_ADD_FOUND_AP_NOTI) == 0) {
-               if (is_found_noti_exists == TRUE)
-                       return TRUE;
-
-               is_found_noti_exists = TRUE;
-       } else if (g_strcmp0(noti, NETCONFIG_ADD_PORTAL_NOTI) == 0) {
-               if (is_portal_noti_exists == TRUE)
-                       return TRUE;
 
-               is_portal_noti_exists = TRUE;
-       } else if (g_strcmp0(noti, NETCONFIG_DEL_PORTAL_NOTI) == 0) {
-               if (is_portal_noti_exists == FALSE)
-                       return TRUE;
-
-               is_portal_noti_exists = FALSE;
-       }
-
-       b = bundle_create();
-       bundle_add(b, "_SYSPOPUP_TYPE_", noti);
-
-       if (ssid != NULL) {
-               DBG("ssid (%s)", ssid);
-               bundle_add(b, "_AP_NAME_", ssid);
-       }
-
-       ret = syspopup_launch("net-popup", b);
-
-       bundle_free(b);
-
-       if (ret < 0) {
-               ERR("Unable to launch noti-popup. Err = %d", ret);
+       if (!headed_plugin)
                return FALSE;
-       }
 
-       DBG("Successfully sent notification (%s)", noti);
-       return TRUE;
+       return headed_plugin->send_notification_to_net_popup(noti, ssid);
 }
 
 int netconfig_send_message_to_net_popup(const char *title,
                const char *content, const char *type, const char *ssid)
 {
-       int ret = 0;
-       bundle *b = bundle_create();
+       if (!netconfig_plugin_headed_enabled)
+               return 0;
 
-       bundle_add(b, "_SYSPOPUP_TITLE_", title);
-       bundle_add(b, "_SYSPOPUP_CONTENT_", content);
-       bundle_add(b, "_SYSPOPUP_TYPE_", type);
-       bundle_add(b, "_AP_NAME_", ssid);
+       if (!headed_plugin)
+               return 0;
 
-       ret = syspopup_launch("net-popup", b);
-
-       bundle_free(b);
-
-       return ret;
+       return headed_plugin->send_message_to_net_popup(title, content, type, ssid);
 }
 
 int netconfig_send_restriction_to_net_popup(const char *title,
                const char *type, const char *restriction)
 {
-       int ret = 0;
-       bundle *b = bundle_create();
+       if (!netconfig_plugin_headed_enabled)
+               return 0;
 
-       bundle_add(b, "_SYSPOPUP_TITLE_", title);
-       bundle_add(b, "_SYSPOPUP_CONTENT_", "security restriction");
-       bundle_add(b, "_SYSPOPUP_TYPE_", type);
-       bundle_add(b, "_RESTRICTED_TYPE_", restriction);
+       if (!headed_plugin)
+               return 0;
 
-       ret = syspopup_launch("net-popup", b);
+       return headed_plugin->send_restriction_to_net_popup(title, type, restriction);
+}
+
+void netconfig_set_system_event(int sys_evt, int evt_key, int evt_val)
+{
+       if (!netconfig_plugin_headed_enabled)
+               return;
 
-       bundle_free(b);
+       if (!headed_plugin)
+               return;
 
-       return ret;
+       headed_plugin->set_system_event(sys_evt, evt_key, evt_val);
 }
 
-void netconfig_set_system_event(const char * sys_evt, const char * evt_key, const char * evt_val)
+void __netconfig_pop_wifi_connected_poppup(const char *ssid)
 {
-       bundle *b = NULL;
+       if (!netconfig_plugin_headed_enabled)
+               return;
 
-       DBG("System event set [%s : %s : %s]", sys_evt, evt_key, evt_val);
+       if (!headed_plugin)
+               return;
 
-       b = bundle_create();
-       bundle_add_str(b, evt_key, evt_val);
-       eventsystem_send_system_event(sys_evt, b);
-       bundle_free(b);
+       headed_plugin->pop_wifi_connected_poppup(ssid);
 }
 
 void netconfig_set_vconf_int(const char * key, int value)
@@ -1013,7 +989,11 @@ void netconfig_set_mac_address_from_file(void)
        file = fopen(MAC_INFO_FILEPATH, "r");
        if (file == NULL) {
                ERR("Fail to open %s", MAC_INFO_FILEPATH);
-               return;
+               file = fopen(MAC_ADDRESS_FILEPATH, "r");
+               if (file == NULL) {
+                       ERR("Fail to open %s", MAC_ADDRESS_FILEPATH);
+                       return;
+               }
        }
        if (fgets(mac_str, sizeof(mac_str), file) == NULL) {
                ERR("Fail to read mac address");
@@ -1034,3 +1014,69 @@ void netconfig_set_mac_address_from_file(void)
        g_free(mac_lower_str);
        fclose(file);
 }
+
+tizen_profile_t _get_tizen_profile()
+{
+       static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN;
+       if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1))
+               return profile;
+
+       char *profileName;
+       system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
+       switch (*profileName) {
+       case 'm':
+       case 'M':
+               profile = TIZEN_PROFILE_MOBILE;
+               break;
+       case 'w':
+       case 'W':
+               profile = TIZEN_PROFILE_WEARABLE;
+               break;
+       case 't':
+       case 'T':
+               profile = TIZEN_PROFILE_TV;
+               break;
+       case 'i':
+       case 'I':
+               profile = TIZEN_PROFILE_IVI;
+               break;
+       default: // common or unknown ==> ALL ARE COMMON.
+               profile = TIZEN_PROFILE_COMMON;
+       }
+       free(profileName);
+
+       return profile;
+}
+
+void netconfig_plugin_init()
+{
+       handle_headed = dlopen(HEADED_PLUGIN_FILEPATH, RTLD_NOW);
+       if (!handle_headed) {
+               ERR("Can't load %s: %s", HEADED_PLUGIN_FILEPATH, dlerror());
+               return;
+       }
+
+       headed_plugin = dlsym(handle_headed, "netconfig_headed_plugin");
+       if (!headed_plugin) {
+               ERR("Can't load symbol: %s", dlerror());
+               dlclose(handle_headed);
+               return;
+       }
+
+       netconfig_plugin_headed_enabled = TRUE;
+}
+
+void netconfig_plugin_deinit()
+{
+       if (!netconfig_plugin_headed_enabled)
+               return;
+
+       netconfig_plugin_headed_enabled = FALSE;
+       dlclose(handle_headed);
+}
+
+gboolean netconfig_get_headed_plugin_flag()
+{
+       return netconfig_plugin_headed_enabled;
+}
+