This file is indexed.

/usr/include/ns3.27/ns3/ff-mac-common.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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
 *
 * 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: Manuel Requena <manuel.requena@cttc.es>
 */

#ifndef FF_MAC_COMMON_H
#define FF_MAC_COMMON_H

#include <ns3/simple-ref-count.h>
#include <ns3/ptr.h>
#include <vector>


/**
 * Constants. See section 4.4
 */
#define MAX_SCHED_CFG_LIST    10
#define MAX_LC_LIST           10

#define MAX_RACH_LIST         30
#define MAX_DL_INFO_LIST      30
#define MAX_BUILD_DATA_LIST   30
#define MAX_BUILD_RAR_LIST    10
#define MAX_BUILD_BC_LIST     3
#define MAX_UL_INFO_LIST      30
#define MAX_DCI_LIST          30
#define MAX_PHICH_LIST        30
#define MAX_TB_LIST           2
#define MAX_RLC_PDU_LIST      30
#define MAX_NR_LCG            4
#define MAX_MBSFN_CONFIG      5
#define MAX_SI_MSG_LIST       32
#define MAX_SI_MSG_SIZE       65535

#define MAX_CQI_LIST          30
#define MAX_UE_SELECTED_SB    6
#define MAX_HL_SB             25
#define MAX_SINR_RB_LIST      100
#define MAX_SR_LIST           30
#define MAX_MAC_CE_LIST       30

namespace ns3 {

/// Result_e enumeration
enum Result_e
{
  SUCCESS,
  FAILURE
};

/// SetupRelease_e enumeration
enum SetupRelease_e
{
  setup,
  release
};

/// CeBitmap_e
enum CeBitmap_e
{
  TA,
  DRX,
  CR
};

/// NormalExtended_e enumeration
enum NormalExtended_e
{
  normal,
  extended
};


/**
 * \brief See section 4.3.1 dlDciListElement
 * \struct DlDciListElement_s
 */
struct DlDciListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  uint32_t  m_rbBitmap; ///< rb bitmap
  uint8_t   m_rbShift; ///< rb shift
  uint8_t   m_resAlloc; ///< res allocate
  std::vector <uint16_t>  m_tbsSize; ///< tbs size
  std::vector <uint8_t>   m_mcs; ///< mcs
  std::vector <uint8_t>   m_ndi; ///< ndi
  std::vector <uint8_t>   m_rv; ///< rv
  uint8_t   m_cceIndex; ///< CCE index
  uint8_t   m_aggrLevel; ///< aggr level
  uint8_t   m_precodingInfo; ///< precoding info
  /// Format enumeration
  enum Format_e
  {
    ONE, ONE_A, ONE_B, ONE_C, ONE_D, TWO, TWO_A, TWO_B
  } m_format; ///< the format
  uint8_t   m_tpc; ///< TPC
  uint8_t   m_harqProcess; ///< HARQ process
  uint8_t   m_dai; ///< DAI
  /// Vrb Format enum
  enum VrbFormat_e
  {
    VRB_DISTRIBUTED,
    VRB_LOCALIZED
  } m_vrbFormat; ///< the format
  bool      m_tbSwap; ///< swap?
  bool      m_spsRelease; ///< release?
  bool      m_pdcchOrder; ///< cch order?
  uint8_t   m_preambleIndex; ///< preamble index
  uint8_t   m_prachMaskIndex; ///< RACH mask index
  /// Ngap enum
  enum Ngap_e
  {
    GAP1, GAP2
  } m_nGap; ///< the gap
  uint8_t   m_tbsIdx; ///< tbs index
  uint8_t   m_dlPowerOffset; ///< DL power offset
  uint8_t   m_pdcchPowerOffset; ///<  CCH power offset
};

/**
 * \brief See section 4.3.2 ulDciListElement
 * \struct UlDciListElement_s
 */
struct UlDciListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  uint8_t   m_rbStart; ///< start
  uint8_t   m_rbLen; ///< length
  uint16_t  m_tbSize; ///< size
  uint8_t   m_mcs; ///< MCS
  uint8_t   m_ndi; ///< NDI
  uint8_t   m_cceIndex; ///< CCE index
  uint8_t   m_aggrLevel; ///< aggr level
  uint8_t   m_ueTxAntennaSelection; ///< UE antenna selection
  bool      m_hopping; ///< hopping?
  uint8_t   m_n2Dmrs; ///< n2 DMRS
  int8_t    m_tpc; ///< TPC
  bool      m_cqiRequest; ///< CQI request
  uint8_t   m_ulIndex; ///< UL index
  uint8_t   m_dai; ///< DAI
  uint8_t   m_freqHopping; ///< freq hopping
  int8_t    m_pdcchPowerOffset; ///< CCH power offset
};

/**
* \brief Base class for storing the values of vendor specific parameters
*/
struct VendorSpecificValue : public SimpleRefCount<VendorSpecificValue>
{ 
  virtual ~VendorSpecificValue ();

};

/**
 * \brief See section 4.3.3 vendorSpecifiListElement
 * \struct VendorSpecificListElement_s
 */
struct VendorSpecificListElement_s
{
  uint32_t m_type; ///< type
  uint32_t m_length; ///< length
  Ptr<VendorSpecificValue> m_value; ///< value
};

/**
 * \brief See section 4.3.4 logicalChannelConfigListElement
 * \struct LogicalChannelConfigListElement_s
 */
struct LogicalChannelConfigListElement_s
{
  uint8_t   m_logicalChannelIdentity; ///< logical channel indentity
  uint8_t   m_logicalChannelGroup; ///< logical channel group

  /// Direction enum
  enum Direction_e
  {
    DIR_UL,
    DIR_DL,
    DIR_BOTH
  } m_direction; ///< the direction

  /// QosBearerType enum
  enum QosBearerType_e
  {
    QBT_NON_GBR,
    QBT_GBR
  } m_qosBearerType; ///< the QOS bearer type

  uint8_t   m_qci; ///< QCI
  uint64_t  m_eRabMaximulBitrateUl; ///< ERAB maximum bit rate UL
  uint64_t  m_eRabMaximulBitrateDl; ///< ERAB mqximum bit rate DL
  uint64_t  m_eRabGuaranteedBitrateUl; ///< ERAB guaranteed bit rate UL
  uint64_t  m_eRabGuaranteedBitrateDl; ///< ERAB guaranteed bit rate DL
};

/**
 * \brief See section 4.3.6 rachListElement
 * \struct RachListElement_s 
 */
struct RachListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  uint16_t  m_estimatedSize; ///< estimated size
};

/**
 * \brief See section 4.3.7 phichListElement
 * \struct PhichListElement_s
 */
struct PhichListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  /// Phich enum
  enum Phich_e
  {
    ACK, NACK
  } m_phich; ///< the phich
};

/**
 * \brief See section 4.3.9 rlcPDU_ListElement
 */
struct RlcPduListElement_s
{
  uint8_t   m_logicalChannelIdentity; ///< logical channel indentity
  uint16_t  m_size; ///< size
};

/**
 * \brief See section 4.3.8 builDataListElement
 * \struct BuildDataListElement_s
 */
struct BuildDataListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  struct DlDciListElement_s m_dci; ///< DCI
  std::vector <enum CeBitmap_e> m_ceBitmap; ///< CE bitmap
  std::vector < std::vector <struct RlcPduListElement_s> > m_rlcPduList; ///< RLC PDU list
};

/**
 * \brief Substitutive structure for specifying BuildRarListElement_s::m_grant field
 */
struct UlGrant_s
{
  uint16_t m_rnti; ///< RNTI
  uint8_t m_rbStart; ///< start
  uint8_t m_rbLen; ///< length
  uint16_t m_tbSize; ///< size
  uint8_t m_mcs; ///< MCS
  bool m_hopping; ///< hopping?
  int8_t m_tpc; ///< TPC 
  bool m_cqiRequest; ///< CQI request?
  bool m_ulDelay; ///< UL delay?
}; 

/**
 * \brief See section 4.3.10 buildRARListElement
 */
struct BuildRarListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  //uint32_t  m_grant; // Substituted with type UlGrant_s
  UlGrant_s m_grant; ///< grant
  struct DlDciListElement_s m_dci; ///< DCI
};

/**
 * \brief See section 4.3.11 buildBroadcastListElement
 */
struct BuildBroadcastListElement_s
{
  /// Type enum
  enum Type_e
  {
    BCCH, PCCH
  } m_type; ///< the type
  uint8_t m_index; ///< index
  struct DlDciListElement_s m_dci; ///< DCI
};

/**
 * \brief See section 4.3.12 ulInfoListElement
 */
struct UlInfoListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  std::vector <uint16_t> m_ulReception; ///< UL reception
  /// Reception status enum
  enum ReceptionStatus_e 
  {
    Ok, NotOk, NotValid
  } m_receptionStatus; ///< the status
  uint8_t   m_tpc; ///< TPC
};

/**
 * \brief See section 4.3.13 srListElement
 */
struct SrListElement_s
{
  uint16_t  m_rnti; ///< RNTI
};

/**
 * \brief See section 4.3.15 macCEValue
 */
struct MacCeValue_u
{
  uint8_t   m_phr; ///< phr
  uint8_t   m_crnti; ///< NRTI
  std::vector <uint8_t> m_bufferStatus; ///< buffer status
};

/**
 * \brief See section 4.3.14 macCEListElement
 */
struct MacCeListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  /// MAC CE type enum
  enum MacCeType_e
  {
    BSR, PHR, CRNTI
  } m_macCeType; ///< MAC CE type
  struct MacCeValue_u m_macCeValue; ///< MAC CE value
};

/**
 * \brief See section 4.3.16 drxConfig
 */
struct DrxConfig_s
{
  uint8_t   m_onDurationTimer; ///< on duration timer
  uint16_t  m_drxInactivityTimer; ///< inactivity timer
  uint16_t  m_drxRetransmissionTimer; ///< retransmission timer
  uint16_t  m_longDrxCycle; ///< long DRX cycle 
  uint16_t  m_longDrxCycleStartOffset; ///< long DRX cycle start offset
  uint16_t  m_shortDrxCycle; ///< short DRX cycle
  uint8_t   m_drxShortCycleTimer; ///< short DRX cycle timer
};

/**
 * \brief See section 4.3.17 spsConfig
 */
struct SpsConfig_s
{
  uint16_t  m_semiPersistSchedIntervalUl; ///< UL semi persist schedule interval
  uint16_t  m_semiPersistSchedIntervalDl; ///< DL semi persist schedule interval
  uint8_t   m_numberOfConfSpsProcesses; ///< number of conf SPS process
  uint8_t   m_n1PucchAnPersistentListSize; ///< N1pu CCH  persistent list size
  std::vector <uint16_t> m_n1PucchAnPersistentList; ///< N1pu CCH persistent list
  uint8_t   m_implicitReleaseAfter; ///< implicit release after
};

/**
 * \brief See section 4.3.18 srConfig
 */
struct SrConfig_s
{
  enum SetupRelease_e m_action; ///< action
  uint8_t   m_schedInterval; ///< sched interval
  uint8_t   m_dsrTransMax; ///< trans max
};

/**
 * \brief See section 4.3.19 cqiConfig
 */
struct CqiConfig_s
{
  enum SetupRelease_e m_action; ///< action
  uint16_t  m_cqiSchedInterval; ///< CQI schedule interval
  uint8_t   m_riSchedInterval; ///< RI schedule interval
};

/**
 * \brief See section 4.3.20 ueCapabilities
 */
struct UeCapabilities_s
{
  bool      m_halfDuplex; ///< half duplex
  bool      m_intraSfHopping; ///< intra SF hopping
  bool      m_type2Sb1; ///< type 2Sb1
  uint8_t   m_ueCategory; ///< UE category
  bool      m_resAllocType1; ///< alloc type 1
};

/**
 * \brief See section 4.3.22 siMessageListElement
 */
struct SiMessageListElement_s
{
  uint16_t  m_periodicity; ///< periodicity
  uint16_t  m_length; ///< length
};

/**
 * \brief See section 4.3.21 siConfiguration
 */
struct SiConfiguration_s
{
  uint16_t  m_sfn; ///< sfn
  uint16_t  m_sib1Length; ///< sib1 length
  uint8_t   m_siWindowLength; ///< window length
  std::vector <struct SiMessageListElement_s> m_siMessageList; ///< message list
};

/**
 * \brief See section 4.3.23 dlInfoListElement
 */
struct DlInfoListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  uint8_t   m_harqProcessId; ///< HARQ process ID
  /// HARQ status enum
  enum HarqStatus_e
  {
    ACK, NACK, DTX
  };
  std::vector <enum HarqStatus_e> m_harqStatus; ///< HARQ status
};

/**
 * \brief See section 4.3.28 bwPart
 */
struct BwPart_s
{
  uint8_t   m_bwPartIndex; ///< bw part index
  uint8_t   m_sb; ///< sb
  uint8_t   m_cqi; ///< CQI
};

/**
 * \brief See section 4.3.27 higherLayerSelected
 */
struct HigherLayerSelected_s
{
  uint8_t   m_sbPmi; ///< sb PMI
  std::vector <uint8_t> m_sbCqi; ///< sb CQI
};

/**
 * \brief See section 4.3.26 ueSelected
 */
struct UeSelected_s
{
  std::vector <uint8_t> m_sbList; ///< sb list
  uint8_t   m_sbPmi; ///< sb PMI
  std::vector <uint8_t> m_sbCqi; ///< sb CQI
};

/**
 * \brief See section 4.3.25 sbMeasResult
 */
struct SbMeasResult_s
{
  struct UeSelected_s           m_ueSelected; ///< UE selected
  std::vector <struct HigherLayerSelected_s> m_higherLayerSelected; ///< higher layer selected
  struct BwPart_s               m_bwPart; ///< bw part
};

/**
 * \brief See section 4.3.24 cqiListElement
 */
struct CqiListElement_s
{
  uint16_t  m_rnti; ///< RNTI
  uint8_t   m_ri; ///< RI
  /// CqiType_e enumeration
  enum CqiType_e
  {
    P10, P11, P20, P21, A12, A22, A20, A30, A31
  } m_cqiType; ///< CQI type
  std::vector <uint8_t> m_wbCqi; ///< wb CQI
  uint8_t   m_wbPmi; ///< wb PMI

  struct SbMeasResult_s m_sbMeasResult; ///< sb measure result
};

/**
 * \brief See section 4.3.29 ulCQI
 */
struct UlCqi_s
{
  std::vector <uint16_t> m_sinr; ///< SINR
  /// Type_e enumeration
  enum Type_e
  {
    SRS,
    PUSCH,
    PUCCH_1,
    PUCCH_2,
    PRACH
  } m_type; ///< type
};

/**
 * \brief See section 4.3.30 pagingInfoListElement
 */
struct PagingInfoListElement_s
{
  uint8_t   m_pagingIndex; ///< paging index
  uint16_t  m_pagingMessageSize; ///< paging message size
  uint8_t   m_pagingSubframe; ///< paging subframe
};

} // namespace ns3

#endif /* FF_MAC_COMMON_H */