0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00
openvpn3/openvpn/transport/pktstream.hpp
David Sommerseth dde1574596
Reformatting source code to new coding style
This is the result after running 'clang-format -i' on all C++ files and
headers, with the defined formatting rules in .clang-format.

Only the openvpn/common/unicode-impl.hpp has been excluded, as that is
mostly a copy of an external project.

Signed-off-by: David Sommerseth <davids@openvpn.net>
2023-01-18 19:24:15 +01:00

170 lines
5.9 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-2022 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/>.
#pragma once
#include <algorithm> // for std::min
#include <cstdint> // for std::uint16_t, etc.
#include <limits>
#include <openvpn/common/exception.hpp>
#include <openvpn/buffer/buffer.hpp>
#include <openvpn/frame/frame.hpp>
namespace openvpn {
// Used to encapsulate OpenVPN or DNS packets onto a stream transport such as TCP,
// or extract them from the stream.
class PacketStream
{
private:
static constexpr size_t SIZE_UNDEF = std::numeric_limits<size_t>::max();
public:
OPENVPN_SIMPLE_EXCEPTION(embedded_packet_size_error);
OPENVPN_SIMPLE_EXCEPTION(packet_not_fully_formed);
// Add stream fragment to packet that we are building up.
// Data will be read from buf. On return buf may still contain
// residual data. If function is able to use all of buf, it may
// grab ownership of it, replacing buf as returned to caller with
// an empty (but possibly pre-allocated) BufferAllocated object.
void put(BufferAllocated &buf, const Frame::Context &frame_context)
{
if (buf.defined())
{
if (!declared_size_defined() && !buffer.defined())
{
if (size_defined(buf))
{
extract_size(buf, frame_context);
if (buf.size() == declared_size) // packet is correctly sized
buffer.swap(buf);
else if (buf.size() < declared_size) // packet is undersized
{
if (buf.offset() + declared_size + frame_context.tailroom() <= buf.capacity())
buffer.swap(buf);
else
{
buffer.swap(buf);
frame_context.realign(buffer);
}
}
else // packet is oversized
{
frame_context.prepare(buffer);
const unsigned char *data = buf.read_alloc(declared_size);
buffer.write(data, declared_size);
}
}
else // rare case where packet fragment is too small to contain embedded size
{
buffer.swap(buf);
frame_context.realign(buffer);
}
}
else
{
while (!declared_size_defined())
{
if (buf.empty())
return;
buffer.push_back(buf.pop_front());
if (size_defined(buffer))
extract_size(buffer, frame_context);
}
if (buffer.size() < declared_size)
{
const size_t needed = std::min(declared_size - buffer.size(), buf.size());
const unsigned char *data = buf.read_alloc(needed);
buffer.write(data, needed);
}
}
}
}
// returns true if get() may be called to return fully formed packet
bool ready() const
{
return declared_size_defined() && buffer.size() >= declared_size;
}
// return fully formed packet as ret. ret, as passed to method, will
// be grabbed, reset, and subsequently used internally.
void get(BufferAllocated &ret)
{
if (declared_size_defined() && buffer.size() == declared_size)
{
ret.swap(buffer);
buffer.reset_content();
declared_size = SIZE_UNDEF;
}
else
throw packet_not_fully_formed();
}
// prepend uint16_t size to buffer
static void prepend_size(Buffer &buf)
{
const std::uint16_t net_len = htons(buf.size());
buf.prepend((const unsigned char *)&net_len, sizeof(net_len));
}
#ifndef UNIT_TEST
private:
#endif
bool declared_size_defined() const
{
return declared_size != SIZE_UNDEF;
}
void extract_size(Buffer &buf, const Frame::Context &frame_context)
{
const size_t size = read_size(buf);
validate_size(size, frame_context);
declared_size = size;
}
static bool size_defined(const Buffer &buf)
{
return buf.size() >= sizeof(std::uint16_t);
}
static size_t read_size(Buffer &buf)
{
std::uint16_t net_len;
buf.read((unsigned char *)&net_len, sizeof(net_len));
return ntohs(net_len);
}
static void validate_size(const size_t size, const Frame::Context &frame_context)
{
// Don't validate upper bound on size if BufferAllocated::GROW is set,
// allowing it to range up to 64kb.
if (!size || (!(frame_context.buffer_flags() & BufferAllocated::GROW) && size > frame_context.payload()))
throw embedded_packet_size_error();
}
size_t declared_size = SIZE_UNDEF; // declared size of packet in leading uint16_t prefix
BufferAllocated buffer; // accumulated packet data
};
} // namespace openvpn