/* Copyright (c) 2017 - 2019 LiteSpeed Technologies Inc. See LICENSE. */ #include #include #include #include #include #include #include "lsquic_types.h" #include "lsquic_int_types.h" #include "lsquic_packet_common.h" #include "lsquic_packet_in.h" #include "lsquic_parse_common.h" #include "lsquic_parse.h" #include "lsquic_version.h" #include "lsquic.h" #include "lsquic_logger.h" #include "lsquic_byteswap.h" #include "lsquic_str.h" #include "lsquic_handshake.h" static const enum header_type bin_2_header_type_Q044[0x100] = { [0x80 | 0x7F] = HETY_INITIAL, [0x80 | 0x7E] = HETY_RETRY, [0x80 | 0x7D] = HETY_HANDSHAKE, [0x80 | 0x7C] = HETY_0RTT, }; /* [draft-ietf-quic-transport-17] Section-17.2 */ static const enum header_type bits2ht[4] = { [0] = HETY_INITIAL, [1] = HETY_0RTT, [2] = HETY_HANDSHAKE, [3] = HETY_RETRY, }; /* This function supports versions Q044 and higher */ int lsquic_iquic_parse_packet_in_long_begin (lsquic_packet_in_t *packet_in, size_t length, int is_server, struct packin_parse_state *state) { const unsigned char *p = packet_in->pi_data; const unsigned char *const end = p + length; lsquic_ver_tag_t tag; enum header_type header_type; unsigned dcil, scil, packet_len; int verneg; enum lsquic_version version; unsigned char first_byte; const unsigned cid_len = 8; if (length < 6) return -1; first_byte = *p++; memcpy(&tag, p, 4); p += 4; verneg = 0 == tag; if (!verneg) { version = lsquic_tag2ver(tag); if (version == LSQVER_044) { header_type = bin_2_header_type_Q044[ first_byte ]; if (!header_type) return -1; } else header_type = bits2ht[ (first_byte >> 4) & 3 ]; } else { header_type = HETY_VERNEG; #ifdef WIN32 /* Useless initialization */ version = -1; #endif } packet_in->pi_header_type = header_type; dcil = p[0] >> 4; if (dcil) dcil += 3; scil = p[0] & 0xF; if (scil) scil += 3; ++p; /* Chromium comments state that the client sends packets with destination * CID of 8 bytes and source CID of 0 bytes and the server does it the * other way around. * * XXX When IETF branch is merged, this check for Q044 and higher will * have to be moved to the pf_parse_packet_in_finish(). */ if (is_server) { if (!(dcil == cid_len && scil == 0)) return -1; } else { if (!(dcil == 0 && scil == cid_len)) return -1; } if (!verneg) { if (version == LSQVER_044) { packet_in->pi_flags |= GQUIC_PACKNO_LEN_4 << PIBIT_BITS_SHIFT; packet_len = 4; } else { packet_in->pi_flags |= (first_byte & 3) << PIBIT_BITS_SHIFT; packet_len = 1 + (first_byte & 3); } if (end - p < (ptrdiff_t) (dcil + scil + packet_len)) return -1; } else { /* Need at least one version in the version array: add 4 */ if (end - p < (ptrdiff_t) (dcil + scil + 4)) return -1; #ifdef WIN32 /* Useless initialization */ packet_len = 0; #endif } memcpy(&packet_in->pi_conn_id, p, cid_len); p += cid_len; packet_in->pi_flags |= PI_CONN_ID; packet_in->pi_packno = 0; if (!verneg) { state->pps_p = p; state->pps_nbytes = packet_len; p += packet_len; packet_in->pi_quic_ver = 1; if (is_server || HETY_0RTT != header_type) packet_in->pi_nonce = 0; else { packet_in->pi_nonce = p - packet_in->pi_data; p += 32; } } else { if ((end - p) & 3) return -1; state->pps_p = NULL; state->pps_nbytes = 0; packet_in->pi_quic_ver = p - packet_in->pi_data; p = packet_in->pi_data + length; packet_in->pi_nonce = 0; } packet_in->pi_header_sz = p - packet_in->pi_data; packet_in->pi_frame_types = 0; packet_in->pi_data_sz = length; packet_in->pi_refcnt = 0; packet_in->pi_received = 0; return 0; } int lsquic_iquic_parse_packet_in_short_begin (lsquic_packet_in_t *packet_in, size_t length, int is_server, struct packin_parse_state *state) { const unsigned char *p = packet_in->pi_data; const unsigned char *const pend = packet_in->pi_data + length; unsigned cid_len = 8; /* XXX this will need to be passed in */ unsigned packet_len; if (*p & 0x40) /* Q046 and higher */ packet_len = 1 + (*p & 3); else { if ((*p & 0x30) != 0x30 || (*p & 3) == 3) return -1; packet_len = 1 << (*p & 3); } if (pend - p < (ptrdiff_t) (1 + cid_len + packet_len)) return -1; packet_in->pi_flags |= (*p & 3) << PIBIT_BITS_SHIFT; ++p; if (is_server) { memcpy(&packet_in->pi_conn_id, p, cid_len); p += cid_len; packet_in->pi_flags |= PI_CONN_ID; } /* We could read in the packet number here, but we choose to do it in * the finish() call instead. */ packet_in->pi_packno = 0; state->pps_p = p; state->pps_nbytes = packet_len; p += packet_len; packet_in->pi_header_type = HETY_NOT_SET; packet_in->pi_quic_ver = 0; packet_in->pi_nonce = 0; packet_in->pi_header_sz = p - packet_in->pi_data; packet_in->pi_frame_types = 0; packet_in->pi_data_sz = length; packet_in->pi_refcnt = 0; packet_in->pi_received = 0; return 0; }