blob: b0a193e8175f1e6db7b5bcbeaf848be58708b38b [file] [log] [blame]
Alexander Afanasyev996b4872012-07-17 17:07:56 -07001/* -*- 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
23#include "ns3/ccnx-pit.h"
24#include "ns3/ccnx-pit-entry.h"
25#include "ns3/ccnx-interest-header.h"
26#include "ns3/ccnx-content-object-header.h"
27#include "ns3/ccnx-pit.h"
28#include "ns3/ccnx-fib.h"
29#include "ns3/ccnx-content-store.h"
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>
43namespace ll = boost::lambda;
44
45NS_LOG_COMPONENT_DEFINE ("NdnSimNacks");
46
47namespace ns3 {
48namespace ndnSIM {
49
50NS_OBJECT_ENSURE_REGISTERED (Nacks);
51
52TypeId
53Nacks::GetTypeId (void)
54{
55 static TypeId tid = TypeId ("ns3::ndnSIM::Nacks")
56 .SetGroupName ("Ccnx")
57 .SetParent<CcnxForwardingStrategy> ()
58
59 ////////////////////////////////////////////////////////////////////
60 ////////////////////////////////////////////////////////////////////
61
62 .AddTraceSource ("OutNacks", "OutNacks", MakeTraceSourceAccessor (&Nacks::m_outNacks))
63 .AddTraceSource ("InNacks", "InNacks", MakeTraceSourceAccessor (&Nacks::m_inNacks))
64 .AddTraceSource ("DropNacks", "DropNacks", MakeTraceSourceAccessor (&Nacks::m_dropNacks))
65
66 .AddAttribute ("EnableNACKs", "Enabling support of NACKs",
67 BooleanValue (false),
68 MakeBooleanAccessor (&Nacks::m_nacksEnabled),
69 MakeBooleanChecker ())
70 ;
71 return tid;
72}
73
74void
75Nacks::OnInterest (const Ptr<CcnxFace> &incomingFace,
76 Ptr<CcnxInterestHeader> &header,
77 const Ptr<const Packet> &packet)
78{
79 if (header->GetNack () > 0)
80 OnNack (incomingFace, header, packet/*original packet*/);
81 else
82 super::OnInterest (incomingFace, header, packet/*original packet*/);
83}
84
85void
Alexander Afanasyev786936a2012-07-17 19:48:15 -070086Nacks::OnNack (const Ptr<CcnxFace> &incomingFace,
Alexander Afanasyev996b4872012-07-17 17:07:56 -070087 Ptr<CcnxInterestHeader> &header,
Alexander Afanasyev786936a2012-07-17 19:48:15 -070088 const Ptr<const Packet> &packet)
Alexander Afanasyev996b4872012-07-17 17:07:56 -070089{
Alexander Afanasyev786936a2012-07-17 19:48:15 -070090 NS_ASSERT (m_nacksEnabled);
91
92 // NS_LOG_FUNCTION (incomingFace << header << packet);
93 m_inNacks (header, incomingFace);
94
95 Ptr<CcnxPitEntry> pitEntry = m_pit->Lookup (*header);
96 if (pitEntry == 0)
97 {
98 // somebody is doing something bad
99 m_dropNacks (header, incomingFace);
100 return;
101 }
102
103 // This was done in error. Never, never do anything, except normal leakage. This way we ensure that we will not have losses,
104 // at least when there is only one client
105 //
106 // incomingFace->LeakBucketByOnePacket ();
107
108 pitEntry->SetWaitingInVain (incomingFace);
109
110 DidReceiveValidNack (incomingFace, header->GetNack (), pitEntry);
111
112 if (!pitEntry->AreAllOutgoingInVain ()) // not all ougtoing are in vain
113 {
114 NS_LOG_DEBUG ("Not all outgoing are in vain");
115 // suppress
116 // Don't do anything, we are still expecting data from some other face
117 m_dropNacks (header, incomingFace);
118 return;
119 }
120
121 Ptr<Packet> nonNackInterest = Create<Packet> ();
122 header->SetNack (CcnxInterestHeader::NORMAL_INTEREST);
123 nonNackInterest->AddHeader (*header);
124
125 bool propagated = DoPropagateInterest (incomingFace, header, nonNackInterest, pitEntry);
126 if (!propagated)
127 {
128 DidExhaustForwardingOptions (incomingFace, header, nonNackInterest, pitEntry);
129 }
Alexander Afanasyev996b4872012-07-17 17:07:56 -0700130}
131
132void
133Nacks::DidReceiveDuplicateInterest (const Ptr<CcnxFace> &incomingFace,
134 Ptr<CcnxInterestHeader> &header,
135 const Ptr<const Packet> &packet,
136 Ptr<CcnxPitEntry> pitEntry)
137{
138 super::DidReceiveDuplicateInterest (incomingFace, header, packet, pitEntry);
139
140 if (m_nacksEnabled)
141 {
142 NS_LOG_DEBUG ("Sending NACK_LOOP");
143 header->SetNack (CcnxInterestHeader::NACK_LOOP);
144 Ptr<Packet> nack = Create<Packet> ();
145 nack->AddHeader (*header);
146
147 incomingFace->Send (nack);
148 m_outNacks (header, incomingFace);
149 }
150}
151
152void
153Nacks::DidExhaustForwardingOptions (const Ptr<CcnxFace> &incomingFace,
154 Ptr<CcnxInterestHeader> header,
155 const Ptr<const Packet> &packet,
156 Ptr<CcnxPitEntry> pitEntry)
157{
158 super::DidExhaustForwardingOptions (incomingFace, header, packet, pitEntry);
159
160 if (m_nacksEnabled)
161 {
162 Ptr<Packet> packet = Create<Packet> ();
163 header->SetNack (CcnxInterestHeader::NACK_GIVEUP_PIT);
164 packet->AddHeader (*header);
165
166 BOOST_FOREACH (const CcnxPitEntryIncomingFace &incoming, pitEntry->GetIncoming ())
167 {
168 NS_LOG_DEBUG ("Send NACK for " << boost::cref (header->GetName ()) << " to " << boost::cref (*incoming.m_face));
169 incoming.m_face->Send (packet->Copy ());
170
171 m_outNacks (header, incoming.m_face);
172 }
173
174 // All incoming interests cannot be satisfied. Remove them
175 pitEntry->ClearIncoming ();
176
177 // Remove also outgoing
178 pitEntry->ClearOutgoing ();
179
180 // Set pruning timout on PIT entry (instead of deleting the record)
181 m_pit->MarkErased (pitEntry);
182 }
183}
184
Alexander Afanasyev786936a2012-07-17 19:48:15 -0700185void
186Nacks::DidReceiveValidNack (const Ptr<CcnxFace> &incomingFace,
187 uint32_t nackCode,
188 Ptr<CcnxPitEntry> pitEntry)
189{
190 // If NACK is NACK_GIVEUP_PIT, then neighbor gave up trying to and removed it's PIT entry.
191 // So, if we had an incoming entry to this neighbor, then we can remove it now
192 if (nackCode == CcnxInterestHeader::NACK_GIVEUP_PIT)
193 {
194 pitEntry->RemoveIncoming (incomingFace);
195 }
196
197 pitEntry->GetFibEntry ()->UpdateStatus (incomingFace, CcnxFibFaceMetric::NDN_FIB_YELLOW);
198}
Alexander Afanasyev996b4872012-07-17 17:07:56 -0700199
200} // namespace ndnSIM
201} // namespace ns3