Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #include "nacks.h" |
| 22 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 23 | #include "ns3/ndn-pit.h" |
| 24 | #include "ns3/ndn-pit-entry.h" |
| 25 | #include "ns3/ndn-interest-header.h" |
| 26 | #include "ns3/ndn-content-object-header.h" |
| 27 | #include "ns3/ndn-pit.h" |
| 28 | #include "ns3/ndn-fib.h" |
| 29 | #include "ns3/ndn-content-store.h" |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 30 | |
| 31 | #include "ns3/assert.h" |
| 32 | #include "ns3/ptr.h" |
| 33 | #include "ns3/log.h" |
| 34 | #include "ns3/simulator.h" |
| 35 | #include "ns3/boolean.h" |
| 36 | #include "ns3/string.h" |
| 37 | |
| 38 | #include <boost/ref.hpp> |
| 39 | #include <boost/foreach.hpp> |
| 40 | #include <boost/lambda/lambda.hpp> |
| 41 | #include <boost/lambda/bind.hpp> |
| 42 | #include <boost/tuple/tuple.hpp> |
| 43 | namespace ll = boost::lambda; |
| 44 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 45 | NS_LOG_COMPONENT_DEFINE ("ndn.fw.Nacks"); |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 46 | |
| 47 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 48 | namespace ndn { |
| 49 | namespace fw { |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 50 | |
| 51 | NS_OBJECT_ENSURE_REGISTERED (Nacks); |
| 52 | |
| 53 | TypeId |
| 54 | Nacks::GetTypeId (void) |
| 55 | { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 56 | static TypeId tid = TypeId ("ns3::ndn::fw::Nacks") |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 57 | .SetGroupName ("Ndn") |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 58 | .SetParent<ForwardingStrategy> () |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 59 | |
| 60 | //////////////////////////////////////////////////////////////////// |
| 61 | //////////////////////////////////////////////////////////////////// |
| 62 | |
| 63 | .AddTraceSource ("OutNacks", "OutNacks", MakeTraceSourceAccessor (&Nacks::m_outNacks)) |
| 64 | .AddTraceSource ("InNacks", "InNacks", MakeTraceSourceAccessor (&Nacks::m_inNacks)) |
| 65 | .AddTraceSource ("DropNacks", "DropNacks", MakeTraceSourceAccessor (&Nacks::m_dropNacks)) |
| 66 | |
| 67 | .AddAttribute ("EnableNACKs", "Enabling support of NACKs", |
| 68 | BooleanValue (false), |
| 69 | MakeBooleanAccessor (&Nacks::m_nacksEnabled), |
| 70 | MakeBooleanChecker ()) |
| 71 | ; |
| 72 | return tid; |
| 73 | } |
| 74 | |
| 75 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 76 | Nacks::OnInterest (const Ptr<Face> &incomingFace, |
| 77 | Ptr<InterestHeader> &header, |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 78 | const Ptr<const Packet> &packet) |
| 79 | { |
| 80 | if (header->GetNack () > 0) |
| 81 | OnNack (incomingFace, header, packet/*original packet*/); |
| 82 | else |
| 83 | super::OnInterest (incomingFace, header, packet/*original packet*/); |
| 84 | } |
| 85 | |
| 86 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 87 | Nacks::OnNack (const Ptr<Face> &incomingFace, |
| 88 | Ptr<InterestHeader> &header, |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 89 | const Ptr<const Packet> &packet) |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 90 | { |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 91 | NS_ASSERT (m_nacksEnabled); |
| 92 | |
| 93 | // NS_LOG_FUNCTION (incomingFace << header << packet); |
| 94 | m_inNacks (header, incomingFace); |
| 95 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 96 | Ptr<pit::Entry> pitEntry = m_pit->Lookup (*header); |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 97 | if (pitEntry == 0) |
| 98 | { |
| 99 | // somebody is doing something bad |
| 100 | m_dropNacks (header, incomingFace); |
| 101 | return; |
| 102 | } |
| 103 | |
| 104 | // This was done in error. Never, never do anything, except normal leakage. This way we ensure that we will not have losses, |
| 105 | // at least when there is only one client |
| 106 | // |
| 107 | // incomingFace->LeakBucketByOnePacket (); |
| 108 | |
| 109 | pitEntry->SetWaitingInVain (incomingFace); |
| 110 | |
| 111 | DidReceiveValidNack (incomingFace, header->GetNack (), pitEntry); |
| 112 | |
| 113 | if (!pitEntry->AreAllOutgoingInVain ()) // not all ougtoing are in vain |
| 114 | { |
| 115 | NS_LOG_DEBUG ("Not all outgoing are in vain"); |
| 116 | // suppress |
| 117 | // Don't do anything, we are still expecting data from some other face |
| 118 | m_dropNacks (header, incomingFace); |
| 119 | return; |
| 120 | } |
| 121 | |
| 122 | Ptr<Packet> nonNackInterest = Create<Packet> (); |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 123 | header->SetNack (InterestHeader::NORMAL_INTEREST); |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 124 | nonNackInterest->AddHeader (*header); |
| 125 | |
| 126 | bool propagated = DoPropagateInterest (incomingFace, header, nonNackInterest, pitEntry); |
| 127 | if (!propagated) |
| 128 | { |
| 129 | DidExhaustForwardingOptions (incomingFace, header, nonNackInterest, pitEntry); |
| 130 | } |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 134 | Nacks::DidReceiveDuplicateInterest (const Ptr<Face> &incomingFace, |
| 135 | Ptr<InterestHeader> &header, |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 136 | const Ptr<const Packet> &packet, |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 137 | Ptr<pit::Entry> pitEntry) |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 138 | { |
| 139 | super::DidReceiveDuplicateInterest (incomingFace, header, packet, pitEntry); |
| 140 | |
| 141 | if (m_nacksEnabled) |
| 142 | { |
| 143 | NS_LOG_DEBUG ("Sending NACK_LOOP"); |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 144 | header->SetNack (InterestHeader::NACK_LOOP); |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 145 | Ptr<Packet> nack = Create<Packet> (); |
| 146 | nack->AddHeader (*header); |
| 147 | |
| 148 | incomingFace->Send (nack); |
| 149 | m_outNacks (header, incomingFace); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 154 | Nacks::DidExhaustForwardingOptions (const Ptr<Face> &incomingFace, |
| 155 | Ptr<InterestHeader> header, |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 156 | const Ptr<const Packet> &packet, |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 157 | Ptr<pit::Entry> pitEntry) |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 158 | { |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 159 | if (m_nacksEnabled) |
| 160 | { |
| 161 | Ptr<Packet> packet = Create<Packet> (); |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 162 | header->SetNack (InterestHeader::NACK_GIVEUP_PIT); |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 163 | packet->AddHeader (*header); |
| 164 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 165 | BOOST_FOREACH (const pit::IncomingFace &incoming, pitEntry->GetIncoming ()) |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 166 | { |
| 167 | NS_LOG_DEBUG ("Send NACK for " << boost::cref (header->GetName ()) << " to " << boost::cref (*incoming.m_face)); |
| 168 | incoming.m_face->Send (packet->Copy ()); |
| 169 | |
| 170 | m_outNacks (header, incoming.m_face); |
| 171 | } |
Alexander Afanasyev | 6a3bb13 | 2012-08-15 09:47:35 -0700 | [diff] [blame] | 172 | } |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 173 | |
Alexander Afanasyev | 6a3bb13 | 2012-08-15 09:47:35 -0700 | [diff] [blame] | 174 | super::DidExhaustForwardingOptions (incomingFace, header, packet, pitEntry); |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 177 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 178 | Nacks::DidReceiveValidNack (const Ptr<Face> &incomingFace, |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 179 | uint32_t nackCode, |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 180 | Ptr<pit::Entry> pitEntry) |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 181 | { |
| 182 | // If NACK is NACK_GIVEUP_PIT, then neighbor gave up trying to and removed it's PIT entry. |
| 183 | // So, if we had an incoming entry to this neighbor, then we can remove it now |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 184 | if (nackCode == InterestHeader::NACK_GIVEUP_PIT) |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 185 | { |
| 186 | pitEntry->RemoveIncoming (incomingFace); |
| 187 | } |
| 188 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 189 | pitEntry->GetFibEntry ()->UpdateStatus (incomingFace, fib::FaceMetric::NDN_FIB_YELLOW); |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 190 | } |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 191 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 192 | } // namespace fw |
| 193 | } // namespace ndn |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 194 | } // namespace ns3 |