blob: e0bf4ceb415af1214467a205ee5baedb38837735 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2012 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_CONSTANTS_H_
6#define QUICHE_QUIC_CORE_QUIC_CONSTANTS_H_
7
8#include <stddef.h>
9
10#include <cstdint>
11#include <limits>
12
QUICHE teama6ef0a62019-03-07 20:34:33 -050013#include "net/third_party/quiche/src/quic/core/quic_types.h"
14#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
15
16// Definitions of constant values used throughout the QUIC code.
17
18namespace quic {
19
20// Simple time constants.
21const uint64_t kNumSecondsPerMinute = 60;
22const uint64_t kNumSecondsPerHour = kNumSecondsPerMinute * 60;
23const uint64_t kNumSecondsPerWeek = kNumSecondsPerHour * 24 * 7;
24const uint64_t kNumMicrosPerMilli = 1000;
25const uint64_t kNumMicrosPerSecond = 1000 * 1000;
26
27// Default number of connections for N-connection emulation.
28const uint32_t kDefaultNumConnections = 2;
29// Default initial maximum size in bytes of a QUIC packet.
30const QuicByteCount kDefaultMaxPacketSize = 1350;
31// Default initial maximum size in bytes of a QUIC packet for servers.
32const QuicByteCount kDefaultServerMaxPacketSize = 1000;
33// Maximum transmission unit on Ethernet.
34const QuicByteCount kEthernetMTU = 1500;
35// The maximum packet size of any QUIC packet, based on ethernet's max size,
36// minus the IP and UDP headers. IPv6 has a 40 byte header, UDP adds an
37// additional 8 bytes. This is a total overhead of 48 bytes. Ethernet's
38// max packet size is 1500 bytes, 1500 - 48 = 1452.
39const QuicByteCount kMaxPacketSize = 1452;
40// The maximum packet size of any QUIC packet over IPv4.
41// 1500(Ethernet) - 20(IPv4 header) - 8(UDP header) = 1472.
42const QuicByteCount kMaxV4PacketSize = 1472;
dschinazie8d7fa72019-04-05 14:44:40 -070043// The maximum incoming packet size allowed.
44const QuicByteCount kMaxIncomingPacketSize = kMaxV4PacketSize;
QUICHE teama6ef0a62019-03-07 20:34:33 -050045// ETH_MAX_MTU - MAX(sizeof(iphdr), sizeof(ip6_hdr)) - sizeof(udphdr).
46const QuicByteCount kMaxGsoPacketSize = 65535 - 40 - 8;
47// Default maximum packet size used in the Linux TCP implementation.
48// Used in QUIC for congestion window computations in bytes.
49const QuicByteCount kDefaultTCPMSS = 1460;
50const QuicByteCount kMaxSegmentSize = kDefaultTCPMSS;
51// The minimum size of a packet which can elicit a version negotiation packet,
52// as per section 8.1 of the QUIC spec.
53const QuicByteCount kMinPacketSizeForVersionNegotiation = 1200;
54
55// We match SPDY's use of 32 (since we'd compete with SPDY).
56const QuicPacketCount kInitialCongestionWindow = 32;
57
58// Minimum size of initial flow control window, for both stream and session.
59const uint32_t kMinimumFlowControlSendWindow = 16 * 1024; // 16 KB
60
61// Maximum flow control receive window limits for connection and stream.
62const QuicByteCount kStreamReceiveWindowLimit = 16 * 1024 * 1024; // 16 MB
63const QuicByteCount kSessionReceiveWindowLimit = 24 * 1024 * 1024; // 24 MB
64
65// Default limit on the size of uncompressed headers.
66const QuicByteCount kDefaultMaxUncompressedHeaderSize = 16 * 1024; // 16 KB
67
68// Minimum size of the CWND, in packets, when doing bandwidth resumption.
69const QuicPacketCount kMinCongestionWindowForBandwidthResumption = 10;
70
71// Maximum number of tracked packets.
72const QuicPacketCount kMaxTrackedPackets = 10000;
73
74// Default size of the socket receive buffer in bytes.
75const QuicByteCount kDefaultSocketReceiveBuffer = 1024 * 1024;
76
77// Don't allow a client to suggest an RTT shorter than 10ms.
78const uint32_t kMinInitialRoundTripTimeUs = 10 * kNumMicrosPerMilli;
79
80// Don't allow a client to suggest an RTT longer than 15 seconds.
81const uint32_t kMaxInitialRoundTripTimeUs = 15 * kNumMicrosPerSecond;
82
83// Maximum number of open streams per connection.
84const size_t kDefaultMaxStreamsPerConnection = 100;
85
86// Number of bytes reserved for public flags in the packet header.
87const size_t kPublicFlagsSize = 1;
88// Number of bytes reserved for version number in the packet header.
89const size_t kQuicVersionSize = 4;
90
91// Signifies that the QuicPacket will contain version of the protocol.
92const bool kIncludeVersion = true;
93// Signifies that the QuicPacket will include a diversification nonce.
94const bool kIncludeDiversificationNonce = true;
95
96// Header key used to identify final offset on data stream when sending HTTP/2
97// trailing headers over QUIC.
98QUIC_EXPORT_PRIVATE extern const char* const kFinalOffsetHeaderKey;
99
100// Default maximum delayed ack time, in ms.
101// Uses a 25ms delayed ack timer. Helps with better signaling
102// in low-bandwidth (< ~384 kbps), where an ack is sent per packet.
103const int64_t kDefaultDelayedAckTimeMs = 25;
104
105// Minimum tail loss probe time in ms.
106static const int64_t kMinTailLossProbeTimeoutMs = 10;
107
108// The timeout before the handshake succeeds.
109const int64_t kInitialIdleTimeoutSecs = 5;
110// The default idle timeout.
111const int64_t kDefaultIdleTimeoutSecs = 30;
112// The maximum idle timeout that can be negotiated.
113const int64_t kMaximumIdleTimeoutSecs = 60 * 10; // 10 minutes.
114// The default timeout for a connection until the crypto handshake succeeds.
115const int64_t kMaxTimeForCryptoHandshakeSecs = 10; // 10 secs.
116
117// Default limit on the number of undecryptable packets the connection buffers
118// before the CHLO/SHLO arrive.
119const size_t kDefaultMaxUndecryptablePackets = 10;
120
121// Default ping timeout.
122const int64_t kPingTimeoutSecs = 15; // 15 secs.
123
124// Minimum number of RTTs between Server Config Updates (SCUP) sent to client.
125const int kMinIntervalBetweenServerConfigUpdatesRTTs = 10;
126
127// Minimum time between Server Config Updates (SCUP) sent to client.
128const int kMinIntervalBetweenServerConfigUpdatesMs = 1000;
129
130// Minimum number of packets between Server Config Updates (SCUP).
131const int kMinPacketsBetweenServerConfigUpdates = 100;
132
133// The number of open streams that a server will accept is set to be slightly
134// larger than the negotiated limit. Immediately closing the connection if the
135// client opens slightly too many streams is not ideal: the client may have sent
136// a FIN that was lost, and simultaneously opened a new stream. The number of
137// streams a server accepts is a fixed increment over the negotiated limit, or a
138// percentage increase, whichever is larger.
139const float kMaxStreamsMultiplier = 1.1f;
140const int kMaxStreamsMinimumIncrement = 10;
141
142// Available streams are ones with IDs less than the highest stream that has
143// been opened which have neither been opened or reset. The limit on the number
144// of available streams is 10 times the limit on the number of open streams.
145const int kMaxAvailableStreamsMultiplier = 10;
146
147// Track the number of promises that are not yet claimed by a
148// corresponding get. This must be smaller than
149// kMaxAvailableStreamsMultiplier, because RST on a promised stream my
150// create available streams entries.
151const int kMaxPromisedStreamsMultiplier = kMaxAvailableStreamsMultiplier - 1;
152
153// TCP RFC calls for 1 second RTO however Linux differs from this default and
154// define the minimum RTO to 200ms, we will use the same until we have data to
155// support a higher or lower value.
156static const int64_t kMinRetransmissionTimeMs = 200;
157// The delayed ack time must not be greater than half the min RTO.
158static_assert(kDefaultDelayedAckTimeMs <= kMinRetransmissionTimeMs / 2,
159 "Delayed ack time must be less than or equal half the MinRTO");
160
161// We define an unsigned 16-bit floating point value, inspired by IEEE floats
162// (http://en.wikipedia.org/wiki/Half_precision_floating-point_format),
163// with 5-bit exponent (bias 1), 11-bit mantissa (effective 12 with hidden
164// bit) and denormals, but without signs, transfinites or fractions. Wire format
165// 16 bits (little-endian byte order) are split into exponent (high 5) and
166// mantissa (low 11) and decoded as:
167// uint64_t value;
168// if (exponent == 0) value = mantissa;
169// else value = (mantissa | 1 << 11) << (exponent - 1)
170const int kUFloat16ExponentBits = 5;
171const int kUFloat16MaxExponent = (1 << kUFloat16ExponentBits) - 2; // 30
172const int kUFloat16MantissaBits = 16 - kUFloat16ExponentBits; // 11
173const int kUFloat16MantissaEffectiveBits = kUFloat16MantissaBits + 1; // 12
174const uint64_t kUFloat16MaxValue = // 0x3FFC0000000
175 ((UINT64_C(1) << kUFloat16MantissaEffectiveBits) - 1)
176 << kUFloat16MaxExponent;
177
178// kDiversificationNonceSize is the size, in bytes, of the nonce that a server
179// may set in the packet header to ensure that its INITIAL keys are not
180// duplicated.
181const size_t kDiversificationNonceSize = 32;
182
183// The largest gap in packets we'll accept without closing the connection.
184// This will likely have to be tuned.
185const QuicPacketCount kMaxPacketGap = 5000;
186
187// The maximum number of random padding bytes to add.
188const QuicByteCount kMaxNumRandomPaddingBytes = 256;
189
190// The size of stream send buffer data slice size in bytes. A data slice is
191// piece of stream data stored in contiguous memory, and a stream frame can
192// contain data from multiple data slices.
193const QuicByteCount kQuicStreamSendBufferSliceSize = 4 * 1024;
194
195// For When using Random Initial Packet Numbers, they can start
196// anyplace in the range 1...((2^31)-1) or 0x7fffffff
197QUIC_EXPORT_PRIVATE QuicPacketNumber MaxRandomInitialPacketNumber();
198
199// Used to represent an invalid or no control frame id.
200const QuicControlFrameId kInvalidControlFrameId = 0;
201
202// The max length a stream can have.
203const QuicByteCount kMaxStreamLength = (UINT64_C(1) << 62) - 1;
204
205// The max value that can be encoded using IETF Var Ints.
206const uint64_t kMaxIetfVarInt = UINT64_C(0x3fffffffffffffff);
207
208// The maximum stream id value that is supported - (2^32)-1
209// TODO(fkastenholz): Should update this to 64 bits for IETF Quic.
210const QuicStreamId kMaxQuicStreamId = 0xffffffff;
211
212// Number of bytes reserved for packet header type.
213const size_t kPacketHeaderTypeSize = 1;
214
215// Number of bytes reserved for connection ID length.
216const size_t kConnectionIdLengthSize = 1;
217
218// Minimum length of random bytes in IETF stateless reset packet.
219const size_t kMinRandomBytesLengthInStatelessReset = 24;
220
221// Maximum length allowed for the token in a NEW_TOKEN frame.
222const size_t kMaxNewTokenTokenLength = 0xffff;
223
224// Packet number of first sending packet of a connection. Please note, this
225// cannot be used as first received packet because peer can choose its starting
226// packet number.
227QUIC_EXPORT_PRIVATE QuicPacketNumber FirstSendingPacketNumber();
228
229// Used by clients to tell if a public reset is sent from a Google frontend.
230QUIC_EXPORT_PRIVATE extern const char* const kEPIDGoogleFrontEnd;
231QUIC_EXPORT_PRIVATE extern const char* const kEPIDGoogleFrontEnd0;
232
233} // namespace quic
234
235#endif // QUICHE_QUIC_CORE_QUIC_CONSTANTS_H_