This file is indexed.

/usr/include/ns3.27/ns3/lr-wpan-mac-header.h is in libns3-dev 3.27+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2011 The Boeing Company
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Author: kwong yin <kwong-sang.yin@boeing.com>
 */

/*
 * the following classes implements the 802.15.4 Mac Header
 * There are 4 types of 802.15.4 Mac Headers Frames, and they have these fields
 *
 *    Headers Frames  : Fields
 *    -------------------------------------------------------------------------------------------
 *    Beacon          : Frame Control, Sequence Number, Address Fields+, Auxiliary Security Header++.
 *    Data            : Frame Control, Sequence Number, Address Fields++, Auxiliary Security Header++.
 *    Acknowledgment  : Frame Control, Sequence Number.
 *    Command         : Frame Control, Sequence Number, Address Fields++, Auxiliary Security Header++.
 *
 *    + - The Address fields in Beacon frame is made up of the Source PAN Id and address only and size
 *        is  4 or 8 octets whereas the other frames may contain the Destination PAN Id and address as
 *        well. (see specs).
 *    ++ - These fields are optional and of variable size
 */

#ifndef LR_WPAN_MAC_HEADER_H
#define LR_WPAN_MAC_HEADER_H

#include <ns3/header.h>
#include <ns3/mac16-address.h>
#include <ns3/mac64-address.h>


namespace ns3 {


/**
 * \ingroup lr-wpan
 * Represent the Mac Header with the Frame Control and Sequence Number fields
 */
class LrWpanMacHeader : public Header
{

public:

  /**
   * The possible MAC types, see IEEE 802.15.4-2006, Table 79.
   */
  enum LrWpanMacType
  {
    LRWPAN_MAC_BEACON = 0,        //!< LRWPAN_MAC_BEACON
    LRWPAN_MAC_DATA = 1,          //!< LRWPAN_MAC_DATA
    LRWPAN_MAC_ACKNOWLEDGMENT = 2,//!< LRWPAN_MAC_ACKNOWLEDGMENT
    LRWPAN_MAC_COMMAND = 3,       //!< LRWPAN_MAC_COMMAND
    LRWPAN_MAC_RESERVED           //!< LRWPAN_MAC_RESERVED
  };

  /**
   * The addressing mode types, see IEEE 802.15.4-2006, Table 80.
   */
  enum AddrModeType
  {
    NOADDR = 0,
    RESADDR = 1,
    SHORTADDR = 2,
    EXTADDR = 3
  };

  /**
   * The addressing mode types, see IEEE 802.15.4-2006, Table 80.
   */
  enum KeyIdModeType
  {
    IMPLICIT = 0,
    NOKEYSOURCE = 1,
    SHORTKEYSOURCE = 2,
    LONGKEYSOURCE = 3
  };

  LrWpanMacHeader (void);

  /**
   * Constructor
   * \param wpanMacType the header MAC type
   * \param seqNum the sequence number
   */
  LrWpanMacHeader (enum LrWpanMacType wpanMacType,      // Data, ACK, Control MAC Header must have
                   uint8_t seqNum);                     // frame control and sequence number.
                                                        // Beacon MAC Header must have frame control,
                                                        // sequence number, source PAN Id, source address.

  ~LrWpanMacHeader (void);

  /**
   * Get the header type
   * \return the header type
   */
  enum LrWpanMacType GetType (void) const;
  /**
   * Get the Frame control field
   * \return the Frame control field
   */
  uint16_t GetFrameControl (void) const;

  /**
   * Check if Security Enabled bit of Frame Control is enabled
   * \return true if Security Enabled bit is enabled
   */
  bool IsSecEnable (void) const;

  /**
   * Check if Frame Pending bit of Frame Control is enabled
   * \return true if Frame Pending bit is enabled
   */
  bool IsFrmPend (void) const;

  /**
   * Check if Ack. Request bit of Frame Control is enabled
   * \return true if Ack. Request bit is enabled
   */
  bool IsAckReq (void) const;

  /**
   * Check if PAN ID Compression bit of Frame Control is enabled
   * \return true if PAN ID Compression bit is enabled
   */
  bool IsPanIdComp (void) const;

  /**
   * Get the Reserved bits of Frame control field
   * \return the Reserved bits
   */
  uint8_t GetFrmCtrlRes (void) const;

  /**
   * Get the Dest. Addressing Mode of Frame control field
   * \return the Dest. Addressing Mode bits
   */
  uint8_t GetDstAddrMode (void) const;
  /**
   * Get the Frame Version of Frame control field
   * \return the Frame Version bits
   */
  uint8_t GetFrameVer (void) const;
  /**
   * Get the Source Addressing Mode of Frame control field
   * \return the Source Addressing Mode bits
   */
  uint8_t GetSrcAddrMode (void) const;

  /**
   * Get the frame Sequence number
   * \return the sequence number
   */
  uint8_t GetSeqNum (void) const;

  /**
   * Get the Destination PAN ID
   * \return the Destination PAN ID
   */
  uint16_t GetDstPanId (void) const;
  /**
   * Get the Destination Short address
   * \return the Destination Short address
   */
  Mac16Address GetShortDstAddr (void) const;
  /**
   * Get the Destination Extended address
   * \return the Destination Extended address
   */
  Mac64Address GetExtDstAddr (void) const;
  /**
   * Get the Source PAN ID
   * \return the Source PAN ID
   */
  uint16_t GetSrcPanId (void) const;
  /**
   * Get the Source Short address
   * \return the Source Short address
   */
  Mac16Address GetShortSrcAddr (void) const;
  /**
   * Get the Source Extended address
   * \return the Source Extended address
   */
  Mac64Address GetExtSrcAddr (void) const;

  /**
   * Get the Auxiliary Security Header - Security Control Octect
   * \return the Auxiliary Security Header - Security Control Octect
   */
  uint8_t GetSecControl (void) const;
  /**
   * Get the Auxiliary Security Header - Frame Counter Octects
   * \return the Auxiliary Security Header - Frame Counter Octects
   */
  uint32_t GetFrmCounter (void) const;

  /**
   * Get the Auxiliary Security Header - Security Control - Security Level bits
   * \return the Auxiliary Security Header - Security Control - Security Level bits
   */
  uint8_t GetSecLevel (void) const;
  /**
   * Get the Auxiliary Security Header - Security Control - Key Identifier Mode bits
   * \return the Auxiliary Security Header - Security Control - Key Identifier Mode bits
   */
  uint8_t GetKeyIdMode (void) const;
  /**
   * Get the Auxiliary Security Header - Security Control - Reserved bits
   * \return the Auxiliary Security Header - Security Control - Reserved bits
   */
  uint8_t GetSecCtrlReserved (void) const;

  /**
   * Get the Auxiliary Security Header - Key Identifier - Key Source (2 Octects)
   * \return the Auxiliary Security Header - Key Identifier - Key Source  (2 Octects)
   */
  uint32_t GetKeyIdSrc32 (void) const;
  /**
   * Get the Auxiliary Security Header - Key Identifier - Key Source (4 Octects)
   * \return the Auxiliary Security Header - Key Identifier - Key Source  (4 Octects)
   */
  uint64_t GetKeyIdSrc64 (void) const;
  /**
   * Get the Auxiliary Security Header - Key Identifier - Key Index
   * \return the Auxiliary Security Header - Key Identifier - Key Index
   */
  uint8_t GetKeyIdIndex (void) const;

  /**
   * Returns true if the header is a beacon
   * \return true if the header is a beacon
   */
  bool IsBeacon (void) const;
  /**
   * Returns true if the header is a data
   * \return true if the header is a data
   */
  bool IsData (void) const;
  /**
   * Returns true if the header is an ack
   * \return true if the header is an ack
   */
  bool IsAcknowledgment (void) const;
  /**
   * Returns true if the header is a command
   * \return true if the header is a command
   */
  bool IsCommand (void) const;

  /**
   * Set the Frame Control field "Frame Type" bits
   * \param wpanMacType the frame type
   */
  void SetType (enum LrWpanMacType wpanMacType);

  /**
   * Set the whole Frame Control field
   * \param frameControl the Frame Control field
   */
  void SetFrameControl (uint16_t frameControl);

  /**
   * Set the Frame Control field "Security Enabled" bit to true
   */
  void SetSecEnable (void);

  /**
   * Set the Frame Control field "Security Enabled" bit to false
   */
  void SetSecDisable (void);

  /**
   * Set the Frame Control field "Frame Pending" bit to true
   */
  void SetFrmPend (void);

  /**
   * Set the Frame Control field "Frame Pending" bit to false
   */
  void SetNoFrmPend (void);

  /**
   * Set the Frame Control field "Ack. Request" bit to true
   */
  void SetAckReq (void);

  /**
   * Set the Frame Control field "Ack. Request" bit to false
   */
  void SetNoAckReq (void);

  /**
   * Set the Frame Control field "PAN ID Compression" bit to true
   */
  void SetPanIdComp (void);

  /**
   * Set the Frame Control field "PAN ID Compression" bit to false
   */
  void SetNoPanIdComp (void);

  /**
   * Set the Frame Control field "Reserved" bits
   * \param res reserved bits
   */
  void SetFrmCtrlRes (uint8_t res);
  /**
   * Set the Destination address mode
   * \param addrMode Destination address mode
   */
  void SetDstAddrMode (uint8_t addrMode);
  /**
   * Set the Frame version
   * \param ver frame version
   */
  void SetFrameVer (uint8_t ver);
  /**
   * Set the Source address mode
   * \param addrMode Source address mode
   */
  void SetSrcAddrMode (uint8_t addrMode);

  /**
   * Set the Sequence number
   * \param seqNum sequence number
   */
  void SetSeqNum (uint8_t seqNum);

  /* The Source/Destination Addressing fields are only set if SrcAddrMode/DstAddrMode are set */
  /**
   * Set Source address fields
   * \param panId source PAN ID
   * \param addr source address (16 bit)
   */
  void SetSrcAddrFields (uint16_t panId, Mac16Address addr);
  /**
   * Set Source address fields
   * \param panId source PAN ID
   * \param addr source address (64 bit)
   */
  void SetSrcAddrFields (uint16_t panId, Mac64Address addr);
  /**
   * Set Destination address fields
   * \param panId destination PAN ID
   * \param addr destination address (16 bit)
   */
  void SetDstAddrFields (uint16_t panId, Mac16Address addr);
  /**
   * Set Destination address fields
   * \param panId destination PAN ID
   * \param addr destination address (64 bit)
   */
  void SetDstAddrFields (uint16_t panId, Mac64Address addr);

  /* Auxiliary Security Header is only set if Sec Enable (SecU) field is set to 1 */
  /**
   * Set the auxiliary security header "Security Control" octet
   * \param secLevel the "Security Control" octect
   */
  void SetSecControl (uint8_t secLevel);
  /**
   * Set the auxiliary security header "Frame Counter" octet
   * \param frmCntr the "Frame Counter" octect
   */
  void SetFrmCounter (uint32_t frmCntr);

  /**
   * Set the Security Control field "Security Level" bits (3 bits)
   * \param secLevel the "Security Level" bits
   */
  void SetSecLevel (uint8_t secLevel);
  /**
   * Set the Security Control field "Key Identifier Mode" bits (2 bits)
   * \param keyIdMode the "Key Identifier Mode" bits
   */
  void SetKeyIdMode (uint8_t keyIdMode);

  /**
   * Set the Security Control field "Reserved" bits (3 bits)
   * \param res the "Reserved" bits
   */
  void SetSecCtrlReserved (uint8_t res);

  /* Variable length will be dependent on Key Id Mode*/
  /**
   * Set the Key Index
   * \param keyIndex the Key index
   */
  void SetKeyId (uint8_t keyIndex);
  /**
   * Set the Key Index and originator
   * \param keySrc the originator of a group key
   * \param keyIndex the Key index
   */
  void SetKeyId (uint32_t keySrc, uint8_t keyIndex);
  /**
   * Set the Key Index and originator
   * \param keySrc the originator of a group key
   * \param keyIndex the Key index
   */
  void SetKeyId (uint64_t keySrc, uint8_t keyIndex);

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;

  void Print (std::ostream &os) const;
  uint32_t GetSerializedSize (void) const;
  void Serialize (Buffer::Iterator start) const;
  uint32_t Deserialize (Buffer::Iterator start);


private:
  /* Frame Control 2 Octets */
  /* Frame Control field - see 7.2.1.1 */
  uint8_t m_fctrlFrmType;               //!< Frame Control field Bit 0-2    = 0 - Beacon, 1 - Data, 2 - Ack, 3 - Command
  uint8_t m_fctrlSecU;                  //!< Frame Control field Bit 3      = 0 - no AuxSecHdr ,  1 - security enabled AuxSecHdr present
  uint8_t m_fctrlFrmPending;            //!< Frame Control field Bit 4
  uint8_t m_fctrlAckReq;                //!< Frame Control field Bit 5
  uint8_t m_fctrlPanIdComp;             //!< Frame Control field Bit 6      = 0 - no compression, 1 - using only DstPanId for both Src and DstPanId
  uint8_t m_fctrlReserved;              //!< Frame Control field Bit 7-9
  uint8_t m_fctrlDstAddrMode;           //!< Frame Control field Bit 10-11  = 0 - No DstAddr, 2 - ShtDstAddr, 3 - ExtDstAddr
  uint8_t m_fctrlFrmVer;                //!< Frame Control field Bit 12-13
  uint8_t m_fctrlSrcAddrMode;           //!< Frame Control field Bit 14-15  = 0 - No SrcAddr, 2 - ShtSrcAddr, 3 - ExtSrcAddr

  /* Sequence Number */
  uint8_t m_SeqNum;                     //!< Sequence Number (1 Octet)

  /* Addressing fields */
  uint16_t m_addrDstPanId;              //!< Dst PAN id (0 or 2 Octets)
  Mac16Address m_addrShortDstAddr;      //!< Dst Short addr (0 or 2 Octets)
  Mac64Address m_addrExtDstAddr;        //!< Dst Ext addr (0 or 8 Octets)
  uint16_t m_addrSrcPanId;              //!< Src PAN id (0 or 2 Octets)
  Mac16Address m_addrShortSrcAddr;      //!< Src Short addr (0 or 2 Octets)
  Mac64Address m_addrExtSrcAddr;        //!< Src Ext addr (0 or 8 Octets)

  /* Auxiliary Security Header - See 7.6.2 - 0, 5, 6, 10 or 14 Octets */
  // uint8_t m_auxSecCtrl;              // 1 Octet see below
  uint32_t m_auxFrmCntr;                //!< Auxiliary security header - Frame Counter (4 Octets)

  /* Security Control fields - See 7.6.2.2 */
  uint8_t m_secctrlSecLevel;            //!< Auxiliary security header - Security Control field - Bit 0-2
  uint8_t m_secctrlKeyIdMode;           //!< Auxiliary security header - Security Control field - Bit 3-4 will indicate size of Key Id
                                        // = 0 - Key is determined implicitly
                                        //       from originator and recipient
                                        // = 1 - 1 Octet Key Index
                                        // = 2 - 1 Octet Key Index and 4 oct Key src
                                        // = 3 - 1 Octet Key Index and 8 oct Key src

  uint8_t m_secctrlReserved;            //!< Auxiliary security header - Security Control field - Bit 5-7

  union
  {
    uint32_t m_auxKeyIdKeySrc32;        //!< Auxiliary security header - Key Source (4 Octets)
    uint64_t m_auxKeyIdKeySrc64;        //!< Auxiliary security header - Key Source (8 Octets)
  }; //!< Auxiliary security header

  uint8_t m_auxKeyIdKeyIndex;           //!< Auxiliary security header - Key Index (1 Octet)

}; //LrWpanMacHeader

}; // namespace ns-3

#endif /* LR_WPAN_MAC_HEADER_H */