mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
483 lines
19 KiB
Objective-C
483 lines
19 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSBackupImportJob.h"
|
|
#import "OWSBackupIO.h"
|
|
#import "OWSDatabaseMigration.h"
|
|
#import "OWSDatabaseMigrationRunner.h"
|
|
#import "Signal-Swift.h"
|
|
#import <SignalCoreKit/NSData+OWS.h>
|
|
#import <SignalServiceKit/OWSBackgroundTask.h>
|
|
#import <SignalServiceKit/OWSFileSystem.h>
|
|
#import <SignalServiceKit/TSAttachment.h>
|
|
#import <SignalServiceKit/TSMessage.h>
|
|
#import <SignalServiceKit/TSThread.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NSString *const kOWSBackup_ImportDatabaseKeySpec = @"kOWSBackup_ImportDatabaseKeySpec";
|
|
|
|
#pragma mark -
|
|
|
|
@interface OWSBackupImportJob ()
|
|
|
|
@property (nonatomic, nullable) OWSBackgroundTask *backgroundTask;
|
|
|
|
@property (nonatomic) OWSBackupIO *backupIO;
|
|
|
|
@property (nonatomic) NSArray<OWSBackupFragment *> *databaseItems;
|
|
@property (nonatomic) NSArray<OWSBackupFragment *> *attachmentsItems;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSBackupImportJob
|
|
|
|
- (void)startAsync
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
OWSLogInfo(@"");
|
|
|
|
self.backgroundTask = [OWSBackgroundTask backgroundTaskWithLabelStr:__PRETTY_FUNCTION__];
|
|
|
|
[self updateProgressWithDescription:nil progress:nil];
|
|
|
|
__weak OWSBackupImportJob *weakSelf = self;
|
|
[OWSBackupAPI checkCloudKitAccessWithCompletion:^(BOOL hasAccess) {
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
if (hasAccess) {
|
|
[weakSelf start];
|
|
} else {
|
|
[weakSelf failWithErrorDescription:
|
|
NSLocalizedString(@"BACKUP_IMPORT_ERROR_COULD_NOT_IMPORT",
|
|
@"Error indicating the backup import could not import the user's data.")];
|
|
}
|
|
});
|
|
}];
|
|
}
|
|
|
|
- (void)start
|
|
{
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_CONFIGURATION",
|
|
@"Indicates that the backup import is being configured.")
|
|
progress:nil];
|
|
|
|
if (![self configureImport]) {
|
|
[self failWithErrorDescription:NSLocalizedString(@"BACKUP_IMPORT_ERROR_COULD_NOT_IMPORT",
|
|
@"Error indicating the backup import could not import the user's data.")];
|
|
return;
|
|
}
|
|
|
|
if (self.isComplete) {
|
|
return;
|
|
}
|
|
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_IMPORT",
|
|
@"Indicates that the backup import data is being imported.")
|
|
progress:nil];
|
|
|
|
__weak OWSBackupImportJob *weakSelf = self;
|
|
[weakSelf downloadAndProcessManifestWithSuccess:^(OWSBackupManifestContents *manifest) {
|
|
OWSBackupImportJob *strongSelf = weakSelf;
|
|
if (!strongSelf) {
|
|
return;
|
|
}
|
|
if (self.isComplete) {
|
|
return;
|
|
}
|
|
OWSCAssertDebug(manifest.databaseItems.count > 0);
|
|
OWSCAssertDebug(manifest.attachmentsItems);
|
|
strongSelf.databaseItems = manifest.databaseItems;
|
|
strongSelf.attachmentsItems = manifest.attachmentsItems;
|
|
[strongSelf downloadAndProcessImport];
|
|
}
|
|
failure:^(NSError *manifestError) {
|
|
[weakSelf failWithError:manifestError];
|
|
}
|
|
backupIO:self.backupIO];
|
|
}
|
|
|
|
- (void)downloadAndProcessImport
|
|
{
|
|
OWSAssertDebug(self.databaseItems);
|
|
OWSAssertDebug(self.attachmentsItems);
|
|
|
|
NSMutableArray<OWSBackupFragment *> *allItems = [NSMutableArray new];
|
|
[allItems addObjectsFromArray:self.databaseItems];
|
|
[allItems addObjectsFromArray:self.attachmentsItems];
|
|
|
|
// Record metadata for all items, so that we can re-use them in incremental backups after the restore.
|
|
[self.primaryStorage.newDatabaseConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
for (OWSBackupFragment *item in allItems) {
|
|
[item saveWithTransaction:transaction];
|
|
}
|
|
}];
|
|
|
|
__weak OWSBackupImportJob *weakSelf = self;
|
|
[weakSelf
|
|
downloadFilesFromCloud:allItems
|
|
completion:^(NSError *_Nullable fileDownloadError) {
|
|
if (fileDownloadError) {
|
|
[weakSelf failWithError:fileDownloadError];
|
|
return;
|
|
}
|
|
|
|
if (weakSelf.isComplete) {
|
|
return;
|
|
}
|
|
|
|
[weakSelf restoreDatabaseWithCompletion:^(BOOL restoreDatabaseSuccess) {
|
|
if (!restoreDatabaseSuccess) {
|
|
[weakSelf
|
|
failWithErrorDescription:NSLocalizedString(@"BACKUP_IMPORT_ERROR_COULD_NOT_IMPORT",
|
|
@"Error indicating the backup import "
|
|
@"could not import the user's data.")];
|
|
return;
|
|
}
|
|
|
|
if (weakSelf.isComplete) {
|
|
return;
|
|
}
|
|
|
|
[weakSelf ensureMigrationsWithCompletion:^(BOOL ensureMigrationsSuccess) {
|
|
if (!ensureMigrationsSuccess) {
|
|
[weakSelf failWithErrorDescription:NSLocalizedString(
|
|
@"BACKUP_IMPORT_ERROR_COULD_NOT_IMPORT",
|
|
@"Error indicating the backup import "
|
|
@"could not import the user's data.")];
|
|
return;
|
|
}
|
|
|
|
if (weakSelf.isComplete) {
|
|
return;
|
|
}
|
|
|
|
[weakSelf restoreAttachmentFiles];
|
|
|
|
if (weakSelf.isComplete) {
|
|
return;
|
|
}
|
|
|
|
// Kick off lazy restore.
|
|
[OWSBackupLazyRestoreJob runAsync];
|
|
|
|
[weakSelf succeed];
|
|
}];
|
|
}];
|
|
}];
|
|
}
|
|
|
|
- (BOOL)configureImport
|
|
{
|
|
OWSLogVerbose(@"");
|
|
|
|
if (![self ensureJobTempDir]) {
|
|
OWSFailDebug(@"Could not create jobTempDirPath.");
|
|
return NO;
|
|
}
|
|
|
|
self.backupIO = [[OWSBackupIO alloc] initWithJobTempDirPath:self.jobTempDirPath];
|
|
|
|
return YES;
|
|
}
|
|
|
|
- (void)downloadFilesFromCloud:(NSMutableArray<OWSBackupFragment *> *)items
|
|
completion:(OWSBackupJobCompletion)completion
|
|
{
|
|
OWSAssertDebug(items.count > 0);
|
|
OWSAssertDebug(completion);
|
|
|
|
OWSLogVerbose(@"");
|
|
|
|
[self downloadNextItemFromCloud:items recordCount:items.count completion:completion];
|
|
}
|
|
|
|
- (void)downloadNextItemFromCloud:(NSMutableArray<OWSBackupFragment *> *)items
|
|
recordCount:(NSUInteger)recordCount
|
|
completion:(OWSBackupJobCompletion)completion
|
|
{
|
|
OWSAssertDebug(items);
|
|
OWSAssertDebug(completion);
|
|
|
|
if (self.isComplete) {
|
|
// Job was aborted.
|
|
return completion(nil);
|
|
}
|
|
|
|
if (items.count < 1) {
|
|
// All downloads are complete; exit.
|
|
return completion(nil);
|
|
}
|
|
OWSBackupFragment *item = items.lastObject;
|
|
[items removeLastObject];
|
|
|
|
CGFloat progress = (recordCount > 0 ? ((recordCount - items.count) / (CGFloat)recordCount) : 0.f);
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_DOWNLOAD",
|
|
@"Indicates that the backup import data is being downloaded.")
|
|
progress:@(progress)];
|
|
|
|
// TODO: Use a predictable file path so that multiple "import backup" attempts
|
|
// will leverage successful file downloads from previous attempts.
|
|
//
|
|
// TODO: This will also require imports using a predictable jobTempDirPath.
|
|
NSString *tempFilePath = [self.jobTempDirPath stringByAppendingPathComponent:item.recordName];
|
|
|
|
// Skip redundant file download.
|
|
if ([NSFileManager.defaultManager fileExistsAtPath:tempFilePath]) {
|
|
[OWSFileSystem protectFileOrFolderAtPath:tempFilePath];
|
|
|
|
item.downloadFilePath = tempFilePath;
|
|
|
|
[self downloadNextItemFromCloud:items recordCount:recordCount completion:completion];
|
|
return;
|
|
}
|
|
|
|
__weak OWSBackupImportJob *weakSelf = self;
|
|
[OWSBackupAPI downloadFileFromCloudWithRecordName:item.recordName
|
|
toFileUrl:[NSURL fileURLWithPath:tempFilePath]
|
|
success:^{
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
[OWSFileSystem protectFileOrFolderAtPath:tempFilePath];
|
|
item.downloadFilePath = tempFilePath;
|
|
|
|
[weakSelf downloadNextItemFromCloud:items recordCount:recordCount completion:completion];
|
|
});
|
|
}
|
|
failure:^(NSError *error) {
|
|
// Ensure that we continue to work off the main thread.
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
completion(error);
|
|
});
|
|
}];
|
|
}
|
|
|
|
- (void)restoreAttachmentFiles
|
|
{
|
|
OWSLogVerbose(@": %zd", self.attachmentsItems.count);
|
|
|
|
__block NSUInteger count = 0;
|
|
YapDatabaseConnection *dbConnection = self.primaryStorage.newDatabaseConnection;
|
|
[dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
for (OWSBackupFragment *item in self.attachmentsItems) {
|
|
if (self.isComplete) {
|
|
return;
|
|
}
|
|
if (item.recordName.length < 1) {
|
|
OWSLogError(@"attachment was not downloaded.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
continue;
|
|
}
|
|
if (item.attachmentId.length < 1) {
|
|
OWSLogError(@"attachment missing attachment id.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
continue;
|
|
}
|
|
if (item.relativeFilePath.length < 1) {
|
|
OWSLogError(@"attachment missing relative file path.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
continue;
|
|
}
|
|
TSAttachmentStream *_Nullable attachment =
|
|
[TSAttachmentStream fetchObjectWithUniqueID:item.attachmentId transaction:transaction];
|
|
if (!attachment) {
|
|
OWSLogError(@"attachment to restore could not be found.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
continue;
|
|
}
|
|
[attachment markForLazyRestoreWithFragment:item transaction:transaction];
|
|
count++;
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_RESTORING_FILES",
|
|
@"Indicates that the backup import data is being restored.")
|
|
progress:@(count / (CGFloat)self.attachmentsItems.count)];
|
|
}
|
|
}];
|
|
|
|
OWSLogError(@"enqueued lazy restore of %zd files.", count);
|
|
}
|
|
|
|
- (void)restoreDatabaseWithCompletion:(OWSBackupJobBoolCompletion)completion
|
|
{
|
|
OWSAssertDebug(completion);
|
|
|
|
OWSLogVerbose(@"");
|
|
|
|
if (self.isComplete) {
|
|
return completion(NO);
|
|
}
|
|
|
|
YapDatabaseConnection *_Nullable dbConnection = self.primaryStorage.newDatabaseConnection;
|
|
if (!dbConnection) {
|
|
OWSFailDebug(@"Could not create dbConnection.");
|
|
return completion(NO);
|
|
}
|
|
|
|
// Order matters here.
|
|
NSArray<NSString *> *collectionsToRestore = @[
|
|
[TSThread collection],
|
|
[TSAttachment collection],
|
|
// Interactions refer to threads and attachments,
|
|
// so copy them afterward.
|
|
[TSInteraction collection],
|
|
[OWSDatabaseMigration collection],
|
|
];
|
|
NSMutableDictionary<NSString *, NSNumber *> *restoredEntityCounts = [NSMutableDictionary new];
|
|
__block unsigned long long copiedEntities = 0;
|
|
__block BOOL aborted = NO;
|
|
[dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
for (NSString *collection in collectionsToRestore) {
|
|
if ([collection isEqualToString:[OWSDatabaseMigration collection]]) {
|
|
// It's okay if there are existing migrations; we'll clear those
|
|
// before restoring.
|
|
continue;
|
|
}
|
|
if ([transaction numberOfKeysInCollection:collection] > 0) {
|
|
OWSLogError(@"unexpected contents in database (%@).", collection);
|
|
}
|
|
}
|
|
|
|
// Clear existing database contents.
|
|
//
|
|
// This should be safe since we only ever import into an empty database.
|
|
//
|
|
// Note that if the app receives a message after registering and before restoring
|
|
// backup, it will be lost.
|
|
//
|
|
// Note that this will clear all migrations.
|
|
for (NSString *collection in collectionsToRestore) {
|
|
[transaction removeAllObjectsInCollection:collection];
|
|
}
|
|
|
|
NSUInteger count = 0;
|
|
for (OWSBackupFragment *item in self.databaseItems) {
|
|
if (self.isComplete) {
|
|
return;
|
|
}
|
|
if (item.recordName.length < 1) {
|
|
OWSLogError(@"database snapshot was not downloaded.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
if (!item.uncompressedDataLength || item.uncompressedDataLength.unsignedIntValue < 1) {
|
|
OWSLogError(@"database snapshot missing size.");
|
|
// Attachment-related errors are recoverable and can be ignored.
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
|
|
count++;
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_RESTORING_DATABASE",
|
|
@"Indicates that the backup database is being restored.")
|
|
progress:@(count / (CGFloat)self.databaseItems.count)];
|
|
|
|
@autoreleasepool {
|
|
NSData *_Nullable compressedData =
|
|
[self.backupIO decryptFileAsData:item.downloadFilePath encryptionKey:item.encryptionKey];
|
|
if (!compressedData) {
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
NSData *_Nullable uncompressedData =
|
|
[self.backupIO decompressData:compressedData
|
|
uncompressedDataLength:item.uncompressedDataLength.unsignedIntValue];
|
|
if (!uncompressedData) {
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
NSError *error;
|
|
SignalIOSProtoBackupSnapshot *_Nullable entities =
|
|
[SignalIOSProtoBackupSnapshot parseData:uncompressedData error:&error];
|
|
if (!entities || error) {
|
|
OWSLogError(@"could not parse proto: %@.", error);
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
if (!entities || entities.entity.count < 1) {
|
|
OWSLogError(@"missing entities.");
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
for (SignalIOSProtoBackupSnapshotBackupEntity *entity in entities.entity) {
|
|
NSData *_Nullable entityData = entity.entityData;
|
|
if (entityData.length < 1) {
|
|
OWSLogError(@"missing entity data.");
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
|
|
__block TSYapDatabaseObject *object = nil;
|
|
@try {
|
|
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:entityData];
|
|
object = [unarchiver decodeObjectForKey:@"root"];
|
|
if (![object isKindOfClass:[object class]]) {
|
|
OWSLogError(@"invalid decoded entity: %@.", [object class]);
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
} @catch (NSException *exception) {
|
|
OWSLogError(@"could not decode entity.");
|
|
// Database-related errors are unrecoverable.
|
|
aborted = YES;
|
|
return completion(NO);
|
|
}
|
|
|
|
[object saveWithTransaction:transaction];
|
|
copiedEntities++;
|
|
NSString *collection = [object.class collection];
|
|
NSUInteger restoredEntityCount = restoredEntityCounts[collection].unsignedIntValue;
|
|
restoredEntityCounts[collection] = @(restoredEntityCount + 1);
|
|
}
|
|
}
|
|
}
|
|
}];
|
|
|
|
if (self.isComplete || aborted) {
|
|
return;
|
|
}
|
|
|
|
for (NSString *collection in restoredEntityCounts) {
|
|
OWSLogInfo(@"copied %@: %@", collection, restoredEntityCounts[collection]);
|
|
}
|
|
OWSLogInfo(@"copiedEntities: %llu", copiedEntities);
|
|
|
|
[self.primaryStorage logFileSizes];
|
|
|
|
completion(YES);
|
|
}
|
|
|
|
- (void)ensureMigrationsWithCompletion:(OWSBackupJobBoolCompletion)completion
|
|
{
|
|
OWSAssertDebug(completion);
|
|
|
|
OWSLogVerbose(@"");
|
|
|
|
[self updateProgressWithDescription:NSLocalizedString(@"BACKUP_IMPORT_PHASE_FINALIZING",
|
|
@"Indicates that the backup import data is being finalized.")
|
|
progress:nil];
|
|
|
|
|
|
// It's okay that we do this in a separate transaction from the
|
|
// restoration of backup contents. If some of migrations don't
|
|
// complete, they'll be run the next time the app launches.
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[[[OWSDatabaseMigrationRunner alloc] initWithPrimaryStorage:self.primaryStorage]
|
|
runAllOutstandingWithCompletion:^{
|
|
completion(YES);
|
|
}];
|
|
});
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|