lsquic_parse.h revision de46bf2f
1/* Copyright (c) 2017 - 2019 LiteSpeed Technologies Inc. See LICENSE. */ 2#ifndef LSQUIC_PARSE_H 3#define LSQUIC_PARSE_H 1 4 5#include <stdint.h> 6 7#include "lsquic_packet_common.h" 8#include "lsquic_packet_gquic.h" 9 10struct lsquic_conn; 11struct lsquic_packet_in; 12struct lsquic_packet_out; 13struct packin_parse_state; 14struct stream_frame; 15struct lsquic_cid; 16enum packet_out_flags; 17enum lsquic_version; 18enum stream_dir; 19 20 21struct ack_info 22{ 23 enum packnum_space pns; 24 enum { 25 AI_ECN = 1 << 0, /* ecn_counts[1,2,3] contain ECN counts */ 26 AI_TRUNCATED = 1 << 1, /* There were more ranges to parse, but we 27 * ran out of elements in `ranges'. 28 */ 29 } flags; 30 unsigned n_ranges; /* This is at least 1 */ 31 /* Largest acked is ack_info.ranges[0].high */ 32 lsquic_time_t lack_delta; 33 uint64_t ecn_counts[4]; 34 struct lsquic_packno_range ranges[256]; 35}; 36 37#define largest_acked(acki) (+(acki)->ranges[0].high) 38 39#define smallest_acked(acki) (+(acki)->ranges[(acki)->n_ranges - 1].low) 40 41/* Chrome may send an empty ACK frame when it closes a connection. 42 * We do not know why it occurs -- perhaps a bug in Chrome. 43 */ 44/* This macro cannot be used in IETF QUIC as zero is a valid packet number. 45 * Hopefully the Chrome bug will have been fixed by then. 46 */ 47#define empty_ack_frame(acki) (largest_acked(acki) == 0) 48 49/* gaf_: generate ACK frame */ 50struct lsquic_packno_range; 51typedef const struct lsquic_packno_range * 52 (*gaf_rechist_first_f) (void *rechist); 53typedef const struct lsquic_packno_range * 54 (*gaf_rechist_next_f) (void *rechist); 55typedef lsquic_time_t 56 (*gaf_rechist_largest_recv_f) (void *rechist); 57 58/* gsf_: generate stream frame */ 59typedef size_t (*gsf_read_f) (void *stream, void *buf, size_t len, int *fin); 60 61/* gcf_: generate CRYPTO frame */ 62typedef size_t (*gcf_read_f) (void *stream, void *buf, size_t len); 63 64/* This structure contains functions that parse and generate packets and 65 * frames in version-specific manner. To begin with, there is difference 66 * between GQUIC's little-endian (Q038 and lower) and big-endian formats 67 * (Q039 and higher). Q046 and higher uses different format for packet headers. 68 */ 69struct parse_funcs 70{ 71 /* Return buf length */ 72 int 73 (*pf_gen_reg_pkt_header) (const struct lsquic_conn *, 74 const struct lsquic_packet_out *, unsigned char *, size_t); 75 void 76 (*pf_parse_packet_in_finish) (struct lsquic_packet_in *packet_in, 77 struct packin_parse_state *); 78 enum quic_frame_type 79 (*pf_parse_frame_type) (unsigned char); 80 /* Return used buffer length or a negative value if there was not enough 81 * room to write the stream frame. In the latter case, the negative of 82 * the negative return value is the number of bytes required. The 83 * exception is -1, which is a generic error code, as we always need 84 * more than 1 byte to write a STREAM frame. 85 */ 86 int 87 (*pf_gen_stream_frame) (unsigned char *buf, size_t bufsz, 88 lsquic_stream_id_t stream_id, uint64_t offset, 89 int fin, size_t size, gsf_read_f, void *stream); 90 int 91 (*pf_parse_stream_frame) (const unsigned char *buf, size_t rem_packet_sz, 92 struct stream_frame *); 93 int 94 (*pf_parse_crypto_frame) (const unsigned char *buf, size_t rem_packet_sz, 95 struct stream_frame *); 96 int 97 (*pf_gen_crypto_frame) (unsigned char *buf, size_t bufsz, uint64_t offset, 98 size_t size, gcf_read_f, void *stream); 99 int 100 (*pf_parse_ack_frame) (const unsigned char *buf, size_t buf_len, 101 struct ack_info *ack_info, uint8_t exp); 102 int 103 (*pf_gen_ack_frame) (unsigned char *outbuf, size_t outbuf_sz, 104 gaf_rechist_first_f, gaf_rechist_next_f, 105 gaf_rechist_largest_recv_f, void *rechist, lsquic_time_t now, 106 int *has_missing, lsquic_packno_t *largest_received, 107 const uint64_t *ecn_counts); 108 int 109 (*pf_gen_stop_waiting_frame) (unsigned char *buf, size_t buf_len, 110 lsquic_packno_t cur_packno, enum packno_bits, 111 lsquic_packno_t least_unacked_packno); 112 int 113 (*pf_parse_stop_waiting_frame) (const unsigned char *buf, size_t buf_len, 114 lsquic_packno_t cur_packno, enum packno_bits, 115 lsquic_packno_t *least_unacked); 116 int 117 (*pf_skip_stop_waiting_frame) (size_t buf_len, enum packno_bits); 118 int 119 (*pf_gen_window_update_frame) (unsigned char *buf, int buf_len, 120 lsquic_stream_id_t stream_id, uint64_t offset); 121 int 122 (*pf_parse_window_update_frame) (const unsigned char *buf, size_t buf_len, 123 lsquic_stream_id_t *stream_id, uint64_t *offset); 124 /* The third argument for pf_gen_blocked_frame() and pf_parse_blocked_frame() 125 * is Stream ID for GQUIC and offset for IETF QUIC. Since both of these are 126 * uint64_t, we'll use the same function pointer. Just have to be a little 127 * careful here. 128 */ 129 int 130 (*pf_gen_blocked_frame) (unsigned char *buf, size_t buf_len, 131 lsquic_stream_id_t stream_id); 132 int 133 (*pf_parse_blocked_frame) (const unsigned char *buf, size_t buf_len, 134 /* TODO: rename third argument when dropping GQUIC */ 135 lsquic_stream_id_t *stream_id); 136 unsigned 137 (*pf_blocked_frame_size) (uint64_t); 138 unsigned 139 (*pf_rst_frame_size) (lsquic_stream_id_t stream_id, uint64_t final_size, 140 uint64_t error_code); 141 int 142 (*pf_gen_rst_frame) (unsigned char *buf, size_t buf_len, 143 lsquic_stream_id_t stream_id, uint64_t offset, uint64_t error_code); 144 int 145 (*pf_parse_rst_frame) (const unsigned char *buf, size_t buf_len, 146 lsquic_stream_id_t *stream_id, uint64_t *offset, uint64_t *error_code); 147 int 148 (*pf_parse_stop_sending_frame) (const unsigned char *buf, size_t buf_len, 149 lsquic_stream_id_t *stream_id, uint64_t *error_code); 150 unsigned 151 (*pf_stop_sending_frame_size) (lsquic_stream_id_t, uint64_t); 152 int 153 (*pf_gen_stop_sending_frame) (unsigned char *buf, size_t buf_len, 154 lsquic_stream_id_t, uint64_t error_code); 155 int 156 (*pf_gen_connect_close_frame) (unsigned char *buf, size_t buf_len, 157 int app_error, unsigned error_code, const char *reason, int reason_len); 158 int 159 (*pf_parse_connect_close_frame) (const unsigned char *buf, size_t buf_len, 160 int *app_error, uint64_t *error_code, uint16_t *reason_length, 161 uint8_t *reason_offset); 162 int 163 (*pf_gen_goaway_frame) (unsigned char *buf, size_t buf_len, 164 uint32_t error_code, lsquic_stream_id_t last_good_stream_id, 165 const char *reason, size_t reason_len); 166 int 167 (*pf_parse_goaway_frame) (const unsigned char *buf, size_t buf_len, 168 uint32_t *error_code, lsquic_stream_id_t *last_good_stream_id, 169 uint16_t *reason_length, const char **reason); 170 int 171 (*pf_gen_ping_frame) (unsigned char *buf, int buf_len); 172 int 173 (*pf_parse_path_chal_frame) (const unsigned char *buf, size_t, 174 uint64_t *chal); 175 int 176 (*pf_parse_path_resp_frame) (const unsigned char *buf, size_t, 177 uint64_t *resp); 178#ifndef NDEBUG 179 /* These float reading and writing functions assume `mem' has at least 180 * 2 bytes. 181 */ 182 void 183 (*pf_write_float_time16) (lsquic_time_t time_us, void *mem); 184 uint64_t 185 (*pf_read_float_time16) (const void *mem); 186#endif 187 ssize_t 188 (*pf_generate_simple_prst) (const lsquic_cid_t *cid, 189 unsigned char *, size_t); 190 size_t 191 (*pf_calc_stream_frame_header_sz) (lsquic_stream_id_t stream_id, 192 uint64_t offset, unsigned data_sz); 193 size_t 194 (*pf_calc_crypto_frame_header_sz) (uint64_t offset, unsigned data_sz); 195 void 196 (*pf_turn_on_fin) (unsigned char *); 197 198 size_t 199 (*pf_packout_size) (const struct lsquic_conn *, 200 const struct lsquic_packet_out *); 201 202 /* This returns the high estimate of the header size. Note that it 203 * cannot account for the size of the token in the IETF QUIC Initial 204 * packets as it does not know it. 205 */ 206 size_t 207 (*pf_packout_max_header_size) (const struct lsquic_conn *, 208 enum packet_out_flags, size_t dcid_len); 209 210 enum packno_bits 211 (*pf_calc_packno_bits) (lsquic_packno_t packno, 212 lsquic_packno_t least_unacked, uint64_t n_in_flight); 213 unsigned 214 (*pf_packno_bits2len) (enum packno_bits); 215 216 /* Used by IETF QUIC and gQUIC >= Q050 */ 217 void 218 (*pf_packno_info) (const struct lsquic_conn *, 219 const struct lsquic_packet_out *, unsigned *packno_off, 220 unsigned *packno_len); 221 int 222 (*pf_parse_max_data) (const unsigned char *, size_t, uint64_t *); 223 int 224 (*pf_gen_max_data_frame) (unsigned char *, size_t, uint64_t); 225 unsigned 226 (*pf_max_data_frame_size) (uint64_t); 227 /* 228 * Returns number of bytes parsed on success or negative value on error: 229 * -1 Out of input buffer 230 * -2 Invalid CID length value 231 */ 232 int 233 (*pf_parse_new_conn_id) (const unsigned char *, size_t, uint64_t *, 234 uint64_t *, lsquic_cid_t *, const unsigned char **); 235 unsigned 236 (*pf_stream_blocked_frame_size) (lsquic_stream_id_t, uint64_t); 237 int 238 (*pf_gen_stream_blocked_frame) (unsigned char *buf, size_t, 239 lsquic_stream_id_t, uint64_t); 240 int 241 (*pf_parse_stream_blocked_frame) (const unsigned char *buf, size_t, 242 lsquic_stream_id_t *, uint64_t *); 243 unsigned 244 (*pf_max_stream_data_frame_size) (lsquic_stream_id_t, uint64_t); 245 int 246 (*pf_gen_max_stream_data_frame) (unsigned char *buf, size_t, 247 lsquic_stream_id_t, uint64_t); 248 int 249 (*pf_parse_max_stream_data_frame) (const unsigned char *buf, size_t, 250 lsquic_stream_id_t *, uint64_t *); 251 int 252 (*pf_parse_new_token_frame) (const unsigned char *buf, size_t, 253 const unsigned char **token, size_t *token_size); 254 size_t 255 (*pf_new_connection_id_frame_size) (unsigned seqno, unsigned cid_len); 256 int 257 (*pf_gen_new_connection_id_frame) (unsigned char *buf, size_t, 258 unsigned seqno, const struct lsquic_cid *, 259 const unsigned char *token, size_t); 260 size_t 261 (*pf_retire_cid_frame_size) (uint64_t); 262 int 263 (*pf_gen_retire_cid_frame) (unsigned char *buf, size_t, uint64_t); 264 int 265 (*pf_parse_retire_cid_frame) (const unsigned char *buf, size_t, uint64_t *); 266 size_t 267 (*pf_new_token_frame_size) (size_t); 268 int 269 (*pf_gen_new_token_frame) (unsigned char *buf, size_t, 270 const unsigned char *token, size_t); 271 int 272 (*pf_gen_streams_blocked_frame) (unsigned char *buf, size_t buf_len, 273 enum stream_dir, uint64_t); 274 int 275 (*pf_parse_streams_blocked_frame) (const unsigned char *buf, size_t buf_len, 276 enum stream_dir *, uint64_t *); 277 unsigned 278 (*pf_streams_blocked_frame_size) (uint64_t); 279 int 280 (*pf_gen_max_streams_frame) (unsigned char *buf, size_t buf_len, 281 enum stream_dir, uint64_t); 282 int 283 (*pf_parse_max_streams_frame) (const unsigned char *buf, size_t buf_len, 284 enum stream_dir *, uint64_t *); 285 unsigned 286 (*pf_max_streams_frame_size) (uint64_t); 287 unsigned 288 (*pf_path_chal_frame_size) (void); 289 int 290 (*pf_gen_path_chal_frame) (unsigned char *, size_t, uint64_t chal); 291 unsigned 292 (*pf_path_resp_frame_size) (void); 293 int 294 (*pf_gen_path_resp_frame) (unsigned char *, size_t, uint64_t resp); 295}; 296 297 298extern const struct parse_funcs lsquic_parse_funcs_gquic_Q039; 299extern const struct parse_funcs lsquic_parse_funcs_gquic_Q046; 300extern const struct parse_funcs lsquic_parse_funcs_gquic_Q050; 301extern const struct parse_funcs lsquic_parse_funcs_ietf_v1; 302 303#define select_pf_by_ver(ver) ( \ 304 (1 << (ver)) & ((1 << LSQVER_039)|(1 << LSQVER_043)) ? \ 305 &lsquic_parse_funcs_gquic_Q039 : \ 306 (1 << (ver)) & (1 << LSQVER_046) ? \ 307 &lsquic_parse_funcs_gquic_Q046 : \ 308 (1 << (ver)) & ((1 << LSQVER_050)|LSQUIC_EXPERIMENTAL_Q098) ? \ 309 &lsquic_parse_funcs_gquic_Q050 : \ 310 &lsquic_parse_funcs_ietf_v1) 311 312/* This function is gQUIC-version independent */ 313int 314lsquic_gquic_parse_packet_in_begin (struct lsquic_packet_in *, size_t length, 315 int is_server, unsigned cid_len, struct packin_parse_state *); 316 317int 318lsquic_Q046_parse_packet_in_short_begin (struct lsquic_packet_in *, size_t length, 319 int is_server, unsigned, struct packin_parse_state *); 320 321int 322lsquic_Q046_parse_packet_in_long_begin (struct lsquic_packet_in *, size_t length, 323 int is_server, unsigned, struct packin_parse_state *); 324 325int 326lsquic_Q050_parse_packet_in_long_begin (struct lsquic_packet_in *, size_t length, 327 int is_server, unsigned, struct packin_parse_state *); 328 329enum quic_frame_type 330lsquic_parse_frame_type_gquic_Q035_thru_Q046 (unsigned char first_byte); 331 332extern const enum quic_frame_type lsquic_iquic_byte2type[0x100]; 333 334size_t 335calc_stream_frame_header_sz_gquic (lsquic_stream_id_t stream_id, 336 uint64_t offset, unsigned); 337 338size_t 339lsquic_gquic_packout_size (const struct lsquic_conn *, 340 const struct lsquic_packet_out *); 341 342size_t 343lsquic_gquic_packout_header_size (const struct lsquic_conn *conn, 344 enum packet_out_flags flags, size_t unused); 345 346size_t 347lsquic_gquic_po_header_sz (enum packet_out_flags flags); 348 349size_t 350lsquic_gquic_packout_size (const struct lsquic_conn *, 351 const struct lsquic_packet_out *); 352 353size_t 354lsquic_gquic_po_header_sz (enum packet_out_flags flags); 355 356/* This maps two bits as follows: 357 * 00 -> 1 358 * 01 -> 2 359 * 10 -> 4 360 * 11 -> 6 361 * 362 * Assumes that only two low bits are set. 363 */ 364#define twobit_to_1246(bits) ((bits) * 2 + !(bits)) 365 366/* This maps two bits as follows: 367 * 00 -> 1 368 * 01 -> 2 369 * 10 -> 4 370 * 11 -> 8 371 * 372 * Assumes that only two low bits are set. 373 */ 374#define twobit_to_1248(bits) (1 << (bits)) 375 376#define ECN_COUNTS_STR " ECT(0): 01234567879012345678790;" \ 377 " ECT(1): 01234567879012345678790;" \ 378 " CE: 01234567879012345678790" 379#define RANGES_TRUNCATED_STR " ranges truncated! " 380 381#define MAX_ACKI_STR_SZ (256 * (3 /* [-] */ + 20 /* ~0ULL */ * 2) \ 382 + sizeof(ECN_COUNTS_STR) + sizeof(RANGES_TRUNCATED_STR)) 383 384void 385lsquic_acki2str (const struct ack_info *acki, char *, size_t); 386 387void 388lsquic_turn_on_fin_Q035_thru_Q046 (unsigned char *); 389 390enum packno_bits 391lsquic_gquic_calc_packno_bits (lsquic_packno_t packno, 392 lsquic_packno_t least_unacked, uint64_t n_in_flight); 393 394unsigned 395lsquic_gquic_packno_bits2len (enum packno_bits); 396 397int 398lsquic_merge_acks (struct ack_info *dst, const struct ack_info *src); 399 400#endif 401