Davide Pesavento | fe0580c | 2017-05-12 02:02:10 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_DAEMON_FACE_PCAP_HELPER_HPP |
| 27 | #define NFD_DAEMON_FACE_PCAP_HELPER_HPP |
| 28 | |
| 29 | #include "core/common.hpp" |
| 30 | |
| 31 | #ifndef HAVE_LIBPCAP |
| 32 | #error "Cannot include this file when libpcap is not available" |
| 33 | #endif |
| 34 | |
| 35 | // forward declarations |
| 36 | struct pcap; |
| 37 | typedef pcap pcap_t; |
| 38 | |
| 39 | namespace nfd { |
| 40 | namespace face { |
| 41 | |
| 42 | /** |
| 43 | * @brief Helper class for dealing with libpcap handles. |
| 44 | */ |
| 45 | class PcapHelper : noncopyable |
| 46 | { |
| 47 | public: |
| 48 | class Error : public std::runtime_error |
| 49 | { |
| 50 | public: |
| 51 | explicit |
| 52 | Error(const std::string& what) |
| 53 | : std::runtime_error(what) |
| 54 | { |
| 55 | } |
| 56 | }; |
| 57 | |
| 58 | /** |
| 59 | * @brief Create a libpcap context for live packet capture on a network interface. |
| 60 | * @throw Error on any error |
| 61 | * @sa pcap_create(3pcap) |
| 62 | */ |
| 63 | explicit |
| 64 | PcapHelper(const std::string& interfaceName); |
| 65 | |
| 66 | ~PcapHelper(); |
| 67 | |
| 68 | /** |
| 69 | * @brief Start capturing packets. |
| 70 | * @param dlt The link-layer header type to be used. |
| 71 | * @throw Error on any error |
| 72 | * @sa pcap_activate(3pcap), pcap_set_datalink(3pcap) |
| 73 | */ |
| 74 | void |
| 75 | activate(int dlt); |
| 76 | |
| 77 | /** |
| 78 | * @brief Stop capturing and close the handle. |
| 79 | * @sa pcap_close(3pcap) |
| 80 | */ |
| 81 | void |
| 82 | close(); |
| 83 | |
| 84 | /** |
| 85 | * @brief Obtain a file descriptor that can be used in calls such as select(2) and poll(2). |
| 86 | * @pre activate() has been called. |
| 87 | * @return A selectable file descriptor. It is the caller's responsibility to close the fd. |
| 88 | * @throw Error on any error |
| 89 | * @sa pcap_get_selectable_fd(3pcap) |
| 90 | */ |
| 91 | int |
| 92 | getFd() const; |
| 93 | |
| 94 | /** |
| 95 | * @brief Get last error message. |
| 96 | * @return Human-readable explanation of the last libpcap error. |
| 97 | * @warning The behavior is undefined if no error occurred. |
| 98 | * @sa pcap_geterr(3pcap) |
| 99 | */ |
| 100 | std::string |
| 101 | getLastError() const; |
| 102 | |
| 103 | /** |
| 104 | * @brief Get the number of packets dropped by the kernel, as reported by libpcap. |
| 105 | * @throw Error on any error |
| 106 | * @sa pcap_stats(3pcap) |
| 107 | */ |
| 108 | size_t |
| 109 | getNDropped() const; |
| 110 | |
| 111 | /** |
| 112 | * @brief Install a BPF filter on the receiving socket. |
| 113 | * @param filter Null-terminated string containing the BPF program source. |
| 114 | * @pre activate() has been called. |
| 115 | * @throw Error on any error |
| 116 | * @sa pcap_setfilter(3pcap), pcap-filter(7) |
| 117 | */ |
| 118 | void |
| 119 | setPacketFilter(const char* filter) const; |
| 120 | |
| 121 | /** |
| 122 | * @brief Read the next packet captured on the interface. |
| 123 | * @return If successful, returns a tuple containing a pointer to the received packet |
| 124 | * (including the link-layer header) and the size of the packet; the third |
| 125 | * element must be ignored. On failure, returns a tuple containing nullptr, |
| 126 | * 0, and the reason for the failure. |
| 127 | * @warning The returned pointer must not be freed by the caller, and is valid only |
| 128 | * until the next call to this function. |
| 129 | * @sa pcap_next_ex(3pcap) |
| 130 | */ |
| 131 | std::tuple<const uint8_t*, size_t, std::string> |
| 132 | readNextPacket() const; |
| 133 | |
| 134 | operator pcap_t*() const |
| 135 | { |
| 136 | return m_pcap; |
| 137 | } |
| 138 | |
| 139 | private: |
| 140 | pcap_t* m_pcap; |
| 141 | }; |
| 142 | |
| 143 | } // namespace face |
| 144 | } // namespace nfd |
| 145 | |
| 146 | #endif // NFD_DAEMON_FACE_PCAP_HELPER_HPP |