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 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
|
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
#ifndef OPENVPN_CLIENT_CLIPROTO_H
#define OPENVPN_CLIENT_CLIPROTO_H
// This is a middle-layer object in the OpenVPN client protocol stack.
// It is above the general OpenVPN protocol implementation in
// class ProtoContext but below the top
// level object in a client connect (ClientConnect). See ClientConnect for
// a fuller description of the full client stack.
//
// This layer deals with setting up an OpenVPN client connection:
//
// 1. handles creation of transport-layer handler via TransportClientFactory
// 2. handles creation of tun-layer handler via TunClientFactory
// 3. handles sending PUSH_REQUEST to server and processing reply of server-pushed options
// 4. manages the underlying OpenVPN protocol object (class ProtoContext)
// 5. handles timers on behalf of the underlying OpenVPN protocol object
// 6. acts as an exception dispatcher for errors occuring in any of the underlying layers
#include <string>
#include <vector>
#include <memory>
#include <algorithm> // for std::min
#include <cstdint> // for std::uint...
using namespace std::chrono_literals;
#include <openvpn/io/io.hpp>
#include <openvpn/common/rc.hpp>
#include <openvpn/common/count.hpp>
#include <openvpn/common/string.hpp>
#include <openvpn/common/base64.hpp>
#include <openvpn/common/clamp_typerange.hpp>
#include <openvpn/ip/ptb.hpp>
#include <openvpn/tun/client/tunbase.hpp>
#include <openvpn/transport/client/transbase.hpp>
#include <openvpn/transport/client/relay.hpp>
#include <openvpn/options/continuation.hpp>
#include <openvpn/options/sanitize.hpp>
#include <openvpn/client/acc_certcheck.hpp>
#include <openvpn/client/clievent.hpp>
#include <openvpn/client/clicreds.hpp>
#include <openvpn/client/cliconstants.hpp>
#include <openvpn/client/clihalt.hpp>
#include <openvpn/client/optfilt.hpp>
#include <openvpn/time/asiotimer.hpp>
#include <openvpn/time/coarsetime.hpp>
#include <openvpn/time/durhelper.hpp>
#include <openvpn/error/excode.hpp>
#include <openvpn/ssl/proto.hpp>
#include <openvpn/client/remotelist.hpp>
#ifdef OPENVPN_DEBUG_CLIPROTO
#define OPENVPN_LOG_CLIPROTO(x) OPENVPN_LOG(x)
#else
#define OPENVPN_LOG_CLIPROTO(x)
#endif
using openvpn::numeric_util::clamp_to_typerange;
namespace openvpn::ClientProto {
struct NotifyCallback
{
virtual ~NotifyCallback() = default;
virtual void client_proto_terminate() = 0;
virtual void client_proto_connected()
{
}
virtual void client_proto_auth_pending_timeout(int timeout)
{
}
virtual void client_proto_renegotiated()
{
}
};
class Session : ProtoContextCallbackInterface,
TransportClientParent,
TunClientParent,
public RC<thread_unsafe_refcount>
{
static inline const std::string certcheckProto = "cck1";
public:
typedef RCPtr<Session> Ptr;
OPENVPN_EXCEPTION(client_exception);
OPENVPN_EXCEPTION(client_halt_restart);
OPENVPN_EXCEPTION(tun_exception);
OPENVPN_EXCEPTION(transport_exception);
OPENVPN_EXCEPTION(max_pushed_options_exceeded);
OPENVPN_SIMPLE_EXCEPTION(session_invalidated);
OPENVPN_SIMPLE_EXCEPTION(authentication_failed);
OPENVPN_SIMPLE_EXCEPTION(inactive_timer_expired);
OPENVPN_SIMPLE_EXCEPTION(relay_event);
OPENVPN_EXCEPTION(proxy_exception);
struct Config : public RC<thread_unsafe_refcount>
{
typedef RCPtr<Config> Ptr;
Config()
: pushed_options_limit("server-pushed options data too large",
ProfileParseLimits::MAX_PUSH_SIZE,
ProfileParseLimits::OPT_OVERHEAD,
ProfileParseLimits::TERM_OVERHEAD,
0,
ProfileParseLimits::MAX_DIRECTIVE_SIZE)
{
}
ProtoContext::ProtoConfig::Ptr proto_context_config;
ProtoContextCompressionOptions::Ptr proto_context_options;
PushOptionsBase::Ptr push_base;
TransportClientFactory::Ptr transport_factory;
TunClientFactory::Ptr tun_factory;
SessionStats::Ptr cli_stats;
ClientEvent::Queue::Ptr cli_events;
ClientCreds::Ptr creds;
OptionList::Limits pushed_options_limit;
OptionList::FilterBase::Ptr pushed_options_filter;
unsigned int tcp_queue_limit = 0;
bool echo = false;
bool info = false;
bool autologin_sessions = false;
};
Session(openvpn_io::io_context &io_context_arg,
const Config &config,
NotifyCallback *notify_callback_arg)
: proto_context(this, config.proto_context_config, config.cli_stats),
io_context(io_context_arg),
transport_factory(config.transport_factory),
tun_factory(config.tun_factory),
tcp_queue_limit(config.tcp_queue_limit),
notify_callback(notify_callback_arg),
housekeeping_timer(io_context_arg),
push_request_timer(io_context_arg),
received_options(config.push_base),
creds(config.creds),
proto_context_options(config.proto_context_options),
cli_stats(config.cli_stats),
cli_events(config.cli_events),
echo(config.echo),
info(config.info),
pushed_options_limit(config.pushed_options_limit),
pushed_options_filter(config.pushed_options_filter),
inactive_timer(io_context_arg),
info_hold_timer(io_context_arg)
{
#ifdef OPENVPN_PACKET_LOG
packet_log.open(OPENVPN_PACKET_LOG, std::ios::binary);
if (!packet_log)
OPENVPN_THROW(open_file_error, "cannot open packet log for output: " << OPENVPN_PACKET_LOG);
#endif
proto_context.update_now();
proto_context.reset();
// proto_context.enable_strict_openvpn_2x();
info_hold.reset(new std::vector<ClientEvent::Base::Ptr>());
}
bool first_packet_received() const
{
return first_packet_received_;
}
void start()
{
if (!halt)
{
proto_context.update_now();
// coarse wakeup range
housekeeping_schedule.init(Time::Duration::binary_ms(512), Time::Duration::binary_ms(1024));
// initialize transport-layer packet handler
transport = transport_factory->new_transport_client_obj(io_context, this);
transport_has_send_queue = transport->transport_has_send_queue();
if (transport_factory->is_relay())
transport_connecting();
else
transport->transport_start();
}
}
TransportClientFactory::Ptr transport_factory_relay()
{
TransportClient::Ptr tc(new TransportRelayFactory::TransportClientNull(transport.get()));
tc.swap(transport);
return new TransportRelayFactory(io_context, std::move(tc), this);
}
void transport_factory_override(TransportClientFactory::Ptr factory)
{
transport_factory = std::move(factory);
}
void send_explicit_exit_notify()
{
if (!halt)
proto_context.send_explicit_exit_notify();
}
void tun_set_disconnect()
{
if (tun)
tun->set_disconnect();
}
/**
* Posts a control message from the client API. To ensure the client that will always send
* valid message (e.g. no extra newlines or invalid) character this method will first check the
* message for validity before sending it to the control channel
* @param msg control channel message
*/
void validate_and_post_cc_msg(const std::string &msg)
{
if (!Unicode::is_valid_utf8(msg, Unicode::UTF8_NO_CTRL))
{
ClientEvent::Base::Ptr ev = new ClientEvent::UnsupportedFeature{"Invalid chars in control message", "Control channel message with invalid characters not allowed to be send with post_cc_msg", false};
cli_events->add_event(std::move(ev));
return;
}
post_cc_msg(msg);
}
/**
* Post a control message to the control channel. This only intended to be used by consumers that
* either validated the message itself beforehand or construct a message in a way that it is
* always valid.
* @param msg The message to send on the control channel.
*/
void post_cc_msg(const std::string &msg)
{
proto_context.update_now();
proto_context.write_control_string(msg);
proto_context.flush(true);
set_housekeeping_timer();
}
void post_app_control_message(const std::string proto, const std::string message)
{
if (!proto_context.conf().app_control_config.supports_protocol(proto))
{
ClientEvent::Base::Ptr ev = new ClientEvent::UnsupportedFeature{"missing acc protocol support", "server has not announced support of this custom app control protocol", false};
cli_events->add_event(std::move(ev));
return;
}
for (auto fragment : proto_context.conf().app_control_config.format_message(proto, message))
post_cc_msg(std::move(fragment));
}
void stop(const bool call_terminate_callback)
{
if (!halt)
{
halt = true;
housekeeping_timer.cancel();
push_request_timer.cancel();
out_tun_callback_.reset();
in_tun_callback_.reset();
inactive_timer.cancel();
info_hold_timer.cancel();
if (notify_callback && call_terminate_callback)
notify_callback->client_proto_terminate();
if (tun)
tun->stop(); // call after client_proto_terminate() so it can call back to tun_set_disconnect
if (transport)
transport->stop();
}
}
void stop_on_signal(const openvpn_io::error_code &error, int signal_number)
{
stop(true);
}
bool reached_connected_state() const
{
return bool(connected_);
}
// If fatal() returns something other than Error::UNDEF, it
// is intended to flag the higher levels (cliconnect.hpp)
// that special handling is required. This handling might include
// considering the error to be fatal and stopping future connect
// retries, or emitting a special event. See cliconnect.hpp
// for actual implementation.
Error::Type fatal() const
{
return fatal_;
}
const std::string &fatal_reason() const
{
return fatal_reason_;
}
// Getters for values which could potentially be modified by
// a server's AUTH_FAILED,TEMP response flags
RemoteList::Advance advance_type() const
{
return temp_fail_advance_;
}
std::chrono::milliseconds reconnect_delay() const
{
return temp_fail_backoff_;
}
/**
@brief Start up the cert check handshake using the given certs and key
@param config SSL Config setup with the correct keys and certificates
Begins the handshake with Client Hello via the ACC.
*/
void start_acc_certcheck(SSLLib::SSLAPI::Config::Ptr config)
{
certcheck_hs.reset(std::move(config));
do_acc_certcheck(std::string(""));
}
virtual ~Session()
{
stop(false);
}
private:
bool transport_is_openvpn_protocol() override
{
return true;
}
// transport obj calls here with incoming packets
void transport_recv(BufferAllocated &buf) override
{
try
{
OPENVPN_LOG_CLIPROTO("Transport RECV " << server_endpoint_render() << ' ' << proto_context.dump_packet(buf));
// update current time
proto_context.update_now();
// update last packet received
proto_context.stat().update_last_packet_received(proto_context.now());
// log connecting event (only on first packet received)
if (!first_packet_received_)
{
ClientEvent::Base::Ptr ev = new ClientEvent::Connecting();
cli_events->add_event(std::move(ev));
first_packet_received_ = true;
}
// get packet type
ProtoContext::PacketType pt = proto_context.packet_type(buf);
// process packet
if (pt.is_data())
{
// data packet
proto_context.data_decrypt(pt, buf);
if (buf.size())
{
#ifdef OPENVPN_PACKET_LOG
log_packet(buf, false);
#endif
// make packet appear as incoming on tun interface
if (tun)
{
OPENVPN_LOG_CLIPROTO("TUN send, size=" << buf.size());
tun->tun_send(buf);
}
}
// do a lightweight flush
proto_context.flush(false);
}
else if (pt.is_control())
{
// control packet
proto_context.control_net_recv(pt, std::move(buf));
// do a full flush
proto_context.flush(true);
}
else
cli_stats->error(Error::KEY_STATE_ERROR);
// schedule housekeeping wakeup
set_housekeeping_timer();
}
catch (const ExceptionCode &e)
{
if (e.code_defined())
{
if (e.fatal())
transport_error((Error::Type)e.code(), e.what());
else
cli_stats->error((Error::Type)e.code());
}
else
process_exception(e, "transport_recv_excode");
}
catch (const std::exception &e)
{
process_exception(e, "transport_recv");
}
}
void transport_needs_send() override
{
}
// tun i/o driver calls here with incoming packets
void tun_recv(BufferAllocated &buf) override
{
try
{
OPENVPN_LOG_CLIPROTO("TUN recv, size=" << buf.size());
// update current time
proto_context.update_now();
// log packet
#ifdef OPENVPN_PACKET_LOG
log_packet(buf, true);
#endif
// if transport layer has an output queue, check if it's full
if (transport_has_send_queue)
{
if (transport->transport_send_queue_size() > tcp_queue_limit)
{
buf.reset_size(); // queue full, drop packet
cli_stats->error(Error::TCP_OVERFLOW);
}
}
// encrypt packet
if (buf.size())
{
const ProtoContext::ProtoConfig &c = proto_context.conf();
bool df = true;
if (IPCommon::version(buf[0]) == IPCommon::IPv4 && buf.size() >= sizeof(struct IPv4Header))
{
df = IPv4Header::is_df_set(buf.c_data());
}
// when calculating mss, we take IPv4 and TCP headers into account
// here we need to add it back since we check the whole IP packet size, not just TCP payload
constexpr size_t MinTcpHeader = 20;
constexpr size_t MinIpHeader = 20;
size_t mss_no_tcp_ip_encap = c.mss_fix + (MinTcpHeader + MinIpHeader);
if (df && c.mss_fix > 0 && buf.size() > mss_no_tcp_ip_encap)
{
Ptb::generate_icmp_ptb(buf, clamp_to_typerange<unsigned short>(mss_no_tcp_ip_encap));
tun->tun_send(buf);
}
else
{
proto_context.data_encrypt(buf);
if (buf.size())
{
// send packet via transport to destination
OPENVPN_LOG_CLIPROTO("Transport SEND " << server_endpoint_render() << ' ' << proto_context.dump_packet(buf));
if (transport->transport_send(buf))
proto_context.update_last_sent();
else if (halt)
return;
}
}
}
// do a lightweight flush
proto_context.flush(false);
// schedule housekeeping wakeup
set_housekeeping_timer();
}
catch (const std::exception &e)
{
process_exception(e, "tun_recv");
}
}
// Return true if keepalive parameter(s) are enabled.
bool is_keepalive_enabled() const override
{
return proto_context.is_keepalive_enabled();
}
// Disable keepalive for rest of session, but fetch
// the keepalive parameters (in seconds).
void disable_keepalive(unsigned int &keepalive_ping,
unsigned int &keepalive_timeout) override
{
proto_context.disable_keepalive(keepalive_ping, keepalive_timeout);
}
void transport_pre_resolve() override
{
ClientEvent::Base::Ptr ev = new ClientEvent::Resolve();
cli_events->add_event(std::move(ev));
}
std::string server_endpoint_render()
{
std::string server_host, server_port, server_proto, server_ip;
transport->server_endpoint_info(server_host, server_port, server_proto, server_ip);
std::ostringstream out;
out << '[' << server_host << "]:" << server_port << " (" << server_ip << ") via " << server_proto;
return out.str();
}
void transport_wait_proxy() override
{
ClientEvent::Base::Ptr ev = new ClientEvent::WaitProxy();
cli_events->add_event(std::move(ev));
}
void transport_wait() override
{
ClientEvent::Base::Ptr ev = new ClientEvent::Wait();
cli_events->add_event(std::move(ev));
}
void transport_connecting() override
{
try
{
proto_context.conf().build_connect_time_peer_info_string(transport);
OPENVPN_LOG("Connecting to " << server_endpoint_render());
proto_context.set_protocol(transport->transport_protocol());
proto_context.start();
proto_context.flush(true);
set_housekeeping_timer();
}
catch (const std::exception &e)
{
process_exception(e, "transport_connecting");
}
}
void transport_error(const Error::Type fatal_err, const std::string &err_text) override
{
if (fatal_err != Error::UNDEF)
{
fatal_ = fatal_err;
fatal_reason_ = err_text;
}
if (notify_callback)
{
OPENVPN_LOG("Transport Error: " << err_text);
stop(true);
}
else
throw transport_exception(err_text);
}
void proxy_error(const Error::Type fatal_err, const std::string &err_text) override
{
if (fatal_err != Error::UNDEF)
{
fatal_ = fatal_err;
fatal_reason_ = err_text;
}
if (notify_callback)
{
OPENVPN_LOG("Proxy Error: " << err_text);
stop(true);
}
else
throw proxy_exception(err_text);
}
void extract_auth_token(const OptionList &opt)
{
std::string username;
// auth-token-user
{
const Option *o = opt.get_ptr("auth-token-user");
if (o)
username = base64->decode(o->get(1, 340)); // 255 chars after base64 decode
}
// auth-token
{
// if auth-token is present, use it as the password for future renegotiations
const Option *o = opt.get_ptr("auth-token");
if (o)
{
const std::string &sess_id = o->get(1, 256);
if (creds)
{
if (!username.empty())
OPENVPN_LOG("Session user: " << username);
#ifdef OPENVPN_SHOW_SESSION_TOKEN
OPENVPN_LOG("Session token: " << sess_id);
#else
OPENVPN_LOG("Session token: [redacted]");
#endif
proto_context.conf().set_xmit_creds(true);
creds->set_session_id(username, sess_id);
}
}
}
}
/**
* Parses a AUTH_FAILED,TEMP string, extracts the flags and returns
* the human readable reason part of it, if there is one. The string
* passed has the format "[flag(s)]:reason".
*
* Flags are optional and delimited by a comma (","). They are given
* as "key=value" strings. Currently there's support for parsing two keys:
* - backoff: seconds to wait between reconnects
* - advance: how to advance through the remote addresses list.
* Possible values are:
* - no: do not advance
* - addr: use the next address in the list (default)
* - remote: use the next remote's first address
*
* The reason string is free text and returned verbatim.
*
* @param msg The string to be parsed
*
* @return Returns the human readable reason for the auth failure or an
* empty string if not applicable.
*/
std::string parse_auth_failed_temp(const std::string &msg)
{
if (msg.empty())
return msg;
// Reset to default values
temp_fail_backoff_ = 0ms;
temp_fail_advance_ = RemoteList::Advance::Addr;
std::string::size_type reason_idx = 0;
auto endofflags = msg.find(']');
if (msg.at(0) == '[' && endofflags != std::string::npos)
{
reason_idx = ++endofflags;
auto flags = string::split(std::string{msg, 1, endofflags - 2}, ',');
for (const auto &flag : flags)
{
std::string key;
std::string value;
std::istringstream f(flag);
f >> key >> value;
if (f.fail())
{
OPENVPN_LOG("invalid AUTH_FAILED,TEMP flag: " << flag);
continue;
}
if (key == "backoff")
{
int timeout = 0;
if (!parse_number(value, timeout))
{
OPENVPN_LOG("invalid AUTH_FAILED,TEMP flag: " << flag);
}
temp_fail_backoff_ = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::seconds{timeout});
}
else if (key == "advance")
{
if (value == "no")
{
temp_fail_advance_ = RemoteList::Advance::None;
}
else if (value == "addr")
{
temp_fail_advance_ = RemoteList::Advance::Addr;
}
else if (value == "remote")
{
temp_fail_advance_ = RemoteList::Advance::Remote;
}
else
{
OPENVPN_LOG("unknown AUTH_FAILED,TEMP flag: " << flag);
}
}
else
{
OPENVPN_LOG("unknown AUTH_FAILED,TEMP flag: " << flag);
}
}
}
if (reason_idx >= msg.size() || msg[reason_idx] != ':')
return "";
// skip leading colon
return msg.substr(reason_idx + 1);
}
// proto base class calls here for control channel network sends
void control_net_send(const Buffer &net_buf) override
{
OPENVPN_LOG_CLIPROTO("Transport SEND " << server_endpoint_render() << ' ' << proto_context.dump_packet(net_buf));
if (transport->transport_send_const(net_buf))
proto_context.update_last_sent();
}
void recv_auth_failed(const std::string &msg)
{
std::string reason;
std::string log_reason;
// get reason (if it exists) for authentication failure
if (msg.length() >= 13)
reason = string::trim_left_copy(std::string(msg, 12));
if (string::starts_with(reason, "TEMP"))
{
log_reason = "AUTH_FAILED_TEMP:" + parse_auth_failed_temp(std::string(reason, 4));
}
else
{
bool password_defined = false;
bool session_id_defined = false;
if (creds)
{
password_defined = creds->password_defined();
session_id_defined = creds->session_id_defined();
// authentication failure, purge auth-token
creds->purge_session_id();
}
// do we have a session-id?
if (session_id_defined)
{
bool reconnect = false;
// if there was an OOB auth (server pushed AUTH_PENDING) throw a fatal error since we need a user input
if (!creds->need_user_interaction())
{
// reconnect if we have a password OR password is not needed
if (!creds->password_needed() || password_defined)
{
reconnect = true;
}
}
OPENVPN_LOG("need_user_interaction: " << creds->need_user_interaction() << ", pw_needed: " << creds->password_needed() << ", pw_defined: " << password_defined << ", reconnect: " << reconnect);
if (reconnect)
{
log_reason = "SESSION_AUTH_FAILED";
}
else
{
// we don't have a password and we need a user input, throw a fatal error and let the client to re-authenticate
fatal_ = Error::SESSION_EXPIRED;
fatal_reason_ = reason;
log_reason = "SESSION_EXPIRED";
}
}
else
{
// no session-id, throw fatal error
fatal_ = Error::AUTH_FAILED;
fatal_reason_ = reason;
log_reason = "AUTH_FAILED";
}
}
if (notify_callback)
{
OPENVPN_LOG(log_reason);
stop(true);
}
else
throw authentication_failed();
}
void recv_auth_pending(const std::string &msg)
{
// AUTH_PENDING indicates an out-of-band authentication step must
// be performed before the server will send the PUSH_REPLY message.
if (!auth_pending)
{
auth_pending = true;
std::string key_words;
unsigned int timeout = 0;
if (string::starts_with(msg, "AUTH_PENDING,"))
{
key_words = msg.substr(strlen("AUTH_PENDING,"));
auto opts = OptionList::parse_from_csv_static(key_words, nullptr);
std::string timeout_str = opts.get_optional("timeout", 1, 20);
if (timeout_str != "")
{
try
{
timeout = clamp_to_typerange<unsigned int>(std::stoul(timeout_str));
// Cap the timeout to end well before renegotiation starts
timeout = std::min(timeout, static_cast<decltype(timeout)>(proto_context.conf().renegotiate.to_seconds() / 2));
}
catch (const std::logic_error &)
{
OPENVPN_LOG("could not parse AUTH_PENDING timeout: " << timeout_str);
}
}
}
if (notify_callback && timeout > 0)
{
notify_callback->client_proto_auth_pending_timeout(timeout);
}
ClientEvent::Base::Ptr ev = new ClientEvent::AuthPending(timeout, std::move(key_words));
cli_events->add_event(std::move(ev));
}
}
void recv_relay()
{
if (proto_context.conf().relay_mode)
{
fatal_ = Error::RELAY;
fatal_reason_ = "";
}
else
{
fatal_ = Error::RELAY_ERROR;
fatal_reason_ = "not in relay mode";
}
if (notify_callback)
{
OPENVPN_LOG(Error::name(fatal_) << ' ' << fatal_reason_);
stop(true);
}
else
throw relay_event();
}
void recv_info(const std::string &msg, bool info_pre)
{
// Buffer INFO messages received near Connected event to fire
// one second after Connected event, to reduce the chance of
// race conditions in the client app, if the INFO event
// triggers the client app to perform an operation that
// requires the VPN tunnel to be ready.
std::string info_msg;
if (info_pre)
info_msg = msg.substr(std::string_view{"INFO_PRE,"}.length());
else
info_msg = msg.substr(std::string_view{"INFO,"}.length());
if (string::starts_with(info_msg, "ACC:"))
{
// We want this to be parsed exactly like the custom-control option.
// That means we replace ACC: with custom-control for the parser.
auto acc_options = OptionList::parse_from_csv_static("custom-control " + info_msg.substr(std::strlen("ACC:")), &pushed_options_limit);
proto_context.conf().parse_custom_app_control(acc_options);
// check if we need to notify about ACC protocols
notify_client_acc_protocols();
}
else
{
if ((string::starts_with(info_msg, "WEB_AUTH:") || string::starts_with(info_msg, "CR_TEXT:")) && creds)
{
creds->set_need_user_interaction();
}
ClientEvent::Info::Ptr ev = new ClientEvent::Info(std::move(info_msg));
// INFO_PRE is like INFO but it is never buffered
if (info_hold && !info_pre)
info_hold->push_back(std::move(ev));
else
cli_events->add_event(std::move(ev));
}
}
/**
* @brief Handles incoming PUSH_UPDATE message
*
* @param msg Comma-separated list of options prefixed with PUSH_UPDATE tag
*/
void recv_push_update(const std::string &msg)
{
received_options.reset_completion();
// parse the received options
auto opt_str = msg.substr(strlen("PUSH_UPDATE,"));
auto opts = OptionList::parse_from_csv_static(opt_str, &pushed_options_limit);
received_options.add(opts, pushed_options_filter.get(), true);
if (received_options.complete())
{
// show options
OPENVPN_LOG("PUSH UPDATE:\n"
<< render_options_sanitized(opts, Option::RENDER_PASS_FMT | Option::RENDER_NUMBER | Option::RENDER_BRACKET));
// Merge local and pushed options
received_options.finalize(pushed_options_merger);
if (tun)
{
tun->apply_push_update(received_options, *transport);
}
}
}
// proto base class calls here for app-level control-channel messages received
void control_recv(BufferPtr &&app_bp) override
{
const std::string msg = ProtoContext::read_control_string<std::string>(*app_bp);
if (!Unicode::is_valid_utf8(msg, Unicode::UTF8_NO_CTRL))
{
OPENVPN_LOG("Control channel message with invalid characters received, ignoring message");
return;
}
// OPENVPN_LOG("SERVER: " << sanitize_control_message(msg));
if (string::starts_with(msg, "PUSH_REPLY,"))
{
recv_push_reply(msg);
}
else if (string::starts_with(msg, "AUTH_FAILED"))
{
recv_auth_failed(msg);
}
else if (ClientHalt::match(msg))
{
recv_halt_restart(msg);
}
else if (info && string::starts_with(msg, "INFO,"))
{
recv_info(msg, false);
}
else if (info && string::starts_with(msg, "INFO_PRE,"))
{
recv_info(msg, true);
}
else if (msg == "AUTH_PENDING" || string::starts_with(msg, "AUTH_PENDING,"))
{
recv_auth_pending(msg);
}
else if (msg == "RELAY")
{
recv_relay();
}
else if (string::starts_with(msg, "ACC,"))
{
recv_custom_control_message(msg);
}
else if (string::starts_with(msg, "PUSH_UPDATE,"))
{
recv_push_update(msg);
}
}
/**
@brief receive, validate, and dispatch ACC messages
@param msg the received message
This function's main purpose is to receive a custom control message from the server, parse
out the protocol and contents, validate the protocol is supported, and queue a ClientEvent
for supported protocols to be handled later. It acts as the interface between the lower-level
network code receiving the raw message, and the higher-level event handling logic.
*/
void recv_custom_control_message(const std::string msg)
{
bool fullmessage = proto_context.conf().app_control_recv.receive_message(msg);
if (!fullmessage)
return;
auto [proto, app_proto_msg] = proto_context.conf().app_control_recv.get_message();
if (proto == certcheckProto) // handle this built-in ACC internal protocol intrinsically
{
do_acc_certcheck(app_proto_msg);
}
else if (proto_context.conf().app_control_config.supports_protocol(proto))
{
ClientEvent::Base::Ptr ev = new ClientEvent::AppCustomControlMessage(std::move(proto), std::move(app_proto_msg));
cli_events->add_event(std::move(ev));
}
else
{
OPENVPN_LOG("App custom control message with unsupported protocol [" + proto + "] received");
}
}
/**
@brief Handles the ACC certcheck TLS handshake data exchange
@param msg_str TLS handshake traffic
@todo std::string is perfectly OK for storing buffers containing null bytes but it's atypical.
*/
void do_acc_certcheck(const std::string &msg_str)
{
AccHandshaker::MsgT reply = std::nullopt;
AccHandshaker::MsgT msg = std::nullopt;
if (msg_str.empty() == false)
msg = msg_str;
try
{
do
{
reply = certcheck_hs.process_msg(msg);
if (reply)
{
post_app_control_message(certcheckProto, *reply);
}
msg = std::nullopt;
} while (reply);
}
catch (std::exception &ex)
{
OPENVPN_LOG("App custom control cert check exception: " << ex.what());
}
}
void notify_client_acc_protocols()
{
if (!proto_context.conf().app_control_config.supported_protocols.empty())
{
// Signal support for supported protocols
ClientEvent::Base::Ptr ev = new ClientEvent::AppCustomControlMessage("internal:supported_protocols", string::join(proto_context.conf().app_control_config.supported_protocols, ":"));
cli_events->add_event(std::move(ev));
}
}
void recv_push_reply(const std::string &msg)
{
if (!received_options.complete())
{
// parse the received options
auto pushed_options_list = OptionList::parse_from_csv_static(msg.substr(11), &pushed_options_limit);
try
{
received_options.add(pushed_options_list, pushed_options_filter.get());
}
catch (const Option::RejectedException &e)
{
recv_halt_restart("RESTART,rejected pushed option: " + e.err());
}
if (received_options.complete())
{
// show options
OPENVPN_LOG("OPTIONS:" << std::endl
<< render_options_sanitized(received_options, Option::RENDER_PASS_FMT | Option::RENDER_NUMBER | Option::RENDER_BRACKET));
// relay servers are not allowed to establish a tunnel with us
if (proto_context.conf().relay_mode)
{
tun_error(Error::RELAY_ERROR, "tunnel not permitted to relay server");
return;
}
// Merge local and pushed options
received_options.finalize(pushed_options_merger);
// process "echo" directives
if (echo)
process_echo(received_options);
// process auth-token
extract_auth_token(received_options);
// process pushed transport options
transport_factory->process_push(received_options);
// modify proto config (cipher, auth, key-derivation and compression methods)
proto_context.process_push(received_options, *proto_context_options);
// process pushed auth-nocache
if (creds && proto_context.conf().auth_nocache)
{
creds->purge_user_pass();
}
// initialize tun/routing
tun = tun_factory->new_tun_client_obj(io_context, *this, transport.get());
tun->tun_start(received_options, *transport, proto_context.dc_settings());
// we should be connected at this point
if (!connected_)
throw tun_exception("not connected");
// Propagate tun-mtu back, it might have been overwritten by a pushed tun-mtu option
proto_context.conf().tun_mtu = tun->vpn_mtu();
// initialize data channel after pushed options have been processed
proto_context.init_data_channel();
// we got pushed options and initializated crypto - now we can push mss to dco
tun->adjust_mss(proto_context.conf().mss_fix);
// Allow ProtoContext to suggest an alignment adjustment
// hint for transport layer.
transport->reset_align_adjust(proto_context.align_adjust_hint());
// process "inactive" directive
process_inactive(received_options);
// tell parent that we are connected
if (notify_callback)
notify_callback->client_proto_connected();
// start info-hold timer
schedule_info_hold_callback();
// send the Connected event
cli_events->add_event(connected_);
// send an event for custom app control if present
notify_client_acc_protocols();
// check for proto options
check_proto_warnings();
}
else
OPENVPN_LOG("Options continuation...");
}
else if (received_options.complete())
{
// We got a PUSH REPLY in the middle of a session. Ignore it apart from
// updating the auth-token if included in the push reply
auto opts = OptionList::parse_from_csv_static(msg.substr(11), nullptr);
extract_auth_token(opts);
}
}
void tun_pre_tun_config() override
{
ClientEvent::Base::Ptr ev = new ClientEvent::AssignIP();
cli_events->add_event(std::move(ev));
}
void tun_pre_route_config() override
{
ClientEvent::Base::Ptr ev = new ClientEvent::AddRoutes();
cli_events->add_event(std::move(ev));
}
void tun_event(ClientEvent::Base::Ptr ev) override
{
cli_events->add_event(std::move(ev));
}
void tun_connected() override
{
OPENVPN_LOG("Connected via " + tun->tun_name());
ClientEvent::Connected::Ptr ev = new ClientEvent::Connected();
if (creds)
ev->user = creds->get_username();
transport->server_endpoint_info(ev->server_host, ev->server_port, ev->server_proto, ev->server_ip);
ev->vpn_ip4 = tun->vpn_ip4();
ev->vpn_ip6 = tun->vpn_ip6();
ev->vpn_gw4 = tun->vpn_gw4();
ev->vpn_gw6 = tun->vpn_gw6();
if (tun->vpn_mtu())
{
ev->vpn_mtu = std::to_string(tun->vpn_mtu());
}
else
{
ev->vpn_mtu = "(default)";
}
ev->vpn_interface_index = tun->vpn_interface_index();
try
{
std::string client_ip = received_options.get_optional("client-ip", 1, 256);
if (!client_ip.empty())
ev->client_ip = IP::Addr::validate(client_ip, "client-ip");
}
catch (const std::exception &e)
{
OPENVPN_LOG("exception parsing client-ip: " << e.what());
}
ev->tun_name = tun->tun_name();
connected_ = std::move(ev);
}
void tun_error(const Error::Type fatal_err, const std::string &err_text) override
{
if (fatal_err == Error::TUN_HALT)
send_explicit_exit_notify();
if (fatal_err != Error::UNDEF)
{
fatal_ = fatal_err;
fatal_reason_ = err_text;
}
if (notify_callback)
{
OPENVPN_LOG("TUN Error: " << err_text);
stop(true);
}
else
throw tun_exception(err_text);
}
// proto base class calls here to get auth credentials
void client_auth(Buffer &buf) override
{
// we never send creds to a relay server
if (creds && !proto_context.conf().relay_mode)
{
OPENVPN_LOG("Creds: " << creds->auth_info());
if (!creds->session_id_defined() && creds->password_needed() && !creds->password_defined())
{
throw ErrorCode(Error::NEED_CREDS, true, "missing password");
}
proto_context.write_auth_string(creds->get_username(), buf);
#ifdef OPENVPN_DISABLE_AUTH_TOKEN // debugging only
if (creds->session_id_defined())
{
OPENVPN_LOG("NOTE: not sending auth-token");
ProtoContext::write_empty_string(buf);
}
else
#endif
{
proto_context.write_auth_string(creds->get_password(), buf);
}
// save username for auth-token, which might be pushed later
creds->save_username_for_session_id();
if (proto_context.conf().auth_nocache)
{
creds->purge_user_pass();
}
}
else
{
OPENVPN_LOG("Creds: None");
write_empty_string(buf); // username
write_empty_string(buf); // password
}
}
void send_push_request_callback(const Time::Duration &dur,
const openvpn_io::error_code &e)
{
try
{
if (!e && !halt && !received_options.partial())
{
proto_context.update_now();
if (!sent_push_request)
{
ClientEvent::Base::Ptr ev = new ClientEvent::GetConfig();
cli_events->add_event(std::move(ev));
sent_push_request = true;
}
OPENVPN_LOG("Sending PUSH_REQUEST to server...");
proto_context.write_control_string(std::string("PUSH_REQUEST"));
proto_context.flush(true);
set_housekeeping_timer();
{
if (auth_pending)
{
// With auth_pending, we can dial back the PUSH_REQUEST
// frequency, but we still need back-and-forth network
// activity to avoid an inactivity timeout, since the crypto
// layer (and hence keepalive ping) is not initialized until
// we receive the PUSH_REPLY from the server.
schedule_push_request_callback(Time::Duration::seconds(8));
}
else
{
// step function with ceiling: 1 sec, 2 secs, 3 secs, 3, 3, ...
const Time::Duration newdur = std::min(dur + Time::Duration::seconds(1),
Time::Duration::seconds(3));
schedule_push_request_callback(newdur);
}
}
}
}
catch (const std::exception &e)
{
process_exception(e, "send_push_request_callback");
}
}
void schedule_push_request_callback(const Time::Duration &dur)
{
if (!received_options.partial())
{
push_request_timer.expires_after(dur);
push_request_timer.async_wait([self = Ptr(this), dur](const openvpn_io::error_code &error)
{
OPENVPN_ASYNC_HANDLER;
self->send_push_request_callback(dur, error); });
}
}
// react to any tls warning triggered during the tls-handshake
virtual void check_tls_warnings()
{
uint32_t tls_warnings = proto_context.get_tls_warnings();
if (tls_warnings & SSLAPI::TLS_WARN_SIG_MD5)
{
ClientEvent::Base::Ptr ev = new ClientEvent::Warn("TLS: received certificate signed with MD5. Please inform your admin to upgrade to a stronger algorithm. Support for MD5 will be dropped in the near future");
cli_events->add_event(std::move(ev));
}
if (tls_warnings & SSLAPI::TLS_WARN_SIG_SHA1)
{
ClientEvent::Base::Ptr ev = new ClientEvent::Warn("TLS: received certificate signed with SHA1. Please inform your admin to upgrade to a stronger algorithm. Support for SHA1 signatures will be dropped in the future");
cli_events->add_event(std::move(ev));
}
}
void check_proto_warnings()
{
if (proto_context.uses_bs64_cipher())
{
ClientEvent::Base::Ptr ev = new ClientEvent::Warn("Proto: Using a 64-bit block cipher that is vulnerable to the SWEET32 attack. Please inform your admin to upgrade to a stronger algorithm. Support for 64-bit block cipher will be dropped in the future.");
cli_events->add_event(std::move(ev));
}
CompressContext::Type comp_type = proto_context.conf().comp_ctx.type();
// abort connection if compression is pushed and its support is unannounced
if (comp_type != CompressContext::COMP_STUBv2
&& comp_type != CompressContext::NONE
&& proto_context_options->compression_mode == ProtoContextCompressionOptions::COMPRESS_NO)
{
throw ErrorCode(Error::COMPRESS_ERROR, true, "server pushed compression "
"settings that are not allowed and will result "
"in a non-working connection. ");
}
// Issue an event if compression is enabled
if (comp_type != CompressContext::NONE
&& !CompressContext::is_any_stub(comp_type))
{
std::ostringstream msg;
msg << (proto_context_options->is_comp_asym()
? "Asymmetric compression enabled. Server may send compressed data."
: "Compression enabled.");
msg << " This may be a potential security issue.";
ClientEvent::Base::Ptr ev = new ClientEvent::CompressionEnabled(msg.str());
cli_events->add_event(std::move(ev));
}
}
// base class calls here when session transitions to ACTIVE state
void active(bool primary) override
{
if (primary)
{
OPENVPN_LOG("Session is ACTIVE");
check_tls_warnings();
schedule_push_request_callback(Time::Duration::seconds(0));
}
else if (notify_callback)
notify_callback->client_proto_renegotiated();
}
bool supports_epoch_data() override
{
return tun_factory->supports_epoch_data();
}
void housekeeping_callback(const openvpn_io::error_code &e)
{
try
{
if (!e && !halt)
{
// update current time
proto_context.update_now();
housekeeping_schedule.reset();
proto_context.housekeeping();
if (proto_context.invalidated())
{
if (notify_callback)
{
OPENVPN_LOG("Session invalidated: " << Error::name(proto_context.invalidation_reason()));
stop(true);
}
else
throw session_invalidated();
}
set_housekeeping_timer();
}
}
catch (const std::exception &e)
{
process_exception(e, "housekeeping_callback");
}
}
void set_housekeeping_timer()
{
if (halt)
return;
Time next = proto_context.next_housekeeping();
if (!housekeeping_schedule.similar(next))
{
if (!next.is_infinite())
{
next.max(proto_context.now());
housekeeping_schedule.reset(next);
housekeeping_timer.expires_at(next);
housekeeping_timer.async_wait([self = Ptr(this)](const openvpn_io::error_code &error)
{
OPENVPN_ASYNC_HANDLER;
self->housekeeping_callback(error); });
}
else
{
housekeeping_timer.cancel();
housekeeping_schedule.reset();
}
}
}
/**
@brief Set the cc handshake config object
@param cfg The config to use for initializing the SSLAPI
*/
void set_cc_handshake_config(SSLLib::SSLAPI::Config::Ptr cfg)
{
certcheck_hs.reset(cfg);
}
void process_inactive(const OptionList &opt)
{
try
{
const Option *o = load_duration_parm(inactive_duration, "inactive", opt, 1, false, false);
if (o)
{
if (o->size() >= 3)
inactivity_minimum_bytes = parse_number_throw<unsigned int>(o->get(2, 16), "inactive bytes");
out_tun_callback_ = cli_stats->set_inc_callback(
SessionStats::Stats::TUN_BYTES_OUT,
[self = Ptr(this)](const count_t value)
{ self->reset_inactive_timer(value); });
in_tun_callback_ = cli_stats->set_inc_callback(
SessionStats::Stats::TUN_BYTES_IN,
[self = Ptr(this)](const count_t value)
{ self->reset_inactive_timer(value); });
schedule_inactive_timer();
}
}
catch (const std::exception &e)
{
OPENVPN_LOG("exception parsing inactive: " << e.what());
}
}
void schedule_inactive_timer()
{
inactive_timer.expires_after(inactive_duration);
inactive_timer.async_wait([self = Ptr(this)](const openvpn_io::error_code &error)
{
OPENVPN_ASYNC_HANDLER;
self->inactive_callback(error); });
}
void reset_inactive_timer(const count_t bytes_count)
{
// Ensure that it's called within the io_context in case it needs to be invoked from a separate thread.
openvpn_io::post(io_context, [self = Ptr(this), bytes_count]()
{
OPENVPN_ASYNC_HANDLER;
self->inactivity_bytes += bytes_count;
if (self->inactivity_bytes >= self->inactivity_minimum_bytes)
{
// OPENVPN_LOG("reset_inactive_timer: " << self->inactivity_bytes);
self->inactivity_bytes = 0;
self->schedule_inactive_timer();
} });
}
void inactive_callback(const openvpn_io::error_code &e) // fixme for DCO
{
try
{
if (!e && !halt)
{
// In non-DCO case, inactivity timeout is reset on data channel activity,
// so this function is only called on timeout.
//
// With DCO, OpenVPN doesn't see data channel packets, so we have to
// change the logic and check kernel counters here, either stopping or
// rearming the timer if there is sufficient traffic.
if (cli_stats->dco_update())
{
auto sample = cli_stats->get_stat(SessionStats::TUN_BYTES_IN) + cli_stats->get_stat(SessionStats::TUN_BYTES_OUT);
auto delta = sample - inactive_last_sample;
if (delta >= inactivity_minimum_bytes)
{
inactive_last_sample = sample;
schedule_inactive_timer();
return;
}
}
fatal_ = Error::INACTIVE_TIMEOUT;
send_explicit_exit_notify();
if (notify_callback)
{
OPENVPN_LOG("inactive timer expired");
stop(true);
}
else
throw inactive_timer_expired();
}
}
catch (const std::exception &e)
{
process_exception(e, "inactive_callback");
}
}
void process_echo(const OptionList &opt)
{
OptionList::IndexMap::const_iterator echo_opt = opt.map().find("echo");
if (echo_opt != opt.map().end())
{
for (OptionList::IndexList::const_iterator i = echo_opt->second.begin(); i != echo_opt->second.end(); ++i)
{
const Option &o = opt[*i];
o.touch();
const std::string &value = o.get(1, 512);
ClientEvent::Base::Ptr ev = new ClientEvent::Echo(value);
cli_events->add_event(std::move(ev));
}
}
}
void process_exception(const std::exception &e, const char *method_name)
{
if (notify_callback)
{
OPENVPN_LOG("Client exception in " << method_name << ": " << e.what());
stop(true);
}
else
throw client_exception(e.what());
}
void recv_halt_restart(const std::string &msg)
{
const ClientHalt ch(msg, true);
if (!ch.psid() && creds)
creds->purge_session_id();
if (ch.restart())
fatal_ = Error::CLIENT_RESTART;
else
fatal_ = Error::CLIENT_HALT;
fatal_reason_ = ch.reason();
if (notify_callback)
{
OPENVPN_LOG("Client halt/restart: " << ch.render());
stop(true);
}
else
throw client_halt_restart(ch.render());
}
void schedule_info_hold_callback()
{
proto_context.update_now();
info_hold_timer.expires_after(Time::Duration::seconds(1));
info_hold_timer.async_wait([self = Ptr(this)](const openvpn_io::error_code &error)
{
OPENVPN_ASYNC_HANDLER;
self->info_hold_callback(error); });
}
void info_hold_callback(const openvpn_io::error_code &e)
{
try
{
if (!e && !halt)
{
proto_context.update_now();
if (info_hold)
{
for (auto &ev : *info_hold)
cli_events->add_event(std::move(ev));
info_hold.reset();
}
}
}
catch (const std::exception &exc)
{
process_exception(exc, "info_hold_callback");
}
}
#ifdef OPENVPN_PACKET_LOG
void log_packet(const Buffer &buf, const bool out)
{
if (buf.size())
{
std::uint16_t len = buf.size() & 0x7FFF;
if (out)
len |= 0x8000;
packet_log.write((const char *)&len, sizeof(len));
packet_log.write((const char *)buf.c_data(), buf.size());
}
}
#endif
ProtoContext proto_context;
openvpn_io::io_context &io_context;
TransportClientFactory::Ptr transport_factory;
TransportClient::Ptr transport;
TunClientFactory::Ptr tun_factory;
TunClient::Ptr tun;
unsigned int tcp_queue_limit;
bool transport_has_send_queue = false;
NotifyCallback *notify_callback;
CoarseTime housekeeping_schedule;
AsioTimer housekeeping_timer;
AsioTimer push_request_timer;
bool halt = false;
OptionListContinuation received_options;
ClientCreds::Ptr creds;
ProtoContextCompressionOptions::Ptr proto_context_options;
bool first_packet_received_ = false;
bool sent_push_request = false;
bool auth_pending = false;
SessionStats::Ptr cli_stats;
ClientEvent::Queue::Ptr cli_events;
ClientEvent::Connected::Ptr connected_;
bool echo;
bool info;
Error::Type fatal_ = Error::UNDEF;
std::string fatal_reason_;
OptionList::Limits pushed_options_limit;
OptionList::FilterBase::Ptr pushed_options_filter;
PushOptionsMerger::Ptr pushed_options_merger;
AsioTimer inactive_timer;
Time::Duration inactive_duration;
count_t inactive_last_sample = 0;
unsigned int inactivity_minimum_bytes = 0;
std::uint64_t inactivity_bytes = 0;
std::shared_ptr<SessionStats::inc_callback_t> out_tun_callback_;
std::shared_ptr<SessionStats::inc_callback_t> in_tun_callback_;
std::unique_ptr<std::vector<ClientEvent::Base::Ptr>> info_hold;
AsioTimer info_hold_timer;
// AUTH_FAILED,TEMP flag values
std::chrono::milliseconds temp_fail_backoff_{0};
RemoteList::Advance temp_fail_advance_ = RemoteList::Advance::Addr;
// Client side certcheck
AccHandshaker certcheck_hs;
#ifdef OPENVPN_PACKET_LOG
std::ofstream packet_log;
#endif
};
} // namespace openvpn::ClientProto
#endif
|