blob: e545ee2c62c217bed23a004051a1a51c991a5d2f [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
125void QuicClientEpollNetworkHelper::OnRegistration(QuicEpollServer* eps,
126 int fd,
127 int event_mask) {}
128void QuicClientEpollNetworkHelper::OnModification(int fd, int event_mask) {}
129void QuicClientEpollNetworkHelper::OnUnregistration(int fd, bool replaced) {}
130void QuicClientEpollNetworkHelper::OnShutdown(QuicEpollServer* eps, int fd) {}
131
132void QuicClientEpollNetworkHelper::OnEvent(int fd, QuicEpollEvent* event) {
133 DCHECK_EQ(fd, GetLatestFD());
134
135 if (event->in_events & EPOLLIN) {
136 DVLOG(1) << "Read packets on EPOLLIN";
137 int times_to_read = max_reads_per_epoll_loop_;
138 bool more_to_read = true;
139 QuicPacketCount packets_dropped = 0;
140 while (client_->connected() && more_to_read && times_to_read > 0) {
141 more_to_read = packet_reader_->ReadAndDispatchPackets(
142 GetLatestFD(), GetLatestClientAddress().port(),
143 *client_->helper()->GetClock(), this,
144 overflow_supported_ ? &packets_dropped : nullptr);
145 --times_to_read;
146 }
147 if (packets_dropped_ < packets_dropped) {
148 QUIC_LOG(ERROR)
149 << packets_dropped - packets_dropped_
150 << " more packets are dropped in the socket receive buffer.";
151 packets_dropped_ = packets_dropped;
152 }
153 if (client_->connected() && more_to_read) {
154 event->out_ready_mask |= EPOLLIN;
155 }
156 }
157 if (client_->connected() && (event->in_events & EPOLLOUT)) {
158 client_->writer()->SetWritable();
159 client_->session()->connection()->OnCanWrite();
160 }
161 if (event->in_events & EPOLLERR) {
162 QUIC_DLOG(INFO) << "Epollerr";
163 }
164}
165
166QuicPacketWriter* QuicClientEpollNetworkHelper::CreateQuicPacketWriter() {
167 return new QuicDefaultPacketWriter(GetLatestFD());
168}
169
170void QuicClientEpollNetworkHelper::SetClientPort(int port) {
171 fd_address_map_.back().second =
172 QuicSocketAddress(GetLatestClientAddress().host(), port);
173}
174
175QuicSocketAddress QuicClientEpollNetworkHelper::GetLatestClientAddress() const {
176 if (fd_address_map_.empty()) {
177 return QuicSocketAddress();
178 }
179
180 return fd_address_map_.back().second;
181}
182
183int QuicClientEpollNetworkHelper::GetLatestFD() const {
184 if (fd_address_map_.empty()) {
185 return -1;
186 }
187
188 return fd_address_map_.back().first;
189}
190
191void QuicClientEpollNetworkHelper::ProcessPacket(
192 const QuicSocketAddress& self_address,
193 const QuicSocketAddress& peer_address,
194 const QuicReceivedPacket& packet) {
195 client_->session()->ProcessUdpPacket(self_address, peer_address, packet);
196}
197
198int QuicClientEpollNetworkHelper::CreateUDPSocket(
199 QuicSocketAddress server_address,
200 bool* overflow_supported) {
201 return QuicSocketUtils::CreateUDPSocket(
202 server_address,
203 /*receive_buffer_size =*/kDefaultSocketReceiveBuffer,
204 /*send_buffer_size =*/kDefaultSocketReceiveBuffer, overflow_supported);
205}
206} // namespace quic