Skip to content

Commit 42681a2

Browse files
Handle StopPairing more cleanly in DeviceController (project-chip#28939)
* Handle StopPairing more cleanly in DeviceController This ensures the controller is not left in a state where further commissioning operations after a StopPairing call are rejected because pairing is already "in progress". * Comment typo Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> --------- Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent 02910be commit 42681a2

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

src/controller/CHIPDeviceController.cpp

+16-5
Original file line numberDiff line numberDiff line change
@@ -918,16 +918,27 @@ CHIP_ERROR DeviceCommissioner::StopPairing(NodeId remoteDeviceId)
918918
VerifyOrReturnError(mState == State::Initialized, CHIP_ERROR_INCORRECT_STATE);
919919
VerifyOrReturnError(remoteDeviceId != kUndefinedNodeId, CHIP_ERROR_INVALID_ARGUMENT);
920920

921-
bool stopped = mSetUpCodePairer.StopPairing(remoteDeviceId);
921+
ChipLogProgress(Controller, "StopPairing called for node ID 0x" ChipLogFormatX64, ChipLogValueX64(remoteDeviceId));
922922

923+
// If we're still in the process of discovering the device, just stop the SetUpCodePairer
924+
if (mSetUpCodePairer.StopPairing(remoteDeviceId))
925+
{
926+
return CHIP_NO_ERROR;
927+
}
928+
929+
// Otherwise we might be pairing and / or commissioning it.
923930
CommissioneeDeviceProxy * device = FindCommissioneeDevice(remoteDeviceId);
924-
if (device != nullptr)
931+
VerifyOrReturnError(device != nullptr, CHIP_ERROR_INVALID_DEVICE_DESCRIPTOR);
932+
933+
if (mDeviceBeingCommissioned == device)
934+
{
935+
CommissioningStageComplete(CHIP_ERROR_CANCELLED);
936+
}
937+
else
925938
{
926939
ReleaseCommissioneeDevice(device);
927-
stopped = true;
928940
}
929-
930-
return (stopped) ? CHIP_NO_ERROR : CHIP_ERROR_INVALID_DEVICE_DESCRIPTOR;
941+
return CHIP_NO_ERROR;
931942
}
932943

933944
CHIP_ERROR DeviceCommissioner::UnpairDevice(NodeId remoteDeviceId)

0 commit comments

Comments
 (0)