Files
openthread/tests/nexus/platform/nexus_core.cpp
T
Abtin Keshavarzian c2de9f646a [trel] manage mDNS/DNSSD and peer discovery in core (#11528)
This commit enhances the TREL module to manage mDNS/DNSSD service
registration and peer discovery (browse and resolving for TREL
services). This feature can be controlled through
`OPENTHREAD_CONFIG_TREL_MANAGE_DNSSD_ENABLE` (and/or the CMake option
`OT_TREL_MANAGE_DNSSD`).

When enabled, TREL will utilize the `Dnssd` module, which provides
mDNS-related APIs. This can be tied to OpenThread's native mDNS
implementation or to `otPlatDnssd` (i.e., provided by the platform
layer).

This commit also adds support for the TREL platform in the `Nexus`
test framework and uses this to add a detailed `test_trel` case. This
test covers basic TREL peer discovery and operation, along with
specific scenarios such as peer removal delay, delayed mDNS start,
TREL service name conflict resolution, host address changes, and
supporting multiple services on the same host (while unlikely in
actual deployments, this can be useful for testing and simulation
where a single machine may act as multiple Thread nodes, thus
advertising multiple TREL services from the same hostname. This is
explicitly supported by the implementation and covered in the
tests).
2025-06-02 12:45:39 -07:00

259 lines
7.0 KiB
C++

/*
* Copyright (c) 2024, The OpenThread Authors.
* All rights reserved.
*
* 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 the copyright holder 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.
*/
#include "nexus_core.hpp"
#include "nexus_node.hpp"
namespace ot {
namespace Nexus {
Core *Core::sCore = nullptr;
bool Core::sInUse = false;
Core::Core(void)
: mNow(0)
, mCurNodeId(0)
, mPendingAction(false)
{
VerifyOrQuit(!sInUse);
sCore = this;
sInUse = true;
mNextAlarmTime = mNow.GetDistantFuture();
}
Core::~Core(void) { sInUse = false; }
Node &Core::CreateNode(void)
{
Node *node;
node = Node::Allocate();
VerifyOrQuit(node != nullptr);
node->GetInstance().SetId(mCurNodeId++);
mNodes.Push(*node);
node->GetInstance().AfterInit();
return *node;
}
void Core::UpdateNextAlarmTime(const Alarm &aAlarm)
{
if (aAlarm.mScheduled)
{
mNextAlarmTime = Min(mNextAlarmTime, Max(mNow, aAlarm.mAlarmTime));
}
}
void Core::AdvanceTime(uint32_t aDuration)
{
TimeMilli targetTime = mNow + aDuration;
while (mPendingAction || (mNextAlarmTime <= targetTime))
{
mNextAlarmTime = mNow.GetDistantFuture();
mPendingAction = false;
for (Node &node : mNodes)
{
Process(node);
UpdateNextAlarmTime(node.mAlarm);
}
if (!mPendingAction)
{
mNow = Min(mNextAlarmTime, targetTime);
}
}
mNow = targetTime;
}
void Core::Process(Node &aNode)
{
otTaskletsProcess(&aNode.GetInstance());
ProcessRadio(aNode);
ProcessMdns(aNode);
#if OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE
ProcessTrel(aNode);
#endif
if (aNode.mAlarm.ShouldTrigger(mNow))
{
otPlatAlarmMilliFired(&aNode.GetInstance());
}
}
void Core::ProcessRadio(Node &aNode)
{
Mac::Address dstAddr;
uint16_t dstPanId;
bool ackRequested;
AckMode ackMode = kNoAck;
VerifyOrExit(aNode.mRadio.mState == Radio::kStateTransmit);
if (aNode.mRadio.mTxFrame.GetDstAddr(dstAddr) != kErrorNone)
{
dstAddr.SetNone();
}
if (aNode.mRadio.mTxFrame.GetDstPanId(dstPanId) != kErrorNone)
{
dstPanId = Mac::kPanIdBroadcast;
}
ackRequested = aNode.mRadio.mTxFrame.GetAckRequest();
otPlatRadioTxStarted(&aNode.GetInstance(), &aNode.mRadio.mTxFrame);
for (Node &rxNode : mNodes)
{
bool matchesDst;
if ((&rxNode == &aNode) || !rxNode.mRadio.CanReceiveOnChannel(aNode.mRadio.mTxFrame.GetChannel()))
{
continue;
}
matchesDst = rxNode.mRadio.Matches(dstAddr, dstPanId);
if (matchesDst || rxNode.mRadio.mPromiscuous)
{
// `rxNode` should receive this frame.
Radio::Frame rxFrame(aNode.mRadio.mTxFrame);
rxFrame.mInfo.mRxInfo.mTimestamp = (mNow.GetValue() * 1000u);
rxFrame.mInfo.mRxInfo.mRssi = kDefaultRxRssi;
rxFrame.mInfo.mRxInfo.mLqi = 0;
if (matchesDst && !dstAddr.IsNone() && !dstAddr.IsBroadcast() && ackRequested)
{
Mac::Address srcAddr;
ackMode = kSendAckNoFramePending;
if ((aNode.mRadio.mTxFrame.GetSrcAddr(srcAddr) == kErrorNone) &&
rxNode.mRadio.HasFramePendingFor(srcAddr))
{
ackMode = kSendAckFramePending;
rxFrame.mInfo.mRxInfo.mAckedWithFramePending = true;
}
}
otPlatRadioReceiveDone(&rxNode.GetInstance(), &rxFrame, kErrorNone);
}
if (ackMode != kNoAck)
{
// No need to go through rest of `mNodes`
// if already acked by a node.
break;
}
}
aNode.mRadio.mChannel = aNode.mRadio.mTxFrame.mChannel;
aNode.mRadio.mState = Radio::kStateReceive;
if (ackMode != kNoAck)
{
Mac::TxFrame ackFrame;
uint8_t ackPsdu[Mac::Frame::kImmAckLength];
ClearAllBytes(ackFrame);
ackFrame.mPsdu = ackPsdu;
ackFrame.GenerateImmAck(
static_cast<const Mac::RxFrame &>(static_cast<const Mac::Frame &>(aNode.mRadio.mTxFrame)),
(ackMode == kSendAckFramePending));
otPlatRadioTxDone(&aNode.GetInstance(), &aNode.mRadio.mTxFrame, &ackFrame, kErrorNone);
}
else
{
otPlatRadioTxDone(&aNode.GetInstance(), &aNode.mRadio.mTxFrame, nullptr,
ackRequested ? kErrorNoAck : kErrorNone);
}
exit:
return;
}
void Core::ProcessMdns(Node &aNode)
{
Mdns::AddressInfo senderAddress;
aNode.mMdns.GetAddress(senderAddress);
for (Mdns::PendingTx &pendingTx : aNode.mMdns.mPendingTxList)
{
for (Node &rxNode : mNodes)
{
rxNode.mMdns.Receive(rxNode.GetInstance(), pendingTx, senderAddress);
}
}
aNode.mMdns.mPendingTxList.Free();
}
#if OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE
void Core::ProcessTrel(Node &aNode)
{
Ip6::SockAddr senderSockAddr;
Ip6::SockAddr rxNodeSockAddr;
aNode.GetTrelSockAddr(senderSockAddr);
for (Trel::PendingTx &pendingTx : aNode.mTrel.mPendingTxList)
{
for (Node &rxNode : mNodes)
{
rxNode.GetTrelSockAddr(rxNodeSockAddr);
if (pendingTx.mDestSockAddr == rxNodeSockAddr)
{
rxNode.mTrel.Receive(rxNode.GetInstance(), pendingTx.mPayloadData, senderSockAddr);
break;
}
}
}
aNode.mTrel.mPendingTxList.Free();
}
#endif // OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE
} // namespace Nexus
} // namespace ot