mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
Squashed 'Sources/OpenVPNAdapter/Libraries/Vendors/openvpn/' content from commit 554d8b888
git-subtree-dir: Sources/OpenVPNAdapter/Libraries/Vendors/openvpn git-subtree-split: 554d8b88817d3a7b836e78940ed61bb11ed2bd9b
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
// 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/>.
|
||||
|
||||
#ifndef OPENVPN_IP_DHCP_H
|
||||
#define OPENVPN_IP_DHCP_H
|
||||
|
||||
#include <openvpn/ip/eth.hpp>
|
||||
#include <openvpn/ip/ip4.hpp>
|
||||
#include <openvpn/ip/udp.hpp>
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
struct DHCP {
|
||||
enum {
|
||||
/* DHCP Option types */
|
||||
DHCP_PAD = 0,
|
||||
DHCP_NETMASK = 1,
|
||||
DHCP_ROUTER = 3,
|
||||
DHCP_DNS = 6,
|
||||
DHCP_MSG_TYPE = 53 /* message type (u8) */,
|
||||
DHCP_END = 255,
|
||||
|
||||
/* DHCP Messages types */
|
||||
DHCPDISCOVER = 1,
|
||||
DHCPOFFER = 2,
|
||||
DHCPREQUEST = 3,
|
||||
DHCPDECLINE = 4,
|
||||
DHCPACK = 5,
|
||||
DHCPNAK = 6,
|
||||
DHCPRELEASE = 7,
|
||||
DHCPINFORM = 8,
|
||||
|
||||
/* DHCP UDP port numbers */
|
||||
BOOTPS_PORT = 67,
|
||||
BOOTPC_PORT = 68,
|
||||
|
||||
/* DHCP message op */
|
||||
BOOTREQUEST = 1,
|
||||
BOOTREPLY = 2,
|
||||
};
|
||||
|
||||
std::uint8_t op; /* message op */
|
||||
std::uint8_t htype; /* hardware address type (e.g. '1' = 10Mb Ethernet) */
|
||||
std::uint8_t hlen; /* hardware address length (e.g. '6' for 10Mb Ethernet) */
|
||||
std::uint8_t hops; /* client sets to 0, may be used by relay agents */
|
||||
std::uint32_t xid; /* transaction ID, chosen by client */
|
||||
std::uint16_t secs; /* seconds since request process began, set by client */
|
||||
std::uint16_t flags;
|
||||
std::uint32_t ciaddr; /* client IP address, client sets if known */
|
||||
std::uint32_t yiaddr; /* 'your' IP address -- server's response to client */
|
||||
std::uint32_t siaddr; /* server IP address */
|
||||
std::uint32_t giaddr; /* relay agent IP address */
|
||||
std::uint8_t chaddr[16]; /* client hardware address */
|
||||
std::uint8_t sname[64]; /* optional server host name */
|
||||
std::uint8_t file[128]; /* boot file name */
|
||||
std::uint32_t magic; /* must be 0x63825363 (network order) */
|
||||
};
|
||||
|
||||
struct DHCPPacket {
|
||||
EthHeader eth;
|
||||
IPv4Header ip;
|
||||
UDPHeader udp;
|
||||
DHCP dhcp;
|
||||
std::uint8_t options[];
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,42 @@
|
||||
// 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 the Ethernet header
|
||||
|
||||
#ifndef OPENVPN_IP_ETH_H
|
||||
#define OPENVPN_IP_ETH_H
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
struct EthHeader {
|
||||
std::uint8_t dest_mac[6];
|
||||
std::uint8_t src_mac[6];
|
||||
std::uint16_t ethertype;
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,60 @@
|
||||
// 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 the ICMPv4 header
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
#include <openvpn/ip/ip4.hpp>
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
struct ICMPv4 {
|
||||
enum {
|
||||
ECHO_REQUEST = 8,
|
||||
ECHO_REPLY = 0,
|
||||
};
|
||||
|
||||
struct IPv4Header head;
|
||||
|
||||
union {
|
||||
struct {
|
||||
std::uint8_t type;
|
||||
std::uint8_t code;
|
||||
};
|
||||
std::uint16_t type_code;
|
||||
};
|
||||
std::uint16_t checksum;
|
||||
|
||||
union {
|
||||
struct {
|
||||
std::uint16_t id;
|
||||
std::uint16_t seq_num;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
@@ -0,0 +1,61 @@
|
||||
// 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 the ICMPv6 header
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
#include <openvpn/ip/ip6.hpp>
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
|
||||
struct ICMPv6 {
|
||||
enum {
|
||||
ECHO_REQUEST = 128,
|
||||
ECHO_REPLY = 129,
|
||||
};
|
||||
|
||||
struct IPv6Header head;
|
||||
|
||||
union {
|
||||
struct {
|
||||
std::uint8_t type;
|
||||
std::uint8_t code;
|
||||
};
|
||||
std::uint16_t type_code;
|
||||
};
|
||||
std::uint16_t checksum;
|
||||
|
||||
union {
|
||||
struct {
|
||||
std::uint16_t id;
|
||||
std::uint16_t seq_num;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
@@ -0,0 +1,68 @@
|
||||
// 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/>.
|
||||
|
||||
// IPv4 header
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
|
||||
struct IPv4Header
|
||||
{
|
||||
static unsigned int length(const std::uint8_t version_len)
|
||||
{
|
||||
return (version_len & 0x0F) << 2;
|
||||
}
|
||||
|
||||
static std::uint8_t ver_len(const unsigned int version,
|
||||
const unsigned int len)
|
||||
{
|
||||
return ((len >> 2) & 0x0F) | (version & 0x0F) << 4;
|
||||
}
|
||||
|
||||
std::uint8_t version_len;
|
||||
|
||||
std::uint8_t tos;
|
||||
std::uint16_t tot_len;
|
||||
std::uint16_t id;
|
||||
|
||||
enum {
|
||||
OFFMASK=0x1fff,
|
||||
};
|
||||
std::uint16_t frag_off;
|
||||
|
||||
std::uint8_t ttl;
|
||||
|
||||
std::uint8_t protocol;
|
||||
|
||||
std::uint16_t check;
|
||||
std::uint32_t saddr;
|
||||
std::uint32_t daddr;
|
||||
/* The options start here. */
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
@@ -0,0 +1,50 @@
|
||||
// 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/>.
|
||||
|
||||
// IPv6 header
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
#include <openvpn/common/socktypes.hpp>
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
namespace openvpn {
|
||||
|
||||
struct IPv6Header
|
||||
{
|
||||
std::uint8_t version_prio;
|
||||
|
||||
std::uint8_t flow_lbl[3];
|
||||
|
||||
std::uint16_t payload_len;
|
||||
std::uint8_t nexthdr;
|
||||
std::uint8_t hop_limit;
|
||||
|
||||
struct in6_addr saddr;
|
||||
struct in6_addr daddr;
|
||||
};
|
||||
}
|
||||
|
||||
#pragma pack(pop)
|
||||
@@ -0,0 +1,45 @@
|
||||
// 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/>.
|
||||
|
||||
// Common declarations for IPv4 and IPv6
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint> // for std::uint32_t, uint16_t, uint8_t
|
||||
|
||||
namespace openvpn {
|
||||
namespace IPCommon {
|
||||
|
||||
enum {
|
||||
ICMPv4 = 1, /* ICMPv4 protocol */
|
||||
ICMPv6 = 58, /* ICMPv6 protocol */
|
||||
IGMP = 2, /* IGMP protocol */
|
||||
TCP = 6, /* TCP protocol */
|
||||
UDP = 17, /* UDP protocol */
|
||||
};
|
||||
|
||||
inline unsigned int version(const std::uint8_t version_len_prio)
|
||||
{
|
||||
return (version_len_prio >> 4) & 0x0F;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
// 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 the UDP header
|
||||
|
||||
#ifndef OPENVPN_IP_UDP_H
|
||||
#define OPENVPN_IP_UDP_H
|
||||
|
||||
#include <openvpn/ip/ipcommon.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
struct UDPHeader {
|
||||
std::uint16_t source;
|
||||
std::uint16_t dest;
|
||||
std::uint16_t len;
|
||||
std::uint16_t check;
|
||||
};
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
inline std::uint16_t udp_checksum (const std::uint8_t *buf,
|
||||
const unsigned int len_udp,
|
||||
const std::uint8_t *src_addr,
|
||||
const std::uint8_t *dest_addr)
|
||||
{
|
||||
std::uint32_t sum = 0;
|
||||
|
||||
/* make 16 bit words out of every two adjacent 8 bit words and */
|
||||
/* calculate the sum of all 16 bit words */
|
||||
for (unsigned int i = 0; i < len_udp; i += 2)
|
||||
{
|
||||
std::uint16_t word16 = ((buf[i] << 8) & 0xFF00) + ((i + 1 < len_udp) ? (buf[i+1] & 0xFF) : 0);
|
||||
sum += word16;
|
||||
}
|
||||
|
||||
/* add the UDP pseudo header which contains the IP source and destination addresses */
|
||||
for (unsigned int i = 0; i < 4; i += 2)
|
||||
{
|
||||
std::uint16_t word16 =((src_addr[i] << 8) & 0xFF00) + (src_addr[i+1] & 0xFF);
|
||||
sum += word16;
|
||||
}
|
||||
for (unsigned int i = 0; i < 4; i += 2)
|
||||
{
|
||||
std::uint16_t word16 =((dest_addr[i] << 8) & 0xFF00) + (dest_addr[i+1] & 0xFF);
|
||||
sum += word16;
|
||||
}
|
||||
|
||||
/* the protocol number and the length of the UDP packet */
|
||||
sum += (std::uint16_t)IPCommon::UDP + (std::uint16_t)len_udp;
|
||||
|
||||
/* keep only the last 16 bits of the 32 bit calculated sum and add the carries */
|
||||
while (sum >> 16)
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
|
||||
/* take the one's complement of sum */
|
||||
return std::uint16_t(~sum);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user