File: bufcomplete.hpp

package info (click to toggle)
openvpn3-client 25%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,276 kB
  • sloc: cpp: 190,085; python: 7,218; ansic: 1,866; sh: 1,361; java: 402; lisp: 81; makefile: 17
file content (103 lines) | stat: -rw-r--r-- 2,149 bytes parent folder | download
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
//    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_BUFFER_BUFCOMPLETE_H
#define OPENVPN_BUFFER_BUFCOMPLETE_H

#include <cstdint>   // for std::uint32_t, uint16_t, uint8_t
#include <algorithm> // for std::min

#include <openvpn/buffer/buffer.hpp>

namespace openvpn {

class BufferComplete
{
  public:
    virtual ~BufferComplete() = default;

    /* each advance/get method returns false if message is incomplete */
    bool advance(size_t size)
    {
        while (size)
        {
            if (!fetch_buffer())
                return false;
            const size_t s = std::min(size, buf.size());
            buf.advance(s);
            size -= s;
        }
        return true;
    }

    // assumes embedded big-endian uint16_t length in the stream
    bool advance_string()
    {
        std::uint8_t h, l;
        if (!get(h))
            return false;
        if (!get(l))
            return false;
        return advance(size_t(h) << 8 | size_t(l));
    }

    bool advance_to_null()
    {
        std::uint8_t c;
        while (get(c))
        {
            if (!c)
                return true;
        }
        return false;
    }

    bool get(std::uint8_t &c)
    {
        if (!fetch_buffer())
            return false;
        c = buf.pop_front();
        return true;
    }

    bool defined() const
    {
        return buf.defined();
    }

  protected:
    void reset_buf(const Buffer &buf_arg)
    {
        buf = buf_arg;
    }

    void reset_buf()
    {
        buf.reset_content();
    }

  private:
    virtual void next_buffer() = 0;

    bool fetch_buffer()
    {
        if (buf.defined())
            return true;
        next_buffer();
        return buf.defined();
    }

    Buffer buf;
};

} // namespace openvpn

#endif