Skip to content

Commit 416f6a3

Browse files
[OpenThread] Disable IPv6 interface during erasing persistent info. (project-chip#33170)
Apart from disabling Thread, and erasing Persistent Info, we should disable the IPv6 interface as well and block receiving further packets. Otherwise, if we don't reboot the device after erasing Thread persistent data, we can get a packet and as a result, it causes an assert during processing AES_ECB (because crypto keys have been removed).
1 parent ffaeaa1 commit 416f6a3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/platform/OpenThread/GenericThreadStackManagerImpl_OpenThread.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1219,6 +1219,7 @@ void GenericThreadStackManagerImpl_OpenThread<ImplClass>::_ErasePersistentInfo(v
12191219
ChipLogProgress(DeviceLayer, "Erasing Thread persistent info...");
12201220
Impl()->LockThreadStack();
12211221
otThreadSetEnabled(mOTInst, false);
1222+
otIp6SetEnabled(mOTInst, false);
12221223
otInstanceErasePersistentInfo(mOTInst);
12231224
Impl()->UnlockThreadStack();
12241225
}

0 commit comments

Comments
 (0)