A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
mesh-point-device.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008,2009 IITP RAS
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: Kirill Andreev <andreev@iitp.ru>
19  * Pavel Boyko <boyko@iitp.ru>
20  */
21 
22 #include "ns3/node.h"
23 #include "ns3/packet.h"
24 #include "ns3/log.h"
25 #include "ns3/pointer.h"
26 #include "ns3/mesh-point-device.h"
27 #include "ns3/wifi-net-device.h"
28 #include "ns3/mesh-wifi-interface-mac.h"
29 
30 NS_LOG_COMPONENT_DEFINE ("MeshPointDevice");
31 
32 namespace ns3 {
33 
34 NS_OBJECT_ENSURE_REGISTERED (MeshPointDevice)
35  ;
36 
37 TypeId
39 {
40  static TypeId tid = TypeId ("ns3::MeshPointDevice")
41  .SetParent<NetDevice> ()
42  .AddConstructor<MeshPointDevice> ()
43  .AddAttribute ("Mtu", "The MAC-level Maximum Transmission Unit",
44  UintegerValue (0xffff),
45  MakeUintegerAccessor (&MeshPointDevice::SetMtu,
47  MakeUintegerChecker<uint16_t> ())
48  .AddAttribute ( "RoutingProtocol",
49  "The mesh routing protocol used by this mesh point.",
50  PointerValue (),
51  MakePointerAccessor (
55  return tid;
56 }
57 
59  m_ifIndex (0)
60 {
62  m_channel = CreateObject<BridgeChannel> ();
63 }
64 
66 {
68  m_node = 0;
69  m_channel = 0;
71 }
72 
73 void
75 {
77  for (std::vector<Ptr<NetDevice> >::iterator iter = m_ifaces.begin (); iter != m_ifaces.end (); iter++)
78  {
79  *iter = 0;
80  }
81  m_ifaces.clear ();
82  m_node = 0;
83  m_channel = 0;
86 
87 }
88 
89 //-----------------------------------------------------------------------------
90 // NetDevice interface implementation
91 //-----------------------------------------------------------------------------
92 
93 void
94 MeshPointDevice::ReceiveFromDevice (Ptr<NetDevice> incomingPort, Ptr<const Packet> packet, uint16_t protocol,
95  Address const &src, Address const &dst, PacketType packetType)
96 {
98  NS_LOG_DEBUG ("UID is " << packet->GetUid ());
99  const Mac48Address src48 = Mac48Address::ConvertFrom (src);
100  const Mac48Address dst48 = Mac48Address::ConvertFrom (dst);
101  uint16_t& realProtocol = protocol;
102  NS_LOG_DEBUG ("SRC=" << src48 << ", DST = " << dst48 << ", I am: " << m_address);
103  if (!m_promiscRxCallback.IsNull ())
104  {
105  m_promiscRxCallback (this, packet, protocol, src, dst, packetType);
106  }
107  if (dst48.IsGroup ())
108  {
109  Ptr<Packet> packet_copy = packet->Copy ();
110  if (m_routingProtocol->RemoveRoutingStuff (incomingPort->GetIfIndex (), src48, dst48, packet_copy, realProtocol))
111  {
112  m_rxCallback (this, packet_copy, realProtocol, src);
113  Forward (incomingPort, packet, protocol, src48, dst48);
114 
116  m_rxStats.broadcastDataBytes += packet->GetSize ();
117  }
118  return;
119  }
120  if (dst48 == m_address)
121  {
122  Ptr<Packet> packet_copy = packet->Copy ();
123  if (m_routingProtocol->RemoveRoutingStuff (incomingPort->GetIfIndex (), src48, dst48, packet_copy, realProtocol))
124  {
125  m_rxCallback (this, packet_copy, realProtocol, src);
127  m_rxStats.unicastDataBytes += packet->GetSize ();
128  }
129  return;
130  }
131  else
132  Forward (incomingPort, packet->Copy (), protocol, src48, dst48);
133 }
134 
135 void
136 MeshPointDevice::Forward (Ptr<NetDevice> inport, Ptr<const Packet> packet, uint16_t protocol,
137  const Mac48Address src, const Mac48Address dst)
138 {
139  // pass through routing protocol
140  m_routingProtocol->RequestRoute (inport->GetIfIndex (), src, dst, packet, protocol, MakeCallback (
141  &MeshPointDevice::DoSend, this));
142 }
143 
144 void
145 MeshPointDevice::SetIfIndex (const uint32_t index)
146 {
148  m_ifIndex = index;
149 }
150 
151 uint32_t
153 {
155  return m_ifIndex;
156 }
157 
160 {
162  return m_channel;
163 }
164 
165 Address
167 {
169  return m_address;
170 }
171 
172 void
174 {
175  NS_LOG_WARN ("Manual changing mesh point address can cause routing errors.");
177 }
178 
179 bool
180 MeshPointDevice::SetMtu (const uint16_t mtu)
181 {
183  m_mtu = mtu;
184  return true;
185 }
186 
187 uint16_t
189 {
191  return m_mtu;
192 }
193 
194 bool
196 {
198  return true;
199 }
200 
201 void
203 {
204  // do nothing
205 }
206 
207 bool
209 {
211  return true;
212 }
213 
214 Address
216 {
218  return Mac48Address ("ff:ff:ff:ff:ff:ff");
219 }
220 
221 bool
223 {
225  return true;
226 }
227 
228 Address
230 {
231  NS_LOG_FUNCTION (this << multicastGroup);
232  Mac48Address multicast = Mac48Address::GetMulticast (multicastGroup);
233  return multicast;
234 }
235 
236 bool
238 {
240  return false;
241 }
242 
243 bool
245 {
247  return false;
248 }
249 
250 bool
251 MeshPointDevice::Send (Ptr<Packet> packet, const Address& dest, uint16_t protocolNumber)
252 {
253  const Mac48Address dst48 = Mac48Address::ConvertFrom (dest);
254  return m_routingProtocol->RequestRoute (m_ifIndex, m_address, dst48, packet, protocolNumber, MakeCallback (
255  &MeshPointDevice::DoSend, this));
256 }
257 
258 bool
259 MeshPointDevice::SendFrom (Ptr<Packet> packet, const Address& src, const Address& dest,
260  uint16_t protocolNumber)
261 {
262  const Mac48Address src48 = Mac48Address::ConvertFrom (src);
263  const Mac48Address dst48 = Mac48Address::ConvertFrom (dest);
264  return m_routingProtocol->RequestRoute (m_ifIndex, src48, dst48, packet, protocolNumber, MakeCallback (
265  &MeshPointDevice::DoSend, this));
266 }
267 
268 Ptr<Node>
270 {
272  return m_node;
273 }
274 
275 void
277 {
279  m_node = node;
280 }
281 
282 bool
284 {
286  return true;
287 }
288 
289 void
291 {
293  m_rxCallback = cb;
294 }
295 
296 void
298 {
300  m_promiscRxCallback = cb;
301 }
302 
303 bool
305 {
307  return false; // don't allow to bridge mesh network with something else.
308 }
309 
310 Address
312 {
313  NS_LOG_FUNCTION (this << addr);
314  return Mac48Address::GetMulticast (addr);
315 }
316 
317 //-----------------------------------------------------------------------------
318 // Interfaces
319 //-----------------------------------------------------------------------------
320 uint32_t
322 {
324  return m_ifaces.size ();
325 }
326 
329 {
330  for (std::vector<Ptr<NetDevice> >::const_iterator i = m_ifaces.begin (); i != m_ifaces.end (); i++)
331  {
332  if ((*i)->GetIfIndex () == n)
333  {
334  return (*i);
335  }
336  }
337  NS_FATAL_ERROR ("Mesh point interface is not found by index");
338  return 0;
339 }
340 std::vector<Ptr<NetDevice> >
342 {
343  return m_ifaces;
344 }
345 void
347 {
349 
350  NS_ASSERT (iface != this);
351  if (!Mac48Address::IsMatchingType (iface->GetAddress ()))
352  {
353  NS_FATAL_ERROR ("Device does not support eui 48 addresses: cannot be used as a mesh point interface.");
354  }
355  if (!iface->SupportsSendFrom ())
356  {
357  NS_FATAL_ERROR ("Device does not support SendFrom: cannot be used as a mesh point interface.");
358  }
359 
360  // Mesh point has MAC address of it's first interface
361  if (m_ifaces.empty ())
362  {
363  m_address = Mac48Address::ConvertFrom (iface->GetAddress ());
364  }
365  Ptr<WifiNetDevice> wifiNetDev = iface->GetObject<WifiNetDevice> ();
366  if (wifiNetDev == 0)
367  {
368  NS_FATAL_ERROR ("Device is not a WiFi NIC: cannot be used as a mesh point interface.");
369  }
370  Ptr<MeshWifiInterfaceMac> ifaceMac = wifiNetDev->GetMac ()->GetObject<MeshWifiInterfaceMac> ();
371  if (ifaceMac == 0)
372  {
374  "WiFi device doesn't have correct MAC installed: cannot be used as a mesh point interface.");
375  }
376  ifaceMac->SetMeshPointAddress (m_address);
377 
378  // Receive frames from this interface
379  m_node->RegisterProtocolHandler (MakeCallback (&MeshPointDevice::ReceiveFromDevice, this), 0, iface, /*promiscuous = */
380  true);
381  m_ifaces.push_back (iface);
382  m_channel->AddChannel (iface->GetChannel ());
383 }
384 
385 //-----------------------------------------------------------------------------
386 // Protocols
387 //-----------------------------------------------------------------------------
388 
389 void
391 {
393  NS_ASSERT_MSG (PeekPointer (protocol->GetMeshPoint ()) == this,
394  "Routing protocol must be installed on mesh point to be useful.");
395  m_routingProtocol = protocol;
396 }
397 
400 {
401  return m_routingProtocol;
402 }
403 
404 void
406  uint16_t protocol, uint32_t outIface)
407 {
408  if (!success)
409  {
410  NS_LOG_DEBUG ("Resolve failed");
411  return;
412  }
413 
414  // Count statistics
415  Statistics * stats = ((src == m_address) ? &m_txStats : &m_fwdStats);
416 
417  if (dst.IsBroadcast ())
418  {
419  stats->broadcastData++;
420  stats->broadcastDataBytes += packet->GetSize ();
421  }
422  else
423  {
424  stats->unicastData++;
425  stats->unicastDataBytes += packet->GetSize ();
426  }
427 
428  // Send
429  if (outIface != 0xffffffff)
430  {
431  GetInterface (outIface)->SendFrom (packet, src, dst, protocol);
432  }
433  else
434  {
435  for (std::vector<Ptr<NetDevice> >::iterator i = m_ifaces.begin (); i != m_ifaces.end (); i++)
436  {
437  (*i)->SendFrom (packet->Copy (), src, dst, protocol);
438  }
439  }
440 }
442  unicastData (0), unicastDataBytes (0), broadcastData (0), broadcastDataBytes (0)
443 {
444 }
445 
446 void
447 MeshPointDevice::Report (std::ostream & os) const
448 {
449  os << "<Statistics" << std::endl <<
450  "txUnicastData=\"" << m_txStats.unicastData << "\"" << std::endl <<
451  "txUnicastDataBytes=\"" << m_txStats.unicastDataBytes << "\"" << std::endl <<
452  "txBroadcastData=\"" << m_txStats.broadcastData << "\"" << std::endl <<
453  "txBroadcastDataBytes=\"" << m_txStats.broadcastDataBytes << "\"" << std::endl <<
454  "rxUnicastData=\"" << m_rxStats.unicastData << "\"" << std::endl <<
455  "rxUnicastDataBytes=\"" << m_rxStats.unicastDataBytes << "\"" << std::endl <<
456  "rxBroadcastData=\"" << m_rxStats.broadcastData << "\"" << std::endl <<
457  "rxBroadcastDataBytes=\"" << m_rxStats.broadcastDataBytes << "\"" << std::endl <<
458  "fwdUnicastData=\"" << m_fwdStats.unicastData << "\"" << std::endl <<
459  "fwdUnicastDataBytes=\"" << m_fwdStats.unicastDataBytes << "\"" << std::endl <<
460  "fwdBroadcastData=\"" << m_fwdStats.broadcastData << "\"" << std::endl <<
461  "fwdBroadcastDataBytes=\"" << m_fwdStats.broadcastDataBytes << "\"" << std::endl <<
462  "/>" << std::endl;
463 }
464 
465 void
467 {
468  m_rxStats = Statistics ();
469  m_txStats = Statistics ();
470  m_fwdStats = Statistics ();
471 }
472 
473 } // namespace ns3
uint32_t GetNInterfaces() const
static bool IsMatchingType(const Address &address)
Mac48Address m_address
Mesh point MAC address, supposed to be the address of the first added interface.
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
#define NS_LOG_FUNCTION(parameters)
Definition: log.h:345
virtual bool IsBridge() const
Return true if the net device is acting as a bridge.
NetDevice::ReceiveCallback m_rxCallback
Receive action.
void ResetStats()
Reset statistics counters.
virtual bool IsBroadcast() const
uint64_t GetUid(void) const
A packet is allocated a new uid when it is created empty or with zero-filled payload.
Definition: packet.cc:393
virtual bool SetMtu(const uint16_t mtu)
bool IsNull(void) const
Check for null implementation.
Definition: callback.h:1014
virtual ~MeshPointDevice()
D-tor.
#define NS_ASSERT(condition)
Definition: assert.h:64
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
uint32_t GetSize(void) const
Definition: packet.h:650
bool IsBroadcast(void) const
virtual void AddLinkChangeCallback(Callback< void > callback)
Statistics m_txStats
Counters.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Definition: object.cc:336
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
Definition: log.h:309
virtual bool IsLinkUp() const
virtual bool IsMulticast() const
Ptr< MeshL2RoutingProtocol > m_routingProtocol
Current routing protocol, used mainly by GetRoutingProtocol.
virtual void DoDispose()
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Ptr< BridgeChannel > m_channel
Virtual channel for upper layers.
#define NS_FATAL_ERROR(msg)
fatal error handling
Definition: fatal-error.h:72
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
a polymophic address class
Definition: address.h:86
virtual Address GetAddress() const
std::vector< Ptr< NetDevice > > GetInterfaces() const
virtual void SetAddress(Address a)
Set the address of this interface.
Ptr< NetDevice > GetInterface(uint32_t id) const
void SetRoutingProtocol(Ptr< MeshL2RoutingProtocol > protocol)
Register routing protocol to be used. Protocol must be already installed on this mesh point...
Statistics m_rxStats
Counters.
static Mac48Address GetMulticast(Ipv4Address address)
void Forward(Ptr< NetDevice > incomingPort, Ptr< const Packet > packet, uint16_t protocol, const Mac48Address src, const Mac48Address dst)
Forward packet down to interfaces.
Hold an unsigned integer type.
Definition: uinteger.h:46
Ptr< AttributeChecker > MakePointerChecker(void)
Definition: pointer.h:178
T * PeekPointer(const Ptr< T > &p)
Definition: ptr.h:279
Hold together all Wifi-related objects.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Definition: callback.h:1238
virtual uint32_t GetIfIndex() const
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
virtual Ptr< Node > GetNode() const
virtual uint16_t GetMtu() const
void AddInterface(Ptr< NetDevice > port)
Attach new interface to the station.
virtual void SetNode(Ptr< Node > node)
static Mac48Address ConvertFrom(const Address &address)
void Report(std::ostream &os) const
Print statistics counters.
Ptr< Packet > Copy(void) const
Definition: packet.cc:122
uint16_t m_mtu
MTU in bytes.
hold objects of type Ptr
Definition: pointer.h:33
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
virtual void SetPromiscReceiveCallback(NetDevice::PromiscReceiveCallback cb)
bool IsGroup(void) const
an EUI-48 address
Definition: mac48-address.h:41
Statistics m_fwdStats
Counters.
Ptr< Node > m_node
Parent node.
void DoSend(bool success, Ptr< Packet > packet, Mac48Address src, Mac48Address dst, uint16_t protocol, uint32_t iface)
Response callback for L2 routing protocol.
virtual Address GetBroadcast() const
static TypeId GetTypeId()
Object type ID for NS3 object system.
virtual Ptr< Channel > GetChannel() const
uint32_t m_ifIndex
If index.
Interface for L2 mesh routing protocol and mesh point communication.
void RegisterProtocolHandler(ProtocolHandler handler, uint16_t protocolType, Ptr< NetDevice > device, bool promiscuous=false)
Definition: node.cc:217
#define NS_ASSERT_MSG(condition, message)
Definition: assert.h:86
MeshPointDevice()
C-tor create empty (without interfaces and protocols) mesh point.
Describes an IPv6 address.
Definition: ipv6-address.h:46
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:38
Network layer to device interface.
Definition: net-device.h:75
#define NS_LOG_WARN(msg)
Definition: log.h:280
virtual bool NeedsArp() const
virtual bool IsPointToPoint() const
Return true if the net device is on a point-to-point link.
#define NS_LOG_DEBUG(msg)
Definition: log.h:289
std::vector< Ptr< NetDevice > > m_ifaces
List of interfaces.
virtual void SetIfIndex(const uint32_t index)
PacketType
Packet types are used as they are in Linux.
Definition: net-device.h:270
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
void ReceiveFromDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, PacketType packetType)
Receive packet from interface.
NetDevice::PromiscReceiveCallback m_promiscRxCallback
Promisc receive action.
a unique identifier for an interface.
Definition: type-id.h:49
virtual bool SupportsSendFrom() const
TypeId SetParent(TypeId tid)
Definition: type-id.cc:611
Basic MAC of mesh point Wi-Fi interface.
Ptr< MeshL2RoutingProtocol > GetRoutingProtocol() const
Access current routing protocol.
NS_LOG_COMPONENT_DEFINE("MeshPointDevice")