blob: 314614eed1dcd36a0dbe1033ae0a938dec42e10d [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Steve DiBenedettoef04f272014-06-04 14:28:31 -06003 * Copyright (c) 2014, 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
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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "ethernet-factory.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010028#include "core/global-io.hpp"
29
30#include <boost/algorithm/string/predicate.hpp>
31#include <pcap/pcap.h>
32
33namespace nfd {
34
Davide Pesavento1bdef282014-04-08 20:59:50 +020035NFD_LOG_INIT("EthernetFactory");
Davide Pesavento44deacc2014-02-19 10:48:07 +010036
37shared_ptr<EthernetFace>
Davide Pesaventob499a602014-11-18 22:36:56 +010038EthernetFactory::createMulticastFace(const NetworkInterfaceInfo& interface,
Davide Pesaventob60cc122014-03-19 19:26:02 +010039 const ethernet::Address &address)
Davide Pesavento44deacc2014-02-19 10:48:07 +010040{
Davide Pesavento44deacc2014-02-19 10:48:07 +010041 if (!address.isMulticast())
42 throw Error(address.toString() + " is not a multicast address");
43
Davide Pesaventob499a602014-11-18 22:36:56 +010044 shared_ptr<EthernetFace> face = findMulticastFace(interface.name, address);
Davide Pesavento44deacc2014-02-19 10:48:07 +010045 if (face)
46 return face;
47
48 shared_ptr<boost::asio::posix::stream_descriptor> socket =
Alexander Afanasyevf6980282014-05-13 18:28:40 -070049 make_shared<boost::asio::posix::stream_descriptor>(ref(getGlobalIoService()));
Davide Pesavento44deacc2014-02-19 10:48:07 +010050
Alexander Afanasyevf6980282014-05-13 18:28:40 -070051 face = make_shared<EthernetFace>(socket, interface, address);
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080052 face->onFail += bind(&EthernetFactory::afterFaceFailed,
Davide Pesaventob499a602014-11-18 22:36:56 +010053 this, interface.name, address);
54 m_multicastFaces[std::make_pair(interface.name, address)] = face;
Davide Pesavento44deacc2014-02-19 10:48:07 +010055
56 return face;
57}
58
Davide Pesavento44deacc2014-02-19 10:48:07 +010059void
Davide Pesaventob60cc122014-03-19 19:26:02 +010060EthernetFactory::afterFaceFailed(const std::string& interfaceName,
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080061 const ethernet::Address& address)
Davide Pesavento44deacc2014-02-19 10:48:07 +010062{
Davide Pesaventob60cc122014-03-19 19:26:02 +010063 NFD_LOG_DEBUG("afterFaceFailed: " << interfaceName << "/" << address);
64 m_multicastFaces.erase(std::make_pair(interfaceName, address));
Davide Pesavento44deacc2014-02-19 10:48:07 +010065}
66
67shared_ptr<EthernetFace>
Davide Pesaventob60cc122014-03-19 19:26:02 +010068EthernetFactory::findMulticastFace(const std::string& interfaceName,
Alexander Afanasyevd6655302014-02-28 08:41:28 -080069 const ethernet::Address& address) const
Davide Pesavento44deacc2014-02-19 10:48:07 +010070{
Alexander Afanasyev5959b012014-06-02 19:18:12 +030071 MulticastFaceMap::const_iterator i =
72 m_multicastFaces.find(std::make_pair(interfaceName, address));
Davide Pesavento44deacc2014-02-19 10:48:07 +010073 if (i != m_multicastFaces.end())
74 return i->second;
75 else
76 return shared_ptr<EthernetFace>();
77}
78
Alexander Afanasyevd6655302014-02-28 08:41:28 -080079void
80EthernetFactory::createFace(const FaceUri& uri,
81 const FaceCreatedCallback& onCreated,
82 const FaceConnectFailedCallback& onConnectFailed)
83{
84 throw Error("EthernetFactory does not support 'createFace' operation");
85}
86
Steve DiBenedettoef04f272014-06-04 14:28:31 -060087std::list<shared_ptr<const Channel> >
88EthernetFactory::getChannels() const
89{
90 return std::list<shared_ptr<const Channel> >();
91}
92
Davide Pesavento44deacc2014-02-19 10:48:07 +010093} // namespace nfd