1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
|
/*
*
* ConnMan VPN daemon
*
* Copyright (C) 2010,2013-2014 BMW Car IT GmbH.
* Copyright (C) 2012-2013 Intel Corporation. All rights reserved.
* Copyright (C) 2019-2021 Jolla Ltd.
*
* 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 <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <net/if.h>
#include <dbus/dbus.h>
#include <glib.h>
#define CONNMAN_API_SUBJECT_TO_CHANGE
#include <connman/plugin.h>
#include <connman/provider.h>
#include <connman/log.h>
#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"
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
enum {
OPT_STRING = 1,
OPT_BOOL = 2,
OPT_PPTP_ONLY = 3,
};
struct {
const char *cm_opt;
const char *pptp_opt;
const char *pptp_default;
int type;
} pptp_options[] = {
{ "PPTP.User", "user", NULL, OPT_STRING },
{ "PPTP.IdleWait", "--idle-wait", NULL, OPT_PPTP_ONLY},
{ "PPTP.MaxEchoWait", "--max-echo-wait", NULL, OPT_PPTP_ONLY},
{ "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 vpn_provider *provider;
struct connman_task *task;
char *if_name;
vpn_provider_connect_cb_t cb;
void *user_data;
};
static void pptp_connect_done(struct pptp_private_data *data, int err)
{
vpn_provider_connect_cb_t cb;
void *user_data;
if (!data || !data->cb)
return;
/* Ensure that callback is called only once */
cb = data->cb;
user_data = data->user_data;
data->cb = NULL;
data->user_data = NULL;
cb(data->provider, user_data, err);
}
static void free_private_data(struct pptp_private_data *data)
{
if (vpn_provider_get_plugin_data(data->provider) == data)
vpn_provider_set_plugin_data(data->provider, NULL);
pptp_connect_done(data, EIO);
vpn_provider_unref(data->provider);
g_free(data->if_name);
g_free(data);
}
static DBusMessage *pptp_get_sec(struct connman_task *task,
DBusMessage *msg, void *user_data)
{
const char *user, *passwd;
struct vpn_provider *provider = user_data;
DBusMessage *reply;
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 || strlen(user) == 0 ||
!passwd || strlen(passwd) == 0)
return NULL;
reply = dbus_message_new_method_return(msg);
if (!reply)
return NULL;
dbus_message_append_args(reply, DBUS_TYPE_STRING, &user,
DBUS_TYPE_STRING, &passwd,
DBUS_TYPE_INVALID);
return reply;
}
static int pptp_notify(DBusMessage *msg, struct vpn_provider *provider)
{
DBusMessageIter iter, dict;
const char *reason, *key, *value;
char *addressv4 = NULL, *netmask = NULL, *gateway = NULL;
char *ifname = NULL, *nameservers = NULL;
struct connman_ipaddress *ipaddress = NULL;
struct pptp_private_data *data;
data = vpn_provider_get_plugin_data(provider);
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, "auth failed") == 0) {
DBG("authentication failure");
vpn_provider_set_string(provider, "PPTP.User", NULL);
vpn_provider_set_string_hide_value(provider, "PPTP.Password",
NULL);
pptp_connect_done(data, EACCES);
return VPN_STATE_AUTH_FAILURE;
}
if (strcmp(reason, "connect")) {
pptp_connect_done(data, EIO);
/*
* Stop the task to avoid potential looping of this state when
* authentication fails.
*/
if (data && data->task)
connman_task_stop(data->task);
return VPN_STATE_DISCONNECT;
}
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);
DBG("%s = %s", key, value);
if (!strcmp(key, "INTERNAL_IP4_ADDRESS"))
addressv4 = g_strdup(value);
if (!strcmp(key, "INTERNAL_IP4_NETMASK"))
netmask = g_strdup(value);
if (!strcmp(key, "INTERNAL_IP4_DNS"))
nameservers = g_strdup(value);
if (!strcmp(key, "INTERNAL_IFNAME"))
ifname = g_strdup(value);
dbus_message_iter_next(&dict);
}
if (vpn_set_ifname(provider, ifname) < 0) {
g_free(ifname);
g_free(addressv4);
g_free(netmask);
g_free(nameservers);
return VPN_STATE_FAILURE;
}
if (addressv4)
ipaddress = connman_ipaddress_alloc(AF_INET);
g_free(ifname);
if (!ipaddress) {
connman_error("No IP address for provider");
g_free(addressv4);
g_free(netmask);
g_free(nameservers);
return VPN_STATE_FAILURE;
}
value = vpn_provider_get_string(provider, "HostIP");
if (value) {
vpn_provider_set_string(provider, "Gateway", value);
gateway = g_strdup(value);
}
if (addressv4)
connman_ipaddress_set_ipv4(ipaddress, addressv4, netmask,
gateway);
connman_ipaddress_set_p2p(ipaddress, true);
vpn_provider_set_ipaddress(provider, ipaddress);
vpn_provider_set_nameservers(provider, nameservers);
g_free(addressv4);
g_free(netmask);
g_free(gateway);
g_free(nameservers);
connman_ipaddress_free(ipaddress);
pptp_connect_done(data, 0);
return VPN_STATE_CONNECT;
}
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++) {
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) {
/*
* 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),
pptp_options[i].cm_opt, option);
}
}
return 0;
}
static void pptp_write_bool_option(struct connman_task *task,
const char *key, const char *value)
{
if (key && value) {
if (strcasecmp(value, "yes") == 0 ||
strcasecmp(value, "true") == 0 ||
strcmp(value, "1") == 0)
connman_task_add_argument(task, key, NULL);
}
}
static void pptp_died(struct connman_task *task, int exit_code,
void *user_data)
{
struct pptp_private_data *data = user_data;
vpn_died(task, exit_code, data->provider);
free_private_data(data);
}
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 pptp_private_data *data, const char *username,
const char *password)
{
struct vpn_provider *provider = data->provider;
struct connman_task *task = data->task;
GString *pptp_opt_s;
const char *opt_s;
const char *host;
char *str;
int err, i;
if (!username || !*username || !password || !*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");
/* Create PPTP options for pppd "pty" */
pptp_opt_s = g_string_new(NULL);
g_string_append_printf(pptp_opt_s, "%s %s --nolaunchpppd --loglevel 2",
PPTP, host);
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);
connman_task_add_argument(task, "nodefaultroute", NULL);
connman_task_add_argument(task, "ipparam", "pptp_plugin");
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)
opt_s = pptp_options[i].pptp_default;
if (!opt_s)
continue;
if (pptp_options[i].type == OPT_STRING)
connman_task_add_argument(task,
pptp_options[i].pptp_opt, opt_s);
else if (pptp_options[i].type == OPT_BOOL)
pptp_write_bool_option(task,
pptp_options[i].pptp_opt, opt_s);
else if (pptp_options[i].type == OPT_PPTP_ONLY)
g_string_append_printf(pptp_opt_s, " %s %s",
pptp_options[i].pptp_opt, opt_s);
}
str = g_string_free(pptp_opt_s, FALSE);
connman_task_add_argument(task, "pty", str);
g_free(str);
connman_task_add_argument(task, "plugin",
SCRIPTDIR "/libppp-plugin.so");
err = connman_task_run(task, pptp_died, data, NULL, NULL, NULL);
if (err < 0) {
connman_error("pptp failed to start");
err = -EIO;
}
done:
if (err)
pptp_connect_done(data, -err);
return err;
}
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 || !*username || !password || !*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(data, username, password);
}
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)
{
struct pptp_private_data *data;
const char *username, *password;
int err;
data = g_try_new0(struct pptp_private_data, 1);
if (!data)
return -ENOMEM;
data->provider = vpn_provider_ref(provider);
data->task = task;
data->if_name = g_strdup(if_name);
data->cb = cb;
data->user_data = user_data;
vpn_provider_set_plugin_data(provider, data);
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 || !*username || !password || !*password) {
err = request_input(provider, request_input_cb, dbus_sender,
data);
if (err != -EINPROGRESS)
goto error;
return err;
}
return run_connect(data, username, password);
error:
pptp_connect_done(data, -err);
free_private_data(data);
return err;
}
static int pptp_error_code(struct vpn_provider *provider, int exit_code)
{
switch (exit_code) {
case 1:
return CONNMAN_PROVIDER_ERROR_CONNECT_FAILED;
case 2:
return CONNMAN_PROVIDER_ERROR_LOGIN_FAILED;
case 16:
return CONNMAN_PROVIDER_ERROR_AUTH_FAILED;
default:
return CONNMAN_PROVIDER_ERROR_UNKNOWN;
}
}
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)
{
connection = connman_dbus_get_connection();
return vpn_register("pptp", &vpn_driver, PPPD);
}
static void pptp_exit(void)
{
vpn_unregister("pptp");
dbus_connection_unref(connection);
}
CONNMAN_PLUGIN_DEFINE(pptp, "pptp plugin", VERSION,
CONNMAN_PLUGIN_PRIORITY_DEFAULT, pptp_init, pptp_exit)
|