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" |
| 13 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | |
| 15 | namespace quic { |
| 16 | |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 17 | // There are three different forms of CONNECTION_CLOSE. UNINITIALIZED is |
| 18 | // included explicitly for the QuicConnectionCloseFrame so that when the object |
| 19 | // is constructed, a valid enumeration, indicating that the type is not known, |
| 20 | // can be set. |
| 21 | typedef enum QuicConnectionCloseType { |
| 22 | UNINITIALIZED = 0, |
| 23 | GOOGLE_QUIC_CONNECTION_CLOSE = 1, |
| 24 | IETF_QUIC_TRANSPORT_CONNECTION_CLOSE = 2, |
| 25 | IETF_QUIC_APPLICATION_CONNECTION_CLOSE = 3 |
| 26 | } QuicConnectionCloseType; |
| 27 | QUIC_EXPORT_PRIVATE std::ostream& operator<<( |
| 28 | std::ostream& os, |
| 29 | const QuicConnectionCloseType type); |
| 30 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 31 | struct QUIC_EXPORT_PRIVATE QuicConnectionCloseFrame { |
| 32 | QuicConnectionCloseFrame(); |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 33 | QuicConnectionCloseFrame(QuicErrorCode error_code); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 34 | QuicConnectionCloseFrame(QuicErrorCode error_code, std::string error_details); |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 35 | QuicConnectionCloseFrame(QuicIetfTransportErrorCodes transport_error_code, |
| 36 | QuicErrorCode extracted_error_code, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 37 | std::string error_details, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 38 | uint64_t frame_type); |
| 39 | |
| 40 | friend QUIC_EXPORT_PRIVATE std::ostream& operator<<( |
| 41 | std::ostream& os, |
| 42 | const QuicConnectionCloseFrame& c); |
| 43 | |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 44 | // Indicates whether the received CONNECTION_CLOSE frame is a Google QUIC |
| 45 | // CONNECTION_CLOSE, IETF QUIC CONNECTION_CLOSE |
| 46 | QuicConnectionCloseType close_type; |
| 47 | |
| 48 | // This is the error field in the frame. |
| 49 | // The CONNECTION_CLOSE frame reports a 16-bit error code: |
| 50 | // - The transport error code as reported in a CONNECTION_CLOSE/Transport |
| 51 | // frame, |
| 52 | // - An opaque 16-bit code as reported in CONNECTION_CLOSE/Application frames, |
| 53 | // - A QuicErrorCode, which is used in Google QUIC. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 54 | union { |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 55 | QuicIetfTransportErrorCodes transport_error_code; |
| 56 | uint16_t application_error_code; |
| 57 | QuicErrorCode quic_error_code; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 58 | }; |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 59 | |
| 60 | // This error code is extracted from, or added to, the "QuicErrorCode: |
| 61 | // QUIC_...(123)" text in the error_details. It provides fine-grained |
| 62 | // information as to the source of the error. |
| 63 | QuicErrorCode extracted_error_code; |
| 64 | |
| 65 | // String with additional error details. In some circumstances, we will add a |
| 66 | // "QuicErrorCode: QUIC_...(123)" string indicating a more specific internal |
| 67 | // error code. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 68 | std::string error_details; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 69 | |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 70 | // The frame type present in the IETF transport connection close frame. |
| 71 | // Not populated for the Google QUIC or application connection close frames. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 72 | // Contains the type of frame that triggered the connection close. Made a |
| 73 | // uint64, as opposed to the QuicIetfFrameType, to support possible |
| 74 | // extensions as well as reporting invalid frame types received from the peer. |
fkastenholz | e9d71a8 | 2019-04-09 05:12:13 -0700 | [diff] [blame] | 75 | uint64_t transport_close_frame_type; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | } // namespace quic |
| 79 | |
| 80 | #endif // QUICHE_QUIC_CORE_FRAMES_QUIC_CONNECTION_CLOSE_FRAME_H_ |