aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/src/io_modules/forwarder/udp_tunnel_listener.h
blob: 0ee40a400a84e55de1e9ff944e5cdaac7b875e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
 */

#pragma once

#include <hicn/transport/core/connector.h>
#include <hicn/transport/portability/platform.h>

#include <asio.hpp>
#include <asio/steady_timer.hpp>
#include <unordered_map>

namespace std {
template <>
struct hash<asio::ip::udp::endpoint> {
  size_t operator()(const asio::ip::udp::endpoint &endpoint) const;
};
}  // namespace std

namespace transport {
namespace core {

class UdpTunnelListener
    : public std::enable_shared_from_this<UdpTunnelListener> {
  using PacketReceivedCallback = Connector::PacketReceivedCallback;
  using EndpointId = std::pair<uint32_t, uint16_t>;

  static constexpr uint16_t default_port = 5004;

 public:
  using Ptr = std::shared_ptr<UdpTunnelListener>;

  template <typename ReceiveCallback>
  UdpTunnelListener(asio::io_service &io_service,
                    ReceiveCallback &&receive_callback,
                    asio::ip::udp::endpoint endpoint = asio::ip::udp::endpoint(
                        asio::ip::udp::v4(), default_port))
      : io_service_(io_service),
        strand_(std::make_shared<asio::io_service::strand>(io_service_)),
        socket_(std::make_shared<asio::ip::udp::socket>(io_service_,
                                                        endpoint.protocol())),
        local_endpoint_(endpoint),
        receive_callback_(std::forward<ReceiveCallback &&>(receive_callback)),
#ifndef LINUX
        read_msg_(nullptr, 0)
#else
        iovecs_{0},
        msgs_{0},
        current_position_(0)
#endif
  {
    if (endpoint.protocol() == asio::ip::udp::v6()) {
      std::error_code ec;
      socket_->set_option(asio::ip::v6_only(false), ec);
      // Call succeeds only on dual stack systems.
    }
    socket_->bind(local_endpoint_);
    io_service_.post(std::bind(&UdpTunnelListener::doRecvPacket, this));
  }

  ~UdpTunnelListener();

  void close();

  int deleteConnector(Connector *connector) {
    return connectors_.erase(connector->getConnectorId());
  }

  template <typename ReceiveCallback>
  void setReceiveCallback(ReceiveCallback &&callback) {
    receive_callback_ = std::forward<ReceiveCallback &&>(callback);
  }

  Connector *findConnector(Connector::Id connId) {
    auto it = connectors_.find(connId);
    if (it != connectors_.end()) {
      return it->second.get();
    }

    return nullptr;
  }

 private:
  void doRecvPacket();

  void readHandler(std::error_code ec);

  asio::io_service &io_service_;
  std::shared_ptr<asio::io_service::strand> strand_;
  std::shared_ptr<asio::ip::udp::socket> socket_;
  asio::ip::udp::endpoint local_endpoint_;
  asio::ip::udp::endpoint remote_endpoint_;
  std::unordered_map<Connector::Id, std::shared_ptr<Connector>> connectors_;

  PacketReceivedCallback receive_callback_;

#ifdef LINUX
  struct iovec iovecs_[Connector::max_burst][8];
  struct mmsghdr msgs_[Connector::max_burst];
  struct sockaddr_storage remote_endpoints_[Connector::max_burst];
  std::uint8_t current_position_;
#else
  std::pair<uint8_t *, std::size_t> read_msg_;
#endif
};

}  // namespace core

}  // namespace transport