Skip to content

Commit c126158

Browse files
authored
[Telink] Block device role changing into Router if commissioning window opened and device not yet Router (project-chip#25395)
* [Telink] Block device role changing into Router if commissioning window opened and device not yet Router * [Telink] Add CHIP_DEVICE_CONFIG_ENABLE_THREAD check * [Telink] - Add API in ThreadStackManager - Add Thread stack lock during otThreadSetRouterEligible - Suppress Router promotion whenever any commissioning window is open * [Telink] Fix typo * [Telink] Move device role check into SetRouterPromotion * [Telink] Use _SetRouterPromotion only for FTD * [Telink] Move SetRouterPromotion(false) at the end of OpenCommissioningWindow
1 parent 2dcfa66 commit c126158

9 files changed

+60
-0
lines changed

src/app/server/CommissioningWindowManager.cpp

+22
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
#include <platform/CommissionableDataProvider.h>
2626
#include <platform/DeviceControlServer.h>
2727

28+
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CHIP_DEVICE_CONFIG_THREAD_FTD
29+
using namespace chip::DeviceLayer;
30+
#endif
31+
2832
using namespace chip::app::Clusters;
2933
using namespace chip::System::Clock;
3034

@@ -108,6 +112,15 @@ void CommissioningWindowManager::ResetState()
108112

109113
UpdateWindowStatus(CommissioningWindowStatusEnum::kWindowNotOpen);
110114

115+
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CHIP_DEVICE_CONFIG_THREAD_FTD
116+
// Recover Router device role.
117+
if (mRecoverRouterDeviceRole)
118+
{
119+
ThreadStackMgr().SetRouterPromotion(true);
120+
mRecoverRouterDeviceRole = false;
121+
}
122+
#endif
123+
111124
UpdateOpenerFabricIndex(NullNullable);
112125
UpdateOpenerVendorId(NullNullable);
113126

@@ -457,6 +470,15 @@ CHIP_ERROR CommissioningWindowManager::StartAdvertisement()
457470
// reset all advertising, switching to our new commissioning mode.
458471
app::DnssdServer::Instance().StartServer();
459472

473+
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CHIP_DEVICE_CONFIG_THREAD_FTD
474+
// Block device role changing into Router if commissioning window opened and device not yet Router.
475+
if (ConnectivityManagerImpl().GetThreadDeviceType() == ConnectivityManager::kThreadDeviceType_Router)
476+
{
477+
ThreadStackMgr().SetRouterPromotion(false);
478+
mRecoverRouterDeviceRole = true;
479+
}
480+
#endif
481+
460482
return CHIP_NO_ERROR;
461483
}
462484

src/app/server/CommissioningWindowManager.h

+4
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ class CommissioningWindowManager : public Messaging::UnsolicitedMessageHandler,
215215
bool mSEDActiveModeEnabled = false;
216216
#endif
217217

218+
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CHIP_DEVICE_CONFIG_THREAD_FTD
219+
bool mRecoverRouterDeviceRole = false;
220+
#endif
221+
218222
// For tests only, so that we can test the commissioning window timeout
219223
// without having to wait 3 minutes.
220224
Optional<System::Clock::Seconds16> mMinCommissioningTimeoutOverride;

src/include/platform/ThreadStackManager.h

+6
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ class ThreadStackManager
106106
CHIP_ERROR GetPrimary802154MACAddress(uint8_t * buf);
107107
CHIP_ERROR GetExternalIPv6Address(chip::Inet::IPAddress & addr);
108108
CHIP_ERROR GetPollPeriod(uint32_t & buf);
109+
void SetRouterPromotion(bool val);
109110

110111
CHIP_ERROR JoinerStart();
111112
CHIP_ERROR SetThreadProvision(ByteSpan aDataset);
@@ -443,6 +444,11 @@ inline CHIP_ERROR ThreadStackManager::GetPollPeriod(uint32_t & buf)
443444
return static_cast<ImplClass *>(this)->_GetPollPeriod(buf);
444445
}
445446

447+
inline void ThreadStackManager::SetRouterPromotion(bool val)
448+
{
449+
static_cast<ImplClass *>(this)->_SetRouterPromotion(val);
450+
}
451+
446452
inline CHIP_ERROR ThreadStackManager::JoinerStart()
447453
{
448454
return static_cast<ImplClass *>(this)->_JoinerStart();

src/platform/Linux/ThreadStackManagerImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,11 @@ CHIP_ERROR ThreadStackManagerImpl::_JoinerStart()
567567
return CHIP_ERROR_NOT_IMPLEMENTED;
568568
}
569569

570+
void ThreadStackManagerImpl::_SetRouterPromotion(bool val)
571+
{
572+
// Set Router Promotion is not supported on linux
573+
}
574+
570575
CHIP_ERROR ThreadStackManagerImpl::_StartThreadScan(ThreadDriver::ScanCallback * callback)
571576
{
572577
// There is another ongoing scan request, reject the new one.

src/platform/Linux/ThreadStackManagerImpl.h

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ class ThreadStackManagerImpl : public ThreadStackManager
108108

109109
CHIP_ERROR _JoinerStart();
110110

111+
void _SetRouterPromotion(bool val);
112+
111113
void _ResetThreadNetworkDiagnosticsCounts();
112114

113115
CHIP_ERROR _WriteThreadNetworkDiagnosticAttributeToTlv(AttributeId attributeId, app::AttributeValueEncoder & encoder);

src/platform/OpenThread/GenericThreadStackManagerImpl_OpenThread.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -1695,6 +1695,19 @@ CHIP_ERROR GenericThreadStackManagerImpl_OpenThread<ImplClass>::_GetPollPeriod(u
16951695
return CHIP_NO_ERROR;
16961696
}
16971697

1698+
template <class ImplClass>
1699+
void GenericThreadStackManagerImpl_OpenThread<ImplClass>::_SetRouterPromotion(bool val)
1700+
{
1701+
#if CHIP_DEVICE_CONFIG_THREAD_FTD
1702+
Impl()->LockThreadStack();
1703+
if (otThreadGetDeviceRole(DeviceLayer::ThreadStackMgrImpl().OTInstance()) != OT_DEVICE_ROLE_ROUTER)
1704+
{
1705+
otThreadSetRouterEligible(DeviceLayer::ThreadStackMgrImpl().OTInstance(), val);
1706+
}
1707+
Impl()->UnlockThreadStack();
1708+
#endif
1709+
}
1710+
16981711
template <class ImplClass>
16991712
CHIP_ERROR GenericThreadStackManagerImpl_OpenThread<ImplClass>::DoInit(otInstance * otInst)
17001713
{

src/platform/OpenThread/GenericThreadStackManagerImpl_OpenThread.h

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ class GenericThreadStackManagerImpl_OpenThread
117117
void _ResetThreadNetworkDiagnosticsCounts(void);
118118
CHIP_ERROR _WriteThreadNetworkDiagnosticAttributeToTlv(AttributeId attributeId, app::AttributeValueEncoder & encoder);
119119
CHIP_ERROR _GetPollPeriod(uint32_t & buf);
120+
void _SetRouterPromotion(bool val);
120121
void _OnWoBLEAdvertisingStart(void);
121122
void _OnWoBLEAdvertisingStop(void);
122123

src/platform/Tizen/ThreadStackManagerImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,11 @@ CHIP_ERROR ThreadStackManagerImpl::_JoinerStart()
471471
return CHIP_ERROR_NOT_IMPLEMENTED;
472472
}
473473

474+
void ThreadStackManagerImpl::_SetRouterPromotion(bool val)
475+
{
476+
// Set Router Promotion is not supported on Tizen
477+
}
478+
474479
CHIP_ERROR ThreadStackManagerImpl::_StartThreadScan(NetworkCommissioning::ThreadDriver::ScanCallback * callback)
475480
{
476481
ChipLogError(DeviceLayer, "Not implemented");

src/platform/Tizen/ThreadStackManagerImpl.h

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ class ThreadStackManagerImpl : public ThreadStackManager
9898

9999
CHIP_ERROR _JoinerStart();
100100

101+
void _SetRouterPromotion(bool val);
102+
101103
void _ResetThreadNetworkDiagnosticsCounts();
102104

103105
CHIP_ERROR _WriteThreadNetworkDiagnosticAttributeToTlv(AttributeId attributeId, app::AttributeValueEncoder & encoder);

0 commit comments

Comments
 (0)