2 * Network Configuration Module
4 * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
28 #include <net/route.h>
29 #include <arpa/inet.h>
32 #include <sys/ioctl.h>
33 #include <vconf-keys.h>
34 #include <tzplatform_config.h>
35 #include <system_info.h>
40 #include "wifi-state.h"
43 #define DBUS_SERVICE_DBUS "org.freedesktop.DBus"
44 #define DBUS_INTERFACE_DBUS "org.freedesktop.DBus"
45 #define MAC_INFO_FILEPATH tzplatform_mkpath(TZ_SYS_ETC, "/.mac.info")
46 #define MAC_ADDRESS_FILEPATH "/sys/class/net/wlan0/address"
47 #define MAC_ADDRESS_MAX_LEN 18
48 #define HEADED_PLUGIN_FILEPATH "/usr/lib/net-config-plugin-headed.so"
49 #define TELEPHONY_PLUGIN_FILEPATH "/usr/lib/net-config-plugin-telephony.so"
51 static gboolean netconfig_device_picker_test = FALSE;
52 static int mdnsd_ref_count = 0;
56 } dnssd_conn_destroy_data;
58 static gboolean netconfig_plugin_headed_enabled = FALSE;
59 static gboolean netconfig_plugin_telephony_enabled = FALSE;
60 static void *handle_headed;
61 static void *handle_telephony;
62 static struct netconfig_headed_plugin_t *headed_plugin;
63 static struct netconfig_telephony_plugin_t *telephony_plugin;
65 GKeyFile *netconfig_keyfile_load(const char *pathname)
67 GKeyFile *keyfile = NULL;
70 keyfile = g_key_file_new();
71 if (g_key_file_load_from_file(keyfile, pathname, 0, &error) != TRUE) {
72 DBG("Unable to open %s, error %s", pathname, error->message);
75 g_key_file_free(keyfile);
79 DBG("loaded keyfile %s", pathname);
83 void netconfig_keyfile_save(GKeyFile *keyfile, const char *pathname)
87 gchar *keydata = NULL;
88 gchar *needle = NULL, *directory = NULL;
90 directory = g_strdup(pathname);
91 needle = g_strrstr(directory, "/");
96 if (directory == NULL || (*directory) == '\0') {
98 ERR("directory is NULL");
102 if (g_file_test(directory, G_FILE_TEST_IS_DIR) != TRUE) {
103 if (g_mkdir_with_parents(directory,
104 S_IRUSR | S_IWUSR | S_IXUSR) != 0) {
106 ERR("failed to make directory");
112 keydata = g_key_file_to_data(keyfile, &size, &error);
113 if (g_file_set_contents(pathname, keydata, size, &error) != TRUE) {
114 ERR("Unable to save %s, error %s", pathname, error->message);
118 chmod(pathname, S_IRUSR | S_IWUSR);
119 DBG("Successfully saved keyfile %s", pathname);
124 void netconfig_start_timer_seconds(guint secs,
125 gboolean(*callback) (gpointer), void *user_data, guint *timer_id)
129 if (callback == NULL) {
130 ERR("callback function is NULL");
134 if ((timer_id != NULL && *timer_id != 0)) {
135 ERR("timer already is registered");
139 t_id = g_timeout_add_seconds(secs, callback, user_data);
142 ERR("Can't add timer");
146 if (timer_id != NULL)
150 void netconfig_start_timer(guint msecs,
151 gboolean(*callback) (gpointer), void *user_data, guint *timer_id)
155 INFO("Register timer with callback pointer (%p)", callback);
157 if (callback == NULL) {
158 ERR("callback function is NULL");
162 if ((timer_id != NULL && *timer_id != 0)) {
163 DBG("timer already is registered");
167 t_id = g_timeout_add(msecs, callback, user_data);
170 ERR("Can't add timer");
174 if (timer_id != NULL)
178 void netconfig_stop_timer(guint *timer_id)
180 if (timer_id == NULL) {
181 ERR("timer is NULL");
185 if (*timer_id != 0) {
186 g_source_remove(*timer_id);
191 static gboolean __netconfig_test_device_picker()
193 char *favorite_wifi_service = NULL;
195 favorite_wifi_service = wifi_get_favorite_service();
196 if (favorite_wifi_service != NULL) {
197 ERR("favorite_wifi_service is existed[%s] : Donot launch device picker", favorite_wifi_service);
198 g_free(favorite_wifi_service);
205 static void __netconfig_pop_device_picker(void)
207 if (!netconfig_plugin_headed_enabled)
213 headed_plugin->pop_device_picker();
216 static gboolean __netconfig_wifi_try_device_picker(gpointer data)
218 if (__netconfig_test_device_picker() == TRUE)
219 __netconfig_pop_device_picker();
224 static guint __netconfig_wifi_device_picker_timer_id(gboolean is_set_method, guint timer_id)
226 static guint netconfig_wifi_device_picker_service_timer = 0;
228 if (is_set_method != TRUE)
229 return netconfig_wifi_device_picker_service_timer;
231 if (netconfig_wifi_device_picker_service_timer != timer_id)
232 netconfig_wifi_device_picker_service_timer = timer_id;
234 return netconfig_wifi_device_picker_service_timer;
237 static void __netconfig_wifi_device_picker_set_timer_id(guint timer_id)
239 __netconfig_wifi_device_picker_timer_id(TRUE, timer_id);
242 static guint __netconfig_wifi_device_picker_get_timer_id(void)
244 return __netconfig_wifi_device_picker_timer_id(FALSE, -1);
247 void netconfig_wifi_enable_device_picker_test(void)
249 netconfig_device_picker_test = TRUE;
252 void netconfig_wifi_device_picker_service_start(void)
254 const int NETCONFIG_WIFI_DEVICE_PICKER_INTERVAL = 700;
257 if (netconfig_device_picker_test == TRUE)
258 netconfig_device_picker_test = FALSE;
264 netconfig_vconf_get_int(VCONFKEY_WIFI_UG_RUN_STATE, &wifi_ug_state);
265 if (wifi_ug_state == VCONFKEY_WIFI_UG_RUN_STATE_ON_FOREGROUND)
268 DBG("Register device picker timer with %d milliseconds", NETCONFIG_WIFI_DEVICE_PICKER_INTERVAL);
269 netconfig_start_timer(NETCONFIG_WIFI_DEVICE_PICKER_INTERVAL, __netconfig_wifi_try_device_picker, NULL, &timer_id);
271 __netconfig_wifi_device_picker_set_timer_id(timer_id);
274 void netconfig_wifi_device_picker_service_stop(void)
278 timer_id = __netconfig_wifi_device_picker_get_timer_id();
282 DBG("Clear device picker timer with timer_id %d", timer_id);
284 netconfig_stop_timer(&timer_id);
286 __netconfig_wifi_device_picker_set_timer_id(timer_id);
289 gboolean netconfig_is_wifi_direct_on(void)
291 #if defined TIZEN_P2P_ENABLE
292 int wifi_direct_state = 0;
294 netconfig_vconf_get_int(VCONFKEY_WIFI_DIRECT_STATE, &wifi_direct_state);
296 DBG("Wi-Fi direct mode %d", wifi_direct_state);
297 return (wifi_direct_state != 0) ? TRUE : FALSE;
303 gboolean netconfig_is_wifi_tethering_on(void)
305 #if defined TIZEN_TETHERING_ENABLE
306 int wifi_tethering_state = 0;
308 netconfig_vconf_get_int(VCONFKEY_MOBILE_HOTSPOT_MODE, &wifi_tethering_state);
309 DBG("Wi-Ti tethering mode %d", wifi_tethering_state);
310 if ((wifi_tethering_state & VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI)
311 || (wifi_tethering_state & VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI_AP)) {
312 DBG("Mobile AP is on");
316 DBG("Mobile AP is off");
320 gboolean netconfig_interface_up(const char *ifname)
325 fd = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
329 memset(&ifr, 0, sizeof(ifr));
330 g_strlcpy((char *)ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
332 if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {
337 ifr.ifr_flags |= (IFF_UP | IFF_DYNAMIC);
338 if (ioctl(fd, SIOCSIFFLAGS, &ifr) < 0) {
345 DBG("Successfully activated wireless interface %s", ifname);
349 gboolean netconfig_interface_down(const char *ifname)
354 fd = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
358 memset(&ifr, 0, sizeof(ifr));
359 g_strlcpy((char *)ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
361 if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {
366 ifr.ifr_flags = (ifr.ifr_flags & ~IFF_UP) | IFF_DYNAMIC;
367 if (ioctl(fd, SIOCSIFFLAGS, &ifr) < 0) {
374 DBG("Successfully de-activated wireless interface %s", ifname);
378 int netconfig_execute_file(const char *file_path,
379 char *const args[], char *const envs[])
385 register unsigned int index = 0;
386 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
388 while (args[index] != NULL) {
389 DBG("%s", args[index]);
393 if (!(pid = fork())) {
394 DBG("pid(%d), ppid (%d)", getpid(), getppid());
395 DBG("Inside child, exec (%s) command", file_path);
398 if (execve(file_path, args, envs) == -1) {
399 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
400 DBG("Fail to execute command (%s)", error_buf);
403 } else if (pid > 0) {
404 if (waitpid(pid, &status, 0) == -1)
405 DBG("wait pid (%u) status (%d)", pid, status);
407 if (WIFEXITED(status)) {
408 rv = WEXITSTATUS(status);
409 DBG("exited, status=%d", rv);
410 } else if (WIFSIGNALED(status)) {
411 DBG("killed by signal %d", WTERMSIG(status));
412 } else if (WIFSTOPPED(status)) {
413 DBG("stopped by signal %d", WSTOPSIG(status));
414 } else if (WIFCONTINUED(status)) {
421 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
422 DBG("failed to fork(%s)", error_buf);
426 int netconfig_execute_cmd(const char *cmd)
435 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
438 DBG("command: %s", cmd);
440 args = g_strsplit_set(cmd, " ", -1);
442 if (!(pid = fork())) {
443 DBG("pid(%d), ppid (%d)", getpid(), getppid());
446 if (execv(args[0], args) == -1) {
447 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
448 DBG("Fail to execute command (%s)", error_buf);
452 } else if (pid > 0) {
453 if (waitpid(pid, &status, 0) == -1)
454 DBG("wait pid (%u) status (%d)", pid, status);
456 if (WIFEXITED(status)) {
457 rv = WEXITSTATUS(status);
458 DBG("exited, status=%d", rv);
459 } else if (WIFSIGNALED(status)) {
460 DBG("killed by signal %d", WTERMSIG(status));
461 } else if (WIFSTOPPED(status)) {
462 DBG("stopped by signal %d", WSTOPSIG(status));
463 } else if (WIFCONTINUED(status)) {
471 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
472 DBG("failed to fork(%s)", error_buf);
478 static void on_clat_handler()
483 clat_pid = waitpid(-1, &state, WNOHANG);
485 DBG("clat(%d) state(%d)", clat_pid, WEXITSTATUS(state));
488 int netconfig_execute_clatd(const char *file_path, char *const args[])
493 register unsigned int index = 0;
494 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
496 struct sigaction act;
499 act.sa_handler = on_clat_handler;
500 sigemptyset(&act.sa_mask);
503 state = sigaction(SIGCHLD, &act, 0);
505 DBG("sigaction() : %d");
509 while (args[index] != NULL) {
510 DBG("%s", args[index]);
514 if (!(pid = fork())) {
515 DBG("pid(%d), ppid (%d)", getpid(), getppid());
516 DBG("Inside child, exec (%s) command", file_path);
519 if (execvp(file_path, args) == -1) {
520 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
521 ERR("Fail to execute command (%s)", error_buf);
524 } else if (pid > 0) {
525 ERR("Success to launch clatd");
529 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
530 DBG("failed to fork(%s)", error_buf);
534 int __netconfig_get_interface_index(const char *interface_name)
539 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
541 if (interface_name == NULL) {
542 DBG("Inteface name is NULL");
547 sock = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
549 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
550 DBG("Failed to create socket : %s", error_buf);
554 memset(&ifr, 0, sizeof(ifr));
555 strncpy(ifr.ifr_name, interface_name, sizeof(ifr.ifr_name) - 1);
556 result = ioctl(sock, SIOCGIFINDEX, &ifr);
560 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
561 DBG("Failed to get ifr index: %s", error_buf);
565 return ifr.ifr_ifindex;
568 int netconfig_add_route_ipv4(gchar *ip_addr, gchar *subnet, gchar *interface, gint address_family)
572 struct sockaddr_in addr_in;
574 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
576 memset(&ifr, 0, sizeof(ifr));
578 ifr.ifr_ifindex = __netconfig_get_interface_index(interface);
580 if (ifr.ifr_ifindex < 0)
583 strncpy(ifr.ifr_name, interface, IFNAMSIZ-1);
585 memset(&rt, 0, sizeof(rt));
587 rt.rt_flags = RTF_UP | RTF_HOST;
588 memset(&addr_in, 0, sizeof(struct sockaddr_in));
589 addr_in.sin_family = address_family;
590 addr_in.sin_addr.s_addr = inet_addr(ip_addr);
591 memcpy(&rt.rt_dst, &addr_in, sizeof(rt.rt_dst));
593 memset(&addr_in, 0, sizeof(struct sockaddr_in));
594 addr_in.sin_family = address_family;
595 addr_in.sin_addr.s_addr = INADDR_ANY;
596 memcpy(&rt.rt_gateway, &addr_in, sizeof(rt.rt_gateway));
598 memset(&addr_in, 0, sizeof(struct sockaddr_in));
599 addr_in.sin_family = AF_INET;
600 addr_in.sin_addr.s_addr = inet_addr(subnet);
601 memcpy(&rt.rt_genmask, &addr_in, sizeof(rt.rt_genmask));
603 rt.rt_dev = ifr.ifr_name;
606 sock = socket(PF_INET, SOCK_DGRAM, 0);
609 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
610 DBG("Failed to create socket : %s", error_buf);
614 if (ioctl(sock, SIOCADDRT, &rt) < 0) {
615 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
616 DBG("Failed to set route address : %s", error_buf);
626 int netconfig_del_route_ipv4(gchar *ip_addr, gchar *subnet, gchar *interface, gint address_family)
630 struct sockaddr_in addr_in;
632 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
634 memset(&ifr, 0, sizeof(ifr));
635 ifr.ifr_ifindex = __netconfig_get_interface_index(interface);
637 if (ifr.ifr_ifindex < 0)
640 strncpy(ifr.ifr_name, interface, IFNAMSIZ-1);
642 memset(&rt, 0, sizeof(rt));
644 rt.rt_flags = RTF_UP;
645 memset(&addr_in, 0, sizeof(struct sockaddr_in));
646 addr_in.sin_family = address_family;
647 addr_in.sin_addr.s_addr = inet_addr(ip_addr);
648 memcpy(&rt.rt_dst, &addr_in, sizeof(rt.rt_dst));
650 memset(&addr_in, 0, sizeof(struct sockaddr_in));
651 addr_in.sin_family = address_family;
652 addr_in.sin_addr.s_addr = inet_addr(subnet);
653 memcpy(&rt.rt_genmask, &addr_in, sizeof(rt.rt_genmask));
654 rt.rt_dev = ifr.ifr_name;
657 sock = socket(PF_INET, SOCK_DGRAM, 0);
660 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
661 DBG("Failed to create socket : %s", error_buf);
665 if (ioctl(sock, SIOCDELRT, &rt) < 0) {
666 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
667 DBG("Failed to set route address : %s", error_buf);
677 int netconfig_add_route_ipv6(gchar *ip_addr, gchar *interface, gchar *gateway, unsigned char prefix_len)
682 char error_buf[MAX_SIZE_ERROR_BUFFER] = {0, };
684 memset(&rt, 0, sizeof(rt));
686 rt.rtmsg_dst_len = prefix_len;
688 rt.rtmsg_flags = RTF_UP | RTF_HOST;
691 if (inet_pton(AF_INET6, ip_addr, &rt.rtmsg_dst) < 0) {
692 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
693 DBG("inet_pton failed : %s", error_buf);
697 if (gateway != NULL) {
698 rt.rtmsg_flags |= RTF_GATEWAY;
699 if (inet_pton(AF_INET6, gateway, &rt.rtmsg_gateway) < 0) {
700 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
701 DBG("inet_pton failed : %s", error_buf);
708 fd = socket(AF_INET6, SOCK_DGRAM, 0);
710 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
711 DBG("Failed to create socket : %s", error_buf);
715 rt.rtmsg_ifindex = 0;
719 memset(&ifr, 0, sizeof(ifr));
720 strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name)-1);
721 ioctl(fd, SIOCGIFINDEX, &ifr);
722 rt.rtmsg_ifindex = ifr.ifr_ifindex;
725 if ((err = ioctl(fd, SIOCADDRT, &rt)) < 0) {
726 strerror_r(errno, error_buf, MAX_SIZE_ERROR_BUFFER);
727 DBG("Failed to add route: %s", error_buf);
737 int netconfig_del_route_ipv6(gchar *ip_addr, gchar *interface, gchar *gateway, unsigned char prefix_len)
743 memset(&rt, 0, sizeof(rt));
745 rt.rtmsg_dst_len = prefix_len;
747 rt.rtmsg_flags = RTF_UP | RTF_HOST;
749 if (inet_pton(AF_INET6, ip_addr, &rt.rtmsg_dst) < 0) {
754 if (gateway != NULL) {
755 rt.rtmsg_flags |= RTF_GATEWAY;
756 if (inet_pton(AF_INET6, gateway, &rt.rtmsg_gateway) < 0) {
764 fd = socket(AF_INET6, SOCK_DGRAM, 0);
768 rt.rtmsg_ifindex = 0;
772 memset(&ifr, 0, sizeof(ifr));
773 strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name)-1);
774 ioctl(fd, SIOCGIFINDEX, &ifr);
775 rt.rtmsg_ifindex = ifr.ifr_ifindex;
778 if ((err = ioctl(fd, SIOCDELRT, &rt)) < 0) {
779 DBG("Failed to del route: %d\n", err);
789 gboolean handle_launch_direct(Wifi *wifi, GDBusMethodInvocation *context)
791 #if defined TIZEN_P2P_ENABLE
793 DBG("Launch Wi-Fi direct daemon");
795 const char *path = "/usr/bin/wifi-direct-server.sh";
796 char *const args[] = { "wifi-direct-server.sh", "start", NULL };
797 char *const envs[] = { NULL };
799 ret = netconfig_execute_file(path, args, envs);
801 ERR("Failed to launch Wi-Fi direct daemon");
802 netconfig_error_wifi_direct_failed(context);
806 wifi_complete_launch_direct(wifi, context);
809 wifi_complete_launch_direct(wifi, context);
814 int execute_mdnsd_script(char* op)
816 const char *path = "/usr/bin/mdnsresponder-server.sh";
817 char *const args[] = { "mdnsresponder-server.sh", op, NULL };
818 char *const envs[] = { NULL };
820 return netconfig_execute_file(path, args, envs);
823 static void __dnssd_conn_destroyed_cb(GDBusConnection *conn,
824 const gchar *Name, const gchar *path, const gchar *interface,
825 const gchar *sig, GVariant *param, gpointer user_data)
830 dnssd_conn_destroy_data *data = user_data;
831 GDBusConnection *connection = NULL;
832 connection = netdbus_get_connection();
837 g_variant_get(param, "(sss)", &name, &old, &new);
839 if (g_strcmp0(name, data->conn_name) == 0 && *new == '\0') {
840 DBG("Connection %s Destroyed: name %s id %d", data->conn_name, name,
843 g_dbus_connection_signal_unsubscribe(connection, data->conn_id);
844 if (mdnsd_ref_count == 0) {
845 if (execute_mdnsd_script("stop") < 0)
846 ERR("Failed to stop mdnsresponder daemon");
852 g_free(data->conn_name);
857 static void register_dnssd_conn_destroy_signal(gchar *name)
859 dnssd_conn_destroy_data *data;
860 GDBusConnection *connection = NULL;
861 connection = netdbus_get_connection();
863 if (connection == NULL) {
864 ERR("Failed to get GDbus Connection");
868 data = g_try_malloc0(sizeof(dnssd_conn_destroy_data));
871 ERR("Out of Memory!");
875 data->conn_name = g_strdup(name);
877 data->conn_id = g_dbus_connection_signal_subscribe(connection,
878 DBUS_SERVICE_DBUS, DBUS_INTERFACE_DBUS,
879 "NameOwnerChanged", NULL, name,
880 G_DBUS_SIGNAL_FLAGS_NONE, __dnssd_conn_destroyed_cb,
885 gboolean handle_launch_mdns(Network *object, GDBusMethodInvocation *context,
888 DBG("Launch mdnsresponder daemon");
890 if (execute_mdnsd_script("start") < 0) {
891 ERR("Failed to launch mdnsresponder daemon");
892 netconfig_error_invalid_parameter(context);
897 register_dnssd_conn_destroy_signal(name);
898 DBG("Ref mdnsresponder daemon. ref count: %d", mdnsd_ref_count);
900 network_complete_launch_mdns(object, context);
904 gboolean netconfig_send_notification_to_net_popup(const char * noti, const char * ssid)
906 if (!netconfig_plugin_headed_enabled)
912 return headed_plugin->send_notification_to_net_popup(noti, ssid);
915 int netconfig_send_message_to_net_popup(const char *title,
916 const char *content, const char *type, const char *ssid)
918 if (!netconfig_plugin_headed_enabled)
924 return headed_plugin->send_message_to_net_popup(title, content, type, ssid);
927 int netconfig_send_restriction_to_net_popup(const char *title,
928 const char *type, const char *restriction)
930 if (!netconfig_plugin_headed_enabled)
936 return headed_plugin->send_restriction_to_net_popup(title, type, restriction);
939 void netconfig_set_system_event(int sys_evt, int evt_key, int evt_val)
941 if (!netconfig_plugin_headed_enabled)
947 headed_plugin->set_system_event(sys_evt, evt_key, evt_val);
950 void __netconfig_pop_wifi_connected_poppup(const char *ssid)
952 if (!netconfig_plugin_headed_enabled)
958 headed_plugin->pop_wifi_connected_poppup(ssid);
961 void netconfig_get_telephony_network_type(int *svctype, int *pstype)
963 if (!netconfig_plugin_telephony_enabled)
966 if (!telephony_plugin)
969 telephony_plugin->get_telephony_network_type(svctype, pstype);
972 gboolean __netconfig_wifi_get_sim_imsi(Wifi *wifi, GDBusMethodInvocation *context)
974 if (!netconfig_plugin_telephony_enabled)
977 if (!telephony_plugin)
980 return telephony_plugin->wifi_get_sim_imsi(wifi, context);
983 netconfig_error_e __netconfig_wifi_req_aka_auth(GArray *rand_data, GArray *autn_data,
984 GDBusMethodInvocation *context, struct wifi_authentication_data **data)
986 if (!netconfig_plugin_telephony_enabled)
987 return NETCONFIG_ERROR_INTERNAL;
989 if (!telephony_plugin)
990 return NETCONFIG_ERROR_INTERNAL;
992 return telephony_plugin->wifi_req_aka_auth(rand_data, autn_data, context, data);
995 gboolean __netconfig_wifi_req_sim_auth(GArray *rand_data,
996 GDBusMethodInvocation *context, struct wifi_authentication_data **data)
998 if (!netconfig_plugin_telephony_enabled)
1001 if (!telephony_plugin)
1004 return telephony_plugin->wifi_req_sim_auth(rand_data, context, data);
1007 gboolean netconfig_tapi_check_sim_state(void)
1009 if (!netconfig_plugin_telephony_enabled)
1012 if (!telephony_plugin)
1015 return telephony_plugin->tapi_check_sim_state();
1018 gboolean __netconfig_wifi_get_aka_authdata(Wifi *wifi,
1019 GDBusMethodInvocation *context, struct wifi_authentication_data **data)
1021 if (!netconfig_plugin_telephony_enabled)
1024 if (!telephony_plugin)
1027 return telephony_plugin->wifi_get_aka_authdata(wifi, context, data);
1030 gboolean __netconfig_wifi_get_sim_authdata(Wifi *wifi,
1031 GDBusMethodInvocation *context, struct wifi_authentication_data **data)
1033 if (!netconfig_plugin_telephony_enabled)
1036 if (!telephony_plugin)
1039 return telephony_plugin->wifi_get_sim_authdata(wifi, context, data);
1042 void netconfig_set_vconf_int(const char * key, int value)
1046 DBG("[%s: %d]", key, value);
1048 ret = vconf_set_int(key, value);
1049 if (ret != VCONF_OK)
1050 ERR("Failed to set");
1053 void netconfig_set_vconf_str(const char * key, const char * value)
1057 DBG("[%s: %s]", key, value);
1059 ret = vconf_set_str(key, value);
1060 if (ret != VCONF_OK)
1061 ERR("Failed to set");
1064 int netconfig_vconf_get_int(const char * key, int *value)
1068 ret = vconf_get_int(key, value);
1069 if (ret != VCONF_OK) {
1070 ERR("Failed to get vconfkey [%s] value", key);
1077 int netconfig_vconf_get_bool(const char * key, int *value)
1081 ret = vconf_get_bool(key, value);
1082 if (ret != VCONF_OK) {
1083 ERR("Failed to get vconfkey [%s] value", key);
1090 char* netconfig_get_env(const char *key)
1093 char buf[256], *entry = NULL, *value = NULL, *last;
1099 fp = fopen(NETCONFIG_TIZEN_SYSTEM_ENV, "r");
1103 while (fgets(buf, sizeof(buf), fp)) {
1105 entry = strtok_r(entry, "=", &last);
1107 if (strstr(entry, key)) {
1108 entry = strtok_r(NULL, "\n", &last);
1110 len = strlen(entry);
1111 value = (char*)malloc(len+1);
1112 g_strlcpy(value, entry, len+1);
1114 value = (char*)malloc(sizeof(char));
1115 g_strlcpy(value, "\n", sizeof(char));
1126 void netconfig_set_mac_address_from_file(void)
1129 char mac_str[MAC_ADDRESS_MAX_LEN];
1130 gchar *mac_lower_str = NULL;
1133 file = fopen(MAC_INFO_FILEPATH, "r");
1135 ERR("Fail to open %s", MAC_INFO_FILEPATH);
1136 file = fopen(MAC_ADDRESS_FILEPATH, "r");
1138 ERR("Fail to open %s", MAC_ADDRESS_FILEPATH);
1142 if (fgets(mac_str, sizeof(mac_str), file) == NULL) {
1143 ERR("Fail to read mac address");
1148 mac_len = strlen(mac_str);
1150 ERR("mac.info is empty");
1155 mac_lower_str = g_ascii_strup(mac_str, (gssize)mac_len);
1156 netconfig_set_vconf_str(VCONFKEY_WIFI_BSSID_ADDRESS, mac_lower_str);
1158 g_free(mac_lower_str);
1162 tizen_profile_t _get_tizen_profile()
1164 static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN;
1165 if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1))
1169 system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
1170 switch (*profileName) {
1173 profile = TIZEN_PROFILE_MOBILE;
1177 profile = TIZEN_PROFILE_WEARABLE;
1181 profile = TIZEN_PROFILE_TV;
1185 profile = TIZEN_PROFILE_IVI;
1187 default: // common or unknown ==> ALL ARE COMMON.
1188 profile = TIZEN_PROFILE_COMMON;
1195 void netconfig_plugin_init()
1197 handle_headed = dlopen(HEADED_PLUGIN_FILEPATH, RTLD_NOW);
1198 if (!handle_headed) {
1199 ERR("Can't load %s: %s", HEADED_PLUGIN_FILEPATH, dlerror());
1201 headed_plugin = dlsym(handle_headed, "netconfig_headed_plugin");
1202 if (!headed_plugin) {
1203 ERR("Can't load symbol: %s", dlerror());
1204 dlclose(handle_headed);
1206 netconfig_plugin_headed_enabled = TRUE;
1210 handle_telephony = dlopen(TELEPHONY_PLUGIN_FILEPATH, RTLD_NOW);
1211 if (!handle_telephony) {
1212 ERR("Can't load %s: %s", TELEPHONY_PLUGIN_FILEPATH, dlerror());
1214 telephony_plugin = dlsym(handle_telephony, "netconfig_telephony_plugin");
1215 if (!telephony_plugin) {
1216 ERR("Can't load symbol: %s", dlerror());
1217 dlclose(handle_telephony);
1219 netconfig_plugin_telephony_enabled = TRUE;
1224 void netconfig_plugin_deinit()
1226 if (netconfig_plugin_headed_enabled) {
1227 netconfig_plugin_headed_enabled = FALSE;
1228 dlclose(handle_headed);
1231 if (netconfig_plugin_telephony_enabled) {
1232 netconfig_plugin_telephony_enabled = FALSE;
1233 dlclose(handle_telephony);
1237 gboolean netconfig_get_headed_plugin_flag()
1239 return netconfig_plugin_headed_enabled;
1242 gboolean netconfig_get_telephony_plugin_flag()
1244 return netconfig_plugin_telephony_enabled;