blob: 52d5e11a354dc78e7a44b917b96c4e670582d6f2 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2018 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_
6#define QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_
7
vasilvv872e7a32019-03-12 16:42:44 -07008#include <string>
dschinazib3241162019-06-10 17:59:37 -07009#include <vector>
vasilvv872e7a32019-03-12 16:42:44 -070010
QUICHE teama6ef0a62019-03-07 20:34:33 -050011#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050012#include "net/third_party/quiche/src/quic/platform/api/quic_uint128.h"
13
14namespace quic {
15
16enum QuicConnectionIdLength {
17 PACKET_0BYTE_CONNECTION_ID = 0,
18 PACKET_8BYTE_CONNECTION_ID = 8,
19};
20
21// This is a property of QUIC headers, it indicates whether the connection ID
22// should actually be sent over the wire (or was sent on received packets).
23enum QuicConnectionIdIncluded : uint8_t {
24 CONNECTION_ID_PRESENT = 1,
25 CONNECTION_ID_ABSENT = 2,
26};
27
dschinazib012d212019-08-01 18:07:26 -070028// Maximum connection ID length supported by versions that use the encoding from
29// draft-ietf-quic-invariants-06.
30const uint8_t kQuicMaxConnectionIdWithLengthPrefixLength = 20;
31
32// Maximum connection ID length supported by versions that use the encoding from
33// draft-ietf-quic-invariants-05.
34const uint8_t kQuicMaxConnectionId4BitLength = 18;
QUICHE teama6ef0a62019-03-07 20:34:33 -050035
36// kQuicDefaultConnectionIdLength is the only supported length for QUIC
37// versions < v99, and is the default picked for all versions.
38const uint8_t kQuicDefaultConnectionIdLength = 8;
39
QUICHE team963d57e2019-03-21 10:58:47 -070040// According to the IETF spec, the initial server connection ID generated by
41// the client must be at least this long.
42const uint8_t kQuicMinimumInitialConnectionIdLength = 8;
43
QUICHE teama6ef0a62019-03-07 20:34:33 -050044class QUIC_EXPORT_PRIVATE QuicConnectionId {
45 public:
46 // Creates a connection ID of length zero.
47 QuicConnectionId();
48
49 // Creates a connection ID from network order bytes.
50 QuicConnectionId(const char* data, uint8_t length);
51
dschinazib3241162019-06-10 17:59:37 -070052 // Creates a connection ID from another connection ID.
53 QuicConnectionId(const QuicConnectionId& other);
54
55 // Assignment operator.
56 QuicConnectionId& operator=(const QuicConnectionId& other);
57
QUICHE teama6ef0a62019-03-07 20:34:33 -050058 ~QuicConnectionId();
59
60 // Returns the length of the connection ID, in bytes.
61 uint8_t length() const;
62
63 // Sets the length of the connection ID, in bytes.
dschinazib3241162019-06-10 17:59:37 -070064 // WARNING: Calling set_length() can change the in-memory location of the
65 // connection ID. Callers must therefore ensure they call data() or
66 // mutable_data() after they call set_length().
QUICHE teama6ef0a62019-03-07 20:34:33 -050067 void set_length(uint8_t length);
68
69 // Returns a pointer to the connection ID bytes, in network byte order.
70 const char* data() const;
71
72 // Returns a mutable pointer to the connection ID bytes,
73 // in network byte order.
74 char* mutable_data();
75
76 // Returns whether the connection ID has length zero.
77 bool IsEmpty() const;
78
79 // Hash() is required to use connection IDs as keys in hash tables.
dschinazi0fdff8e2019-07-18 09:07:39 -070080 // During the lifetime of a process, the output of Hash() is guaranteed to be
81 // the same for connection IDs that are equal to one another. Note however
82 // that this property is not guaranteed across process lifetimes. This makes
83 // Hash() suitable for data structures such as hash tables but not for sending
84 // a hash over the network.
QUICHE teama6ef0a62019-03-07 20:34:33 -050085 size_t Hash() const;
86
87 // Generates an ASCII string that represents
88 // the contents of the connection ID, or "0" if it is empty.
vasilvvc48c8712019-03-11 13:38:16 -070089 std::string ToString() const;
QUICHE teama6ef0a62019-03-07 20:34:33 -050090
91 // operator<< allows easily logging connection IDs.
92 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
93 std::ostream& os,
94 const QuicConnectionId& v);
95
96 bool operator==(const QuicConnectionId& v) const;
97 bool operator!=(const QuicConnectionId& v) const;
98 // operator< is required to use connection IDs as keys in hash tables.
99 bool operator<(const QuicConnectionId& v) const;
100
101 private:
dschinazib3241162019-06-10 17:59:37 -0700102 uint8_t length_; // length of the connection ID, in bytes.
103 // The connection ID is represented in network byte order.
104 union {
dschinazi0d06d7b2019-08-19 14:33:07 -0700105 // If the connection ID fits in |data_short_|, it is stored in the
106 // first |length_| bytes of |data_short_|.
107 // Otherwise it is stored in |data_long_| which is guaranteed to have a size
108 // equal to |length_|.
109 // A value of 11 was chosen because our commonly used connection ID length
110 // is 8 and with the length, the class is padded to 12 bytes anyway.
dschinazib3241162019-06-10 17:59:37 -0700111 char data_short_[11];
112 char* data_long_;
113 };
QUICHE teama6ef0a62019-03-07 20:34:33 -0500114};
115
116// Creates a connection ID of length zero, unless the restart flag
117// quic_connection_ids_network_byte_order is false in which case
118// it returns an 8-byte all-zeroes connection ID.
119QUIC_EXPORT_PRIVATE QuicConnectionId EmptyQuicConnectionId();
120
121// QuicConnectionIdHash can be passed as hash argument to hash tables.
dschinazi0fdff8e2019-07-18 09:07:39 -0700122// During the lifetime of a process, the output of QuicConnectionIdHash is
123// guaranteed to be the same for connection IDs that are equal to one another.
124// Note however that this property is not guaranteed across process lifetimes.
125// This makes QuicConnectionIdHash suitable for data structures such as hash
126// tables but not for sending a hash over the network.
dschinazif25169a2019-10-23 08:12:18 -0700127class QUIC_EXPORT_PRIVATE QuicConnectionIdHash {
QUICHE teama6ef0a62019-03-07 20:34:33 -0500128 public:
129 size_t operator()(QuicConnectionId const& connection_id) const noexcept {
130 return connection_id.Hash();
131 }
132};
133
134} // namespace quic
135
136#endif // QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_