Skip to content

Commit 0e8a13f

Browse files
Fix discriminator handling in chip-tool pairing commands.
Not all commands initialize the discriminator value, and the ones that don't should not use it. Fixes project-chip#34096
1 parent dd0c49b commit 0e8a13f

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

examples/chip-tool/commands/pairing/PairingCommand.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,12 @@ CHIP_ERROR PairingCommand::PairWithCode(NodeId remoteId)
212212

213213
CHIP_ERROR PairingCommand::Pair(NodeId remoteId, PeerAddress address)
214214
{
215-
auto params = RendezvousParameters().SetSetupPINCode(mSetupPINCode).SetDiscriminator(mDiscriminator).SetPeerAddress(address);
215+
VerifyOrDieWithMsg(mSetupPINCodeUsable, chipTool, "Using mSetupPINCode in a mode when we have not gotten one");
216+
auto params = RendezvousParameters().SetSetupPINCode(mSetupPINCode).SetPeerAddress(address);
217+
if (mDiscriminatorForBLEAndSoftAPUsable)
218+
{
219+
params.SetDiscriminator(mDiscriminatorForBLEAndSoftAP);
220+
}
216221

217222
CHIP_ERROR err = CHIP_NO_ERROR;
218223
if (mPaseOnly.ValueOr(false))
@@ -232,6 +237,8 @@ CHIP_ERROR PairingCommand::PairWithMdnsOrBleByIndex(NodeId remoteId, uint16_t in
232237
#if CHIP_DEVICE_LAYER_TARGET_DARWIN
233238
VerifyOrReturnError(IsInteractive(), CHIP_ERROR_INCORRECT_STATE);
234239

240+
VerifyOrDieWithMsg(mSetupPINCodeUsable, chipTool, "Using mSetupPINCode in a mode when we have not gotten one");
241+
235242
RendezvousParameters params;
236243
ReturnErrorOnFailure(GetDeviceScanner().Get(index, params));
237244
params.SetSetupPINCode(mSetupPINCode);
@@ -254,6 +261,10 @@ CHIP_ERROR PairingCommand::PairWithMdnsOrBleByIndex(NodeId remoteId, uint16_t in
254261

255262
CHIP_ERROR PairingCommand::PairWithMdnsOrBleByIndexWithCode(NodeId remoteId, uint16_t index)
256263
{
264+
// We might or might not have a setup code. We don't know yet, but if we
265+
// do, we will set this boolean true at that point.
266+
mSetupPINCodeUsable = false;
267+
257268
#if CHIP_DEVICE_LAYER_TARGET_DARWIN
258269
VerifyOrReturnError(IsInteractive(), CHIP_ERROR_INCORRECT_STATE);
259270

@@ -277,7 +288,8 @@ CHIP_ERROR PairingCommand::PairWithMdnsOrBleByIndexWithCode(NodeId remoteId, uin
277288
VerifyOrReturnError(payload.isValidManualCode(), CHIP_ERROR_INVALID_ARGUMENT);
278289
}
279290

280-
mSetupPINCode = payload.setUpPINCode;
291+
mSetupPINCode = payload.setUpPINCode;
292+
mSetupPINCodeUsable = true;
281293
return PairWithMdnsOrBleByIndex(remoteId, index);
282294
}
283295

examples/chip-tool/commands/pairing/PairingCommand.h

+18-3
Original file line numberDiff line numberDiff line change
@@ -102,33 +102,40 @@ class PairingCommand : public CHIPCommand,
102102
case PairingMode::Ble:
103103
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
104104
AddArgument("setup-pin-code", 0, 134217727, &mSetupPINCode);
105-
AddArgument("discriminator", 0, 4096, &mDiscriminator);
105+
AddArgument("discriminator", 0, 4096, &mDiscriminatorForBLEAndSoftAP);
106+
mSetupPINCodeUsable = true;
107+
mDiscriminatorForBLEAndSoftAPUsable = true;
106108
break;
107109
case PairingMode::OnNetwork:
108110
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
109111
AddArgument("setup-pin-code", 0, 134217727, &mSetupPINCode);
110112
AddArgument("pase-only", 0, 1, &mPaseOnly);
113+
mSetupPINCodeUsable = true;
111114
break;
112115
case PairingMode::SoftAP:
113116
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
114117
AddArgument("setup-pin-code", 0, 134217727, &mSetupPINCode);
115-
AddArgument("discriminator", 0, 4096, &mDiscriminator);
118+
AddArgument("discriminator", 0, 4096, &mDiscriminatorForBLEAndSoftAP);
116119
AddArgument("device-remote-ip", &mRemoteAddr);
117120
AddArgument("device-remote-port", 0, UINT16_MAX, &mRemotePort);
118121
AddArgument("pase-only", 0, 1, &mPaseOnly);
122+
mSetupPINCodeUsable = true;
123+
mDiscriminatorForBLEAndSoftAPUsable = true;
119124
break;
120125
case PairingMode::AlreadyDiscovered:
121126
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
122127
AddArgument("setup-pin-code", 0, 134217727, &mSetupPINCode);
123128
AddArgument("device-remote-ip", &mRemoteAddr);
124129
AddArgument("device-remote-port", 0, UINT16_MAX, &mRemotePort);
125130
AddArgument("pase-only", 0, 1, &mPaseOnly);
131+
mSetupPINCodeUsable = true;
126132
break;
127133
case PairingMode::AlreadyDiscoveredByIndex:
128134
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
129135
AddArgument("setup-pin-code", 0, 134217727, &mSetupPINCode);
130136
AddArgument("index", 0, UINT16_MAX, &mIndex);
131137
AddArgument("pase-only", 0, 1, &mPaseOnly);
138+
mSetupPINCodeUsable = true;
132139
break;
133140
case PairingMode::AlreadyDiscoveredByIndexWithCode:
134141
AddArgument("skip-commissioning-complete", 0, 1, &mSkipCommissioningComplete);
@@ -246,7 +253,7 @@ class PairingCommand : public CHIPCommand,
246253
mComplex_DSTOffsets;
247254

248255
uint16_t mRemotePort;
249-
uint16_t mDiscriminator;
256+
uint16_t mDiscriminatorForBLEAndSoftAP;
250257
uint32_t mSetupPINCode;
251258
uint16_t mIndex;
252259
chip::ByteSpan mOperationalDataset;
@@ -257,6 +264,14 @@ class PairingCommand : public CHIPCommand,
257264
char * mDiscoveryFilterInstanceName;
258265

259266
bool mDeviceIsICD;
267+
// We only use mDiscriminatorForBLEAndSoftAP in some modes, but in those
268+
// modes it's required (so we can't use an Optional for it). Use an
269+
// out-of-band boolean to keep track of whether that field is valid at all.
270+
bool mDiscriminatorForBLEAndSoftAPUsable = false;
271+
// We only use mSetupPINCode in some modes, but in those
272+
// modes it's required (so we can't use an Optional for it). Use an
273+
// out-of-band boolean to keep track of whether that field is valid at all.
274+
bool mSetupPINCodeUsable = false;
260275
uint8_t mRandomGeneratedICDSymmetricKey[chip::Crypto::kAES_CCM128_Key_Length];
261276

262277
// For unpair

0 commit comments

Comments
 (0)