blob: 9767c3935abfaa08e8ee092bf0bbf711651af0be [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2015 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// A class to read incoming QUIC packets from the UDP socket.
6
7#ifndef QUICHE_QUIC_CORE_QUIC_PACKET_READER_H_
8#define QUICHE_QUIC_CORE_QUIC_PACKET_READER_H_
9
10#include <netinet/in.h>
11// Include here to guarantee this header gets included (for MSG_WAITFORONE)
12// regardless of how the below transitive header include set may change.
13#include <sys/socket.h>
14
15#include "base/macros.h"
16#include "net/third_party/quiche/src/quic/core/quic_packets.h"
17#include "net/third_party/quiche/src/quic/core/quic_process_packet_interface.h"
18#include "net/third_party/quiche/src/quic/platform/api/quic_clock.h"
19#include "net/third_party/quiche/src/quic/platform/api/quic_socket_address.h"
20#include "net/quic/platform/impl/quic_socket_utils.h"
21
22namespace quic {
23
24#if MMSG_MORE
25// Read in larger batches to minimize recvmmsg overhead.
26const int kNumPacketsPerReadMmsgCall = 16;
27#endif
28
29class QuicPacketReader {
30 public:
31 QuicPacketReader();
32 QuicPacketReader(const QuicPacketReader&) = delete;
33 QuicPacketReader& operator=(const QuicPacketReader&) = delete;
34
35 virtual ~QuicPacketReader();
36
37 // Reads a number of packets from the given fd, and then passes them off to
38 // the PacketProcessInterface. Returns true if there may be additional
39 // packets available on the socket.
40 // Populates |packets_dropped| if it is non-null and the socket is configured
41 // to track dropped packets and some packets are read.
42 // If the socket has timestamping enabled, the per packet timestamps will be
43 // passed to the processor. Otherwise, |clock| will be used.
44 virtual bool ReadAndDispatchPackets(int fd,
45 int port,
46 const QuicClock& clock,
47 ProcessPacketInterface* processor,
48 QuicPacketCount* packets_dropped);
49
50 private:
51 // Initialize the internal state of the reader.
52 void Initialize();
53
54 // Reads and dispatches many packets using recvmmsg.
55 bool ReadAndDispatchManyPackets(int fd,
56 int port,
57 const QuicClock& clock,
58 ProcessPacketInterface* processor,
59 QuicPacketCount* packets_dropped);
60
61 // Reads and dispatches a single packet using recvmsg.
62 static bool ReadAndDispatchSinglePacket(int fd,
63 int port,
64 const QuicClock& clock,
65 ProcessPacketInterface* processor,
66 QuicPacketCount* packets_dropped);
67
68#if MMSG_MORE
69 // Storage only used when recvmmsg is available.
70 // TODO(danzh): change it to be a pointer to avoid the allocation on the stack
71 // from exceeding maximum allowed frame size.
72 // packets_ and mmsg_hdr_ are used to supply cbuf and buf to the recvmmsg
73 // call.
74 struct PacketData {
75 iovec iov;
76 // raw_address is used for address information provided by the recvmmsg
77 // call on the packets.
78 struct sockaddr_storage raw_address;
79 // cbuf is used for ancillary data from the kernel on recvmmsg.
80 char cbuf[kCmsgSpaceForReadPacket];
81 // buf is used for the data read from the kernel on recvmmsg.
82 char buf[kMaxV4PacketSize];
83 };
84 PacketData packets_[kNumPacketsPerReadMmsgCall];
85 mmsghdr mmsg_hdr_[kNumPacketsPerReadMmsgCall];
86#endif
87};
88
89} // namespace quic
90
91#endif // QUICHE_QUIC_CORE_QUIC_PACKET_READER_H_