-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathnrf_802154_frame_parser.h
1307 lines (1174 loc) · 40 KB
/
nrf_802154_frame_parser.h
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2018, Nordic Semiconductor ASA
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of Nordic Semiconductor ASA nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
/**
* @brief Module that contains frame parsing utilities for the 802.15.4 radio driver.
*
*/
#ifndef NRF_802154_FRAME_PARSER_H
#define NRF_802154_FRAME_PARSER_H
#include "nrf_802154_const.h"
#include "nrf_802154_utils_byteorder.h"
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
#define NRF_802154_FRAME_PARSER_INVALID_OFFSET 0xff
typedef enum
{
/**
* @brief Parse level at which no parsing has been performed on the frame.
*
* All frame fields and offsets should be considered as incomplete and invalid at this parse level.
*/
PARSE_LEVEL_NONE,
/**
* @brief Parse level at which the offsets that can be determined based on the FCF can be considered valid.
*
* The following fields can be considered valid and complete:
* - FCF field
*
* The following offsets can be considered valid by the user:
* - DSN field offset
* - Addressing offsets
* The data stored under the offsets should be considered as incomplete.
*/
PARSE_LEVEL_FCF_OFFSETS,
/**
* @brief Parse level at which the destination address data can be considered complete.
*
* The following fields can be considered valid and complete:
* - DSN field
* - Destination addressing fields
* The completeness doesn't indicate that the fields are actually present in the frame.
*/
PARSE_LEVEL_DST_ADDRESSING_END,
/**
* @brief Parse level at which the data under offsets determined by the FCF can be considered complete.
*
* The following fields can be considered valid and complete:
* - DSN field
* - Addressing fields
* The completeness doesn't indicate that the fields are actually present in the frame.
*/
PARSE_LEVEL_ADDRESSING_END,
/**
* @brief Parse level at which the offsets that can be determined based on Security Control Field can be considered valid.
*
* The following offsets can be considered valid by the user:
* - All offsets before the Auxiliary Security Header
* - All Auxiliary Security Header field offsets and field sizes
* The data stored under the offsets should be considered as incomplete.
*/
PARSE_LEVEL_SEC_CTRL_OFFSETS,
/**
* @brief Parse level at which the data under offsets determined by the Security Control Field can be considered complete.
*
* The following fields can be considered valid and complete:
* - All fields before the Auxiliary Security Header
* - All Auxiliary Security Header fields
* The completeness doesn't indicate that the fields are actually present in the frame.
*/
PARSE_LEVEL_AUX_SEC_HDR_END,
/**
* @brief Parse level for fully parsed frame. All fields can be considered valid and complete.
*
* The following fields can be considered valid and complete:
* - All fields in the frame
* The completeness doesn't indicate that the fields are actually present in the frame.
*
* This is the only parse level at which the PSDU length is taken into account and is expected to be correct.
*/
PARSE_LEVEL_FULL,
PARSE_LEVEL_MAX = PARSE_LEVEL_FULL
} nrf_802154_frame_parser_level_t;
typedef struct
{
const uint8_t * p_frame; ///< Pointer to a frame associated with parser data.
nrf_802154_frame_parser_level_t parse_level; ///< Current frame parse level.
uint8_t valid_data_len; ///< Number of valid bytes in the frame.
struct
{
struct
{
uint8_t panid_offset; ///< Destination PAN ID offset.
uint8_t addr_offset; ///< Destination address offset.
} dst;
struct
{
uint8_t panid_offset; ///< Source PAN ID offset.
uint8_t addr_offset; ///< Source address offset.
} src;
struct
{
uint8_t sec_ctrl_offset; ///< Security Control Field offset.
uint8_t frame_counter_offset; ///< Frame Counter field offset.
uint8_t key_id_offset; ///< Key ID offset.
uint8_t key_src_offset; ///< Key Source offset.
uint8_t key_idx_offset; ///< Key Index offset.
} aux_sec_hdr;
uint8_t header_ie_offset; ///< Header IE offset.
} mhr;
struct
{
uint8_t mac_payload_offset; ///< MAC payload offset.
} mac_payload;
struct
{
uint8_t dst_addr_size; ///< Destination address size;
uint8_t src_addr_size; ///< Source address size;
uint8_t dst_addressing_end_offset; ///< Destination addressing end offset.
uint8_t addressing_end_offset; ///< Addressing end offset.
uint8_t aux_sec_hdr_end_offset; ///< Auxiliary Security Header offset.
uint8_t key_src_size; ///< Key Source size.
uint8_t mic_size; ///< Message Integrity Code size.
} helper;
} nrf_802154_frame_parser_data_t;
/**
* @brief Initializes the frame parse data and parses the frame.
*
* This function initializes and parses the given frame to the requested level.
* The parsing is performed to the extent that is achievable with the amount
* of valid data. The resulting parse level may be higher that the requested one,
* if it can be achieved without additional parsing.
*
* @param[in] p_frame Pointer to a frame.
* @param[in] valid_data_len Number of valid bytes in the frame.
* @param[in] requested_parse_level Requested parse level.
* @param[out] p_parser_data Pointer to a parser data that will be initialized.
*
* @retval true The parsing succeeded and requested parse level was achieved.
* @retval false The parsing failed or requested parse level could not be achieved.
*/
bool nrf_802154_frame_parser_data_init(const uint8_t * p_frame,
uint8_t valid_data_len,
nrf_802154_frame_parser_level_t requested_parse_level,
nrf_802154_frame_parser_data_t * p_parser_data);
/**
* @brief Extends the valid data and parses the frame.
*
* This function extends the valid data and parses the given frame to the requested level.
* The parsing is performed to the extent that is achievable with the amount
* of valid data. The resulting parse level may be higher that the requested one,
* if it can be achieved without additional parsing.
*
* @param[inout] p_parser_data Pointer to a parser data to extend.
* @param[in] valid_data_len Number of valid bytes in the frame.
* @param[in] requested_parse_level Requested parse level.
*
* @retval true The parsing succeeded and requested parse level was achieved.
* @retval false The parsing failed or requested parse level could not be achieved.
*/
bool nrf_802154_frame_parser_valid_data_extend(
nrf_802154_frame_parser_data_t * p_parser_data,
uint8_t valid_data_len,
nrf_802154_frame_parser_level_t requested_parse_level);
/**
* @brief Gets current parse level of the provided parser data.
*
* @param[in] p_parser_data Pointer to a parser data to check.
*
* @returns Current parse level of @p p_parser_data.
*/
static inline nrf_802154_frame_parser_level_t nrf_802154_frame_parser_parse_level_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->parse_level;
}
/**
* @brief Gets the PSDU length of the frame.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns PSDU length of the frame.
*
* @note This function assumes that the PHR is correct.
*/
static inline uint8_t nrf_802154_frame_parser_frame_length_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->p_frame[PHR_OFFSET];
}
/**
* @brief Gets the PSDU start offset of the frame.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns PSDU start offset of the frame.
*/
static inline uint8_t nrf_802154_frame_parser_psdu_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return PSDU_OFFSET;
}
/**
* @brief Gets the PSDU start address of the frame.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns PSDU start address of the frame.
*/
static inline const uint8_t * nrf_802154_frame_parser_psdu_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return &p_parser_data->p_frame[PSDU_OFFSET];
}
/**
* @brief Gets the MAC frame version value from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked MAC frame version value.
*/
static inline uint8_t nrf_802154_frame_parser_frame_version_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->p_frame[FRAME_VERSION_OFFSET] & FRAME_VERSION_MASK;
}
/**
* @brief Gets the value of the DSN suppress bit from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true DSN suppress bit is set.
* @retval false DSN suppress bit is not set.
*/
static inline bool nrf_802154_frame_parser_dsn_suppress_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[DSN_SUPPRESS_OFFSET] & DSN_SUPPRESS_BIT) ? true : false;
}
/**
* @brief Gets the MAC frame destination address type from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked MAC frame destination address type.
*/
static inline uint8_t nrf_802154_frame_parser_dst_addr_type_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->p_frame[DEST_ADDR_TYPE_OFFSET] & DEST_ADDR_TYPE_MASK;
}
/**
* @brief Determines if the destination address is extended.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true The destination address is extended.
* @retval false The destination address is not extended.
*/
static inline bool nrf_802154_frame_parser_dst_addr_is_extended(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[DEST_ADDR_TYPE_OFFSET] & DEST_ADDR_TYPE_MASK) ==
DEST_ADDR_TYPE_EXTENDED;
}
/**
* @brief Gets the MAC frame source address type from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked MAC frame source address type.
*/
static inline uint8_t nrf_802154_frame_parser_src_addr_type_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->p_frame[SRC_ADDR_TYPE_OFFSET] & SRC_ADDR_TYPE_MASK;
}
/**
* @brief Determines if the source address is extended.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true The destination address is extended.
* @retval false The destination address is not extended.
*/
static inline bool nrf_802154_frame_parser_src_addr_is_extended(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[SRC_ADDR_TYPE_OFFSET] & SRC_ADDR_TYPE_MASK) ==
SRC_ADDR_TYPE_EXTENDED;
}
/**
* @brief Determines if the source address is short.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true The destination address is short.
* @retval false The destination address is not short.
*/
static inline bool nrf_802154_frame_parser_src_addr_is_short(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[SRC_ADDR_TYPE_OFFSET] & SRC_ADDR_TYPE_MASK) ==
SRC_ADDR_TYPE_SHORT;
}
/**
* @brief Gets the value of the Security Enabled bit from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true The security is enabled.
* @retval false The security is not enabled.
*/
static inline bool nrf_802154_frame_parser_security_enabled_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[SECURITY_ENABLED_OFFSET] & SECURITY_ENABLED_BIT) ? true : false;
}
/**
* @brief Gets the value of the IE present bit from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true The Information Elements are present.
* @retval false The Information Elements are not present.
*/
static inline bool nrf_802154_frame_parser_ie_present_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[IE_PRESENT_OFFSET] & IE_PRESENT_BIT) ? true : false;
}
/**
* @brief Gets the value of the frame type field from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked value of the frame type.
*/
static inline uint8_t nrf_802154_frame_parser_frame_type_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->p_frame[FRAME_TYPE_OFFSET] & FRAME_TYPE_MASK;
}
/**
* @brief Gets the value of the PAN ID compressions bit from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true PAN ID compressions is set.
* @retval false PAN ID compressions is not set.
*/
static inline bool nrf_802154_frame_parser_panid_compression_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return (p_parser_data->p_frame[PAN_ID_COMPR_OFFSET] & PAN_ID_COMPR_MASK) ? true : false;
}
/**
* @brief Gets the value of the AR bit from the Frame Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true AR bit is set.
* @retval false AR bit is not set.
*/
static inline bool nrf_802154_frame_parser_ar_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
if ((p_parser_data->p_frame[FRAME_TYPE_OFFSET] & FRAME_TYPE_MASK) == FRAME_TYPE_MULTIPURPOSE)
{
return false;
}
else
{
return (p_parser_data->p_frame[ACK_REQUEST_OFFSET] & ACK_REQUEST_BIT) ? true : false;
}
}
/**
* @brief Gets the value of the DSN field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns The value of the DSN field.
*/
static inline const uint8_t * nrf_802154_frame_parser_dsn_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
if (nrf_802154_frame_parser_dsn_suppress_bit_is_set(p_parser_data))
{
return NULL;
}
return &p_parser_data->p_frame[DSN_OFFSET];
}
/**
* @brief Gets the offset of the Destination PAN ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Destination PAN ID field.
*/
static inline uint8_t nrf_802154_frame_parser_dst_panid_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.dst.panid_offset;
}
/**
* @brief Gets the address of the Destination PAN field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Destination PAN field.
*/
static inline const uint8_t * nrf_802154_frame_parser_dst_panid_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_dst_panid_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of frame Destination Address.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the frame Destination Address field.
*/
static inline uint8_t nrf_802154_frame_parser_dst_addr_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.dst.addr_offset;
}
/**
* @brief Gets the address of the Destination Address field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Destination Address field.
*/
static inline const uint8_t * nrf_802154_frame_parser_dst_addr_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_dst_addr_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of frame Source PAN ID.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the frame Source PAN ID field.
*/
static inline uint8_t nrf_802154_frame_parser_src_panid_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.src.panid_offset;
}
/**
* @brief Gets the address of the Source PAN ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Source PAN ID field.
*/
static inline const uint8_t * nrf_802154_frame_parser_src_panid_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_src_panid_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of frame Source Address.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the frame Source Address field.
*/
static inline uint8_t nrf_802154_frame_parser_src_addr_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.src.addr_offset;
}
/**
* @brief Gets the address of the Source Address field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Source Address field.
*/
static inline const uint8_t * nrf_802154_frame_parser_src_addr_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_src_addr_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the size of the source address.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Source address size in bytes.
*/
static inline uint8_t nrf_802154_frame_parser_src_addr_size_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->helper.src_addr_size;
}
/**
* @brief Gets the size of the destination address.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Destination address size in bytes.
*/
static inline uint8_t nrf_802154_frame_parser_dst_addr_size_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->helper.dst_addr_size;
}
/**
* @brief Gets the offset of the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Security Control Field.
*/
static inline uint8_t nrf_802154_frame_parser_sec_ctrl_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.aux_sec_hdr.sec_ctrl_offset;
}
/**
* @brief Gets the value of the Security Level field from the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked Security Level field value.
*/
static inline uint8_t nrf_802154_frame_parser_sec_ctrl_sec_lvl_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_sec_ctrl_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return 0;
}
return p_parser_data->p_frame[offset] & SECURITY_LEVEL_MASK;
}
/**
* @brief Gets the value of the Frame Counter Suppress bit from the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true FC suppress bit is set.
* @retval false FC suppress bit is not set.
*/
static inline bool nrf_802154_frame_parser_sec_ctrl_fc_suppress_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_sec_ctrl_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return false;
}
return p_parser_data->p_frame[offset] & FRAME_COUNTER_SUPPRESS_BIT;
}
/**
* @brief Gets the value of the Key ID Mode field from the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Masked Key ID Mode field value.
*/
static inline uint8_t nrf_802154_frame_parser_sec_ctrl_key_id_mode_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_sec_ctrl_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return 0;
}
return (p_parser_data->p_frame[offset] & KEY_ID_MODE_MASK) >> KEY_ID_MODE_BIT_OFFSET;
}
/**
* @brief Gets the value of the ASN in Nonce bit from the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @retval true ASN in Nonce bit is set.
* @retval false ASN in Nonce bit is not set.
*/
static inline bool nrf_802154_frame_parser_sec_ctrl_asn_in_nonce_bit_is_set(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_sec_ctrl_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return false;
}
return p_parser_data->p_frame[offset] & ASN_IN_NONCE_BIT;
}
/**
* @brief Gets the address of the Security Control Field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Security Control Field.
*/
static inline const uint8_t * nrf_802154_frame_parser_sec_ctrl_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_sec_ctrl_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the Frame Counter field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Frame Counter field.
*/
static inline uint8_t nrf_802154_frame_parser_frame_counter_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.aux_sec_hdr.frame_counter_offset;
}
/**
* @brief Gets the address of the Frame Counter field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Frame Counter field.
*/
static inline const uint8_t * nrf_802154_frame_parser_frame_counter_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_frame_counter_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the Key ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Key ID field.
*/
static inline uint8_t nrf_802154_frame_parser_key_id_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.aux_sec_hdr.key_id_offset;
}
/**
* @brief Gets the address of the Key ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Key ID field.
*/
static inline const uint8_t * nrf_802154_frame_parser_key_id_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_key_id_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the Key Source field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Key Source field.
*/
static inline uint8_t nrf_802154_frame_parser_key_source_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.aux_sec_hdr.key_src_offset;
}
/**
* @brief Gets the address of the Key Source field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Key Source field.
*/
static inline const uint8_t * nrf_802154_frame_parser_key_source_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_key_source_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the length of the Key Source field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Length of the Key Source field.
*/
static inline uint8_t nrf_802154_frame_parser_key_source_length_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->helper.key_src_size;
}
/**
* @brief Gets the offset of the Key Index field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the Key Index field.
*/
static inline uint8_t nrf_802154_frame_parser_key_index_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.aux_sec_hdr.key_idx_offset;
}
/**
* @brief Gets the address of the Key Index field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the Key Index field.
*/
static inline uint8_t nrf_802154_frame_parser_key_index_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_key_index_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return 0;
}
return p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the IE header.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the IE header.
*/
static inline uint8_t nrf_802154_frame_parser_ie_header_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mhr.header_ie_offset;
}
/**
* @brief Gets the address of the IE header.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the IE header.
*/
static inline const uint8_t * nrf_802154_frame_parser_ie_header_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_ie_header_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the MAC payload.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the MAC payload.
*/
static inline uint8_t nrf_802154_frame_parser_mac_payload_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return p_parser_data->mac_payload.mac_payload_offset;
}
/**
* @brief Gets the address of the MAC payload.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the MAC payload.
*/
static inline const uint8_t * nrf_802154_frame_parser_mac_payload_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_mac_payload_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the MAC Command ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the MAC Command ID field.
*/
static inline uint8_t nrf_802154_frame_parser_mac_command_id_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
if (nrf_802154_frame_parser_frame_type_get(p_parser_data) != FRAME_TYPE_COMMAND)
{
return NRF_802154_FRAME_PARSER_INVALID_OFFSET;
}
// MAC command frames containing Payload Information Elements are not supported.
return nrf_802154_frame_parser_mac_payload_offset_get(p_parser_data);
}
/**
* @brief Gets the address of the MAC Command ID field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Address of the MAC Command ID field.
*/
static inline const uint8_t * nrf_802154_frame_parser_mac_command_id_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
uint8_t offset = nrf_802154_frame_parser_mac_command_id_offset_get(p_parser_data);
if (offset == NRF_802154_FRAME_PARSER_INVALID_OFFSET)
{
return NULL;
}
return &p_parser_data->p_frame[offset];
}
/**
* @brief Gets the offset of the MFR field.
*
* @param[in] p_parser_data Pointer to a frame parser data.
*
* @returns Offset of the MFR field.
*/
static inline uint8_t nrf_802154_frame_parser_mfr_offset_get(
const nrf_802154_frame_parser_data_t * p_parser_data)
{
return nrf_802154_frame_parser_frame_length_get(p_parser_data) - FCS_SIZE + PHR_SIZE;
}
/**
* @brief Gets the address of the MFR field.