blob: 89d12946c7bb1b946989c2cb9c4a746dceb12da0 [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// An implementation of the QuicClientBase::NetworkHelper
6// that is based off the epoll server.
7
8#ifndef QUICHE_QUIC_TOOLS_QUIC_CLIENT_EPOLL_NETWORK_HELPER_H_
9#define QUICHE_QUIC_TOOLS_QUIC_CLIENT_EPOLL_NETWORK_HELPER_H_
10
11#include <cstdint>
12#include <memory>
13#include <string>
14
QUICHE teama6ef0a62019-03-07 20:34:33 -050015#include "net/third_party/quiche/src/quic/core/http/quic_client_push_promise_index.h"
16#include "net/third_party/quiche/src/quic/core/quic_config.h"
17#include "net/third_party/quiche/src/quic/core/quic_packet_reader.h"
18#include "net/third_party/quiche/src/quic/core/quic_process_packet_interface.h"
19#include "net/third_party/quiche/src/quic/platform/api/quic_containers.h"
20#include "net/third_party/quiche/src/quic/platform/api/quic_epoll.h"
21#include "net/third_party/quiche/src/quic/tools/quic_client_base.h"
22
23namespace quic {
24
25namespace test {
26class QuicClientPeer;
27} // namespace test
28
29// An implementation of the QuicClientBase::NetworkHelper based off
30// the epoll server.
31class QuicClientEpollNetworkHelper : public QuicClientBase::NetworkHelper,
32 public QuicEpollCallbackInterface,
33 public ProcessPacketInterface {
34 public:
35 // Create a quic client, which will have events managed by an externally owned
36 // EpollServer.
37 QuicClientEpollNetworkHelper(QuicEpollServer* epoll_server,
38 QuicClientBase* client);
39 QuicClientEpollNetworkHelper(const QuicClientEpollNetworkHelper&) = delete;
40 QuicClientEpollNetworkHelper& operator=(const QuicClientEpollNetworkHelper&) =
41 delete;
42
43 ~QuicClientEpollNetworkHelper() override;
44
45 // Return a name describing the class for use in debug/error reporting.
vasilvvc48c8712019-03-11 13:38:16 -070046 std::string Name() const override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050047
48 // From EpollCallbackInterface
49 void OnRegistration(QuicEpollServer* eps, int fd, int event_mask) override;
50 void OnModification(int fd, int event_mask) override;
51 void OnEvent(int fd, QuicEpollEvent* event) override;
52 // |fd_| can be unregistered without the client being disconnected. This
53 // happens in b3m QuicProber where we unregister |fd_| to feed in events to
54 // the client from the SelectServer.
55 void OnUnregistration(int fd, bool replaced) override;
56 void OnShutdown(QuicEpollServer* eps, int fd) override;
57
58 // From ProcessPacketInterface. This will be called for each received
59 // packet.
60 void ProcessPacket(const QuicSocketAddress& self_address,
61 const QuicSocketAddress& peer_address,
62 const QuicReceivedPacket& packet) override;
63
64 // From NetworkHelper.
65 void RunEventLoop() override;
66 bool CreateUDPSocketAndBind(QuicSocketAddress server_address,
67 QuicIpAddress bind_to_address,
68 int bind_to_port) override;
69 void CleanUpAllUDPSockets() override;
70 QuicSocketAddress GetLatestClientAddress() const override;
71 QuicPacketWriter* CreateQuicPacketWriter() override;
72
73 // Accessors provided for convenience, not part of any interface.
74
75 QuicEpollServer* epoll_server() { return epoll_server_; }
76
77 const QuicLinkedHashMap<int, QuicSocketAddress>& fd_address_map() const {
78 return fd_address_map_;
79 }
80
81 // If the client has at least one UDP socket, return the latest created one.
82 // Otherwise, return -1.
83 int GetLatestFD() const;
84
85 // Create socket for connection to |server_address| with default socket
86 // options.
87 // Return fd index.
88 virtual int CreateUDPSocket(QuicSocketAddress server_address,
89 bool* overflow_supported);
90
91 QuicClientBase* client() { return client_; }
92
93 void set_max_reads_per_epoll_loop(int num_reads) {
94 max_reads_per_epoll_loop_ = num_reads;
95 }
96 // If |fd| is an open UDP socket, unregister and close it. Otherwise, do
97 // nothing.
98 void CleanUpUDPSocket(int fd);
99
100 private:
101 friend class test::QuicClientPeer;
102
103 // Used for testing.
104 void SetClientPort(int port);
105
106 // Actually clean up |fd|.
107 void CleanUpUDPSocketImpl(int fd);
108
109 // Listens for events on the client socket.
110 QuicEpollServer* epoll_server_;
111
112 // Map mapping created UDP sockets to their addresses. By using linked hash
113 // map, the order of socket creation can be recorded.
114 QuicLinkedHashMap<int, QuicSocketAddress> fd_address_map_;
115
116 // If overflow_supported_ is true, this will be the number of packets dropped
117 // during the lifetime of the server.
118 QuicPacketCount packets_dropped_;
119
120 // True if the kernel supports SO_RXQ_OVFL, the number of packets dropped
121 // because the socket would otherwise overflow.
122 bool overflow_supported_;
123
124 // Point to a QuicPacketReader object on the heap. The reader allocates more
125 // space than allowed on the stack.
126 std::unique_ptr<QuicPacketReader> packet_reader_;
127
128 QuicClientBase* client_;
129
130 int max_reads_per_epoll_loop_;
131};
132
133} // namespace quic
134
135#endif // QUICHE_QUIC_TOOLS_QUIC_CLIENT_EPOLL_NETWORK_HELPER_H_