blob: e4cf7d94f2d5266c3aa7568fa09cac95bdc988ef [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/*
Junxiao Shi7003c602017-01-10 13:35:28 +00003 * Copyright (c) 2014-2017, 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 Pesavento44deacc2014-02-19 10:48:07 +010031
32namespace nfd {
Junxiao Shi7003c602017-01-10 13:35:28 +000033namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010034
Junxiao Shi7003c602017-01-10 13:35:28 +000035/** \brief protocol factory for Ethernet
Junxiao Shi7003c602017-01-10 13:35:28 +000036 */
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080037class EthernetFactory : public ProtocolFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010038{
39public:
Junxiao Shib47247d2017-01-24 15:09:16 +000040 static const std::string&
41 getId();
42
Junxiao Shi0ba6d642017-07-17 00:53:22 +000043 explicit
44 EthernetFactory(const CtorParams& params);
45
Junxiao Shi7003c602017-01-10 13:35:28 +000046 /** \brief process face_system.ether config section
Davide Pesavento44deacc2014-02-19 10:48:07 +010047 */
Junxiao Shi7003c602017-01-10 13:35:28 +000048 void
49 processConfig(OptionalConfigSection configSection,
50 FaceSystem::ConfigContext& context) override;
Davide Pesavento44deacc2014-02-19 10:48:07 +010051
Junxiao Shi7003c602017-01-10 13:35:28 +000052 void
Eric Newberry78e32b02017-04-01 14:34:44 +000053 createFace(const FaceUri& remoteUri,
54 const ndn::optional<FaceUri>& localUri,
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020055 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -070056 bool wantLocalFieldsEnabled,
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020057 const FaceCreatedCallback& onCreated,
Eric Newberry42602412016-08-27 09:33:18 -070058 const FaceCreationFailedCallback& onFailure) override;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020059
Davide Pesavento46afec42017-05-28 14:28:47 -040060 /**
61 * \brief Create Ethernet-based channel on the specified network interface
62 *
63 * If this method is called twice with the same endpoint, only one channel
64 * will be created. The second call will just return the existing channel.
65 *
66 * \return always a valid pointer to a EthernetChannel object, an exception
67 * is thrown if it cannot be created.
Junxiao Shi0d82d042017-07-07 06:15:27 +000068 * \throw PcapHelper::Error channel creation failed
Junxiao Shi7003c602017-01-10 13:35:28 +000069 */
Davide Pesavento46afec42017-05-28 14:28:47 -040070 shared_ptr<EthernetChannel>
Junxiao Shi0d82d042017-07-07 06:15:27 +000071 createChannel(const shared_ptr<const ndn::net::NetworkInterface>& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040072 time::nanoseconds idleTimeout);
73
Junxiao Shi7003c602017-01-10 13:35:28 +000074 std::vector<shared_ptr<const Channel>>
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020075 getChannels() const override;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060076
Davide Pesavento46afec42017-05-28 14:28:47 -040077 /**
78 * \brief Create a face to communicate on the given Ethernet multicast group
79 *
80 * If this method is called twice with the same arguments, only one face
81 * will be created. The second call will just return the existing face.
82 *
Junxiao Shi0d82d042017-07-07 06:15:27 +000083 * \param localEndpoint local network interface
Davide Pesavento46afec42017-05-28 14:28:47 -040084 * \param group multicast group address
85 *
86 * \throw EthernetTransport::Error transport creation fails
Davide Pesavento44deacc2014-02-19 10:48:07 +010087 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070088 shared_ptr<Face>
Junxiao Shi0d82d042017-07-07 06:15:27 +000089 createMulticastFace(const ndn::net::NetworkInterface& localEndpoint,
Davide Pesavento46afec42017-05-28 14:28:47 -040090 const ethernet::Address& group);
Junxiao Shi7003c602017-01-10 13:35:28 +000091
Davide Pesavento46afec42017-05-28 14:28:47 -040092private:
Junxiao Shi7003c602017-01-10 13:35:28 +000093 void
94 applyConfig(const FaceSystem::ConfigContext& context);
Davide Pesavento44deacc2014-02-19 10:48:07 +010095
96private:
Davide Pesavento46afec42017-05-28 14:28:47 -040097 std::map<std::string, shared_ptr<EthernetChannel>> m_channels; ///< ifname => channel
98
Junxiao Shi7003c602017-01-10 13:35:28 +000099 struct MulticastConfig
100 {
101 bool isEnabled = false;
102 ethernet::Address group = ethernet::getDefaultMulticastAddress();
Teng Liangbfea5752017-03-29 04:51:10 +0000103 ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS;
Junxiao Shi7003c602017-01-10 13:35:28 +0000104 NetworkInterfacePredicate netifPredicate;
105 };
106
107 MulticastConfig m_mcastConfig;
108
109 /// (ifname, group) => face
110 std::map<std::pair<std::string, ethernet::Address>, shared_ptr<Face>> m_mcastFaces;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100111};
112
Junxiao Shi7003c602017-01-10 13:35:28 +0000113} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +0100114} // namespace nfd
115
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700116#endif // NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP