A Discrete-Event Network Simulator
API
adhoc-wifi-mac.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2006, 2009 INRIA
4  * Copyright (c) 2009 MIRKO BANCHI
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20  * Mirko Banchi <mk.banchi@gmail.com>
21  */
22 
23 #include "adhoc-wifi-mac.h"
24 #include "ns3/pointer.h"
25 #include "ns3/log.h"
26 #include "ns3/string.h"
27 #include "ns3/boolean.h"
28 #include "ns3/trace-source-accessor.h"
29 #include "qos-tag.h"
30 #include "mac-low.h"
31 #include "dcf-manager.h"
32 #include "mac-rx-middle.h"
33 #include "mac-tx-middle.h"
34 #include "msdu-aggregator.h"
35 #include "amsdu-subframe-header.h"
36 #include "mgt-headers.h"
37 
38 namespace ns3 {
39 
40 NS_LOG_COMPONENT_DEFINE ("AdhocWifiMac");
41 
42 NS_OBJECT_ENSURE_REGISTERED (AdhocWifiMac);
43 
44 TypeId
46 {
47  static TypeId tid = TypeId ("ns3::AdhocWifiMac")
49  .SetGroupName ("Wifi")
50  .AddConstructor<AdhocWifiMac> ()
51  ;
52  return tid;
53 }
54 
56 {
57  NS_LOG_FUNCTION (this);
58  //Let the lower layers know that we are acting in an IBSS
60 }
61 
63 {
64  NS_LOG_FUNCTION (this);
65 }
66 
67 void
69 {
70  NS_LOG_FUNCTION (this << address);
71  //In an IBSS, the BSSID is supposed to be generated per Section
72  //11.1.3 of IEEE 802.11. We don't currently do this - instead we
73  //make an IBSS STA a bit like an AP, with the BSSID for frames
74  //transmitted by each STA set to that STA's address.
75  //
76  //This is why we're overriding this method.
78  RegularWifiMac::SetBssid (address);
79 }
80 
81 void
83 {
84  NS_LOG_FUNCTION (this << packet << to);
85  if (m_stationManager->IsBrandNew (to))
86  {
87  //In ad hoc mode, we assume that every destination supports all
88  //the rates we support.
91  }
92 
93  WifiMacHeader hdr;
94 
95  //If we are not a QoS STA then we definitely want to use AC_BE to
96  //transmit the packet. A TID of zero will map to AC_BE (through \c
97  //QosUtilsMapTidToAc()), so we use that as our default here.
98  uint8_t tid = 0;
99 
100  //For now, a STA that supports QoS does not support non-QoS
101  //associations, and vice versa. In future the STA model should fall
102  //back to non-QoS if talking to a peer that is also non-QoS. At
103  //that point there will need to be per-station QoS state maintained
104  //by the association state machine, and consulted here.
105  if (m_qosSupported)
106  {
109  hdr.SetQosNoEosp ();
110  hdr.SetQosNoAmsdu ();
111  //Transmission of multiple frames in the same TXOP is not
112  //supported for now
113  hdr.SetQosTxopLimit (0);
114 
115  //Fill in the QoS control field in the MAC header
116  tid = QosUtilsGetTidForPacket (packet);
117  //Any value greater than 7 is invalid and likely indicates that
118  //the packet had no QoS tag, so we revert to zero, which will
119  //mean that AC_BE is used.
120  if (tid > 7)
121  {
122  tid = 0;
123  }
124  hdr.SetQosTid (tid);
125  }
126  else
127  {
128  hdr.SetTypeData ();
129  }
130 
131  hdr.SetAddr1 (to);
132  hdr.SetAddr2 (m_low->GetAddress ());
133  hdr.SetAddr3 (GetBssid ());
134  hdr.SetDsNotFrom ();
135  hdr.SetDsNotTo ();
136 
137  if (m_qosSupported)
138  {
139  //Sanity check that the TID is valid
140  NS_ASSERT (tid < 8);
141  m_edca[QosUtilsMapTidToAc (tid)]->Queue (packet, hdr);
142  }
143  else
144  {
145  m_dca->Queue (packet, hdr);
146  }
147 }
148 
149 void
151 {
152  NS_LOG_FUNCTION (this << &linkUp);
154 
155  //The approach taken here is that, from the point of view of a STA
156  //in IBSS mode, the link is always up, so we immediately invoke the
157  //callback if one is set
158  linkUp ();
159 }
160 
161 void
163 {
164  NS_LOG_FUNCTION (this << packet << hdr);
165  NS_ASSERT (!hdr->IsCtl ());
166  Mac48Address from = hdr->GetAddr2 ();
167  Mac48Address to = hdr->GetAddr1 ();
168  if (hdr->IsData ())
169  {
170  if (hdr->IsQosData () && hdr->IsQosAmsdu ())
171  {
172  NS_LOG_DEBUG ("Received A-MSDU from" << from);
173  DeaggregateAmsduAndForward (packet, hdr);
174  }
175  else
176  {
177  ForwardUp (packet, from, to);
178  }
179  return;
180  }
181 
182  //Invoke the receive handler of our parent class to deal with any
183  //other frames. Specifically, this will handle Block Ack-related
184  //Management Action frames.
185  RegularWifiMac::Receive (packet, hdr);
186 }
187 
188 } //namespace ns3
virtual void SetLinkUpCallback(Callback< void > linkUp)
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void SetQosAckPolicy(enum QosAckPolicy policy)
Set the QoS ACK policy in the QoS control field.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:44
virtual void Enqueue(Ptr< const Packet > packet, Mac48Address to)
EdcaQueues m_edca
This is a map from Access Category index to the corresponding channel access function.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
Definition: assert.h:67
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
virtual void DeaggregateAmsduAndForward(Ptr< Packet > aggregatedPacket, const WifiMacHeader *hdr)
This method can be called to de-aggregate an A-MSDU and forward the constituent packets up the stack...
bool IsCtl(void) const
Return true if the Type is Control.
bool IsBrandNew(Mac48Address address) const
Return whether the station state is brand new.
bool IsQosAmsdu(void) const
Check if the A-MSDU present bit is set in the QoS control field.
virtual void Receive(Ptr< Packet > packet, const WifiMacHeader *hdr)
This method acts as the MacRxMiddle receive callback and is invoked to notify us that a frame has bee...
virtual void Receive(Ptr< Packet > packet, const WifiMacHeader *hdr)
This method acts as the MacRxMiddle receive callback and is invoked to notify us that a frame has bee...
uint8_t QosUtilsGetTidForPacket(Ptr< const Packet > packet)
If a qos tag is attached to the packet, returns a value < 8.
Definition: qos-utils.cc:62
void RecordDisassociated(Mac48Address address)
Records that the STA was disassociated.
virtual void SetBssid(Mac48Address bssid)
void ForwardUp(Ptr< Packet > packet, Mac48Address from, Mac48Address to)
Forward the packet up to the device.
base class for all MAC-level wifi objects.
bool m_qosSupported
This Boolean is set true iff this WifiMac is to model 802.11e/WMM style Quality of Service...
virtual void SetAddress(Mac48Address address)
void SetAddr1(Mac48Address address)
Fill the Address 1 field with the given address.
void SetTypeOfStation(TypeOfStation type)
This method is invoked by a subclass to specify what type of station it is implementing.
void SetDsNotTo(void)
Un-set the To DS bit in the Frame Control field.
Ptr< DcaTxop > m_dca
This holds a pointer to the DCF instance for this WifiMac - used for transmission of frames to non-Qo...
void SetAddr3(Mac48Address address)
Fill the Address 3 field with the given address.
AcIndex QosUtilsMapTidToAc(uint8_t tid)
Maps TID (Traffic ID) to Access classes.
Definition: qos-utils.cc:28
virtual void SetAddress(Mac48Address address)
Mac48Address GetAddress(void) const
Return the MAC address of this MacLow.
Definition: mac-low.cc:625
static TypeId GetTypeId(void)
Ptr< MacLow > m_low
MacLow (RTS, CTS, DATA, ACK etc.)
void SetQosTid(uint8_t tid)
Set the TID for the QoS header.
virtual void SetLinkUpCallback(Callback< void > linkUp)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetAddr2(Mac48Address address)
Fill the Address 2 field with the given address.
an EUI-48 address
Definition: mac48-address.h:43
virtual Mac48Address GetBssid(void) const
void SetQosTxopLimit(uint8_t txop)
Set TXOP limit in the QoS control field.
bool IsData(void) const
Return true if the Type is DATA.
bool IsQosData(void) const
Return true if the Type is DATA and Subtype is one of the possible values for QoS DATA...
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:236
void SetTypeData(void)
Set Type/Subtype values for a data packet with no subtype equal to 0.
void SetQosNoAmsdu(void)
Set that A-MSDU is not present.
virtual ~AdhocWifiMac()
void SetType(enum WifiMacType type)
Set Type/Subtype values with the correct values depending on the given type.
Mac48Address GetAddr1(void) const
Return the address in the Address 1 field.
tuple address
Definition: first.py:37
Ptr< WifiRemoteStationManager > m_stationManager
Remote station manager (rate control, RTS/CTS/fragmentation thresholds etc.)
void SetQosNoEosp()
Un-set the end of service period (EOSP) bit in the QoS control field.
void AddAllSupportedModes(Mac48Address address)
Invoked in a STA or AP to store all of the modes supported by a destination which is also supported l...
a unique identifier for an interface.
Definition: type-id.h:58
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:826
Implements the IEEE 802.11 MAC header.
Mac48Address GetAddr2(void) const
Return the address in the Address 2 field.
void SetDsNotFrom(void)
Un-set the From DS bit in the Frame Control field.