mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
6608878d5 [OVPN3-341] implement mssfix support 1bf3fc0e4 win: update project files f8d209435 travis: update to default osx image: xcode9.4 31eb246a8 travis.yml: align deps version to lib-version 996f86635 RunContext: fixed rebase issue that added two "default: signal_rearm();" clauses aebea6456 build script: minor changes to Cityhash inclusion 1d754072c modstat: make update_file_mod_time_nanoseconds() a no-op on non-Linux 7974c9867 Fixed some breakage caused by recent endian/ffs commits a0dd7fe8b endian.hpp: break out endian compile-time tests to endian_platform.hpp c8bdf5a34 ffs.hpp: support additional numeric types dcb0c9452 BufferType: append() argument can now be a flexible buffer type 2009a8a25 Added AsioTimerSafe 39e71b7dd event_loop_wait_barrier: use a longer default timeout when running under valgrind 8b7e08e9b string::contains_non_space_ctrl: consider ASCII char 127 (DEL) to be a control char e43024d7c RunContext: rearm non-terminating signals 6ab379323 write_binary_atomic: remove temporary file on move failure 55dc653cd path: added is_contained() 02bf235c6 Reverted previous commit: "ReplyParser: added undefined status" 84dbc5b9b Allow test/cli.cpp to be used with NetCfg Tunbuilder client 80fed2c55 Allow updating auth-token during session ad7da751e don't print time in debug message and use OPENVPN_LOG_PROTO_VERBOSE 981407994 tls-crypt-v2: implement abstract metadata parser be38bbeb8 tls-crypt-v2: test/ssl/proto.cpp - extend protocol test 60fcf374f tls-crypt-v2: implement WKc appending/unwrapping logic 51f4a3a29 tls-crypt-v2: introduce CONTROL_HARD_RESET_V3 packet type 156a6e58b tls-crypt-v2: implement client key parser and renderer 54a97b381 ssl: add support for encoding/decoding PEM format f090fcda4 tls-crypt: make HMAC API more generic d87f5bbc0 OpenSSL: init library 2ea88a93b Add Remote endpoint information to protect_socket call 0a081ee17 [OVPN3-315] cli/go: add option to compile SITNL component 5bbfb57c0 [OVPN3-315] TunLinux::Client: allow user to select netlink at compile time e8458a68e [OVPN3-315] GW: add netlink support 4e77edb9e [OVPN3-315] TunLinux: add Netlink implementation for Tun setup methods 68508fe56 bigmutex: include missing extern.hpp header a7b923e1e Fix logic inversion from commit 2de9aebc 923e10d13 runcontext: arrange members to allow inheritance 2de9aebc7 Replace deprecated mbedtls_sha1 with mbedtls_sha1_ret e9c0bd00b Remove unused private field ee17c33c2 Add virtual deconstructor to TransportClientParent fab64ba0f Fix clang warning about unused attributes and missing overrides 2624d9ddf Also parse dhcp-option DNS6 as DNS server for compatibility with OpenVPN 2 6d12c9cc2 Refuse external pki with non RSA keys 4a25059f5 test/ovpncli: Don't override PROF env variable f241c4c5f scripts: Add tool to update copyright years 27beeb03d Update lz4 version to 1.8.3 17e356858 Define DASIO_HAS_STD_STRING_VIEW on Android build b107fd994 Remove unsupported platforms from Android build 6a200f72e Ensure all Android components are always installed fbcd374a4 [OVPN3-327] OpenSSL: ensure >TLS1.0 is negotiated by default d9b1f78b6 JSON: #define OPENVPN_JSON_INTERNAL when internal JSON library is used 39290f19d Fix build issues with #if macro on big-endian hardware d4f62d9ed Fix instantiating a new URL instead of parsing the URL git-subtree-dir: Sources/OpenVPNAdapter/Libraries/Vendors/openvpn git-subtree-split: 6608878d57eec1c64c16c5a13ee65b2cf0418ca1
183 lines
6.5 KiB
C++
183 lines
6.5 KiB
C++
// 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-2017 OpenVPN Inc.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License Version 3
|
|
// 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program in the COPYING file.
|
|
// If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// Define OpenVPN error codes and a method to convert them to a string representation
|
|
|
|
#ifndef OPENVPN_ERROR_ERROR_H
|
|
#define OPENVPN_ERROR_ERROR_H
|
|
|
|
#include <openvpn/common/arraysize.hpp>
|
|
|
|
namespace openvpn {
|
|
namespace Error {
|
|
|
|
enum Type {
|
|
SUCCESS=0, // no error
|
|
NETWORK_RECV_ERROR, // errors receiving on network socket
|
|
NETWORK_EOF_ERROR, // EOF received on TCP network socket
|
|
NETWORK_SEND_ERROR, // errors sending on network socket
|
|
NETWORK_UNAVAILABLE, // network unavailable
|
|
DECRYPT_ERROR, // data channel encrypt/decrypt error
|
|
HMAC_ERROR, // HMAC verification failure
|
|
REPLAY_ERROR, // error from PacketIDReceive
|
|
BUFFER_ERROR, // exception thrown in Buffer methods
|
|
CC_ERROR, // general control channel errors
|
|
BAD_SRC_ADDR, // packet from unknown source address
|
|
COMPRESS_ERROR, // compress/decompress errors on data channel
|
|
RESOLVE_ERROR, // DNS resolution error
|
|
SOCKET_PROTECT_ERROR, // Error calling protect() method on socket
|
|
TUN_READ_ERROR, // read errors on tun/tap interface
|
|
TUN_WRITE_ERROR, // write errors on tun/tap interface
|
|
TUN_FRAMING_ERROR, // error with tun PF_INET/PF_INET6 prefix
|
|
TUN_SETUP_FAILED, // error setting up tun/tap interface
|
|
TUN_IFACE_CREATE, // error creating tun/tap interface
|
|
TUN_IFACE_DISABLED, // tun/tap interface is disabled
|
|
TUN_ERROR, // general tun error
|
|
TAP_NOT_SUPPORTED, // dev tap is present in profile but not supported
|
|
REROUTE_GW_NO_DNS, // redirect-gateway specified without alt DNS servers
|
|
TRANSPORT_ERROR, // general transport error
|
|
TCP_OVERFLOW, // TCP output queue overflow
|
|
TCP_SIZE_ERROR, // bad embedded uint16_t TCP packet size
|
|
TCP_CONNECT_ERROR, // client error on TCP connect
|
|
UDP_CONNECT_ERROR, // client error on UDP connect
|
|
SSL_ERROR, // errors resulting from read/write on SSL object
|
|
SSL_PARTIAL_WRITE, // SSL object did not process all written cleartext
|
|
ENCAPSULATION_ERROR, // exceptions thrown during packet encapsulation
|
|
EPKI_CERT_ERROR, // error obtaining certificate from External PKI provider
|
|
EPKI_SIGN_ERROR, // error obtaining RSA signature from External PKI provider
|
|
HANDSHAKE_TIMEOUT, // handshake failed to complete within given time frame
|
|
KEEPALIVE_TIMEOUT, // lost contact with peer
|
|
INACTIVE_TIMEOUT, // disconnected due to inactive timer
|
|
CONNECTION_TIMEOUT, // connection failed to establish within given time
|
|
PRIMARY_EXPIRE, // primary key context expired
|
|
TLS_VERSION_MIN, // peer cannot handshake at our minimum required TLS version
|
|
TLS_AUTH_FAIL, // tls-auth HMAC verification failed
|
|
TLS_CRYPT_META_FAIL, // tls-crypt-v2 metadata verification failed
|
|
CERT_VERIFY_FAIL, // peer certificate verification failure
|
|
PEM_PASSWORD_FAIL, // incorrect or missing PEM private key decryption password
|
|
AUTH_FAILED, // general authentication failure
|
|
CLIENT_HALT, // HALT message from server received
|
|
CLIENT_RESTART, // RESTART message from server received
|
|
RELAY, // RELAY message from server received
|
|
RELAY_ERROR, // RELAY error
|
|
N_PAUSE, // Number of transitions to Pause state
|
|
N_RECONNECT, // Number of reconnections
|
|
N_KEY_LIMIT_RENEG, // Number of renegotiations triggered by per-key limits such as data or packet limits
|
|
KEY_STATE_ERROR, // Received packet didn't match expected key state
|
|
PROXY_ERROR, // HTTP proxy error
|
|
PROXY_NEED_CREDS, // HTTP proxy needs credentials
|
|
|
|
// key event errors
|
|
KEV_NEGOTIATE_ERROR,
|
|
KEV_PENDING_ERROR,
|
|
N_KEV_EXPIRE,
|
|
|
|
// Packet ID error detail
|
|
PKTID_INVALID,
|
|
PKTID_BACKTRACK,
|
|
PKTID_EXPIRE,
|
|
PKTID_REPLAY,
|
|
PKTID_TIME_BACKTRACK,
|
|
|
|
N_ERRORS,
|
|
|
|
// undefined error
|
|
UNDEF=SUCCESS,
|
|
};
|
|
|
|
inline const char *name(const size_t type)
|
|
{
|
|
static const char *names[] = {
|
|
"SUCCESS",
|
|
"NETWORK_RECV_ERROR",
|
|
"NETWORK_EOF_ERROR",
|
|
"NETWORK_SEND_ERROR",
|
|
"NETWORK_UNAVAILABLE",
|
|
"DECRYPT_ERROR",
|
|
"HMAC_ERROR",
|
|
"REPLAY_ERROR",
|
|
"BUFFER_ERROR",
|
|
"CC_ERROR",
|
|
"BAD_SRC_ADDR",
|
|
"COMPRESS_ERROR",
|
|
"RESOLVE_ERROR",
|
|
"SOCKET_PROTECT_ERROR",
|
|
"TUN_READ_ERROR",
|
|
"TUN_WRITE_ERROR",
|
|
"TUN_FRAMING_ERROR",
|
|
"TUN_SETUP_FAILED",
|
|
"TUN_IFACE_CREATE",
|
|
"TUN_IFACE_DISABLED",
|
|
"TUN_ERROR",
|
|
"TAP_NOT_SUPPORTED",
|
|
"REROUTE_GW_NO_DNS",
|
|
"TRANSPORT_ERROR",
|
|
"TCP_OVERFLOW",
|
|
"TCP_SIZE_ERROR",
|
|
"TCP_CONNECT_ERROR",
|
|
"UDP_CONNECT_ERROR",
|
|
"SSL_ERROR",
|
|
"SSL_PARTIAL_WRITE",
|
|
"ENCAPSULATION_ERROR",
|
|
"EPKI_CERT_ERROR",
|
|
"EPKI_SIGN_ERROR",
|
|
"HANDSHAKE_TIMEOUT",
|
|
"KEEPALIVE_TIMEOUT",
|
|
"INACTIVE_TIMEOUT",
|
|
"CONNECTION_TIMEOUT",
|
|
"PRIMARY_EXPIRE",
|
|
"TLS_VERSION_MIN",
|
|
"TLS_AUTH_FAIL",
|
|
"TLS_CRYPT_META_FAIL",
|
|
"CERT_VERIFY_FAIL",
|
|
"PEM_PASSWORD_FAIL",
|
|
"AUTH_FAILED",
|
|
"CLIENT_HALT",
|
|
"CLIENT_RESTART",
|
|
"RELAY",
|
|
"RELAY_ERROR",
|
|
"N_PAUSE",
|
|
"N_RECONNECT",
|
|
"N_KEY_LIMIT_RENEG",
|
|
"KEY_STATE_ERROR",
|
|
"PROXY_ERROR",
|
|
"PROXY_NEED_CREDS",
|
|
"KEV_NEGOTIATE_ERROR",
|
|
"KEV_PENDING_ERROR",
|
|
"N_KEV_EXPIRE",
|
|
"PKTID_INVALID",
|
|
"PKTID_BACKTRACK",
|
|
"PKTID_EXPIRE",
|
|
"PKTID_REPLAY",
|
|
"PKTID_TIME_BACKTRACK",
|
|
};
|
|
|
|
static_assert(N_ERRORS == array_size(names), "error names array inconsistency");
|
|
if (type < N_ERRORS)
|
|
return names[type];
|
|
else
|
|
return "UNKNOWN_ERROR_TYPE";
|
|
}
|
|
}
|
|
} // namespace openvpn
|
|
|
|
#endif // OPENVPN_ERROR_ERROR_H
|