Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Issue 1811043002: Landing Recent QUIC changes until 2016-03-15 16:26 UTC (Closed)

Created:
4 years, 9 months ago by fnk
Modified:
4 years, 9 months ago
Reviewers:
Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until 2016-03-15 16:26 UTC Up to and including internal change 117245736 Fix a type casting bug in quic stream sequencer buffer. Withough this change, a QUIC frame with offset higher than 2^32 might corrupt StreamSequencerBuffer's missing frame recording logic in a 32-bit machine. Merge internal change: 117245736 https://codereview.chromium.org/1808013003/ Always use recvmmsg or recvmsg if it's available, and consolidate ReadAndDispatchPackets and ReadAndDispatchSinglePacket into a single API. Not flag protected. No functional change. Note that this does somewhat reduce the test coverage of QuicServerTest, now requiring that changes to QuicPacketReader::ReadAndDispatchSinglePacket be run on platforms that don't support recvmmsg. Merge internal change: 117245279 https://codereview.chromium.org/1810103002/ Log when client nonce is invalid. No functional change. Not flag protected. Merge internal change: 116987771 https://codereview.chromium.org/1810073002/ Pass QuicTime, QuicTime::Delta, and QuicBandwidth exclusively by value. Not flag protected. No functional change. Merge internal change: 116973081 https://codereview.chromium.org/1809123002/ Change QUIC tests that use port 80 to use 443. Merge internal change: 116970314 https://codereview.chromium.org/1808963003/ Use byte conservation instead of packet conservation in QUIC's Slow Start Large Recovery experiment. Protected by quic_sslr_byte_conservation. Merge internal change: 116964633 https://codereview.chromium.org/1814873002/ Remove the unused has_retransmittable_data argument from QuicSendAlgorithm::TimeUntilSend. No functional change. Not flag protected. Merge internal change: 116904472 https://codereview.chromium.org/1814843002/ Deprecates check_peer_address_change_after_decryption. Merge internal change: 116887287 https://codereview.chromium.org/1808613003/ Deprecate quic_respect_send_alarm2. Merge internal change: 116879870 https://codereview.chromium.org/1813513002/ Deprecate --quic_include_path_id_in_iv. Merge internal change: 116877752 https://codereview.chromium.org/1810743002/ Don't copy the QuicAckFrame into the QuicPacketGenerator. Protected by quic_dont_copy_acks. Merge internal change: 116808648 https://codereview.chromium.org/1807033002/ No longer limit QUIC's max CWND to 200 packets. Protected by quic_dont_limit_max_cwnd. This is a fix for the deprecation of a similar flag in cr/113769379. Merge internal change: 116794514 https://codereview.chromium.org/1812633002/ Remove QuicFrameList, because it's unused with the new QuicStreamSequencer. Merge internal change: 116768420 https://codereview.chromium.org/1805323003/ Add a QuicConfig option to ask the client not to attempt migration. Merge internal change: 116712124 https://codereview.chromium.org/1808513003/ Do not disable TLP by default in QuicConnection tests. Merge internal change: 116698228 https://codereview.chromium.org/1808863002/ Add a new QUIC connection option, 5RTO, which closes the QUIC connection after 5 consecutive RTOs. Protected by quic_enable_rto_timeout. Merge internal change: 116687954 https://codereview.chromium.org/1806083002/ Change QuicConnection's ScopedPacketBundler to use SEND_QUEUED_ACK instead of NO_ACK, to ensure a queued ack is always sent. Small functional change. Not flag protected. Merge internal change: 116677107 https://codereview.chromium.org/1814483002/ deprecate quic_use_rfc7539 Merge internal change: 116589902 https://codereview.chromium.org/1809703002/ Use cached compressed certs if available to reduce load of compressing certs. Flag protected by quic_use_cached_compressed_certs. Merge internal change: 116579250. https://codereview.chromium.org/1808793002/ R=rch@chromium.org BUG= Committed: https://crrev.com/f57804c4c8609f1c6c396eddb6a3174d2003362c Cr-Commit-Position: refs/heads/master@{#381795}

Patch Set 1 #

Patch Set 2 : Deprecate quic_include_path_id_in_iv in two more files. #

Patch Set 3 : Add a default case to a switch statement. #

Patch Set 4 : Add an export clause. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+906 lines, -600 lines) Patch
M net/quic/congestion_control/general_loss_algorithm.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/congestion_control/general_loss_algorithm.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/congestion_control/loss_detection_interface.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/congestion_control/pacing_sender.h View 1 chunk +2 lines, -4 lines 0 comments Download
M net/quic/congestion_control/pacing_sender.cc View 2 chunks +2 lines, -9 lines 0 comments Download
M net/quic/congestion_control/pacing_sender_test.cc View 5 chunks +10 lines, -26 lines 0 comments Download
M net/quic/congestion_control/send_algorithm_interface.h View 1 chunk +1 line, -2 lines 0 comments Download
M net/quic/congestion_control/send_algorithm_simulator.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_base.h View 2 chunks +3 lines, -4 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_base.cc View 2 chunks +2 lines, -8 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_bytes.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_bytes.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_bytes_test.cc View 8 chunks +65 lines, -49 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_packets.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_packets.cc View 1 chunk +16 lines, -3 lines 0 comments Download
M net/quic/congestion_control/tcp_cubic_sender_packets_test.cc View 8 chunks +65 lines, -49 lines 0 comments Download
M net/quic/crypto/aead_base_decrypter_nss.cc View 1 1 chunk +4 lines, -8 lines 0 comments Download
M net/quic/crypto/aead_base_decrypter_openssl.cc View 1 chunk +4 lines, -8 lines 0 comments Download
M net/quic/crypto/aead_base_encrypter_nss.cc View 1 1 chunk +4 lines, -9 lines 0 comments Download
M net/quic/crypto/aead_base_encrypter_openssl.cc View 1 chunk +4 lines, -9 lines 0 comments Download
M net/quic/crypto/aes_128_gcm_12_decrypter_test.cc View 1 chunk +3 lines, -5 lines 0 comments Download
M net/quic/crypto/chacha20_poly1305_decrypter_test.cc View 1 chunk +3 lines, -5 lines 0 comments Download
M net/quic/crypto/chacha20_poly1305_rfc7539_decrypter_test.cc View 1 chunk +3 lines, -5 lines 0 comments Download
M net/quic/crypto/crypto_protocol.h View 2 chunks +4 lines, -0 lines 0 comments Download
M net/quic/crypto/crypto_server_test.cc View 6 chunks +31 lines, -3 lines 0 comments Download
M net/quic/crypto/quic_crypto_client_config_test.cc View 6 chunks +11 lines, -10 lines 0 comments Download
M net/quic/crypto/quic_crypto_server_config.h View 5 chunks +18 lines, -0 lines 0 comments Download
M net/quic/crypto/quic_crypto_server_config.cc View 9 chunks +40 lines, -8 lines 0 comments Download
M net/quic/crypto/quic_crypto_server_config_test.cc View 3 chunks +108 lines, -0 lines 0 comments Download
M net/quic/quic_bandwidth.h View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/quic_bandwidth.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/quic_client_promised_info_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_client_push_promise_index_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_config.h View 2 chunks +7 lines, -0 lines 0 comments Download
M net/quic/quic_config.cc View 4 chunks +15 lines, -1 line 0 comments Download
M net/quic/quic_connection.h View 8 chunks +16 lines, -31 lines 0 comments Download
M net/quic/quic_connection.cc View 1 2 23 chunks +88 lines, -130 lines 0 comments Download
M net/quic/quic_connection_stats.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/quic_connection_stats.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/quic_connection_test.cc View 24 chunks +79 lines, -21 lines 0 comments Download
M net/quic/quic_crypto_client_stream_test.cc View 1 chunk +0 lines, -1 line 0 comments Download
M net/quic/quic_crypto_server_stream.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M net/quic/quic_flags.h View 2 chunks +5 lines, -4 lines 0 comments Download
M net/quic/quic_flags.cc View 4 chunks +19 lines, -14 lines 0 comments Download
M net/quic/quic_http_stream_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_multipath_received_packet_manager_test.cc View 2 chunks +2 lines, -0 lines 0 comments Download
M net/quic/quic_packet_generator.h View 2 chunks +4 lines, -0 lines 0 comments Download
M net/quic/quic_packet_generator.cc View 2 chunks +14 lines, -6 lines 0 comments Download
M net/quic/quic_packet_generator_test.cc View 8 chunks +38 lines, -6 lines 0 comments Download
M net/quic/quic_received_packet_manager.h View 1 chunk +7 lines, -0 lines 0 comments Download
M net/quic/quic_received_packet_manager.cc View 4 chunks +36 lines, -4 lines 0 comments Download
M net/quic/quic_received_packet_manager_test.cc View 3 chunks +42 lines, -0 lines 0 comments Download
M net/quic/quic_sent_packet_manager.h View 1 chunk +1 line, -2 lines 0 comments Download
M net/quic/quic_sent_packet_manager.cc View 3 chunks +8 lines, -4 lines 0 comments Download
M net/quic/quic_sent_packet_manager_test.cc View 8 chunks +8 lines, -8 lines 0 comments Download
M net/quic/quic_session.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/quic_session_test.cc View 3 chunks +6 lines, -6 lines 0 comments Download
M net/quic/quic_stream_sequencer_test.cc View 2 chunks +0 lines, -49 lines 0 comments Download
M net/quic/stream_sequencer_buffer.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M net/quic/stream_sequencer_buffer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/stream_sequencer_buffer_test.cc View 2 chunks +39 lines, -0 lines 0 comments Download
M net/quic/test_tools/quic_connection_peer.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/test_tools/quic_connection_peer.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M net/quic/test_tools/quic_stream_sequencer_peer.h View 2 chunks +0 lines, -4 lines 0 comments Download
M net/quic/test_tools/quic_stream_sequencer_peer.cc View 1 chunk +0 lines, -10 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.h View 2 chunks +3 lines, -4 lines 0 comments Download
M net/tools/quic/quic_client.h View 1 chunk +0 lines, -3 lines 0 comments Download
M net/tools/quic/quic_client.cc View 3 chunks +3 lines, -14 lines 0 comments Download
M net/tools/quic/quic_client_session_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_packet_reader.h View 1 chunk +11 lines, -5 lines 0 comments Download
M net/tools/quic/quic_packet_reader.cc View 1 chunk +12 lines, -2 lines 0 comments Download
M net/tools/quic/quic_server.h View 1 chunk +0 lines, -3 lines 0 comments Download
M net/tools/quic/quic_server.cc View 4 chunks +3 lines, -17 lines 0 comments Download
M net/tools/quic/quic_spdy_client_stream_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/test_tools/quic_server_peer.h View 1 chunk +0 lines, -1 line 0 comments Download
M net/tools/quic/test_tools/quic_server_peer.cc View 1 chunk +0 lines, -5 lines 0 comments Download

Messages

Total messages: 20 (10 generated)
fnk
4 years, 9 months ago (2016-03-17 17:30:29 UTC) #1
Ryan Hamilton
lgtm
4 years, 9 months ago (2016-03-17 17:44:35 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1811043002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1811043002/1
4 years, 9 months ago (2016-03-17 17:44:54 UTC) #4
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/146139)
4 years, 9 months ago (2016-03-17 17:51:23 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1811043002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1811043002/20001
4 years, 9 months ago (2016-03-17 18:06:10 UTC) #9
commit-bot: I haz the power
Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/37181)
4 years, 9 months ago (2016-03-17 18:18:24 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1811043002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1811043002/40001
4 years, 9 months ago (2016-03-17 18:43:06 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1811043002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1811043002/60001
4 years, 9 months ago (2016-03-17 19:39:35 UTC) #17
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 9 months ago (2016-03-17 20:57:16 UTC) #18
commit-bot: I haz the power
4 years, 9 months ago (2016-03-17 20:58:28 UTC) #20
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/f57804c4c8609f1c6c396eddb6a3174d2003362c
Cr-Commit-Position: refs/heads/master@{#381795}

Powered by Google App Engine
This is Rietveld 408576698