]> git.ipfire.org Git - thirdparty/squid.git/blame - src/parser/BinaryTokenizer.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / parser / BinaryTokenizer.cc
CommitLineData
6821c276 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
6821c276
CT
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 24 SBuf */
10
11#include "squid.h"
d9219c2b 12#include "parser/BinaryTokenizer.h"
6821c276 13
67c99fc6 14Parser::BinaryTokenizer::BinaryTokenizer(): BinaryTokenizer(SBuf())
6821c276
CT
15{
16}
17
67c99fc6 18Parser::BinaryTokenizer::BinaryTokenizer(const SBuf &data, const bool expectMore):
c3149111 19 context(nullptr),
6821c276
CT
20 data_(data),
21 parsed_(0),
19928af1
AR
22 syncPoint_(0),
23 expectMore_(expectMore)
6821c276
CT
24{
25}
26
c3149111
AR
27static inline
28std::ostream &
67c99fc6 29operator <<(std::ostream &os, const Parser::BinaryTokenizerContext *context)
c3149111
AR
30{
31 if (context)
32 os << context->parent << context->name;
33 return os;
34}
35
6821c276
CT
36/// debugging helper that prints a "standard" debugs() trailer
37#define BinaryTokenizer_tail(size, start) \
19928af1
AR
38 " occupying " << (size) << " bytes @" << (start) << " in " << this << \
39 (expectMore_ ? ';' : '.');
6821c276
CT
40
41/// logs and throws if fewer than size octets remain; no other side effects
42void
67c99fc6 43Parser::BinaryTokenizer::want(uint64_t size, const char *description) const
6821c276
CT
44{
45 if (parsed_ + size > data_.length()) {
46 debugs(24, 5, (parsed_ + size - data_.length()) << " more bytes for " <<
47 context << description << BinaryTokenizer_tail(size, parsed_));
19928af1 48 Must(expectMore_); // throw an error on premature input termination
6821c276
CT
49 throw InsufficientInput();
50 }
51}
52
c3149111 53void
67c99fc6 54Parser::BinaryTokenizer::got(uint64_t size, const char *description) const
c3149111
AR
55{
56 debugs(24, 7, context << description <<
57 BinaryTokenizer_tail(size, parsed_ - size));
58}
59
6821c276
CT
60/// debugging helper for parsed number fields
61void
67c99fc6 62Parser::BinaryTokenizer::got(uint32_t value, uint64_t size, const char *description) const
6821c276
CT
63{
64 debugs(24, 7, context << description << '=' << value <<
65 BinaryTokenizer_tail(size, parsed_ - size));
66}
67
68/// debugging helper for parsed areas/blobs
69void
67c99fc6 70Parser::BinaryTokenizer::got(const SBuf &value, uint64_t size, const char *description) const
6821c276
CT
71{
72 debugs(24, 7, context << description << '=' <<
73 Raw(nullptr, value.rawContent(), value.length()).hex() <<
74 BinaryTokenizer_tail(size, parsed_ - size));
75
76}
77
78/// debugging helper for skipped fields
79void
67c99fc6 80Parser::BinaryTokenizer::skipped(uint64_t size, const char *description) const
6821c276
CT
81{
82 debugs(24, 7, context << description << BinaryTokenizer_tail(size, parsed_ - size));
83
84}
85
86/// Returns the next ready-for-shift byte, adjusting the number of parsed bytes.
87/// The larger 32-bit return type helps callers shift/merge octets into numbers.
88/// This internal method does not perform out-of-bounds checks.
89uint32_t
67c99fc6 90Parser::BinaryTokenizer::octet()
6821c276
CT
91{
92 // While char may be signed, we view data characters as unsigned,
93 // which helps to arrive at the right 32-bit return value.
94 return static_cast<uint8_t>(data_[parsed_++]);
95}
96
97void
67c99fc6 98Parser::BinaryTokenizer::reset(const SBuf &data, const bool expectMore)
6821c276 99{
19928af1 100 *this = BinaryTokenizer(data, expectMore);
6821c276
CT
101}
102
103void
67c99fc6 104Parser::BinaryTokenizer::rollback()
6821c276
CT
105{
106 parsed_ = syncPoint_;
107}
108
109void
67c99fc6 110Parser::BinaryTokenizer::commit()
6821c276 111{
6821c276
CT
112 syncPoint_ = parsed_;
113}
114
115bool
67c99fc6 116Parser::BinaryTokenizer::atEnd() const
6821c276
CT
117{
118 return parsed_ >= data_.length();
119}
120
121uint8_t
67c99fc6 122Parser::BinaryTokenizer::uint8(const char *description)
6821c276
CT
123{
124 want(1, description);
125 const uint8_t result = octet();
126 got(result, 1, description);
127 return result;
128}
129
130uint16_t
67c99fc6 131Parser::BinaryTokenizer::uint16(const char *description)
6821c276
CT
132{
133 want(2, description);
134 const uint16_t result = (octet() << 8) | octet();
135 got(result, 2, description);
136 return result;
137}
138
139uint32_t
67c99fc6 140Parser::BinaryTokenizer::uint24(const char *description)
6821c276
CT
141{
142 want(3, description);
143 const uint32_t result = (octet() << 16) | (octet() << 8) | octet();
144 got(result, 3, description);
145 return result;
146}
147
148uint32_t
67c99fc6 149Parser::BinaryTokenizer::uint32(const char *description)
6821c276
CT
150{
151 want(4, description);
152 const uint32_t result = (octet() << 24) | (octet() << 16) | (octet() << 8) | octet();
153 got(result, 4, description);
154 return result;
155}
156
157SBuf
67c99fc6 158Parser::BinaryTokenizer::area(uint64_t size, const char *description)
6821c276
CT
159{
160 want(size, description);
161 const SBuf result = data_.substr(parsed_, size);
162 parsed_ += size;
163 got(result, size, description);
164 return result;
165}
166
167void
67c99fc6 168Parser::BinaryTokenizer::skip(uint64_t size, const char *description)
6821c276
CT
169{
170 want(size, description);
171 parsed_ += size;
172 skipped(size, description);
173}
174
a804b6fe
AR
175/*
176 * BinaryTokenizer::pstringN() implementations below reduce debugging noise by
177 * not parsing empty areas and not summarizing parsing context.success().
178 */
179
180SBuf
67c99fc6 181Parser::BinaryTokenizer::pstring8(const char *description)
a804b6fe
AR
182{
183 BinaryTokenizerContext pstring(*this, description);
184 if (const uint8_t length = uint8(".length"))
185 return area(length, ".octets");
186 return SBuf();
187}
188
189SBuf
67c99fc6 190Parser::BinaryTokenizer::pstring16(const char *description)
a804b6fe
AR
191{
192 BinaryTokenizerContext pstring(*this, description);
193 if (const uint16_t length = uint16(".length"))
194 return area(length, ".octets");
195 return SBuf();
196}
197
198SBuf
67c99fc6 199Parser::BinaryTokenizer::pstring24(const char *description)
a804b6fe
AR
200{
201 BinaryTokenizerContext pstring(*this, description);
202 if (const uint32_t length = uint24(".length"))
203 return area(length, ".octets");
204 return SBuf();
205}
fde0b2ca 206