QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // 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> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 9 | #include <string> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 10 | |
| 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" |
fkastenholz | 591814c | 2019-09-06 12:11:46 -0700 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/core/quic_versions.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 15 | |
| 16 | namespace quic { |
| 17 | |
| 18 | struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame { |
| 19 | QuicConnectionCloseFrame(); |
fkastenholz | d9eccf0 | 2019-06-25 13:37:56 -0700 | [diff] [blame] | 20 | |
fkastenholz | 591814c | 2019-09-06 12:11:46 -0700 | [diff] [blame] | 21 | // 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 | |
fkastenholz | d9eccf0 | 2019-06-25 13:37:56 -0700 | [diff] [blame] | 30 | // TODO(fkastenholz): After migration to supporting IETF QUIC, this probably |
| 31 | // should be deprecated. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 32 | QuicConnectionCloseFrame(QuicErrorCode error_code, std::string error_details); |
fkastenholz | d9eccf0 | 2019-06-25 13:37:56 -0700 | [diff] [blame] | 33 | |
| 34 | // Sets close_type to IETF_QUIC_APPLICATION_CONNECTION_CLOSE. |
| 35 | QuicConnectionCloseFrame(QuicErrorCode quic_error_code, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 36 | std::string error_details, |
fkastenholz | d9eccf0 | 2019-06-25 13:37:56 -0700 | [diff] [blame] | 37 | 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 44 | |
| 45 | friend QUIC_EXPORT_PRIVATE std::ostream& operator<<( |
| 46 | std::ostream& os, |
| 47 | const QuicConnectionCloseFrame& c); |
| 48 | |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 49 | // Indicates whether the received CONNECTION_CLOSE frame is a Google QUIC |
fkastenholz | 72f509b | 2019-04-10 09:17:49 -0700 | [diff] [blame] | 50 | // CONNECTION_CLOSE, IETF QUIC CONNECTION_CLOSE. |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 51 | QuicConnectionCloseType close_type; |
| 52 | |
| 53 | // This is the error field in the frame. |
fkastenholz | d57d3f9 | 2019-07-16 09:05:17 -0700 | [diff] [blame] | 54 | // The CONNECTION_CLOSE frame reports an error code: |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 55 | // - The transport error code as reported in a CONNECTION_CLOSE/Transport |
fkastenholz | d57d3f9 | 2019-07-16 09:05:17 -0700 | [diff] [blame] | 56 | // 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 team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 60 | union { |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 61 | QuicIetfTransportErrorCodes transport_error_code; |
fkastenholz | 88d08f4 | 2019-09-06 07:38:04 -0700 | [diff] [blame] | 62 | uint64_t application_error_code; |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 63 | QuicErrorCode quic_error_code; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 64 | }; |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 65 | |
fkastenholz | a14a7ae | 2019-08-07 05:21:22 -0700 | [diff] [blame] | 66 | // 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). |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 70 | QuicErrorCode extracted_error_code; |
| 71 | |
fkastenholz | 72f509b | 2019-04-10 09:17:49 -0700 | [diff] [blame] | 72 | // 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. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 76 | std::string error_details; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 77 | |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 78 | // The frame type present in the IETF transport connection close frame. |
| 79 | // Not populated for the Google QUIC or application connection close frames. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 80 | // 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. |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 83 | uint64_t transport_close_frame_type; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | } // namespace quic |
| 87 | |
| 88 | #endif // QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_ |