Imported Upstream connman version 1.38
[platform/upstream/connman.git] / vpn / plugins / pptp.c
old mode 100644 (file)
new mode 100755 (executable)
index 6843793..5fc861e
@@ -2,8 +2,8 @@
  *
  *  ConnMan VPN daemon
  *
- *  Copyright (C) 2010  BMW Car IT GmbH. All rights reserved.
- *  Copyright (C) 2012  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2010,2013-2014  BMW Car IT GmbH.
+ *  Copyright (C) 2012-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
 #include <connman/task.h>
 #include <connman/dbus.h>
 #include <connman/inet.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"
 
@@ -57,25 +63,32 @@ struct {
        int type;
 } pptp_options[] = {
        { "PPTP.User", "user", NULL, OPT_STRING },
-       { "PPTP.EchoFailure", "lcp-echo-failure", "0", OPT_STRING },
-       { "PPTP.EchoInterval", "lcp-echo-interval", "0", OPT_STRING },
-       { "PPTP.Debug", "debug", NULL, OPT_STRING },
-       { "PPTP.RefuseEAP", "refuse-eap", NULL, OPT_BOOL },
-       { "PPTP.RefusePAP", "refuse-pap", NULL, OPT_BOOL },
-       { "PPTP.RefuseCHAP", "refuse-chap", NULL, OPT_BOOL },
-       { "PPTP.RefuseMSCHAP", "refuse-mschap", NULL, OPT_BOOL },
-       { "PPTP.RefuseMSCHAP2", "refuse-mschapv2", NULL, OPT_BOOL },
-       { "PPTP.NoBSDComp", "nobsdcomp", NULL, OPT_BOOL },
-       { "PPTP.NoDeflate", "nodeflate", NULL, OPT_BOOL },
-       { "PPTP.RequirMPPE", "require-mppe", NULL, OPT_BOOL },
-       { "PPTP.RequirMPPE40", "require-mppe-40", NULL, OPT_BOOL },
-       { "PPTP.RequirMPPE128", "require-mppe-128", NULL, OPT_BOOL },
-       { "PPTP.RequirMPPEStateful", "mppe-stateful", NULL, OPT_BOOL },
-       { "PPTP.NoVJ", "no-vj-comp", NULL, OPT_BOOL },
+       { "PPPD.EchoFailure", "lcp-echo-failure", "0", OPT_STRING },
+       { "PPPD.EchoInterval", "lcp-echo-interval", "0", OPT_STRING },
+       { "PPPD.Debug", "debug", NULL, OPT_STRING },
+       { "PPPD.RefuseEAP", "refuse-eap", NULL, OPT_BOOL },
+       { "PPPD.RefusePAP", "refuse-pap", NULL, OPT_BOOL },
+       { "PPPD.RefuseCHAP", "refuse-chap", NULL, OPT_BOOL },
+       { "PPPD.RefuseMSCHAP", "refuse-mschap", NULL, OPT_BOOL },
+       { "PPPD.RefuseMSCHAP2", "refuse-mschapv2", NULL, OPT_BOOL },
+       { "PPPD.NoBSDComp", "nobsdcomp", NULL, OPT_BOOL },
+       { "PPPD.NoDeflate", "nodeflate", NULL, OPT_BOOL },
+       { "PPPD.RequirMPPE", "require-mppe", NULL, OPT_BOOL },
+       { "PPPD.RequirMPPE40", "require-mppe-40", NULL, OPT_BOOL },
+       { "PPPD.RequirMPPE128", "require-mppe-128", NULL, OPT_BOOL },
+       { "PPPD.RequirMPPEStateful", "mppe-stateful", NULL, OPT_BOOL },
+       { "PPPD.NoVJ", "novj", NULL, OPT_BOOL },
 };
 
 static DBusConnection *connection;
 
+struct pptp_private_data {
+       struct connman_task *task;
+       char *if_name;
+       vpn_provider_connect_cb_t cb;
+       void *user_data;
+};
+
 static DBusMessage *pptp_get_sec(struct connman_task *task,
                                DBusMessage *msg, void *user_data)
 {
@@ -83,17 +96,17 @@ static DBusMessage *pptp_get_sec(struct connman_task *task,
        struct vpn_provider *provider = user_data;
        DBusMessage *reply;
 
-       if (dbus_message_get_no_reply(msg) == TRUE)
+       if (dbus_message_get_no_reply(msg))
                return NULL;
 
        user = vpn_provider_get_string(provider, "PPTP.User");
        passwd = vpn_provider_get_string(provider, "PPTP.Password");
-       if (user == NULL || strlen(user) == 0 ||
-                               passwd == NULL || strlen(passwd) == 0)
+       if (!user || strlen(user) == 0 ||
+                               !passwd || strlen(passwd) == 0)
                return NULL;
 
        reply = dbus_message_new_method_return(msg);
-       if (reply == NULL)
+       if (!reply)
                return NULL;
 
        dbus_message_append_args(reply, DBUS_TYPE_STRING, &user,
@@ -115,13 +128,20 @@ static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
        dbus_message_iter_get_basic(&iter, &reason);
        dbus_message_iter_next(&iter);
 
-       if (provider == NULL) {
+       if (!provider) {
                connman_error("No provider found");
                return VPN_STATE_FAILURE;
        }
 
-       if (strcmp(reason, "auth failed") == 0)
+       if (strcmp(reason, "auth failed") == 0) {
+               DBG("authentication failure");
+
+               vpn_provider_set_string(provider, "PPTP.User", NULL);
+               vpn_provider_set_string_hide_value(provider, "PPTP.Password",
+                                       NULL);
+
                return VPN_STATE_AUTH_FAILURE;
+       }
 
        if (strcmp(reason, "connect"))
                return VPN_STATE_DISCONNECT;
@@ -138,20 +158,14 @@ static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
 
                DBG("%s = %s", key, value);
 
-               if (!strcmp(key, "INTERNAL_IP4_ADDRESS")) {
-                       vpn_provider_set_string(provider, "Address", value);
+               if (!strcmp(key, "INTERNAL_IP4_ADDRESS"))
                        addressv4 = g_strdup(value);
-               }
 
-               if (!strcmp(key, "INTERNAL_IP4_NETMASK")) {
-                       vpn_provider_set_string(provider, "Netmask", value);
+               if (!strcmp(key, "INTERNAL_IP4_NETMASK"))
                        netmask = g_strdup(value);
-               }
 
-               if (!strcmp(key, "INTERNAL_IP4_DNS")) {
-                       vpn_provider_set_string(provider, "DNS", value);
+               if (!strcmp(key, "INTERNAL_IP4_DNS"))
                        nameservers = g_strdup(value);
-               }
 
                if (!strcmp(key, "INTERNAL_IFNAME"))
                        ifname = g_strdup(value);
@@ -167,12 +181,12 @@ static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
                return VPN_STATE_FAILURE;
        }
 
-       if (addressv4 != NULL)
+       if (addressv4)
                ipaddress = connman_ipaddress_alloc(AF_INET);
 
        g_free(ifname);
 
-       if (ipaddress == NULL) {
+       if (!ipaddress) {
                connman_error("No IP address for provider");
                g_free(addressv4);
                g_free(netmask);
@@ -181,12 +195,12 @@ static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
        }
 
        value = vpn_provider_get_string(provider, "HostIP");
-       if (value != NULL) {
+       if (value) {
                vpn_provider_set_string(provider, "Gateway", value);
                gateway = g_strdup(value);
        }
 
-       if (addressv4 != NULL)
+       if (addressv4)
                connman_ipaddress_set_ipv4(ipaddress, addressv4, netmask,
                                        gateway);
 
@@ -205,14 +219,40 @@ static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
 static int pptp_save(struct vpn_provider *provider, GKeyFile *keyfile)
 {
        const char *option;
+       bool pptp_option, pppd_option;
        int i;
 
        for (i = 0; i < (int)ARRAY_SIZE(pptp_options); i++) {
-               if (strncmp(pptp_options[i].cm_opt, "PPTP.", 5) == 0) {
+               pptp_option = pppd_option = false;
+
+               if (strncmp(pptp_options[i].cm_opt, "PPTP.", 5) == 0)
+                       pptp_option = true;
+
+               if (strncmp(pptp_options[i].cm_opt, "PPPD.", 5) == 0)
+                       pppd_option = true;
+
+               if (pptp_option || pppd_option) {
                        option = vpn_provider_get_string(provider,
                                                        pptp_options[i].cm_opt);
-                       if (option == NULL)
-                               continue;
+                       if (!option) {
+                               /*
+                                * Check if the option prefix is PPTP as the
+                                * PPPD options were using PPTP prefix earlier.
+                                */
+                               char *pptp_str;
+
+                               if (!pppd_option)
+                                       continue;
+
+                               pptp_str = g_strdup_printf("PPTP.%s",
+                                               &pptp_options[i].cm_opt[5]);
+                               option = vpn_provider_get_string(provider,
+                                                               pptp_str);
+                               g_free(pptp_str);
+
+                               if (!option)
+                                       continue;
+                       }
 
                        g_key_file_set_string(keyfile,
                                        vpn_provider_get_save_group(provider),
@@ -220,19 +260,13 @@ static int pptp_save(struct vpn_provider *provider, GKeyFile *keyfile)
                }
        }
 
-       option = vpn_provider_get_string(provider, "PPTP.Password");
-       if (option != NULL)
-               g_key_file_set_string(keyfile,
-                                       vpn_provider_get_save_group(provider),
-                                       "PPTP.Password", option);
-
        return 0;
 }
 
 static void pptp_write_bool_option(struct connman_task *task,
                                const char *key, const char *value)
 {
-       if (key != NULL && value != NULL) {
+       if (key && value) {
                if (strcasecmp(value, "yes") == 0 ||
                                strcasecmp(value, "true") == 0 ||
                                strcmp(value, "1") == 0)
@@ -240,28 +274,188 @@ static void pptp_write_bool_option(struct connman_task *task,
        }
 }
 
-static int pptp_connect(struct vpn_provider *provider,
-               struct connman_task *task, const char *if_name)
+struct request_input_reply {
+       struct vpn_provider *provider;
+       vpn_provider_password_cb_t callback;
+       void *user_data;
+};
+
+static void request_input_reply(DBusMessage *reply, void *user_data)
+{
+       struct request_input_reply *pptp_reply = user_data;
+       struct pptp_private_data *data;
+       const char *error = NULL;
+       char *username = NULL, *password = NULL;
+       char *key;
+       DBusMessageIter iter, dict;
+       int err;
+
+       DBG("provider %p", pptp_reply->provider);
+
+       if (!reply)
+               goto done;
+
+       data = pptp_reply->user_data;
+
+       err = vpn_agent_check_and_process_reply_error(reply,
+                               pptp_reply->provider, data->task, data->cb,
+                               data->user_data);
+       if (err) {
+               /* Ensure cb is called only once */
+               data->cb = NULL;
+               data->user_data = NULL;
+               error = dbus_message_get_error_name(reply);
+               goto done;
+       }
+
+       if (!vpn_agent_check_reply_has_dict(reply))
+               goto done;
+
+       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;
+               const char *str;
+
+               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, "Username")) {
+                       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, &str);
+                       username = g_strdup(str);
+               }
+
+               if (g_str_equal(key, "Password")) {
+                       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, &str);
+                       password = g_strdup(str);
+               }
+
+               dbus_message_iter_next(&dict);
+       }
+
+done:
+       pptp_reply->callback(pptp_reply->provider, username, password, error,
+                               pptp_reply->user_data);
+
+       g_free(username);
+       g_free(password);
+
+       g_free(pptp_reply);
+}
+
+typedef void (* request_cb_t)(struct vpn_provider *provider,
+                               const char *username, const char *password,
+                               const char *error, void *user_data);
+
+static int request_input(struct vpn_provider *provider,
+                       request_cb_t callback, const char *dbus_sender,
+                       void *user_data)
+{
+       DBusMessage *message;
+       const char *path, *agent_sender, *agent_path;
+       DBusMessageIter iter;
+       DBusMessageIter dict;
+       struct request_input_reply *pptp_reply;
+       int err;
+       void *agent;
+
+       agent = connman_agent_get_info(dbus_sender, &agent_sender,
+                                                       &agent_path);
+       if (!provider || !agent || !agent_path || !callback)
+               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);
+
+       if (vpn_provider_get_authentication_errors(provider))
+               vpn_agent_append_auth_failure(&dict, provider, NULL);
+
+       vpn_agent_append_user_info(&dict, provider, "PPTP.User");
+
+       vpn_agent_append_host_and_name(&dict, provider);
+
+       connman_dbus_dict_close(&iter, &dict);
+
+       pptp_reply = g_try_new0(struct request_input_reply, 1);
+       if (!pptp_reply) {
+               dbus_message_unref(message);
+               return -ENOMEM;
+       }
+
+       pptp_reply->provider = provider;
+       pptp_reply->callback = callback;
+       pptp_reply->user_data = user_data;
+
+       err = connman_agent_queue_message(provider, message,
+                       connman_timeout_input_request(),
+                       request_input_reply, pptp_reply, agent);
+       if (err < 0 && err != -EBUSY) {
+               DBG("error %d sending agent request", err);
+               dbus_message_unref(message);
+               g_free(pptp_reply);
+               return err;
+       }
+
+       dbus_message_unref(message);
+
+       return -EINPROGRESS;
+}
+
+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 *username, const char *password)
 {
        const char *opt_s, *host;
        char *str;
        int err, i;
 
-       if (connman_task_set_notify(task, "getsec",
-                                       pptp_get_sec, provider))
-               return -ENOMEM;
-
-       host = vpn_provider_get_string(provider, "Host");
-       if (host == NULL) {
-               connman_error("Host not set; cannot enable VPN");
-               return -EINVAL;
+       if (!username || !password) {
+               DBG("Cannot connect username %s password %p",
+                                               username, password);
+               err = -EINVAL;
+               goto done;
        }
 
+       DBG("username %s password %p", username, password);
+
+       host = vpn_provider_get_string(provider, "Host");
        str = g_strdup_printf("%s %s --nolaunchpppd --loglevel 2",
                                PPTP, host);
-       if (str == NULL) {
+       if (!str) {
                connman_error("can not allocate memory");
-               return -ENOMEM;
+               err = -ENOMEM;
+               goto done;
        }
 
        connman_task_add_argument(task, "pty", str);
@@ -269,6 +463,7 @@ static int pptp_connect(struct vpn_provider *provider,
 
        connman_task_add_argument(task, "nodetach", NULL);
        connman_task_add_argument(task, "lock", NULL);
+       connman_task_add_argument(task, "logfd", "2");
        connman_task_add_argument(task, "usepeerdns", NULL);
        connman_task_add_argument(task, "noipdefault", NULL);
        connman_task_add_argument(task, "noauth", NULL);
@@ -278,10 +473,10 @@ static int pptp_connect(struct vpn_provider *provider,
        for (i = 0; i < (int)ARRAY_SIZE(pptp_options); i++) {
                opt_s = vpn_provider_get_string(provider,
                                        pptp_options[i].cm_opt);
-               if (opt_s == NULL)
+               if (!opt_s)
                        opt_s = pptp_options[i].vpnc_default;
 
-               if (opt_s == NULL)
+               if (!opt_s)
                        continue;
 
                if (pptp_options[i].type == OPT_STRING)
@@ -299,13 +494,100 @@ static int pptp_connect(struct vpn_provider *provider,
                                NULL, NULL, NULL);
        if (err < 0) {
                connman_error("pptp failed to start");
-               return -EIO;
+               err = -EIO;
+               goto done;
        }
 
-       return 0;
+done:
+       if (cb)
+               cb(provider, user_data, err);
+
+       return err;
 }
 
-static int pptp_error_code(int exit_code)
+static void free_private_data(struct pptp_private_data *data)
+{
+       g_free(data->if_name);
+       g_free(data);
+}
+
+static void request_input_cb(struct vpn_provider *provider,
+                       const char *username,
+                       const char *password,
+                       const char *error, void *user_data)
+{
+       struct pptp_private_data *data = user_data;
+
+       if (!username || !password)
+               DBG("Requesting username %s or password failed, error %s",
+                       username, error);
+       else if (error)
+               DBG("error %s", error);
+
+       vpn_provider_set_string(provider, "PPTP.User", username);
+       vpn_provider_set_string_hide_value(provider, "PPTP.Password",
+                                                               password);
+
+       run_connect(provider, data->task, data->if_name, data->cb,
+               data->user_data, username, password);
+
+       free_private_data(data);
+}
+
+static int pptp_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 *username, *password;
+       int err;
+
+       DBG("iface %s provider %p user %p", if_name, provider, user_data);
+
+       if (connman_task_set_notify(task, "getsec",
+                                       pptp_get_sec, provider)) {
+               err = -ENOMEM;
+               goto error;
+       }
+
+       username = vpn_provider_get_string(provider, "PPTP.User");
+       password = vpn_provider_get_string(provider, "PPTP.Password");
+
+       DBG("user %s password %p", username, password);
+
+       if (!username || !password) {
+               struct pptp_private_data *data;
+
+               data = g_try_new0(struct pptp_private_data, 1);
+               if (!data)
+                       return -ENOMEM;
+
+               data->task = task;
+               data->if_name = g_strdup(if_name);
+               data->cb = cb;
+               data->user_data = user_data;
+
+               err = request_input(provider, request_input_cb, dbus_sender,
+                                                                       data);
+               if (err != -EINPROGRESS) {
+                       free_private_data(data);
+                       goto done;
+               }
+               return err;
+       }
+
+done:
+       return run_connect(provider, task, if_name, cb, user_data,
+                                                       username, password);
+
+error:
+       if (cb)
+               cb(provider, user_data, err);
+
+       return err;
+}
+
+static int pptp_error_code(struct vpn_provider *provider, int exit_code)
 {
 
        switch (exit_code) {
@@ -320,12 +602,23 @@ static int pptp_error_code(int exit_code)
        }
 }
 
+static void pptp_disconnect(struct vpn_provider *provider)
+{
+       if (!provider)
+               return;
+
+       vpn_provider_set_string_hide_value(provider, "PPTP.Password", NULL);
+
+       connman_agent_cancel(provider);
+}
+
 static struct vpn_driver vpn_driver = {
        .flags          = VPN_FLAG_NO_TUN,
        .notify         = pptp_notify,
        .connect        = pptp_connect,
        .error_code     = pptp_error_code,
        .save           = pptp_save,
+       .disconnect     = pptp_disconnect,
 };
 
 static int pptp_init(void)