Skip to content

Commit bafc067

Browse files
author
Alberto Gallegos Ramonet
committed
zigbee: Fix malformed RREP command (missing command options)
1 parent 1714a31 commit bafc067

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ This file is a best-effort approach to solving this issue; we will do our best b
2929
### Changed behavior
3030

3131
* (core) `RealTimeSimulatorImpl::Now` uses real time instead of the time of the last event call.
32+
* (zigbee) Adjust pedantic link cost requirement in ``NeighborTable::LookUpForBestParent``, a minimum link cost of 3 is not required now.
3233

3334
## Changes from ns-3.43 to ns-3.44
3435

RELEASE_NOTES.md

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ been tested on Linux. As of this release, the latest known version to work with
3535
### Bugs fixed
3636

3737
- (wifi) #2368 - Fix various issues related to Content Channels and RU allocation. Fixes mostly covers cases where OFDMA is used with central 26 tones, where a single user is being assigned the whole PPDU bandwidth or where a RU is larger than 20 MHz.
38+
- (zigbee) !2383 - Fix malformed RREP command with missing command options field.
3839

3940
## Release 3.44
4041

src/zigbee/model/zigbee-nwk-payload-header.cc

+26
Original file line numberDiff line numberDiff line change
@@ -372,10 +372,29 @@ void
372372
ZigbeePayloadRouteReplyCommand::Serialize(Buffer::Iterator start) const
373373
{
374374
Buffer::Iterator i = start;
375+
376+
uint8_t cmdOption = 0;
377+
if (m_cmdOptOrigIeeeAddr)
378+
{
379+
cmdOption |= (1 << 4);
380+
}
381+
382+
if (m_cmdOptRespIeeeAddr)
383+
{
384+
cmdOption |= (1 << 5);
385+
}
386+
387+
if (m_cmdOptMcst)
388+
{
389+
cmdOption |= (1 << 6);
390+
}
391+
i.WriteU8(cmdOption);
392+
375393
i.WriteU8(m_routeReqId);
376394
WriteTo(i, m_origAddr);
377395
WriteTo(i, m_respAddr);
378396
i.WriteU8(m_pathCost);
397+
379398
if (m_cmdOptOrigIeeeAddr)
380399
{
381400
WriteTo(i, m_origIeeeAddr);
@@ -391,10 +410,17 @@ uint32_t
391410
ZigbeePayloadRouteReplyCommand::Deserialize(Buffer::Iterator start)
392411
{
393412
Buffer::Iterator i = start;
413+
414+
uint8_t cmdOption = i.ReadU8();
415+
m_cmdOptOrigIeeeAddr = (cmdOption & (1 << 4)) != 0;
416+
m_cmdOptRespIeeeAddr = (cmdOption & (1 << 5)) != 0;
417+
m_cmdOptMcst = (cmdOption & (1 << 6)) != 0;
418+
394419
m_routeReqId = (i.ReadU8());
395420
ReadFrom(i, m_origAddr);
396421
ReadFrom(i, m_respAddr);
397422
m_pathCost = (i.ReadU8());
423+
398424
if (m_cmdOptOrigIeeeAddr)
399425
{
400426
ReadFrom(i, m_origIeeeAddr);

0 commit comments

Comments
 (0)