-
Notifications
You must be signed in to change notification settings - Fork 398
/
cliproto.hpp
1692 lines (1488 loc) · 56.9 KB
/
cliproto.hpp
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
// 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>
#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();
}
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;
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;