Skip to content

Commit

Permalink
quic: always copy stateless reset token
Browse files Browse the repository at this point in the history
Take ownership of the token value, since the memory for it is allocated
anyway and the buffer size is just 16, i.e. copyable very cheaply.

This makes valgrind stop complaining about a use-after-free error
when running `sequential/test-quic-preferred-address-ipv6`.

PR-URL: #33917
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Denys Otrishko <shishugi@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
  • Loading branch information
addaleax authored and jasnell committed Jun 17, 2020
1 parent e9145db commit 133a97f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
15 changes: 10 additions & 5 deletions src/quic/node_quic_util-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,22 +287,27 @@ bool PreferredAddress::ResolvePreferredAddress(
StatelessResetToken::StatelessResetToken(
uint8_t* token,
const uint8_t* secret,
const QuicCID& cid) : token_(token) {
const QuicCID& cid) {
GenerateResetToken(token, secret, cid);
memcpy(buf_, token, sizeof(buf_));
}

StatelessResetToken::StatelessResetToken(
const uint8_t* secret,
const QuicCID& cid)
: token_(buf_) {
const QuicCID& cid) {
GenerateResetToken(buf_, secret, cid);
}

StatelessResetToken::StatelessResetToken(
const uint8_t* token) {
memcpy(buf_, token, sizeof(buf_));
}

std::string StatelessResetToken::ToString() const {
std::vector<char> dest(NGTCP2_STATELESS_RESET_TOKENLEN * 2 + 1);
dest[dest.size() - 1] = '\0';
size_t written = StringBytes::hex_encode(
reinterpret_cast<const char*>(token_),
reinterpret_cast<const char*>(buf_),
NGTCP2_STATELESS_RESET_TOKENLEN,
dest.data(),
dest.size());
Expand All @@ -313,7 +318,7 @@ size_t StatelessResetToken::Hash::operator()(
const StatelessResetToken& token) const {
size_t hash = 0;
for (size_t n = 0; n < NGTCP2_STATELESS_RESET_TOKENLEN; n++)
hash ^= std::hash<uint8_t>{}(token.token_[n]) + 0x9e3779b9 +
hash ^= std::hash<uint8_t>{}(token.buf_[n]) + 0x9e3779b9 +
(hash << 6) + (hash >> 2);
return hash;
}
Expand Down
8 changes: 3 additions & 5 deletions src/quic/node_quic_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,12 @@ class StatelessResetToken : public MemoryRetainer {
const uint8_t* secret,
const QuicCID& cid);

explicit StatelessResetToken(
const uint8_t* token)
: token_(token) {}
explicit inline StatelessResetToken(
const uint8_t* token);

inline std::string ToString() const;

const uint8_t* data() const { return token_; }
const uint8_t* data() const { return buf_; }

struct Hash {
inline size_t operator()(const StatelessResetToken& token) const;
Expand All @@ -414,7 +413,6 @@ class StatelessResetToken : public MemoryRetainer {

private:
uint8_t buf_[NGTCP2_STATELESS_RESET_TOKENLEN]{};
const uint8_t* token_;
};

template <typename T>
Expand Down

0 comments on commit 133a97f

Please sign in to comment.