wlan_mlme/
block_ack.rs

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
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// TODO(https://fxbug.dev/42104687): Deny this lint once this code is exercised by the client state machine.
//                        See `Associated::on_block_ack_frame` and https://fxbug.dev/42180615.
#![allow(dead_code)]

//! BlockAck API and state.
//!
//! This module provides a BlockAck state machine and a trait implemented by types that interact
//! with BlockAck. To use the state machine, a type implementing `BlockAckTx` must be provided that
//! transmits BlockAck frames emitted by the state machine.
//!
//! See IEEE Std 802.11-2016, 10.24.

use crate::error::Error;
use fidl_fuchsia_wlan_ieee80211 as fidl_ieee80211;
use tracing::error;
use wlan_common::append::Append;
use wlan_common::buffer_reader::BufferReader;
use wlan_common::buffer_writer::BufferWriter;
use wlan_common::{frame_len, mac};
use wlan_frame_writer::append_frame_to;
use wlan_statemachine::*;
use zerocopy::{Ref, SplitByteSlice};

pub const ADDBA_REQ_FRAME_LEN: usize = frame_len!(mac::MgmtHdr, mac::ActionHdr, mac::AddbaReqHdr);
pub const ADDBA_RESP_FRAME_LEN: usize = frame_len!(mac::MgmtHdr, mac::ActionHdr, mac::AddbaRespHdr);
pub const DELBA_FRAME_LEN: usize = frame_len!(mac::MgmtHdr, mac::ActionHdr, mac::DelbaHdr);

// TODO(https://fxbug.dev/42104687): Determine a better value.
// TODO(https://fxbug.dev/42104064): Implement QoS policy engine. See the following parts of the specification:
//
//              - IEEE Std 802.11-2016, 3.1 (Traffic Identifier)
//              - IEEE Std 802.11-2016, 5.1.1.1 (Data Service - General)
//              - IEEE Std 802.11-2016, 9.4.2.30 (Access Policy)
//              - IEEE Std 802.11-2016, 9.2.4.5.2 (TID Subfield)
//
//              A TID is from [0, 15] and is assigned to an MSDU in the layers above the MAC. [0,
//              7] identify Traffic Categories (TCs) and [8, 15] identify parameterized TCs.
const BLOCK_ACK_BUFFER_SIZE: u16 = 64;
const BLOCK_ACK_TID: u16 = 0; // TODO(https://fxbug.dev/42104064): Implement QoS policy engine.

/// BlockAck transmitter.
///
/// Types that implement this trait can transmit a BlockAck frame body. Typically, this involves
/// embedding the frame body within a management frame with the appropriate metadata and differs
/// based on the state and mode of a STA.
///
/// This trait is used to interact with `BlockAckState` and determines the output state during
/// certain transitions. Moreover, this trait provides the necessary side effects of BlockAck state
/// transitions (namely transmitting frames to clients).
pub trait BlockAckTx {
    /// Transmits a BlockAck frame with the given body.
    ///
    /// The `body` parameter does **not** include any management frame components. The frame length
    /// `n` is the length of the entire management frame, including the management header, action
    /// header, and BlockAck frame. This length can be used to allocate a buffer for the complete
    /// management frame.
    ///
    /// # Errors
    ///
    /// An error should be returned if the frame cannot be constructed or transmitted.
    fn send_block_ack_frame(&mut self, n: usize, body: &[u8]) -> Result<(), Error>;
}

/// Closed BlockAck state.
///
/// A BlockAck session is _closed_ when BlockAck is not in use and no peer has requested to
/// establish or close a session. This is the initial state.
#[derive(Debug, Default)]
pub struct Closed;

#[derive(Debug)]
pub struct Establishing {
    /// The dialog token transmitted to the recipient STA.
    pub dialog_token: u8,
}

/// Established BlockAck state.
///
/// A BlockAck session is _established_ when BlockAck has been negotiated between peers by
/// successfully exchanging ADDBA frames.
#[derive(Debug)]
pub struct Established {
    /// Indicates whether the STA is the originator (initiator) or recipient of the BlockAck
    /// session.
    pub is_initiator: bool,
}

// TODO(https://fxbug.dev/42104687): BlockAck should be closed if the TID expires before BlockAck or QoS frames are
//              received. The state machine must be driven by a timing mechanism to ensure that
//              this happens. See IEEE Std 802.11-2016, 10.24.5.
statemachine!(
    /// BlockAck state machine.
    ///
    /// Models the state of a BlockAck session. A session is principally established or closed, but
    /// also has intermediate states as a session is negotiated. Establishing and closing sessions
    /// is done using an exchange of ADDBA and DELBA frames.
    ///
    /// A STA that initiates a BlockAck session is known as the _originator_ and its peer the
    /// _recipient_. In infrastructure mode, both APs and clients may initiate a session.
    #[derive(Debug)]
    pub enum BlockAckState,
    () => Closed,
    Closed => [Establishing, Established],
    Establishing => [Closed, Established],
    Established => Closed,
);

impl BlockAckState {
    /// Establishes a BlockAck session.
    ///
    /// Depending on its state, this function may send an ADDBA request frame to the remote peer in
    /// order to await an affirmative ADDBA response frame from that peer.
    ///
    /// See IEEE Std 802.11-2016, 10.24.2.
    #[allow(dead_code)] // TODO(https://fxbug.dev/42104687): Establish BlockAck sessions to increase throughput.
    pub fn establish(self, tx: &mut impl BlockAckTx) -> Self {
        match self {
            BlockAckState::Closed(state) => {
                // TODO(https://fxbug.dev/42104687): Examine `CapabilityInfo` of the remote peer.
                // TODO(https://fxbug.dev/42104687): It appears there is no particular rule to choose the value for
                //              `dialog_token`. Persist the dialog token for the BlockAck session
                //              and find a proven way to generate tokens. See IEEE Std 802.11-2016,
                //              9.6.5.2.
                let dialog_token = 1;
                let mut body = [0u8; ADDBA_REQ_FRAME_LEN];
                let mut writer = BufferWriter::new(&mut body[..]);
                match write_addba_req_body(&mut writer, dialog_token).and_then(|_| {
                    tx.send_block_ack_frame(ADDBA_REQ_FRAME_LEN, writer.into_written())
                }) {
                    Ok(_) => state.transition_to(Establishing { dialog_token }).into(),
                    Err(error) => {
                        error!("error sending ADDBA request frame: {}", error);
                        state.into()
                    }
                }
            }
            _ => self,
        }
    }

    /// Closes a BlockAck session.
    ///
    /// This function sends a DELBA frame to the remote peer unless BlockAck is already closed.
    /// Only initiator peers should attempt to explicitly close BlockAck sessions.
    ///
    /// See IEEE Std 802.11-2016, 10.24.5.
    #[allow(dead_code)] // TODO(https://fxbug.dev/42104687): Implement the datagrams and transmission of DELBA frames.
    pub fn close(self, tx: &mut impl BlockAckTx, reason_code: mac::ReasonCode) -> Self {
        // This aggressively transitions to the `Closed` state. DELBA frames do not require an
        // exchange (as ADDBA frames do). Note that per IEEE Std 802.11-2016, 10.24.5, only the
        // initiator is meant to transmit DELBA frames. The other mechanism for closing BlockAck is
        // an expiration of the TID before any BlockAck or QoS frames are received.
        match self {
            BlockAckState::Closed(_) => self,
            _ => {
                let is_initiator = match &self {
                    &BlockAckState::Establishing(..) => true,
                    &BlockAckState::Established(State {
                        data: Established { is_initiator },
                        ..
                    }) => is_initiator,
                    _ => false,
                };
                let mut body = [0u8; DELBA_FRAME_LEN];
                let mut writer = BufferWriter::new(&mut body[..]);
                match write_delba_body(&mut writer, is_initiator, reason_code)
                    .and_then(|_| tx.send_block_ack_frame(DELBA_FRAME_LEN, writer.into_written()))
                {
                    Ok(_) => BlockAckState::from(State::new(Closed)),
                    Err(error) => {
                        error!("error sending DELBA frame: {}", error);
                        self
                    }
                }
            }
        }
    }

    /// Reacts to a BlockAck frame.
    ///
    /// This function transitions the state machine in response to a BlockAck frame. In particular,
    /// this function reacts to ADDBA and DELBA frames to begin and end BlockAck sessions.
    ///
    /// The `body` parameter must **not** include the management action byte. This value should be
    /// parsed beforehand and removed from the frame body.
    pub fn on_block_ack_frame<B: SplitByteSlice>(
        self,
        tx: &mut impl BlockAckTx,
        action: mac::BlockAckAction,
        body: B,
    ) -> Self {
        match self {
            BlockAckState::Closed(state) => match action {
                mac::BlockAckAction::ADDBA_REQUEST => {
                    // Read the ADDBA request and send a response. If successful, transition to
                    // `Established`. See IEEE Std 802.11-2016, 10.24.2.
                    let mut frame = [0u8; ADDBA_RESP_FRAME_LEN];
                    let mut writer = BufferWriter::new(&mut frame[..]);
                    match read_addba_req_hdr(body)
                        .and_then(|request| {
                            write_addba_resp_body(&mut writer, request.dialog_token)
                        })
                        .and_then(|_| {
                            tx.send_block_ack_frame(ADDBA_RESP_FRAME_LEN, writer.into_written())
                        }) {
                        Ok(_) => state.transition_to(Established { is_initiator: false }).into(),
                        Err(error) => {
                            error!("error sending ADDBA response frame: {}", error);
                            state.into()
                        }
                    }
                }
                _ => state.into(),
            },
            BlockAckState::Establishing(state) => match action {
                mac::BlockAckAction::ADDBA_RESPONSE => {
                    // Read the ADDBA response. If successful and the response is affirmative,
                    // transition to `Established`. If the response is negative, transition to
                    // `Closed`. See IEEE Std 802.11-2016, 10.24.2.
                    match read_addba_resp_hdr(state.dialog_token, body) {
                        Ok(response) => {
                            if { response.status } == fidl_ieee80211::StatusCode::Success.into() {
                                state.transition_to(Established { is_initiator: true }).into()
                            } else {
                                // Transition to `Closed` if the remote peer sends a negative
                                // response.
                                state.transition_to(Closed).into()
                            }
                        }
                        Err(error) => {
                            error!("error processing ADDBA response frame: {}", error);
                            // Transition to `Closed` if any errors occur.
                            state.transition_to(Closed).into()
                        }
                    }
                }
                mac::BlockAckAction::DELBA => state.transition_to(Closed).into(),
                _ => state.into(),
            },
            BlockAckState::Established(state) => match action {
                mac::BlockAckAction::DELBA => {
                    // TODO(https://fxbug.dev/42104687): Examine the DELBA frame as needed.  This is necessary for GCR
                    //              modes, for example.
                    if let Err(error) = read_delba_hdr(body) {
                        error!("error processing DELBA frame: {}", error);
                    }
                    // See IEEE Std 802.11-2016, 10.24.5.
                    state.transition_to(Closed).into()
                }
                _ => state.into(),
            },
        }
    }
}

/// Writes the body of the management frame for an `ADDBA` request to the given buffer. The
/// management header should be written to the buffer before using this function.
///
/// Note that the action header is part of the management frame body and is written by this
/// function. The frame format is described by IEEE Std 802.11-2016, 9.6.5.2.
pub fn write_addba_req_body<B: Append>(buffer: &mut B, dialog_token: u8) -> Result<(), Error> {
    let body = mac::AddbaReqHdr {
        action: mac::BlockAckAction::ADDBA_REQUEST,
        dialog_token,
        parameters: mac::BlockAckParameters(0)
            .with_amsdu(true)
            .with_policy(mac::BlockAckPolicy::IMMEDIATE)
            .with_tid(BLOCK_ACK_TID)
            .with_buffer_size(BLOCK_ACK_BUFFER_SIZE),
        timeout: 0, // TODO(https://fxbug.dev/42104687): No timeout. Determine a better value.
        starting_sequence_control: mac::BlockAckStartingSequenceControl(0)
            .with_fragment_number(0) // Always zero. See IEEE Std 802.11-2016, 9.6.5.2.
            .with_starting_sequence_number(1), // TODO(https://fxbug.dev/42104687): Determine a better value.
    };
    Ok(append_frame_to!(
        buffer,
        {
            headers: {
                mac::ActionHdr: &mac::ActionHdr {
                    action: mac::ActionCategory::BLOCK_ACK,
                },
            },
            body: body.as_bytes(),
        }
    )
    .map(|_buffer| {})?)
}

/// Writes the body of the management frame for an `ADDBA` request to the given buffer. The
/// management header should be written to the buffer before using this function.
///
/// Note that the action header is part fo the management frame body and is written by this
/// function. The frame format is described by IEEE Std 802.11-2016, 9.6.5.3.
pub fn write_addba_resp_body<B: Append>(buffer: &mut B, dialog_token: u8) -> Result<(), Error> {
    let body = mac::AddbaRespHdr {
        action: mac::BlockAckAction::ADDBA_RESPONSE,
        dialog_token,
        status: fidl_ieee80211::StatusCode::Success.into(),
        parameters: mac::BlockAckParameters(0)
            .with_amsdu(true)
            .with_policy(mac::BlockAckPolicy::IMMEDIATE)
            .with_tid(BLOCK_ACK_TID)
            .with_buffer_size(BLOCK_ACK_BUFFER_SIZE),
        timeout: 0, // TODO(https://fxbug.dev/42104687): No timeout. Determina a better value.
    };
    Ok(append_frame_to!(
        buffer,
        {
            headers: {
                mac::ActionHdr: &mac::ActionHdr {
                    action: mac::ActionCategory::BLOCK_ACK,
                },
            },
            body: body.as_bytes(),
        }
    )
    .map(|_buffer| {})?)
}

pub fn write_delba_body<B: Append>(
    buffer: &mut B,
    is_initiator: bool,
    reason_code: mac::ReasonCode,
) -> Result<(), Error> {
    let body = mac::DelbaHdr {
        action: mac::BlockAckAction::DELBA,
        parameters: mac::DelbaParameters(0).with_initiator(is_initiator).with_tid(BLOCK_ACK_TID),
        reason_code,
    };
    Ok(append_frame_to!(
        buffer,
        {
            headers: {
                mac::ActionHdr: &mac::ActionHdr {
                    action: mac::ActionCategory::BLOCK_ACK,
                },
            },
            body: body.as_bytes(),
        }
    )
    .map(|_buffer| {})?)
}

/// Reads an ADDBA request header from an ADDBA frame body.
///
/// This function and others in this module do **not** expect the management action byte to be
/// present in the body. This value should be parsed and removed beforehand.
///
/// # Errors
///
/// Returns an error if the header cannot be parsed.
fn read_addba_req_hdr<B: SplitByteSlice>(body: B) -> Result<Ref<B, mac::AddbaReqHdr>, Error> {
    let mut reader = BufferReader::new(body);
    reader.read::<mac::AddbaReqHdr>().ok_or_else(|| {
        Error::Status("error reading ADDBA request header".to_string(), zx::Status::IO)
    })
}

/// Reads an ADDBA response header from an ADDBA frame body.
///
/// This function and others in this module do **not** expect the management action byte to be
/// present in the body. This value should be parsed and removed beforehand.
///
/// # Errors
///
/// Returns an error if the header cannot be parsed or if its dialog token is not the same as the
/// given parameters.
fn read_addba_resp_hdr<B: SplitByteSlice>(
    dialog_token: u8,
    body: B,
) -> Result<Ref<B, mac::AddbaRespHdr>, Error> {
    let mut reader = BufferReader::new(body);
    reader
        .read::<mac::AddbaRespHdr>()
        .ok_or_else(|| {
            Error::Status("error reading ADDBA response header".to_string(), zx::Status::IO)
        })
        .and_then(|response| {
            if response.dialog_token == dialog_token {
                Ok(response)
            } else {
                Err(Error::Status(
                    "mismatched dialog token in ADDBA response header".to_string(),
                    zx::Status::IO,
                ))
            }
        })
}

/// Reads a DELBA header from a DELBA frame body.
///
/// This function and others in this module do **not** expect the management action byte to be
/// present in the body. This value should be parsed and removed beforehand.
///
/// # Errors
///
/// Returns an error if the header cannot be parsed.
fn read_delba_hdr<B: SplitByteSlice>(body: B) -> Result<Ref<B, mac::DelbaHdr>, Error> {
    let mut reader = BufferReader::new(body);
    reader
        .read::<mac::DelbaHdr>()
        .ok_or_else(|| Error::Status("error reading DELBA header".to_string(), zx::Status::IO))
}

#[cfg(test)]
mod tests {
    use super::*;
    use wlan_common::append::TrackedAppend;
    use wlan_common::assert_variant;
    use wlan_statemachine as statemachine;

    /// A STA that can send ADDBA frames (implements the `BlockAckTx` trait).
    enum Station {
        /// When in the this state, all transmissions succeed.
        Up,
        /// When in the this state, all transmissions fail.
        Down,
    }

    impl BlockAckTx for Station {
        fn send_block_ack_frame(&mut self, _: usize, _: &[u8]) -> Result<(), Error> {
            match *self {
                Station::Up => Ok(()),
                Station::Down => {
                    Err(Error::Status(format!("failed to transmit BlockAck frame"), zx::Status::IO))
                }
            }
        }
    }

    /// Creates an ADDBA request body.
    ///
    /// Note that this is not a complete ADDBA request frame. This function exercises
    /// `write_addba_req_body`.
    fn addba_req_body(dialog_token: u8) -> (usize, [u8; ADDBA_RESP_FRAME_LEN]) {
        let mut body = [0u8; ADDBA_RESP_FRAME_LEN];
        let mut writer = BufferWriter::new(&mut body[..]);
        super::write_addba_req_body(&mut writer, dialog_token).unwrap();
        (writer.bytes_appended(), body)
    }

    /// Creates an ADDBA response body.
    ///
    /// Note that this is not a complete ADDBA response frame. This function exercises
    /// `write_addba_resp_body`.
    fn addba_resp_body(dialog_token: u8) -> (usize, [u8; ADDBA_RESP_FRAME_LEN]) {
        let mut body = [0u8; ADDBA_RESP_FRAME_LEN];
        let mut writer = BufferWriter::new(&mut body[..]);
        super::write_addba_resp_body(&mut writer, dialog_token).unwrap();
        (writer.bytes_appended(), body)
    }

    /// Creates a DELBA body.
    ///
    /// Note that this is not a complete DELBA frame. This function exercises `write_delba_body`.
    fn delba_body(
        is_initiator: bool,
        reason_code: mac::ReasonCode,
    ) -> (usize, [u8; DELBA_FRAME_LEN]) {
        let mut body = [0u8; DELBA_FRAME_LEN];
        let mut writer = BufferWriter::new(&mut body[..]);
        super::write_delba_body(&mut writer, is_initiator, reason_code).unwrap();
        (writer.bytes_appended(), body)
    }

    #[test]
    fn request_establish_block_ack() {
        let mut station = Station::Up;
        let state = BlockAckState::from(State::new(Closed));
        let state = state.establish(&mut station);
        assert_variant!(state, BlockAckState::Establishing(_), "not in `Establishing` state");

        let mut station = Station::Down;
        let state = BlockAckState::from(State::new(Closed));
        let state = state.establish(&mut station);
        assert_variant!(state, BlockAckState::Closed(_), "not in `Closed` state");
    }

    #[test]
    fn request_close_block_ack() {
        let mut station = Station::Up;
        let state = BlockAckState::from(statemachine::testing::new_state(Established {
            is_initiator: true,
        }));
        let state = state.close(&mut station, fidl_ieee80211::ReasonCode::UnspecifiedReason.into());
        assert_variant!(state, BlockAckState::Closed(_), "not in `Closed` state");
    }

    #[test]
    fn respond_establish_block_ack() {
        // Create a buffer describing an ADDBA request body and read the management action byte.
        let (n, body) = addba_req_body(1);
        let body = &body[..n];
        let (_, body) = Ref::<_, mac::ActionHdr>::from_prefix(body).unwrap();

        let mut station = Station::Up;
        let state = BlockAckState::from(State::new(Closed));
        let state =
            state.on_block_ack_frame(&mut station, mac::BlockAckAction::ADDBA_REQUEST, body);
        assert_variant!(state, BlockAckState::Established(_), "not in `Established` state");

        let mut station = Station::Down;
        let state = BlockAckState::from(State::new(Closed));
        let state =
            state.on_block_ack_frame(&mut station, mac::BlockAckAction::ADDBA_REQUEST, body);
        assert_variant!(state, BlockAckState::Closed(_), "not in `Closed` state");
    }

    #[test]
    fn respond_close_block_ack() {
        // Create a buffer describing a DELBA body and read the management action byte.
        let (n, body) = delba_body(true, fidl_ieee80211::ReasonCode::UnspecifiedReason.into());
        let body = &body[..n];
        let (_, body) = Ref::<_, mac::ActionHdr>::from_prefix(body).unwrap();

        let mut station = Station::Up;
        let state = BlockAckState::from(statemachine::testing::new_state(Established {
            is_initiator: false,
        }));
        let state = state.on_block_ack_frame(&mut station, mac::BlockAckAction::DELBA, body);
        assert_variant!(state, BlockAckState::Closed(_), "not in `Closed` state");
    }

    #[test]
    fn write_addba_req_body() {
        let (n, body) = addba_req_body(1);
        let body = &body[..n];
        assert_eq!(
            body,
            &[
                // Action frame header (also part of ADDBA request frame)
                0x03, // Action Category: block ack (0x03)
                0x00, // block ack action: ADDBA request (0x00)
                1,    // block ack dialog token
                0b00000011, 0b00010000, // block ack parameters (u16)
                0, 0, // block ack timeout (u16) (0: disabled)
                0b00010000, 0, // block ack starting sequence number: fragment 0, sequence 1
            ][..]
        );
    }

    #[test]
    fn write_addba_resp_body() {
        let (n, body) = addba_resp_body(1);
        let body = &body[..n];
        assert_eq!(
            body,
            &[
                // Action frame header (also part of ADDBA response frame)
                0x03, // Action Category: block ack (0x03)
                0x01, // block ack action: ADDBA response (0x01)
                1,    // block ack dialog token
                0, 0, // status
                0b00000011, 0b00010000, // block ack parameters (u16)
                0, 0, // block ack timeout (u16) (0: disabled)
            ][..]
        );
    }

    #[test]
    fn write_delba_body() {
        let (n, body) = delba_body(true, fidl_ieee80211::ReasonCode::UnspecifiedReason.into());
        let body = &body[..n];
        assert_eq!(
            body,
            &[
                // Action frame header (also part of DELBA frame)
                0x03, // action category: block ack (0x03)
                0x02, // block ack action: DELBA (0x02)
                0b00000000, 0b00001000, // DELBA block ack parameters (u16)
                1, 0, // reason code (u16) (1: unspecified reason)
            ][..]
        );
    }
}