/* * * ConnMan VPN daemon * * Copyright (C) 2007-2013 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifdef HAVE_CONFIG_H #include #endif #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../vpn-rtnl.h" #include "../vpn-provider.h" #include "vpn.h" struct vpn_data { struct vpn_provider *provider; char *if_name; unsigned flags; unsigned int watch; enum vpn_state state; struct connman_task *task; }; struct vpn_driver_data { const char *name; const char *program; struct vpn_driver *vpn_driver; struct vpn_provider_driver provider_driver; }; GHashTable *driver_hash = NULL; static int stop_vpn(struct vpn_provider *provider) { struct vpn_data *data = vpn_provider_get_data(provider); struct vpn_driver_data *vpn_driver_data; const char *name; struct ifreq ifr; int fd, err; if (!data) return -EINVAL; name = vpn_provider_get_driver_name(provider); if (!name) return -EINVAL; vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (vpn_driver_data && vpn_driver_data->vpn_driver && vpn_driver_data->vpn_driver->flags == VPN_FLAG_NO_TUN) return 0; memset(&ifr, 0, sizeof(ifr)); ifr.ifr_flags = IFF_TUN | IFF_NO_PI; sprintf(ifr.ifr_name, "%s", data->if_name); fd = open("/dev/net/tun", O_RDWR | O_CLOEXEC); if (fd < 0) { err = -errno; connman_error("Failed to open /dev/net/tun to device %s: %s", data->if_name, strerror(errno)); return err; } if (ioctl(fd, TUNSETIFF, (void *)&ifr)) { err = -errno; connman_error("Failed to TUNSETIFF for device %s to it: %s", data->if_name, strerror(errno)); close(fd); return err; } if (ioctl(fd, TUNSETPERSIST, 0)) { err = -errno; connman_error("Failed to set tun device %s nonpersistent: %s", data->if_name, strerror(errno)); close(fd); return err; } close(fd); DBG("Killed tun device %s", data->if_name); return 0; } void vpn_died(struct connman_task *task, int exit_code, void *user_data) { struct vpn_provider *provider = user_data; struct vpn_data *data = vpn_provider_get_data(provider); int state = VPN_STATE_FAILURE; enum vpn_provider_error ret; DBG("provider %p data %p", provider, data); if (!data) goto vpn_exit; state = data->state; stop_vpn(provider); vpn_provider_set_data(provider, NULL); if (data->watch != 0) { vpn_rtnl_remove_watch(data->watch); data->watch = 0; vpn_provider_unref(provider); } vpn_exit: if (state != VPN_STATE_READY && state != VPN_STATE_DISCONNECT) { const char *name; struct vpn_driver_data *vpn_data = NULL; name = vpn_provider_get_driver_name(provider); if (name) vpn_data = g_hash_table_lookup(driver_hash, name); if (vpn_data && vpn_data->vpn_driver->error_code) ret = vpn_data->vpn_driver->error_code(provider, exit_code); else ret = VPN_PROVIDER_ERROR_UNKNOWN; vpn_provider_indicate_error(provider, ret); } else vpn_provider_set_state(provider, VPN_PROVIDER_STATE_IDLE); vpn_provider_set_index(provider, -1); if (data) { vpn_provider_unref(data->provider); g_free(data->if_name); g_free(data); } connman_task_destroy(task); } int vpn_set_ifname(struct vpn_provider *provider, const char *ifname) { struct vpn_data *data = vpn_provider_get_data(provider); int index; if (!ifname || !data) return -EIO; index = connman_inet_ifindex(ifname); if (index < 0) return -EIO; if (data->if_name) g_free(data->if_name); data->if_name = (char *)g_strdup(ifname); vpn_provider_set_index(provider, index); return 0; } static void vpn_newlink(unsigned flags, unsigned change, void *user_data) { struct vpn_provider *provider = user_data; struct vpn_data *data = vpn_provider_get_data(provider); if ((data->flags & IFF_UP) != (flags & IFF_UP)) { if (flags & IFF_UP) { data->state = VPN_STATE_READY; vpn_provider_set_state(provider, VPN_PROVIDER_STATE_READY); } } data->flags = flags; } static DBusMessage *vpn_notify(struct connman_task *task, DBusMessage *msg, void *user_data) { struct vpn_provider *provider = user_data; struct vpn_data *data; struct vpn_driver_data *vpn_driver_data; const char *name; int state, index, err; data = vpn_provider_get_data(provider); name = vpn_provider_get_driver_name(provider); if (!name) { DBG("Cannot find VPN driver for provider %p", provider); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_FAILURE); return NULL; } vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (!vpn_driver_data) { DBG("Cannot find VPN driver data for name %s", name); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_FAILURE); return NULL; } state = vpn_driver_data->vpn_driver->notify(msg, provider); DBG("provider %p driver %s state %d", provider, name, state); switch (state) { case VPN_STATE_CONNECT: case VPN_STATE_READY: if (data->state == VPN_STATE_READY) { /* * This is the restart case, in which case we must * just set the IP address. * * We need to remove first the old address, just * replacing the old address will not work as expected * because the old address will linger in the interface * and not disapper so the clearing is needed here. * * Also the state must change, otherwise the routes * will not be set properly. */ vpn_provider_set_state(provider, VPN_PROVIDER_STATE_CONNECT); vpn_provider_clear_address(provider, AF_INET); vpn_provider_clear_address(provider, AF_INET6); vpn_provider_change_address(provider); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_READY); break; } index = vpn_provider_get_index(provider); vpn_provider_ref(provider); data->watch = vpn_rtnl_add_newlink_watch(index, vpn_newlink, provider); err = connman_inet_ifup(index); if (err < 0) { if (err == -EALREADY) /* * So the interface is up already, that is just * great. Unfortunately in this case the * newlink watch might not have been called at * all. We must manually call it here so that * the provider can go to ready state and the * routes are setup properly. */ vpn_newlink(IFF_UP, 0, provider); else DBG("Cannot take interface %d up err %d/%s", index, -err, strerror(-err)); } break; case VPN_STATE_UNKNOWN: case VPN_STATE_IDLE: case VPN_STATE_DISCONNECT: case VPN_STATE_FAILURE: vpn_provider_set_state(provider, VPN_PROVIDER_STATE_DISCONNECT); break; case VPN_STATE_AUTH_FAILURE: vpn_provider_indicate_error(provider, VPN_PROVIDER_ERROR_AUTH_FAILED); break; } return NULL; } static void vpn_event(struct vpn_provider *provider, int state) { struct vpn_data *data; struct vpn_driver_data *vpn_driver_data; const char *name; int index, err; data = vpn_provider_get_data(provider); name = vpn_provider_get_driver_name(provider); if (!name) { DBG("Cannot find VPN driver for provider %p", provider); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_FAILURE); return; } vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (!vpn_driver_data) { DBG("Cannot find VPN driver data for name %s", name); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_FAILURE); return; } DBG("provider %p driver %s state %d", provider, name, state); switch (state) { case VPN_STATE_CONNECT: case VPN_STATE_READY: if (data->state == VPN_STATE_READY) { /* * This is the restart case, in which case we must * just set the IP address. * * We need to remove first the old address, just * replacing the old address will not work as expected * because the old address will linger in the interface * and not disapper so the clearing is needed here. * * Also the state must change, otherwise the routes * will not be set properly. */ vpn_provider_set_state(provider, VPN_PROVIDER_STATE_CONNECT); vpn_provider_clear_address(provider, AF_INET); vpn_provider_clear_address(provider, AF_INET6); vpn_provider_change_address(provider); vpn_provider_set_state(provider, VPN_PROVIDER_STATE_READY); break; } index = vpn_provider_get_index(provider); vpn_provider_ref(provider); data->watch = vpn_rtnl_add_newlink_watch(index, vpn_newlink, provider); err = connman_inet_ifup(index); if (err < 0) { if (err == -EALREADY) /* * So the interface is up already, that is just * great. Unfortunately in this case the * newlink watch might not have been called at * all. We must manually call it here so that * the provider can go to ready state and the * routes are setup properly. */ vpn_newlink(IFF_UP, 0, provider); else DBG("Cannot take interface %d up err %d/%s", index, -err, strerror(-err)); } break; case VPN_STATE_UNKNOWN: case VPN_STATE_IDLE: case VPN_STATE_DISCONNECT: case VPN_STATE_FAILURE: vpn_provider_set_state(provider, VPN_PROVIDER_STATE_DISCONNECT); break; case VPN_STATE_AUTH_FAILURE: vpn_provider_indicate_error(provider, VPN_PROVIDER_ERROR_AUTH_FAILED); break; } return; } static int vpn_create_tun(struct vpn_provider *provider) { struct vpn_data *data = vpn_provider_get_data(provider); struct ifreq ifr; int i, fd, index; int ret = 0; if (!data) return -EISCONN; fd = open("/dev/net/tun", O_RDWR | O_CLOEXEC); if (fd < 0) { i = -errno; connman_error("Failed to open /dev/net/tun: %s", strerror(errno)); ret = i; goto exist_err; } memset(&ifr, 0, sizeof(ifr)); ifr.ifr_flags = IFF_TUN | IFF_NO_PI; for (i = 0; i < 256; i++) { sprintf(ifr.ifr_name, "vpn%d", i); if (!ioctl(fd, TUNSETIFF, (void *)&ifr)) break; } if (i == 256) { connman_error("Failed to find available tun device"); close(fd); ret = -ENODEV; goto exist_err; } data->if_name = (char *)g_strdup(ifr.ifr_name); if (!data->if_name) { connman_error("Failed to allocate memory"); close(fd); ret = -ENOMEM; goto exist_err; } if (ioctl(fd, TUNSETPERSIST, 1)) { i = -errno; connman_error("Failed to set tun persistent: %s", strerror(errno)); close(fd); ret = i; goto exist_err; } close(fd); index = connman_inet_ifindex(data->if_name); if (index < 0) { connman_error("Failed to get tun ifindex"); stop_vpn(provider); ret = -EIO; goto exist_err; } vpn_provider_set_index(provider, index); return 0; exist_err: return ret; } static int vpn_connect(struct vpn_provider *provider, vpn_provider_connect_cb_t cb, const char *dbus_sender, void *user_data) { struct vpn_data *data = vpn_provider_get_data(provider); struct vpn_driver_data *vpn_driver_data; const char *name; int ret = 0; enum vpn_state state = VPN_STATE_UNKNOWN; if (data) state = data->state; DBG("data %p state %d", data, state); switch (state) { case VPN_STATE_UNKNOWN: data = g_try_new0(struct vpn_data, 1); if (!data) return -ENOMEM; data->provider = vpn_provider_ref(provider); data->watch = 0; data->flags = 0; data->task = NULL; vpn_provider_set_data(provider, data); /* fall through */ case VPN_STATE_DISCONNECT: case VPN_STATE_IDLE: case VPN_STATE_FAILURE: case VPN_STATE_AUTH_FAILURE: data->state = VPN_STATE_IDLE; break; case VPN_STATE_CONNECT: return -EINPROGRESS; case VPN_STATE_READY: return -EISCONN; } name = vpn_provider_get_driver_name(provider); if (!name) return -EINVAL; vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (!vpn_driver_data || !vpn_driver_data->vpn_driver) { ret = -EINVAL; goto exist_err; } if (vpn_driver_data->vpn_driver->flags != VPN_FLAG_NO_TUN) { ret = vpn_create_tun(provider); if (ret < 0) goto exist_err; } data->task = connman_task_create(vpn_driver_data->program); if (!data->task) { ret = -ENOMEM; stop_vpn(provider); goto exist_err; } if (connman_task_set_notify(data->task, "notify", vpn_notify, provider)) { ret = -ENOMEM; stop_vpn(provider); connman_task_destroy(data->task); data->task = NULL; goto exist_err; } if(vpn_driver_data->vpn_driver->set_event_cb) vpn_driver_data->vpn_driver->set_event_cb(vpn_event, provider); ret = vpn_driver_data->vpn_driver->connect(provider, data->task, data->if_name, cb, dbus_sender, user_data); if (ret < 0 && ret != -EINPROGRESS) { stop_vpn(provider); connman_task_destroy(data->task); data->task = NULL; goto exist_err; } DBG("%s started with dev %s", vpn_driver_data->provider_driver.name, data->if_name); data->state = VPN_STATE_CONNECT; return -EINPROGRESS; exist_err: vpn_provider_set_index(provider, -1); vpn_provider_set_data(provider, NULL); vpn_provider_unref(data->provider); g_free(data->if_name); g_free(data); return ret; } static int vpn_probe(struct vpn_provider *provider) { return 0; } static int vpn_disconnect(struct vpn_provider *provider) { struct vpn_data *data = vpn_provider_get_data(provider); struct vpn_driver_data *vpn_driver_data; const char *name; DBG("disconnect provider %p:", provider); if (!data) return 0; name = vpn_provider_get_driver_name(provider); if (!name) return 0; vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (vpn_driver_data->vpn_driver->disconnect) vpn_driver_data->vpn_driver->disconnect(provider); if (data->watch != 0) { vpn_provider_unref(provider); vpn_rtnl_remove_watch(data->watch); data->watch = 0; } data->state = VPN_STATE_DISCONNECT; connman_task_stop(data->task); return 0; } static int vpn_remove(struct vpn_provider *provider) { struct vpn_data *data; data = vpn_provider_get_data(provider); if (!data) return 0; if (data->watch != 0) { vpn_provider_unref(provider); vpn_rtnl_remove_watch(data->watch); data->watch = 0; } connman_task_stop(data->task); g_usleep(G_USEC_PER_SEC); stop_vpn(provider); return 0; } static int vpn_save(struct vpn_provider *provider, GKeyFile *keyfile) { struct vpn_driver_data *vpn_driver_data; const char *name; name = vpn_provider_get_driver_name(provider); vpn_driver_data = g_hash_table_lookup(driver_hash, name); if (vpn_driver_data && vpn_driver_data->vpn_driver->save) return vpn_driver_data->vpn_driver->save(provider, keyfile); return 0; } int vpn_register(const char *name, struct vpn_driver *vpn_driver, const char *program) { struct vpn_driver_data *data; data = g_try_new0(struct vpn_driver_data, 1); if (!data) return -ENOMEM; data->name = name; data->program = program; data->vpn_driver = vpn_driver; data->provider_driver.name = name; data->provider_driver.disconnect = vpn_disconnect; data->provider_driver.connect = vpn_connect; data->provider_driver.probe = vpn_probe; data->provider_driver.remove = vpn_remove; data->provider_driver.save = vpn_save; if (!driver_hash) driver_hash = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free); if (!driver_hash) { connman_error("driver_hash not initialized for %s", name); g_free(data); return -ENOMEM; } g_hash_table_replace(driver_hash, (char *)name, data); vpn_provider_driver_register(&data->provider_driver); return 0; } void vpn_unregister(const char *name) { struct vpn_driver_data *data; data = g_hash_table_lookup(driver_hash, name); if (!data) return; vpn_provider_driver_unregister(&data->provider_driver); g_hash_table_remove(driver_hash, name); if (g_hash_table_size(driver_hash) == 0) g_hash_table_destroy(driver_hash); }