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
|
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/*
* KUnit tests for channel helper functions
*
* Copyright (C) 2024 Intel Corporation
*/
#include <kunit/test.h>
#include <kunit/static_stub.h>
#include <kunit/skbuff.h>
#include "utils.h"
#include "mld.h"
#include "sta.h"
#include "agg.h"
#include "rx.h"
#define FC_QOS_DATA (IEEE80211_FTYPE_DATA | IEEE80211_STYPE_QOS_DATA)
#define BA_WINDOW_SIZE 64
#define QUEUE 0
static const struct reorder_buffer_case {
const char *desc;
struct {
/* ieee80211_hdr fields */
u16 fc;
u8 tid;
bool multicast;
/* iwl_rx_mpdu_desc fields */
u16 nssn;
/* used also for setting hdr::seq_ctrl */
u16 sn;
u8 baid;
bool amsdu;
bool last_subframe;
bool old_sn;
bool dup;
} rx_pkt;
struct {
bool valid;
u16 head_sn;
u8 baid;
u16 num_entries;
/* The test prepares the reorder buffer with fake skbs based
* on the sequence numbers provided in @entries array.
*/
struct {
u16 sn;
/* Set add_subframes > 0 to simulate an A-MSDU by
* queueing additional @add_subframes skbs in the
* appropriate reorder buffer entry (based on the @sn)
*/
u8 add_subframes;
} entries[BA_WINDOW_SIZE];
} reorder_buf_state;
struct {
enum iwl_mld_reorder_result reorder_res;
u16 head_sn;
u16 num_stored;
u16 skb_release_order[BA_WINDOW_SIZE];
u16 skb_release_order_count;
} expected;
} reorder_buffer_cases[] = {
{
.desc = "RX packet with invalid BAID",
.rx_pkt = {
.fc = FC_QOS_DATA,
.baid = IWL_RX_REORDER_DATA_INVALID_BAID,
},
.reorder_buf_state = {
.valid = true,
},
.expected = {
/* Invalid BAID should not be buffered. The frame is
* passed to the network stack immediately.
*/
.reorder_res = IWL_MLD_PASS_SKB,
.num_stored = 0,
},
},
{
.desc = "RX Multicast packet",
.rx_pkt = {
.fc = FC_QOS_DATA,
.multicast = true,
},
.reorder_buf_state = {
.valid = true,
},
.expected = {
/* Multicast packets are not buffered. The packet is
* passed to the network stack immediately.
*/
.reorder_res = IWL_MLD_PASS_SKB,
.num_stored = 0,
},
},
{
.desc = "RX non-QoS data",
.rx_pkt = {
.fc = IEEE80211_FTYPE_DATA,
},
.reorder_buf_state = {
.valid = true,
},
.expected = {
/* non-QoS data frames do not require reordering.
* The packet is passed to the network stack
* immediately.
*/
.reorder_res = IWL_MLD_PASS_SKB,
},
},
{
.desc = "RX old SN packet, reorder buffer is not yet valid",
.rx_pkt = {
.fc = FC_QOS_DATA,
.old_sn = true,
},
.reorder_buf_state = {
.valid = false,
},
.expected = {
/* The buffer is invalid and the RX packet has an old
* SN. The packet is passed to the network stack
* immediately.
*/
.reorder_res = IWL_MLD_PASS_SKB,
},
},
{
.desc = "RX old SN packet, reorder buffer valid",
.rx_pkt = {
.fc = FC_QOS_DATA,
.old_sn = true,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
},
.expected = {
/* The buffer is valid and the RX packet has an old SN.
* The packet should be dropped.
*/
.reorder_res = IWL_MLD_DROP_SKB,
.num_stored = 0,
.head_sn = 100,
},
},
{
.desc = "RX duplicate packet",
.rx_pkt = {
.fc = FC_QOS_DATA,
.dup = true,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
},
.expected = {
/* Duplicate packets should be dropped */
.reorder_res = IWL_MLD_DROP_SKB,
.num_stored = 0,
.head_sn = 100,
},
},
{
.desc = "RX In-order packet, sn < nssn",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 100,
.nssn = 101,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
},
.expected = {
/* 1. Reorder buffer is empty.
* 2. RX packet SN is in order and less than NSSN.
* Packet is released to the network stack immediately
* and buffer->head_sn is updated to NSSN.
*/
.reorder_res = IWL_MLD_PASS_SKB,
.num_stored = 0,
.head_sn = 101,
},
},
{
.desc = "RX In-order packet, sn == head_sn",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 101,
.nssn = 100,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 101,
},
.expected = {
/* 1. Reorder buffer is empty.
* 2. RX packet SN is equal to buffer->head_sn.
* Packet is released to the network stack immediately
* and buffer->head_sn is incremented.
*/
.reorder_res = IWL_MLD_PASS_SKB,
.num_stored = 0,
.head_sn = 102,
},
},
{
.desc = "RX In-order packet, IEEE80211_MAX_SN wrap around",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = IEEE80211_MAX_SN,
.nssn = IEEE80211_MAX_SN - 1,
},
.reorder_buf_state = {
.valid = true,
.head_sn = IEEE80211_MAX_SN,
},
.expected = {
/* 1. Reorder buffer is empty.
* 2. RX SN == buffer->head_sn == IEEE80211_MAX_SN
* Packet is released to the network stack immediately
* and buffer->head_sn is incremented correctly (wraps
* around to 0).
*/
.reorder_res = IWL_MLD_PASS_SKB,
.num_stored = 0,
.head_sn = 0,
},
},
{
.desc = "RX Out-of-order packet, pending packet in buffer",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 100,
.nssn = 102,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 1,
.entries[0].sn = 101,
},
.expected = {
/* 1. Reorder buffer contains one packet with SN=101.
* 2. RX packet SN = buffer->head_sn.
* Both packets are released (in order) to the network
* stack as there are no gaps.
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 0,
.head_sn = 102,
.skb_release_order = {100, 101},
.skb_release_order_count = 2,
},
},
{
.desc = "RX Out-of-order packet, pending packet in buffer (wrap around)",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 0,
.nssn = 1,
},
.reorder_buf_state = {
.valid = true,
.head_sn = IEEE80211_MAX_SN - 1,
.num_entries = 1,
.entries[0].sn = IEEE80211_MAX_SN,
},
.expected = {
/* 1. Reorder buffer contains one packet with
* SN=IEEE80211_MAX_SN.
* 2. RX Packet SN = 0 (after wrap around)
* Both packets are released (in order) to the network
* stack as there are no gaps.
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 0,
.head_sn = 1,
.skb_release_order = { 4095, 0 },
.skb_release_order_count = 2,
},
},
{
.desc = "RX Out-of-order packet, filling 1/2 holes in buffer, release RX packet",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 100,
.nssn = 101,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 1,
.entries[0].sn = 102,
},
.expected = {
/* 1. Reorder buffer contains one packet with SN=102.
* 2. There are 2 holes at SN={100, 101}.
* Only the RX packet (SN=100) is released, there is
* still a hole at 101.
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 1,
.head_sn = 101,
.skb_release_order = {100},
.skb_release_order_count = 1,
},
},
{
.desc = "RX Out-of-order packet, filling 1/2 holes, release 2 packets",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 102,
.nssn = 103,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 3,
.entries[0].sn = 101,
.entries[1].sn = 104,
.entries[2].sn = 105,
},
.expected = {
/* 1. Reorder buffer contains three packets.
* 2. RX packet fills one of two holes (at SN=102).
* Two packets are released (until the next hole at
* SN=103).
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 2,
.head_sn = 103,
.skb_release_order = {101, 102},
.skb_release_order_count = 2,
},
},
{
.desc = "RX Out-of-order packet, filling 1/1 holes, no packets released",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 102,
.nssn = 100,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 3,
.entries[0].sn = 101,
.entries[1].sn = 103,
.entries[2].sn = 104,
},
.expected = {
/* 1. Reorder buffer contains three packets:
* SN={101, 103, 104}.
* 2. RX packet fills a hole (SN=102), but NSSN is
* smaller than buffered frames.
* No packets can be released yet and buffer->head_sn
* is not updated.
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 4,
.head_sn = 100,
},
},
{
.desc = "RX In-order A-MSDU, last subframe",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 100,
.nssn = 101,
.amsdu = true,
.last_subframe = true,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 1,
.entries[0] = {
.sn = 100,
.add_subframes = 1,
},
},
.expected = {
/* 1. Reorder buffer contains a 2-sub frames A-MSDU
* at SN=100.
* 2. RX packet is the last SN=100 A-MSDU subframe
* All packets are released in order (3 x SN=100).
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 0,
.head_sn = 101,
.skb_release_order = {100, 100, 100},
.skb_release_order_count = 3,
},
},
{
.desc = "RX In-order A-MSDU, not the last subframe",
.rx_pkt = {
.fc = FC_QOS_DATA,
.sn = 100,
.nssn = 101,
.amsdu = true,
.last_subframe = false,
},
.reorder_buf_state = {
.valid = true,
.head_sn = 100,
.num_entries = 1,
.entries[0] = {
.sn = 100,
.add_subframes = 1,
},
},
.expected = {
/* 1. Reorder buffer contains a 2-sub frames A-MSDU
* at SN=100.
* 2. RX packet additional SN=100 A-MSDU subframe,
* but not the last one
* No packets are released and head_sn is not updated.
*/
.reorder_res = IWL_MLD_BUFFERED_SKB,
.num_stored = 3,
.head_sn = 100,
},
},
};
KUNIT_ARRAY_PARAM_DESC(test_reorder_buffer, reorder_buffer_cases, desc);
static struct sk_buff_head g_released_skbs;
static u16 g_num_released_skbs;
/* Add released skbs from reorder buffer to a global list; This allows us
* to verify the correct release order of packets after they pass through the
* simulated reorder logic.
*/
static void
fake_iwl_mld_pass_packet_to_mac80211(struct iwl_mld *mld,
struct napi_struct *napi,
struct sk_buff *skb, int queue,
struct ieee80211_sta *sta)
{
__skb_queue_tail(&g_released_skbs, skb);
g_num_released_skbs++;
}
static u32
fake_iwl_mld_fw_sta_id_mask(struct iwl_mld *mld, struct ieee80211_sta *sta)
{
struct iwl_mld_sta *mld_sta = iwl_mld_sta_from_mac80211(sta);
struct iwl_mld_link_sta *mld_link_sta;
u8 link_id;
u32 sta_mask = 0;
/* This is the expectation in the real function */
lockdep_assert_wiphy(mld->wiphy);
/* We can't use for_each_sta_active_link */
for_each_mld_link_sta(mld_sta, mld_link_sta, link_id)
sta_mask |= BIT(mld_link_sta->fw_id);
return sta_mask;
}
static struct iwl_rx_mpdu_desc *setup_mpdu_desc(void)
{
struct kunit *test = kunit_get_current_test();
const struct reorder_buffer_case *param =
(const void *)(test->param_value);
struct iwl_rx_mpdu_desc *mpdu_desc;
KUNIT_ALLOC_AND_ASSERT(test, mpdu_desc);
mpdu_desc->reorder_data |=
cpu_to_le32(FIELD_PREP(IWL_RX_MPDU_REORDER_BAID_MASK,
param->rx_pkt.baid));
mpdu_desc->reorder_data |=
cpu_to_le32(FIELD_PREP(IWL_RX_MPDU_REORDER_SN_MASK,
param->rx_pkt.sn));
mpdu_desc->reorder_data |=
cpu_to_le32(FIELD_PREP(IWL_RX_MPDU_REORDER_NSSN_MASK,
param->rx_pkt.nssn));
if (param->rx_pkt.old_sn)
mpdu_desc->reorder_data |=
cpu_to_le32(IWL_RX_MPDU_REORDER_BA_OLD_SN);
if (param->rx_pkt.dup)
mpdu_desc->status |= cpu_to_le32(IWL_RX_MPDU_STATUS_DUPLICATE);
if (param->rx_pkt.amsdu) {
mpdu_desc->mac_flags2 |= IWL_RX_MPDU_MFLG2_AMSDU;
if (param->rx_pkt.last_subframe)
mpdu_desc->amsdu_info |=
IWL_RX_MPDU_AMSDU_LAST_SUBFRAME;
}
return mpdu_desc;
}
static struct sk_buff *alloc_and_setup_skb(u16 fc, u16 seq_ctrl, u8 tid,
bool mcast)
{
struct kunit *test = kunit_get_current_test();
struct ieee80211_hdr hdr = {
.frame_control = cpu_to_le16(fc),
.seq_ctrl = cpu_to_le16(seq_ctrl),
};
struct sk_buff *skb;
skb = kunit_zalloc_skb(test, 128, GFP_KERNEL);
KUNIT_ASSERT_NOT_NULL(test, skb);
if (ieee80211_is_data_qos(hdr.frame_control)) {
u8 *qc = ieee80211_get_qos_ctl(&hdr);
qc[0] = tid & IEEE80211_QOS_CTL_TID_MASK;
}
if (mcast)
hdr.addr1[0] = 0x1;
skb_set_mac_header(skb, skb->len);
skb_put_data(skb, &hdr, ieee80211_hdrlen(hdr.frame_control));
return skb;
}
static struct iwl_mld_reorder_buffer *
setup_reorder_buffer(struct iwl_mld_baid_data *baid_data)
{
struct kunit *test = kunit_get_current_test();
const struct reorder_buffer_case *param =
(const void *)(test->param_value);
struct iwl_mld_reorder_buffer *buffer = baid_data->reorder_buf;
struct iwl_mld_reorder_buf_entry *entries = baid_data->entries;
struct sk_buff *fake_skb;
buffer->valid = param->reorder_buf_state.valid;
buffer->head_sn = param->reorder_buf_state.head_sn;
buffer->queue = QUEUE;
for (int i = 0; i < baid_data->buf_size; i++)
__skb_queue_head_init(&entries[i].frames);
for (int i = 0; i < param->reorder_buf_state.num_entries; i++) {
u16 sn = param->reorder_buf_state.entries[i].sn;
int index = sn % baid_data->buf_size;
u8 add_subframes =
param->reorder_buf_state.entries[i].add_subframes;
/* create 1 skb per entry + additional skbs per num of
* requested subframes
*/
u8 num_skbs = 1 + add_subframes;
for (int j = 0; j < num_skbs; j++) {
fake_skb = alloc_and_setup_skb(FC_QOS_DATA, sn, 0,
false);
__skb_queue_tail(&entries[index].frames, fake_skb);
buffer->num_stored++;
}
}
return buffer;
}
static struct iwl_mld_reorder_buffer *setup_ba_data(struct ieee80211_sta *sta)
{
struct kunit *test = kunit_get_current_test();
struct iwl_mld *mld = test->priv;
const struct reorder_buffer_case *param =
(const void *)(test->param_value);
struct iwl_mld_baid_data *baid_data = NULL;
struct iwl_mld_reorder_buffer *buffer;
u32 reorder_buf_size = BA_WINDOW_SIZE * sizeof(baid_data->entries[0]);
u8 baid = param->reorder_buf_state.baid;
/* Assuming only 1 RXQ */
KUNIT_ALLOC_AND_ASSERT_SIZE(test, baid_data,
sizeof(*baid_data) + reorder_buf_size);
baid_data->baid = baid;
baid_data->tid = param->rx_pkt.tid;
baid_data->buf_size = BA_WINDOW_SIZE;
wiphy_lock(mld->wiphy);
baid_data->sta_mask = iwl_mld_fw_sta_id_mask(mld, sta);
wiphy_unlock(mld->wiphy);
baid_data->entries_per_queue = BA_WINDOW_SIZE;
buffer = setup_reorder_buffer(baid_data);
KUNIT_EXPECT_NULL(test, rcu_access_pointer(mld->fw_id_to_ba[baid]));
rcu_assign_pointer(mld->fw_id_to_ba[baid], baid_data);
return buffer;
}
static void test_reorder_buffer(struct kunit *test)
{
struct iwl_mld *mld = test->priv;
const struct reorder_buffer_case *param =
(const void *)(test->param_value);
struct iwl_rx_mpdu_desc *mpdu_desc;
struct ieee80211_vif *vif;
struct ieee80211_sta *sta;
struct sk_buff *skb;
struct iwl_mld_reorder_buffer *buffer;
enum iwl_mld_reorder_result reorder_res;
u16 skb_release_order_count = param->expected.skb_release_order_count;
u16 skb_idx = 0;
/* Init globals and activate stubs */
__skb_queue_head_init(&g_released_skbs);
g_num_released_skbs = 0;
kunit_activate_static_stub(test, iwl_mld_fw_sta_id_mask,
fake_iwl_mld_fw_sta_id_mask);
kunit_activate_static_stub(test, iwl_mld_pass_packet_to_mac80211,
fake_iwl_mld_pass_packet_to_mac80211);
vif = iwlmld_kunit_add_vif(false, NL80211_IFTYPE_STATION);
sta = iwlmld_kunit_setup_sta(vif, IEEE80211_STA_AUTHORIZED, -1);
/* Prepare skb, mpdu_desc, BA data and the reorder buffer */
skb = alloc_and_setup_skb(param->rx_pkt.fc, param->rx_pkt.sn,
param->rx_pkt.tid, param->rx_pkt.multicast);
buffer = setup_ba_data(sta);
mpdu_desc = setup_mpdu_desc();
rcu_read_lock();
reorder_res = iwl_mld_reorder(mld, NULL, QUEUE, sta, skb, mpdu_desc);
rcu_read_unlock();
KUNIT_ASSERT_EQ(test, reorder_res, param->expected.reorder_res);
KUNIT_ASSERT_EQ(test, buffer->num_stored, param->expected.num_stored);
KUNIT_ASSERT_EQ(test, buffer->head_sn, param->expected.head_sn);
/* Verify skbs release order */
KUNIT_ASSERT_EQ(test, skb_release_order_count, g_num_released_skbs);
while ((skb = __skb_dequeue(&g_released_skbs))) {
struct ieee80211_hdr *hdr = (void *)skb_mac_header(skb);
KUNIT_ASSERT_EQ(test, le16_to_cpu(hdr->seq_ctrl),
param->expected.skb_release_order[skb_idx]);
skb_idx++;
}
KUNIT_ASSERT_EQ(test, skb_idx, skb_release_order_count);
}
static struct kunit_case reorder_buffer_test_cases[] = {
KUNIT_CASE_PARAM(test_reorder_buffer, test_reorder_buffer_gen_params),
{},
};
static struct kunit_suite reorder_buffer = {
.name = "iwlmld-reorder-buffer",
.test_cases = reorder_buffer_test_cases,
.init = iwlmld_kunit_test_init,
};
kunit_test_suite(reorder_buffer);
|