| /* |
| * |
| * 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 <config.h> |
| #endif |
| |
| #include <stdlib.h> |
| #include <string.h> |
| #include <errno.h> |
| #include <unistd.h> |
| #include <net/if.h> |
| |
| #include <glib.h> |
| |
| #define CONNMAN_API_SUBJECT_TO_CHANGE |
| #include <connman/plugin.h> |
| #include <connman/log.h> |
| #include <connman/task.h> |
| #include <connman/ipconfig.h> |
| #include <connman/dbus.h> |
| #include <connman/agent.h> |
| #include <connman/setting.h> |
| #include <connman/vpn-dbus.h> |
| |
| #include "../vpn-provider.h" |
| #include "../vpn-agent.h" |
| |
| #include "vpn.h" |
| |
| #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0])) |
| |
| struct { |
| const char *cm_opt; |
| const char *oc_opt; |
| char has_value; |
| } oc_options[] = { |
| { "OpenConnect.NoCertCheck", "--no-cert-check", 0 }, |
| }; |
| |
| struct oc_private_data { |
| struct vpn_provider *provider; |
| struct connman_task *task; |
| char *if_name; |
| vpn_provider_connect_cb_t cb; |
| void *user_data; |
| }; |
| |
| static void free_private_data(struct oc_private_data *data) |
| { |
| g_free(data->if_name); |
| g_free(data); |
| } |
| |
| static int task_append_config_data(struct vpn_provider *provider, |
| struct connman_task *task) |
| { |
| const char *option; |
| int i; |
| |
| for (i = 0; i < (int)ARRAY_SIZE(oc_options); i++) { |
| if (!oc_options[i].oc_opt) |
| continue; |
| |
| option = vpn_provider_get_string(provider, |
| oc_options[i].cm_opt); |
| if (!option) |
| continue; |
| |
| if (connman_task_add_argument(task, |
| oc_options[i].oc_opt, |
| oc_options[i].has_value ? option : NULL) < 0) |
| return -EIO; |
| } |
| |
| return 0; |
| } |
| |
| static int oc_notify(DBusMessage *msg, struct vpn_provider *provider) |
| { |
| DBusMessageIter iter, dict; |
| const char *reason, *key, *value; |
| char *domain = NULL; |
| char *addressv4 = NULL, *addressv6 = NULL; |
| char *netmask = NULL, *gateway = NULL; |
| unsigned char prefix_len = 0; |
| struct connman_ipaddress *ipaddress; |
| |
| dbus_message_iter_init(msg, &iter); |
| |
| dbus_message_iter_get_basic(&iter, &reason); |
| dbus_message_iter_next(&iter); |
| |
| if (!provider) { |
| connman_error("No provider found"); |
| return VPN_STATE_FAILURE; |
| } |
| |
| if (strcmp(reason, "connect")) |
| return VPN_STATE_DISCONNECT; |
| |
| domain = g_strdup(vpn_provider_get_string(provider, "VPN.Domain")); |
| |
| dbus_message_iter_recurse(&iter, &dict); |
| |
| while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) { |
| DBusMessageIter entry; |
| |
| dbus_message_iter_recurse(&dict, &entry); |
| dbus_message_iter_get_basic(&entry, &key); |
| dbus_message_iter_next(&entry); |
| dbus_message_iter_get_basic(&entry, &value); |
| |
| if (strcmp(key, "CISCO_CSTP_OPTIONS")) |
| DBG("%s = %s", key, value); |
| |
| if (!strcmp(key, "VPNGATEWAY")) |
| gateway = g_strdup(value); |
| |
| if (!strcmp(key, "INTERNAL_IP4_ADDRESS")) |
| addressv4 = g_strdup(value); |
| |
| if (!strcmp(key, "INTERNAL_IP6_ADDRESS")) { |
| addressv6 = g_strdup(value); |
| prefix_len = 128; |
| } |
| |
| if (!strcmp(key, "INTERNAL_IP4_NETMASK")) |
| netmask = g_strdup(value); |
| |
| if (!strcmp(key, "INTERNAL_IP6_NETMASK")) { |
| char *sep; |
| |
| /* The netmask contains the address and the prefix */ |
| sep = strchr(value, '/'); |
| if (sep) { |
| unsigned char ip_len = sep - value; |
| |
| addressv6 = g_strndup(value, ip_len); |
| prefix_len = (unsigned char) |
| strtol(sep + 1, NULL, 10); |
| } |
| } |
| |
| if (!strcmp(key, "INTERNAL_IP4_DNS") || |
| !strcmp(key, "INTERNAL_IP6_DNS")) |
| vpn_provider_set_nameservers(provider, value); |
| |
| if (!strcmp(key, "CISCO_PROXY_PAC")) |
| vpn_provider_set_pac(provider, value); |
| |
| if (!domain && !strcmp(key, "CISCO_DEF_DOMAIN")) { |
| g_free(domain); |
| domain = g_strdup(value); |
| } |
| |
| if (g_str_has_prefix(key, "CISCO_SPLIT_INC") || |
| g_str_has_prefix(key, "CISCO_IPV6_SPLIT_INC")) |
| vpn_provider_append_route(provider, key, value); |
| |
| dbus_message_iter_next(&dict); |
| } |
| |
| DBG("%p %p", addressv4, addressv6); |
| |
| if (addressv4) |
| ipaddress = connman_ipaddress_alloc(AF_INET); |
| else if (addressv6) |
| ipaddress = connman_ipaddress_alloc(AF_INET6); |
| else |
| ipaddress = NULL; |
| |
| if (!ipaddress) { |
| g_free(addressv4); |
| g_free(addressv6); |
| g_free(netmask); |
| g_free(gateway); |
| g_free(domain); |
| |
| return VPN_STATE_FAILURE; |
| } |
| |
| if (addressv4) |
| connman_ipaddress_set_ipv4(ipaddress, addressv4, |
| netmask, gateway); |
| else |
| connman_ipaddress_set_ipv6(ipaddress, addressv6, |
| prefix_len, gateway); |
| vpn_provider_set_ipaddress(provider, ipaddress); |
| vpn_provider_set_domain(provider, domain); |
| |
| g_free(addressv4); |
| g_free(addressv6); |
| g_free(netmask); |
| g_free(gateway); |
| g_free(domain); |
| connman_ipaddress_free(ipaddress); |
| |
| return VPN_STATE_CONNECT; |
| } |
| |
| static int run_connect(struct vpn_provider *provider, |
| struct connman_task *task, const char *if_name, |
| vpn_provider_connect_cb_t cb, void *user_data) |
| { |
| const char *vpnhost, *vpncookie, *servercert, *mtu; |
| int fd, err = 0, len; |
| |
| vpnhost = vpn_provider_get_string(provider, "OpenConnect.VPNHost"); |
| if (!vpnhost) |
| vpnhost = vpn_provider_get_string(provider, "Host"); |
| vpncookie = vpn_provider_get_string(provider, "OpenConnect.Cookie"); |
| servercert = vpn_provider_get_string(provider, |
| "OpenConnect.ServerCert"); |
| |
| if (!vpncookie || !servercert) { |
| err = -EINVAL; |
| goto done; |
| } |
| |
| task_append_config_data(provider, task); |
| |
| connman_task_add_argument(task, "--servercert", servercert); |
| |
| mtu = vpn_provider_get_string(provider, "VPN.MTU"); |
| |
| if (mtu) |
| connman_task_add_argument(task, "--mtu", (char *)mtu); |
| |
| connman_task_add_argument(task, "--syslog", NULL); |
| connman_task_add_argument(task, "--cookie-on-stdin", NULL); |
| |
| connman_task_add_argument(task, "--script", |
| SCRIPTDIR "/openconnect-script"); |
| |
| connman_task_add_argument(task, "--interface", if_name); |
| |
| connman_task_add_argument(task, (char *)vpnhost, NULL); |
| |
| err = connman_task_run(task, vpn_died, provider, |
| &fd, NULL, NULL); |
| if (err < 0) { |
| connman_error("openconnect failed to start"); |
| err = -EIO; |
| goto done; |
| } |
| |
| len = strlen(vpncookie); |
| if (write(fd, vpncookie, len) != (ssize_t)len || |
| write(fd, "\n", 1) != 1) { |
| connman_error("openconnect failed to take cookie on stdin"); |
| err = -EIO; |
| goto done; |
| } |
| |
| done: |
| if (cb) |
| cb(provider, user_data, err); |
| |
| return err; |
| } |
| |
| static void request_input_append_informational(DBusMessageIter *iter, |
| void *user_data) |
| { |
| const char *str; |
| |
| str = "string"; |
| connman_dbus_dict_append_basic(iter, "Type", DBUS_TYPE_STRING, &str); |
| |
| str = "informational"; |
| connman_dbus_dict_append_basic(iter, "Requirement", DBUS_TYPE_STRING, |
| &str); |
| |
| str = user_data; |
| connman_dbus_dict_append_basic(iter, "Value", DBUS_TYPE_STRING, &str); |
| } |
| |
| static void request_input_append_mandatory(DBusMessageIter *iter, |
| void *user_data) |
| { |
| char *str = "string"; |
| |
| connman_dbus_dict_append_basic(iter, "Type", |
| DBUS_TYPE_STRING, &str); |
| str = "mandatory"; |
| connman_dbus_dict_append_basic(iter, "Requirement", |
| DBUS_TYPE_STRING, &str); |
| } |
| |
| static void request_input_cookie_reply(DBusMessage *reply, void *user_data) |
| { |
| struct oc_private_data *data = user_data; |
| char *cookie = NULL, *servercert = NULL, *vpnhost = NULL; |
| char *key; |
| DBusMessageIter iter, dict; |
| |
| DBG("provider %p", data->provider); |
| |
| if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) |
| goto err; |
| |
| if (!vpn_agent_check_reply_has_dict(reply)) |
| goto err; |
| |
| dbus_message_iter_init(reply, &iter); |
| dbus_message_iter_recurse(&iter, &dict); |
| while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) { |
| DBusMessageIter entry, value; |
| |
| dbus_message_iter_recurse(&dict, &entry); |
| if (dbus_message_iter_get_arg_type(&entry) != DBUS_TYPE_STRING) |
| break; |
| |
| dbus_message_iter_get_basic(&entry, &key); |
| |
| if (g_str_equal(key, "OpenConnect.Cookie")) { |
| dbus_message_iter_next(&entry); |
| if (dbus_message_iter_get_arg_type(&entry) |
| != DBUS_TYPE_VARIANT) |
| break; |
| dbus_message_iter_recurse(&entry, &value); |
| if (dbus_message_iter_get_arg_type(&value) |
| != DBUS_TYPE_STRING) |
| break; |
| dbus_message_iter_get_basic(&value, &cookie); |
| vpn_provider_set_string_hide_value(data->provider, |
| key, cookie); |
| |
| } else if (g_str_equal(key, "OpenConnect.ServerCert")) { |
| dbus_message_iter_next(&entry); |
| if (dbus_message_iter_get_arg_type(&entry) |
| != DBUS_TYPE_VARIANT) |
| break; |
| dbus_message_iter_recurse(&entry, &value); |
| if (dbus_message_iter_get_arg_type(&value) |
| != DBUS_TYPE_STRING) |
| break; |
| dbus_message_iter_get_basic(&value, &servercert); |
| vpn_provider_set_string(data->provider, key, |
| servercert); |
| |
| } else if (g_str_equal(key, "OpenConnect.VPNHost")) { |
| dbus_message_iter_next(&entry); |
| if (dbus_message_iter_get_arg_type(&entry) |
| != DBUS_TYPE_VARIANT) |
| break; |
| dbus_message_iter_recurse(&entry, &value); |
| if (dbus_message_iter_get_arg_type(&value) |
| != DBUS_TYPE_STRING) |
| break; |
| dbus_message_iter_get_basic(&value, &vpnhost); |
| vpn_provider_set_string(data->provider, key, vpnhost); |
| } |
| |
| dbus_message_iter_next(&dict); |
| } |
| |
| if (!cookie || !servercert || !vpnhost) |
| goto err; |
| |
| run_connect(data->provider, data->task, data->if_name, data->cb, |
| data->user_data); |
| |
| free_private_data(data); |
| |
| return; |
| |
| err: |
| vpn_provider_indicate_error(data->provider, |
| VPN_PROVIDER_ERROR_AUTH_FAILED); |
| |
| free_private_data(data); |
| } |
| |
| static int request_cookie_input(struct vpn_provider *provider, |
| struct oc_private_data *data, |
| const char *dbus_sender) |
| { |
| DBusMessage *message; |
| const char *path, *agent_sender, *agent_path; |
| DBusMessageIter iter; |
| DBusMessageIter dict; |
| const char *str; |
| int err; |
| void *agent; |
| |
| agent = connman_agent_get_info(dbus_sender, &agent_sender, |
| &agent_path); |
| if (!provider || !agent || !agent_path) |
| return -ESRCH; |
| |
| message = dbus_message_new_method_call(agent_sender, agent_path, |
| VPN_AGENT_INTERFACE, |
| "RequestInput"); |
| if (!message) |
| return -ENOMEM; |
| |
| dbus_message_iter_init_append(message, &iter); |
| |
| path = vpn_provider_get_path(provider); |
| dbus_message_iter_append_basic(&iter, |
| DBUS_TYPE_OBJECT_PATH, &path); |
| |
| connman_dbus_dict_open(&iter, &dict); |
| |
| str = vpn_provider_get_string(provider, "OpenConnect.CACert"); |
| if (str) |
| connman_dbus_dict_append_dict(&dict, "OpenConnect.CACert", |
| request_input_append_informational, |
| (void *)str); |
| |
| str = vpn_provider_get_string(provider, "OpenConnect.ClientCert"); |
| if (str) |
| connman_dbus_dict_append_dict(&dict, "OpenConnect.ClientCert", |
| request_input_append_informational, |
| (void *)str); |
| |
| connman_dbus_dict_append_dict(&dict, "OpenConnect.ServerCert", |
| request_input_append_mandatory, NULL); |
| |
| connman_dbus_dict_append_dict(&dict, "OpenConnect.VPNHost", |
| request_input_append_mandatory, NULL); |
| |
| connman_dbus_dict_append_dict(&dict, "OpenConnect.Cookie", |
| request_input_append_mandatory, NULL); |
| |
| vpn_agent_append_host_and_name(&dict, provider); |
| |
| connman_dbus_dict_close(&iter, &dict); |
| |
| err = connman_agent_queue_message(provider, message, |
| connman_timeout_input_request(), |
| request_input_cookie_reply, data, agent); |
| |
| if (err < 0 && err != -EBUSY) { |
| DBG("error %d sending agent request", err); |
| dbus_message_unref(message); |
| |
| return err; |
| } |
| |
| dbus_message_unref(message); |
| |
| return -EINPROGRESS; |
| } |
| |
| static int oc_connect(struct vpn_provider *provider, |
| struct connman_task *task, const char *if_name, |
| vpn_provider_connect_cb_t cb, |
| const char *dbus_sender, void *user_data) |
| { |
| const char *vpnhost, *vpncookie, *servercert; |
| int err; |
| |
| vpnhost = vpn_provider_get_string(provider, "Host"); |
| if (!vpnhost) { |
| connman_error("Host not set; cannot enable VPN"); |
| return -EINVAL; |
| } |
| |
| vpncookie = vpn_provider_get_string(provider, "OpenConnect.Cookie"); |
| servercert = vpn_provider_get_string(provider, |
| "OpenConnect.ServerCert"); |
| if (!vpncookie || !servercert) { |
| struct oc_private_data *data; |
| |
| data = g_try_new0(struct oc_private_data, 1); |
| if (!data) |
| return -ENOMEM; |
| |
| data->provider = provider; |
| data->task = task; |
| data->if_name = g_strdup(if_name); |
| data->cb = cb; |
| data->user_data = user_data; |
| |
| err = request_cookie_input(provider, data, dbus_sender); |
| if (err != -EINPROGRESS) { |
| vpn_provider_indicate_error(data->provider, |
| VPN_PROVIDER_ERROR_LOGIN_FAILED); |
| free_private_data(data); |
| } |
| return err; |
| } |
| |
| return run_connect(provider, task, if_name, cb, user_data); |
| } |
| |
| static int oc_save(struct vpn_provider *provider, GKeyFile *keyfile) |
| { |
| const char *setting, *option; |
| int i; |
| |
| setting = vpn_provider_get_string(provider, |
| "OpenConnect.ServerCert"); |
| if (setting) |
| g_key_file_set_string(keyfile, |
| vpn_provider_get_save_group(provider), |
| "OpenConnect.ServerCert", setting); |
| |
| setting = vpn_provider_get_string(provider, |
| "OpenConnect.CACert"); |
| if (setting) |
| g_key_file_set_string(keyfile, |
| vpn_provider_get_save_group(provider), |
| "OpenConnect.CACert", setting); |
| |
| setting = vpn_provider_get_string(provider, |
| "VPN.MTU"); |
| if (setting) |
| g_key_file_set_string(keyfile, |
| vpn_provider_get_save_group(provider), |
| "VPN.MTU", setting); |
| |
| for (i = 0; i < (int)ARRAY_SIZE(oc_options); i++) { |
| if (strncmp(oc_options[i].cm_opt, "OpenConnect.", 12) == 0) { |
| option = vpn_provider_get_string(provider, |
| oc_options[i].cm_opt); |
| if (!option) |
| continue; |
| |
| g_key_file_set_string(keyfile, |
| vpn_provider_get_save_group(provider), |
| oc_options[i].cm_opt, option); |
| } |
| } |
| |
| return 0; |
| } |
| |
| static int oc_error_code(struct vpn_provider *provider, int exit_code) |
| { |
| |
| switch (exit_code) { |
| case 1: |
| case 2: |
| vpn_provider_set_string_hide_value(provider, |
| "OpenConnect.Cookie", NULL); |
| return VPN_PROVIDER_ERROR_LOGIN_FAILED; |
| default: |
| return VPN_PROVIDER_ERROR_UNKNOWN; |
| } |
| } |
| |
| static struct vpn_driver vpn_driver = { |
| .notify = oc_notify, |
| .connect = oc_connect, |
| .error_code = oc_error_code, |
| .save = oc_save, |
| }; |
| |
| static int openconnect_init(void) |
| { |
| return vpn_register("openconnect", &vpn_driver, OPENCONNECT); |
| } |
| |
| static void openconnect_exit(void) |
| { |
| vpn_unregister("openconnect"); |
| } |
| |
| CONNMAN_PLUGIN_DEFINE(openconnect, "OpenConnect VPN plugin", VERSION, |
| CONNMAN_PLUGIN_PRIORITY_DEFAULT, openconnect_init, openconnect_exit) |