Skip to content

Commit bef3e7a

Browse files
pete-signalelaine-signal
authored andcommitted
Properly fall back to setting the master key during provisioning
1 parent 76c3664 commit bef3e7a

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

SignalServiceKit/Contacts/OWSSyncManager.swift

+7-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,13 @@ extension OWSSyncManager: SyncManagerProtocol, SyncManagerProtocolSwift {
197197
return owsFailDebug("Missing thread")
198198
}
199199

200-
let accountEntropyPool = DependenciesBridge.shared.accountKeyStore.getAccountEntropyPool(tx: tx.asV2Read)
200+
let accountEntropyPool: AccountEntropyPool?
201+
if FeatureFlags.enableAccountEntropyPool {
202+
accountEntropyPool = DependenciesBridge.shared.accountKeyStore.getAccountEntropyPool(tx: tx.asV2Read)
203+
} else {
204+
accountEntropyPool = nil
205+
}
206+
201207
if FeatureFlags.enableAccountEntropyPool,
202208
accountEntropyPool == nil
203209
{

SignalServiceKit/SecureValueRecovery/SVR2/SecureValueRecovery2Impl.swift

+6
Original file line numberDiff line numberDiff line change
@@ -428,11 +428,17 @@ public class SecureValueRecovery2Impl: SecureValueRecovery {
428428
}
429429
}
430430

431+
var didSetAEP = false
431432
do {
432433
if let aep = try provisioningMessage.accountEntropyPool.map({ try AccountEntropyPool(key: $0) }) {
433434
accountKeyStore.setAccountEntropyPool(aep, tx: tx)
435+
didSetAEP = true
434436
}
435437
} catch {
438+
Logger.warn("Failed to parse AEP")
439+
}
440+
441+
if !didSetAEP {
436442
do {
437443
accountKeyStore.setMasterKey(try MasterKey(data: provisioningMessage.masterKey), tx: tx)
438444
} catch {

SignalServiceKit/StorageService/StorageServiceManager.swift

+15-3
Original file line numberDiff line numberDiff line change
@@ -724,9 +724,21 @@ class StorageServiceOperation {
724724
}
725725

726726
guard let masterKey else {
727-
// We don't have backup keys, do nothing. We'll try a
728-
// fresh restore once the keys are set.
729-
Logger.info("Skipping storage service operation due to missing master key.")
727+
if
728+
!isPrimaryDevice,
729+
DependenciesBridge.shared.tsAccountManager.registrationStateWithMaybeSneakyTransaction.isRegistered
730+
{
731+
// This is a linked device, and keys are missing. There's nothing that can be done
732+
// until we receive new keys, so send a key sync message and return early.
733+
await SSKEnvironment.shared.databaseStorageRef.awaitableWrite { tx in
734+
SSKEnvironment.shared.syncManagerRef.sendKeysSyncRequestMessage(transaction: tx)
735+
}
736+
} else {
737+
// We're either not registered, or a primary. Either way,
738+
// we don't have backup keys, or a means to get them, so do nothing.
739+
// We'll try a fresh restore once the keys are set.
740+
Logger.info("Skipping storage service operation due to missing master key.")
741+
}
730742
return
731743
}
732744
self.masterKey = masterKey

0 commit comments

Comments
 (0)