blob: d16a128d903dfcaf4f2c54068a3b12ae219b6f34 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2012 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#include "net/third_party/quiche/src/quic/tools/quic_client_epoll_network_helper.h"
6
7#include <errno.h>
8#include <netinet/in.h>
9#include <string.h>
10#include <sys/epoll.h>
11#include <sys/socket.h>
12#include <unistd.h>
13
14#include "net/third_party/quiche/src/quic/core/crypto/quic_random.h"
15#include "net/third_party/quiche/src/quic/core/http/spdy_utils.h"
16#include "net/third_party/quiche/src/quic/core/quic_connection.h"
17#include "net/third_party/quiche/src/quic/core/quic_data_reader.h"
18#include "net/third_party/quiche/src/quic/core/quic_epoll_alarm_factory.h"
19#include "net/third_party/quiche/src/quic/core/quic_epoll_connection_helper.h"
20#include "net/third_party/quiche/src/quic/core/quic_packets.h"
21#include "net/third_party/quiche/src/quic/core/quic_server_id.h"
22#include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h"
23#include "net/third_party/quiche/src/quic/platform/api/quic_logging.h"
24#include "net/third_party/quiche/src/quic/platform/api/quic_ptr_util.h"
25#include "net/third_party/quiche/src/quic/platform/api/quic_system_event_loop.h"
26#include "net/quic/platform/impl/quic_socket_utils.h"
27
28#ifndef SO_RXQ_OVFL
29#define SO_RXQ_OVFL 40
30#endif
31
32namespace quic {
33
34namespace {
35const int kEpollFlags = EPOLLIN | EPOLLOUT | EPOLLET;
36} // namespace
37
38QuicClientEpollNetworkHelper::QuicClientEpollNetworkHelper(
39 QuicEpollServer* epoll_server,
40 QuicClientBase* client)
41 : epoll_server_(epoll_server),
42 packets_dropped_(0),
43 overflow_supported_(false),
44 packet_reader_(new QuicPacketReader()),
45 client_(client),
46 max_reads_per_epoll_loop_(std::numeric_limits<int>::max()) {}
47
48QuicClientEpollNetworkHelper::~QuicClientEpollNetworkHelper() {
49 if (client_->connected()) {
50 client_->session()->connection()->CloseConnection(
51 QUIC_PEER_GOING_AWAY, "Client being torn down",
52 ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
53 }
54
55 CleanUpAllUDPSockets();
56}
57
vasilvvc48c8712019-03-11 13:38:16 -070058std::string QuicClientEpollNetworkHelper::Name() const {
QUICHE teama6ef0a62019-03-07 20:34:33 -050059 return "QuicClientEpollNetworkHelper";
60}
61
62bool QuicClientEpollNetworkHelper::CreateUDPSocketAndBind(
63 QuicSocketAddress server_address,
64 QuicIpAddress bind_to_address,
65 int bind_to_port) {
66 epoll_server_->set_timeout_in_us(50 * 1000);
67
68 int fd = CreateUDPSocket(server_address, &overflow_supported_);
69 if (fd < 0) {
70 return false;
71 }
72
73 QuicSocketAddress client_address;
74 if (bind_to_address.IsInitialized()) {
75 client_address = QuicSocketAddress(bind_to_address, client_->local_port());
76 } else if (server_address.host().address_family() == IpAddressFamily::IP_V4) {
77 client_address = QuicSocketAddress(QuicIpAddress::Any4(), bind_to_port);
78 } else {
79 client_address = QuicSocketAddress(QuicIpAddress::Any6(), bind_to_port);
80 }
81
82 sockaddr_storage addr = client_address.generic_address();
83 int rc = bind(fd, reinterpret_cast<sockaddr*>(&addr), sizeof(addr));
84 if (rc < 0) {
85 QUIC_LOG(ERROR) << "Bind failed: " << strerror(errno);
86 return false;
87 }
88
89 if (client_address.FromSocket(fd) != 0) {
90 QUIC_LOG(ERROR) << "Unable to get self address. Error: "
91 << strerror(errno);
92 }
93
94 fd_address_map_[fd] = client_address;
95
96 epoll_server_->RegisterFD(fd, this, kEpollFlags);
97 return true;
98}
99
100void QuicClientEpollNetworkHelper::CleanUpUDPSocket(int fd) {
101 CleanUpUDPSocketImpl(fd);
102 fd_address_map_.erase(fd);
103}
104
105void QuicClientEpollNetworkHelper::CleanUpAllUDPSockets() {
106 for (std::pair<int, QuicSocketAddress> fd_address : fd_address_map_) {
107 CleanUpUDPSocketImpl(fd_address.first);
108 }
109 fd_address_map_.clear();
110}
111
112void QuicClientEpollNetworkHelper::CleanUpUDPSocketImpl(int fd) {
113 if (fd > -1) {
114 epoll_server_->UnregisterFD(fd);
115 int rc = close(fd);
116 DCHECK_EQ(0, rc);
117 }
118}
119
120void QuicClientEpollNetworkHelper::RunEventLoop() {
121 QuicRunSystemEventLoopIteration();
122 epoll_server_->WaitForEventsAndExecuteCallbacks();
123}
124
dschinazi17d42422019-06-18 16:35:07 -0700125void QuicClientEpollNetworkHelper::OnRegistration(QuicEpollServer* /*eps*/,
126 int /*fd*/,
127 int /*event_mask*/) {}
128void QuicClientEpollNetworkHelper::OnModification(int /*fd*/,
129 int /*event_mask*/) {}
130void QuicClientEpollNetworkHelper::OnUnregistration(int /*fd*/,
131 bool /*replaced*/) {}
132void QuicClientEpollNetworkHelper::OnShutdown(QuicEpollServer* /*eps*/,
133 int /*fd*/) {}
QUICHE teama6ef0a62019-03-07 20:34:33 -0500134
135void QuicClientEpollNetworkHelper::OnEvent(int fd, QuicEpollEvent* event) {
136 DCHECK_EQ(fd, GetLatestFD());
137
138 if (event->in_events & EPOLLIN) {
bnc5de87052019-05-03 14:21:53 -0700139 QUIC_DVLOG(1) << "Read packets on EPOLLIN";
QUICHE teama6ef0a62019-03-07 20:34:33 -0500140 int times_to_read = max_reads_per_epoll_loop_;
141 bool more_to_read = true;
142 QuicPacketCount packets_dropped = 0;
143 while (client_->connected() && more_to_read && times_to_read > 0) {
144 more_to_read = packet_reader_->ReadAndDispatchPackets(
145 GetLatestFD(), GetLatestClientAddress().port(),
146 *client_->helper()->GetClock(), this,
147 overflow_supported_ ? &packets_dropped : nullptr);
148 --times_to_read;
149 }
150 if (packets_dropped_ < packets_dropped) {
151 QUIC_LOG(ERROR)
152 << packets_dropped - packets_dropped_
153 << " more packets are dropped in the socket receive buffer.";
154 packets_dropped_ = packets_dropped;
155 }
156 if (client_->connected() && more_to_read) {
157 event->out_ready_mask |= EPOLLIN;
158 }
159 }
160 if (client_->connected() && (event->in_events & EPOLLOUT)) {
161 client_->writer()->SetWritable();
162 client_->session()->connection()->OnCanWrite();
163 }
164 if (event->in_events & EPOLLERR) {
165 QUIC_DLOG(INFO) << "Epollerr";
166 }
167}
168
169QuicPacketWriter* QuicClientEpollNetworkHelper::CreateQuicPacketWriter() {
170 return new QuicDefaultPacketWriter(GetLatestFD());
171}
172
173void QuicClientEpollNetworkHelper::SetClientPort(int port) {
174 fd_address_map_.back().second =
175 QuicSocketAddress(GetLatestClientAddress().host(), port);
176}
177
178QuicSocketAddress QuicClientEpollNetworkHelper::GetLatestClientAddress() const {
179 if (fd_address_map_.empty()) {
180 return QuicSocketAddress();
181 }
182
183 return fd_address_map_.back().second;
184}
185
186int QuicClientEpollNetworkHelper::GetLatestFD() const {
187 if (fd_address_map_.empty()) {
188 return -1;
189 }
190
191 return fd_address_map_.back().first;
192}
193
194void QuicClientEpollNetworkHelper::ProcessPacket(
195 const QuicSocketAddress& self_address,
196 const QuicSocketAddress& peer_address,
197 const QuicReceivedPacket& packet) {
198 client_->session()->ProcessUdpPacket(self_address, peer_address, packet);
199}
200
201int QuicClientEpollNetworkHelper::CreateUDPSocket(
202 QuicSocketAddress server_address,
203 bool* overflow_supported) {
204 return QuicSocketUtils::CreateUDPSocket(
205 server_address,
206 /*receive_buffer_size =*/kDefaultSocketReceiveBuffer,
207 /*send_buffer_size =*/kDefaultSocketReceiveBuffer, overflow_supported);
208}
209} // namespace quic