blob: 9b6fdd4b2a1990db6ceef0acca34d229d4551814 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2016 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_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_
6#define QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_
7
8#include <ostream>
vasilvv872e7a32019-03-12 16:42:44 -07009#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -050010
11#include "net/third_party/quiche/src/quic/core/quic_error_codes.h"
12#include "net/third_party/quiche/src/quic/core/quic_types.h"
fkastenholz591814c2019-09-06 12:11:46 -070013#include "net/third_party/quiche/src/quic/core/quic_versions.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050015
16namespace quic {
17
18struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame {
19 QuicConnectionCloseFrame();
fkastenholzd9eccf02019-06-25 13:37:56 -070020
fkastenholz591814c2019-09-06 12:11:46 -070021 // Builds a connection close frame based on the transport version
22 // and the mapping of error_code. THIS IS THE PREFERRED C'TOR
23 // TO USE IF YOU NEED TO CREATE A CONNECTION-CLOSE-FRAME AND
24 // HAVE IT BE CORRECT FOR THE VERSION AND CODE MAPPINGS.
25 QuicConnectionCloseFrame(QuicTransportVersion transport_version,
26 QuicErrorCode error_code,
27 std::string error_phrase,
28 uint64_t transport_close_frame_type);
29
fkastenholzd9eccf02019-06-25 13:37:56 -070030 // TODO(fkastenholz): After migration to supporting IETF QUIC, this probably
31 // should be deprecated.
vasilvvc48c8712019-03-11 13:38:16 -070032 QuicConnectionCloseFrame(QuicErrorCode error_code, std::string error_details);
fkastenholzd9eccf02019-06-25 13:37:56 -070033
34 // Sets close_type to IETF_QUIC_APPLICATION_CONNECTION_CLOSE.
35 QuicConnectionCloseFrame(QuicErrorCode quic_error_code,
vasilvvc48c8712019-03-11 13:38:16 -070036 std::string error_details,
fkastenholzd9eccf02019-06-25 13:37:56 -070037 uint64_t ietf_application_error_code);
38
39 // Sets close_type to IETF_QUIC_TRANSPORT_CONNECTION_CLOSE.
40 QuicConnectionCloseFrame(QuicErrorCode quic_error_code,
41 std::string error_details,
42 QuicIetfTransportErrorCodes transport_error_code,
43 uint64_t transport_frame_type);
QUICHE teama6ef0a62019-03-07 20:34:33 -050044
45 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
46 std::ostream& os,
47 const QuicConnectionCloseFrame& c);
48
fkastenholze9d71a82019-04-09 05:12:13 -070049 // Indicates whether the received CONNECTION_CLOSE frame is a Google QUIC
fkastenholz72f509b2019-04-10 09:17:49 -070050 // CONNECTION_CLOSE, IETF QUIC CONNECTION_CLOSE.
fkastenholze9d71a82019-04-09 05:12:13 -070051 QuicConnectionCloseType close_type;
52
53 // This is the error field in the frame.
fkastenholzd57d3f92019-07-16 09:05:17 -070054 // The CONNECTION_CLOSE frame reports an error code:
fkastenholze9d71a82019-04-09 05:12:13 -070055 // - The transport error code as reported in a CONNECTION_CLOSE/Transport
fkastenholzd57d3f92019-07-16 09:05:17 -070056 // frame (serialized as a VarInt),
57 // - An opaque 64-bit code as reported in CONNECTION_CLOSE/Application frames
58 // (serialized as a VarInt),,
59 // - A 16 bit QuicErrorCode, which is used in Google QUIC.
QUICHE teama6ef0a62019-03-07 20:34:33 -050060 union {
fkastenholze9d71a82019-04-09 05:12:13 -070061 QuicIetfTransportErrorCodes transport_error_code;
fkastenholz88d08f42019-09-06 07:38:04 -070062 uint64_t application_error_code;
fkastenholze9d71a82019-04-09 05:12:13 -070063 QuicErrorCode quic_error_code;
QUICHE teama6ef0a62019-03-07 20:34:33 -050064 };
fkastenholze9d71a82019-04-09 05:12:13 -070065
fkastenholza14a7ae2019-08-07 05:21:22 -070066 // For IETF QUIC frames, this is the error code is extracted from, or added
67 // to, the error details text. For received Google QUIC frames, the Google
68 // QUIC error code from the frame's error code field is copied here (as well
69 // as in quic_error_code, above).
fkastenholze9d71a82019-04-09 05:12:13 -070070 QuicErrorCode extracted_error_code;
71
fkastenholz72f509b2019-04-10 09:17:49 -070072 // String with additional error details. "QuicErrorCode: 123" will be appended
73 // to the error details when sending IETF QUIC Connection Close and
74 // Application Close frames and parsed into extracted_error_code upon receipt,
75 // when present.
vasilvvc48c8712019-03-11 13:38:16 -070076 std::string error_details;
QUICHE teama6ef0a62019-03-07 20:34:33 -050077
fkastenholze9d71a82019-04-09 05:12:13 -070078 // The frame type present in the IETF transport connection close frame.
79 // Not populated for the Google QUIC or application connection close frames.
QUICHE teama6ef0a62019-03-07 20:34:33 -050080 // Contains the type of frame that triggered the connection close. Made a
81 // uint64, as opposed to the QuicIetfFrameType, to support possible
82 // extensions as well as reporting invalid frame types received from the peer.
fkastenholze9d71a82019-04-09 05:12:13 -070083 uint64_t transport_close_frame_type;
QUICHE teama6ef0a62019-03-07 20:34:33 -050084};
85
86} // namespace quic
87
88#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_