Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 2 | /* |
Yanbiao Li | f48d080 | 2018-06-01 03:00:02 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 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 | |
Junxiao Shi | 00dc914 | 2016-11-21 14:23:12 +0000 | [diff] [blame] | 26 | #include "algorithm.hpp" |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 27 | |
| 28 | namespace nfd { |
Junxiao Shi | f3410d8 | 2016-04-05 13:49:44 -0700 | [diff] [blame] | 29 | namespace fw { |
| 30 | |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 31 | bool |
Junxiao Shi | 00dc914 | 2016-11-21 14:23:12 +0000 | [diff] [blame] | 32 | wouldViolateScope(const Face& inFace, const Interest& interest, const Face& outFace) |
| 33 | { |
| 34 | if (outFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) { |
| 35 | // forwarding to a local face is always allowed |
| 36 | return false; |
| 37 | } |
| 38 | |
| 39 | if (scope_prefix::LOCALHOST.isPrefixOf(interest.getName())) { |
| 40 | // localhost Interests cannot be forwarded to a non-local face |
| 41 | return true; |
| 42 | } |
| 43 | |
| 44 | if (scope_prefix::LOCALHOP.isPrefixOf(interest.getName())) { |
| 45 | // localhop Interests can be forwarded to a non-local face only if it comes from a local face |
| 46 | return inFace.getScope() != ndn::nfd::FACE_SCOPE_LOCAL; |
| 47 | } |
| 48 | |
| 49 | // Interest name is not subject to scope control |
| 50 | return false; |
| 51 | } |
| 52 | |
| 53 | bool |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 54 | canForwardToLegacy(const pit::Entry& pitEntry, const Face& face) |
| 55 | { |
| 56 | time::steady_clock::TimePoint now = time::steady_clock::now(); |
| 57 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 58 | bool hasUnexpiredOutRecord = std::any_of(pitEntry.out_begin(), pitEntry.out_end(), |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 59 | [&face, &now] (const pit::OutRecord& outRecord) { |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 60 | return &outRecord.getFace() == &face && outRecord.getExpiry() >= now; |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 61 | }); |
| 62 | if (hasUnexpiredOutRecord) { |
| 63 | return false; |
| 64 | } |
| 65 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 66 | bool hasUnexpiredOtherInRecord = std::any_of(pitEntry.in_begin(), pitEntry.in_end(), |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 67 | [&face, &now] (const pit::InRecord& inRecord) { |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 68 | return &inRecord.getFace() != &face && inRecord.getExpiry() >= now; |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 69 | }); |
| 70 | if (!hasUnexpiredOtherInRecord) { |
| 71 | return false; |
| 72 | } |
| 73 | |
Junxiao Shi | e21b3f3 | 2016-11-24 14:13:46 +0000 | [diff] [blame] | 74 | return true; |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | int |
| 78 | findDuplicateNonce(const pit::Entry& pitEntry, uint32_t nonce, const Face& face) |
| 79 | { |
| 80 | int dnw = DUPLICATE_NONCE_NONE; |
| 81 | |
| 82 | for (const pit::InRecord& inRecord : pitEntry.getInRecords()) { |
| 83 | if (inRecord.getLastNonce() == nonce) { |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 84 | if (&inRecord.getFace() == &face) { |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 85 | dnw |= DUPLICATE_NONCE_IN_SAME; |
| 86 | } |
| 87 | else { |
| 88 | dnw |= DUPLICATE_NONCE_IN_OTHER; |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | for (const pit::OutRecord& outRecord : pitEntry.getOutRecords()) { |
| 94 | if (outRecord.getLastNonce() == nonce) { |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 95 | if (&outRecord.getFace() == &face) { |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 96 | dnw |= DUPLICATE_NONCE_OUT_SAME; |
| 97 | } |
| 98 | else { |
| 99 | dnw |= DUPLICATE_NONCE_OUT_OTHER; |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | return dnw; |
| 105 | } |
| 106 | |
| 107 | bool |
| 108 | hasPendingOutRecords(const pit::Entry& pitEntry) |
| 109 | { |
| 110 | time::steady_clock::TimePoint now = time::steady_clock::now(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 111 | return std::any_of(pitEntry.out_begin(), pitEntry.out_end(), |
Junxiao Shi | 8744c97 | 2016-04-06 10:33:46 -0700 | [diff] [blame] | 112 | [&now] (const pit::OutRecord& outRecord) { |
| 113 | return outRecord.getExpiry() >= now && |
| 114 | outRecord.getIncomingNack() == nullptr; |
| 115 | }); |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 118 | time::steady_clock::TimePoint |
| 119 | getLastOutgoing(const pit::Entry& pitEntry) |
| 120 | { |
| 121 | pit::OutRecordCollection::const_iterator lastOutgoing = std::max_element( |
| 122 | pitEntry.out_begin(), pitEntry.out_end(), |
| 123 | [] (const pit::OutRecord& a, const pit::OutRecord& b) { |
| 124 | return a.getLastRenewed() < b.getLastRenewed(); |
| 125 | }); |
| 126 | BOOST_ASSERT(lastOutgoing != pitEntry.out_end()); |
| 127 | |
| 128 | return lastOutgoing->getLastRenewed(); |
| 129 | } |
| 130 | |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 131 | } // namespace fw |
| 132 | } // namespace nfd |