blob: d8d49c944f05ca87adc8c238ea796cd8eec11b5d [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi0d82d042017-07-07 06:15:27 +00002/*
Davide Pesaventoc5a9f812023-10-17 18:01:52 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shia1937bf2014-11-06 11:43:40 -070024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP
27#define NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP
Davide Pesavento44deacc2014-02-19 10:48:07 +010028
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080029#include "protocol-factory.hpp"
Davide Pesavento46afec42017-05-28 14:28:47 -040030#include "ethernet-channel.hpp"
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040031#include "network-predicate.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010032
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010034
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040035/**
36 * \brief Protocol factory for Ethernet.
Junxiao Shi7003c602017-01-10 13:35:28 +000037 */
Davide Pesavento3db98072021-03-09 23:03:27 -050038class EthernetFactory final : public ProtocolFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010039{
40public:
Junxiao Shib47247d2017-01-24 15:09:16 +000041 static const std::string&
Davide Pesaventod27841b2018-11-13 00:22:24 -050042 getId() noexcept;
Junxiao Shib47247d2017-01-24 15:09:16 +000043
Junxiao Shi0ba6d642017-07-17 00:53:22 +000044 explicit
45 EthernetFactory(const CtorParams& params);
46
Davide Pesavento46afec42017-05-28 14:28:47 -040047 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040048 * \brief Create Ethernet-based channel on the specified network interface.
Davide Pesavento46afec42017-05-28 14:28:47 -040049 *
50 * If this method is called twice with the same endpoint, only one channel
51 * will be created. The second call will just return the existing channel.
52 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040053 * \return Always a valid pointer to a EthernetChannel object, an exception
Davide Pesavento46afec42017-05-28 14:28:47 -040054 * is thrown if it cannot be created.
Junxiao Shi0d82d042017-07-07 06:15:27 +000055 * \throw PcapHelper::Error channel creation failed
Junxiao Shi7003c602017-01-10 13:35:28 +000056 */
Davide Pesavento46afec42017-05-28 14:28:47 -040057 shared_ptr<EthernetChannel>
Junxiao Shi0d82d042017-07-07 06:15:27 +000058 createChannel(const shared_ptr<const ndn::net::NetworkInterface>& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040059 time::nanoseconds idleTimeout);
60
Davide Pesavento46afec42017-05-28 14:28:47 -040061 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040062 * \brief Create a face to communicate on the given Ethernet multicast group.
Davide Pesavento46afec42017-05-28 14:28:47 -040063 *
64 * If this method is called twice with the same arguments, only one face
65 * will be created. The second call will just return the existing face.
66 *
Junxiao Shi0d82d042017-07-07 06:15:27 +000067 * \param localEndpoint local network interface
Davide Pesavento46afec42017-05-28 14:28:47 -040068 * \param group multicast group address
69 *
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040070 * \throw std::runtime_error %Face creation failed
Davide Pesavento44deacc2014-02-19 10:48:07 +010071 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070072 shared_ptr<Face>
Junxiao Shi0d82d042017-07-07 06:15:27 +000073 createMulticastFace(const ndn::net::NetworkInterface& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040074 const ethernet::Address& group);
Junxiao Shi7003c602017-01-10 13:35:28 +000075
Davide Pesavento46afec42017-05-28 14:28:47 -040076private:
Davide Pesaventod27841b2018-11-13 00:22:24 -050077 void
78 doProcessConfig(OptionalConfigSection configSection,
Davide Pesavento3db98072021-03-09 23:03:27 -050079 FaceSystem::ConfigContext& context) final;
Davide Pesaventod27841b2018-11-13 00:22:24 -050080
81 void
82 doCreateFace(const CreateFaceRequest& req,
83 const FaceCreatedCallback& onCreated,
Davide Pesavento3db98072021-03-09 23:03:27 -050084 const FaceCreationFailedCallback& onFailure) final;
Davide Pesaventod27841b2018-11-13 00:22:24 -050085
86 std::vector<shared_ptr<const Channel>>
Davide Pesavento3db98072021-03-09 23:03:27 -050087 doGetChannels() const final;
Davide Pesaventod27841b2018-11-13 00:22:24 -050088
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040089 /**
90 * \brief Create EthernetChannel on \p netif if requested by \p m_unicastConfig.
91 * \return New or existing channel, or nullptr if no channel should be created.
Junxiao Shi79a92082017-08-08 02:40:59 +000092 */
93 shared_ptr<EthernetChannel>
94 applyUnicastConfigToNetif(const shared_ptr<const ndn::net::NetworkInterface>& netif);
95
Davide Pesaventoc5a9f812023-10-17 18:01:52 -040096 /**
97 * \brief Create Ethernet multicast face on \p netif if requested by \p m_mcastConfig.
98 * \return New or existing face, or nullptr if no face should be created.
Junxiao Shi79a92082017-08-08 02:40:59 +000099 */
100 shared_ptr<Face>
101 applyMcastConfigToNetif(const ndn::net::NetworkInterface& netif);
102
Junxiao Shi7003c602017-01-10 13:35:28 +0000103 void
104 applyConfig(const FaceSystem::ConfigContext& context);
Davide Pesavento44deacc2014-02-19 10:48:07 +0100105
106private:
Davide Pesaventoc5a9f812023-10-17 18:01:52 -0400107 // ifname => channel
108 std::map<std::string, shared_ptr<EthernetChannel>> m_channels;
Davide Pesavento46afec42017-05-28 14:28:47 -0400109
Junxiao Shi79a92082017-08-08 02:40:59 +0000110 struct UnicastConfig
111 {
112 bool isEnabled = false;
113 bool wantListen = false;
Davide Pesavento15b55052018-01-27 19:09:28 -0500114 time::nanoseconds idleTimeout = 10_min;
Junxiao Shi79a92082017-08-08 02:40:59 +0000115 };
116 UnicastConfig m_unicastConfig;
117
Junxiao Shi7003c602017-01-10 13:35:28 +0000118 struct MulticastConfig
119 {
120 bool isEnabled = false;
121 ethernet::Address group = ethernet::getDefaultMulticastAddress();
Teng Liangbfea5752017-03-29 04:51:10 +0000122 ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS;
Junxiao Shi7003c602017-01-10 13:35:28 +0000123 NetworkInterfacePredicate netifPredicate;
124 };
Junxiao Shi7003c602017-01-10 13:35:28 +0000125 MulticastConfig m_mcastConfig;
126
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400127 // [ifname, group] => face
Junxiao Shi7003c602017-01-10 13:35:28 +0000128 std::map<std::pair<std::string, ethernet::Address>, shared_ptr<Face>> m_mcastFaces;
Junxiao Shi79a92082017-08-08 02:40:59 +0000129
130 signal::ScopedConnection m_netifAddConn;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100131};
132
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400133} // namespace nfd::face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100134
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700135#endif // NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP