2009-04-29 14:03:25 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.server;
|
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
import android.app.ActivityManagerNative;
|
2009-07-02 17:40:45 -07:00
|
|
|
import android.app.AlarmManager;
|
2009-05-14 11:12:14 -07:00
|
|
|
import android.app.IActivityManager;
|
|
|
|
import android.app.IApplicationThread;
|
|
|
|
import android.app.IBackupAgent;
|
2009-07-02 17:40:45 -07:00
|
|
|
import android.app.PendingIntent;
|
2009-05-06 16:13:56 -07:00
|
|
|
import android.content.BroadcastReceiver;
|
2009-06-17 02:30:10 -07:00
|
|
|
import android.content.ComponentName;
|
2009-04-29 14:03:25 -07:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2009-05-06 16:13:56 -07:00
|
|
|
import android.content.IntentFilter;
|
2009-06-17 02:30:10 -07:00
|
|
|
import android.content.ServiceConnection;
|
2009-05-14 11:12:14 -07:00
|
|
|
import android.content.pm.ApplicationInfo;
|
2009-06-10 15:49:30 -07:00
|
|
|
import android.content.pm.IPackageDataObserver;
|
2009-06-07 13:52:37 -07:00
|
|
|
import android.content.pm.PackageInfo;
|
2009-06-02 16:11:00 -07:00
|
|
|
import android.content.pm.PackageManager.NameNotFoundException;
|
2009-06-17 02:30:10 -07:00
|
|
|
import android.content.pm.PackageManager;
|
2009-06-18 18:35:32 -07:00
|
|
|
import android.content.pm.Signature;
|
2009-05-06 16:13:56 -07:00
|
|
|
import android.net.Uri;
|
2009-07-01 11:43:53 -07:00
|
|
|
import android.provider.Settings;
|
2009-04-29 14:03:25 -07:00
|
|
|
import android.os.Binder;
|
2009-05-06 16:13:56 -07:00
|
|
|
import android.os.Bundle;
|
2009-05-04 16:41:53 -07:00
|
|
|
import android.os.Environment;
|
2009-04-29 14:03:25 -07:00
|
|
|
import android.os.Handler;
|
|
|
|
import android.os.IBinder;
|
|
|
|
import android.os.Message;
|
2009-05-04 16:41:53 -07:00
|
|
|
import android.os.ParcelFileDescriptor;
|
2009-07-02 17:40:45 -07:00
|
|
|
import android.os.PowerManager;
|
2009-06-02 16:11:00 -07:00
|
|
|
import android.os.Process;
|
2009-04-29 14:03:25 -07:00
|
|
|
import android.os.RemoteException;
|
2009-07-27 12:20:13 -07:00
|
|
|
import android.os.SystemClock;
|
|
|
|
import android.util.EventLog;
|
2009-04-29 14:03:25 -07:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.SparseArray;
|
|
|
|
|
|
|
|
import android.backup.IBackupManager;
|
2009-06-25 18:03:43 -07:00
|
|
|
import android.backup.IRestoreObserver;
|
2009-06-07 19:33:20 -07:00
|
|
|
import android.backup.IRestoreSession;
|
2009-06-08 15:24:01 -07:00
|
|
|
import android.backup.RestoreSet;
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-09-21 10:12:59 -07:00
|
|
|
import com.android.internal.backup.BackupConstants;
|
2009-06-10 20:23:25 -07:00
|
|
|
import com.android.internal.backup.LocalTransport;
|
2009-06-02 16:11:00 -07:00
|
|
|
import com.android.internal.backup.IBackupTransport;
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-06-18 15:58:25 -07:00
|
|
|
import com.android.server.PackageManagerBackupAgent;
|
2009-06-19 14:14:22 -07:00
|
|
|
import com.android.server.PackageManagerBackupAgent.Metadata;
|
2009-06-18 15:58:25 -07:00
|
|
|
|
2009-06-12 12:55:53 -07:00
|
|
|
import java.io.EOFException;
|
2009-05-04 16:41:53 -07:00
|
|
|
import java.io.File;
|
2009-05-06 18:06:21 -07:00
|
|
|
import java.io.FileDescriptor;
|
2009-09-21 19:36:51 -07:00
|
|
|
import java.io.FileOutputStream;
|
2009-06-10 15:49:30 -07:00
|
|
|
import java.io.IOException;
|
2009-05-06 18:06:21 -07:00
|
|
|
import java.io.PrintWriter;
|
2009-06-12 12:55:53 -07:00
|
|
|
import java.io.RandomAccessFile;
|
2009-04-29 14:03:25 -07:00
|
|
|
import java.lang.String;
|
2009-05-13 01:41:44 -04:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
2009-04-29 14:03:25 -07:00
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.List;
|
2009-06-26 21:07:13 -07:00
|
|
|
import java.util.Map;
|
2009-04-29 14:03:25 -07:00
|
|
|
|
|
|
|
class BackupManagerService extends IBackupManager.Stub {
|
|
|
|
private static final String TAG = "BackupManagerService";
|
2009-09-30 20:06:45 -07:00
|
|
|
private static final boolean DEBUG = false;
|
2009-06-16 18:25:46 -07:00
|
|
|
|
2009-07-01 12:34:29 -07:00
|
|
|
// How often we perform a backup pass. Privileged external callers can
|
|
|
|
// trigger an immediate pass.
|
2009-07-02 17:40:45 -07:00
|
|
|
private static final long BACKUP_INTERVAL = AlarmManager.INTERVAL_HOUR;
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-07-06 16:36:05 -07:00
|
|
|
// The amount of time between the initial provisioning of the device and
|
|
|
|
// the first backup pass.
|
|
|
|
private static final long FIRST_BACKUP_INTERVAL = 12 * AlarmManager.INTERVAL_HOUR;
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
private static final String RUN_BACKUP_ACTION = "android.backup.intent.RUN";
|
|
|
|
private static final String RUN_INITIALIZE_ACTION = "android.backup.intent.INIT";
|
|
|
|
private static final String RUN_CLEAR_ACTION = "android.backup.intent.CLEAR";
|
2009-04-29 14:03:25 -07:00
|
|
|
private static final int MSG_RUN_BACKUP = 1;
|
2009-06-02 16:11:00 -07:00
|
|
|
private static final int MSG_RUN_FULL_BACKUP = 2;
|
2009-06-10 20:23:25 -07:00
|
|
|
private static final int MSG_RUN_RESTORE = 3;
|
2009-07-02 11:17:03 -07:00
|
|
|
private static final int MSG_RUN_CLEAR = 4;
|
2009-09-21 19:36:51 -07:00
|
|
|
private static final int MSG_RUN_INITIALIZE = 5;
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
// Event tags -- see system/core/logcat/event-log-tags
|
|
|
|
private static final int BACKUP_DATA_CHANGED_EVENT = 2820;
|
|
|
|
private static final int BACKUP_START_EVENT = 2821;
|
|
|
|
private static final int BACKUP_TRANSPORT_FAILURE_EVENT = 2822;
|
|
|
|
private static final int BACKUP_AGENT_FAILURE_EVENT = 2823;
|
|
|
|
private static final int BACKUP_PACKAGE_EVENT = 2824;
|
|
|
|
private static final int BACKUP_SUCCESS_EVENT = 2825;
|
2009-09-21 10:12:59 -07:00
|
|
|
private static final int BACKUP_RESET_EVENT = 2826;
|
2009-09-29 19:12:31 -07:00
|
|
|
private static final int BACKUP_INITIALIZE_EVENT = 2827;
|
2009-07-27 12:20:13 -07:00
|
|
|
|
|
|
|
private static final int RESTORE_START_EVENT = 2830;
|
|
|
|
private static final int RESTORE_TRANSPORT_FAILURE_EVENT = 2831;
|
|
|
|
private static final int RESTORE_AGENT_FAILURE_EVENT = 2832;
|
|
|
|
private static final int RESTORE_PACKAGE_EVENT = 2833;
|
|
|
|
private static final int RESTORE_SUCCESS_EVENT = 2834;
|
|
|
|
|
2009-06-10 15:49:30 -07:00
|
|
|
// Timeout interval for deciding that a bind or clear-data has taken too long
|
|
|
|
static final long TIMEOUT_INTERVAL = 10 * 1000;
|
|
|
|
|
2009-04-29 14:03:25 -07:00
|
|
|
private Context mContext;
|
|
|
|
private PackageManager mPackageManager;
|
2009-06-29 14:56:28 -07:00
|
|
|
private IActivityManager mActivityManager;
|
2009-07-02 17:40:45 -07:00
|
|
|
private PowerManager mPowerManager;
|
|
|
|
private AlarmManager mAlarmManager;
|
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
boolean mEnabled; // access to this is synchronized on 'this'
|
|
|
|
boolean mProvisioned;
|
|
|
|
PowerManager.WakeLock mWakelock;
|
|
|
|
final BackupHandler mBackupHandler = new BackupHandler();
|
2009-09-21 19:36:51 -07:00
|
|
|
PendingIntent mRunBackupIntent, mRunInitIntent;
|
|
|
|
BroadcastReceiver mRunBackupReceiver, mRunInitReceiver;
|
2009-04-29 14:03:25 -07:00
|
|
|
// map UIDs to the set of backup client services within that UID's app set
|
2009-07-15 14:18:26 -07:00
|
|
|
final SparseArray<HashSet<ApplicationInfo>> mBackupParticipants
|
2009-05-14 11:12:14 -07:00
|
|
|
= new SparseArray<HashSet<ApplicationInfo>>();
|
2009-04-29 14:03:25 -07:00
|
|
|
// set of backup services that have pending changes
|
2009-07-15 14:18:26 -07:00
|
|
|
class BackupRequest {
|
2009-05-14 11:12:14 -07:00
|
|
|
public ApplicationInfo appInfo;
|
2009-05-06 11:22:00 -07:00
|
|
|
public boolean fullBackup;
|
2009-06-16 18:25:46 -07:00
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
BackupRequest(ApplicationInfo app, boolean isFull) {
|
|
|
|
appInfo = app;
|
2009-05-06 11:22:00 -07:00
|
|
|
fullBackup = isFull;
|
|
|
|
}
|
2009-05-14 11:12:14 -07:00
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return "BackupRequest{app=" + appInfo + " full=" + fullBackup + "}";
|
|
|
|
}
|
2009-05-06 11:22:00 -07:00
|
|
|
}
|
2009-05-13 01:41:44 -04:00
|
|
|
// Backups that we haven't started yet.
|
2009-07-15 14:18:26 -07:00
|
|
|
HashMap<ApplicationInfo,BackupRequest> mPendingBackups
|
2009-05-14 11:12:14 -07:00
|
|
|
= new HashMap<ApplicationInfo,BackupRequest>();
|
2009-06-25 16:03:14 -07:00
|
|
|
|
|
|
|
// Pseudoname that we use for the Package Manager metadata "package"
|
2009-07-15 14:18:26 -07:00
|
|
|
static final String PACKAGE_MANAGER_SENTINEL = "@pm@";
|
2009-06-19 14:14:22 -07:00
|
|
|
|
|
|
|
// locking around the pending-backup management
|
2009-07-15 14:18:26 -07:00
|
|
|
final Object mQueueLock = new Object();
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-06-02 16:11:00 -07:00
|
|
|
// The thread performing the sequence of queued backups binds to each app's agent
|
|
|
|
// in succession. Bind notifications are asynchronously delivered through the
|
|
|
|
// Activity Manager; use this lock object to signal when a requested binding has
|
|
|
|
// completed.
|
2009-07-15 14:18:26 -07:00
|
|
|
final Object mAgentConnectLock = new Object();
|
|
|
|
IBackupAgent mConnectedAgent;
|
|
|
|
volatile boolean mConnecting;
|
2009-09-24 18:01:46 -07:00
|
|
|
volatile boolean mBackupOrRestoreInProgress = false;
|
2009-09-29 17:17:34 -07:00
|
|
|
volatile long mLastBackupPass;
|
|
|
|
volatile long mNextBackupPass;
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-09-29 17:17:34 -07:00
|
|
|
// A similar synchronization mechanism around clearing apps' data for restore
|
2009-07-15 14:18:26 -07:00
|
|
|
final Object mClearDataLock = new Object();
|
|
|
|
volatile boolean mClearingData;
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
// Transport bookkeeping
|
2009-07-15 14:18:26 -07:00
|
|
|
final HashMap<String,IBackupTransport> mTransports
|
2009-06-26 21:07:13 -07:00
|
|
|
= new HashMap<String,IBackupTransport>();
|
2009-07-15 14:18:26 -07:00
|
|
|
String mCurrentTransport;
|
|
|
|
IBackupTransport mLocalTransport, mGoogleTransport;
|
|
|
|
RestoreSession mActiveRestoreSession;
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
class RestoreParams {
|
2009-06-25 18:03:43 -07:00
|
|
|
public IBackupTransport transport;
|
|
|
|
public IRestoreObserver observer;
|
2009-06-26 13:20:02 -07:00
|
|
|
public long token;
|
2009-06-25 18:03:43 -07:00
|
|
|
|
2009-06-26 13:20:02 -07:00
|
|
|
RestoreParams(IBackupTransport _transport, IRestoreObserver _obs, long _token) {
|
2009-06-25 18:03:43 -07:00
|
|
|
transport = _transport;
|
|
|
|
observer = _obs;
|
2009-06-26 13:20:02 -07:00
|
|
|
token = _token;
|
2009-06-25 18:03:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
class ClearParams {
|
2009-07-02 11:17:03 -07:00
|
|
|
public IBackupTransport transport;
|
|
|
|
public PackageInfo packageInfo;
|
|
|
|
|
|
|
|
ClearParams(IBackupTransport _transport, PackageInfo _info) {
|
|
|
|
transport = _transport;
|
|
|
|
packageInfo = _info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-25 16:03:14 -07:00
|
|
|
// Where we keep our journal files and other bookkeeping
|
2009-07-15 14:18:26 -07:00
|
|
|
File mBaseStateDir;
|
|
|
|
File mDataDir;
|
|
|
|
File mJournalDir;
|
|
|
|
File mJournal;
|
|
|
|
|
|
|
|
// Keep a log of all the apps we've ever backed up
|
|
|
|
private File mEverStored;
|
|
|
|
HashSet<String> mEverStoredApps = new HashSet<String>();
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
// Persistently track the need to do a full init
|
|
|
|
static final String INIT_SENTINEL_FILE_NAME = "_need_init_";
|
|
|
|
HashSet<String> mPendingInits = new HashSet<String>(); // transport names
|
2009-09-24 18:01:46 -07:00
|
|
|
volatile boolean mInitInProgress = false;
|
2009-06-16 18:25:46 -07:00
|
|
|
|
2009-04-29 14:03:25 -07:00
|
|
|
public BackupManagerService(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
mPackageManager = context.getPackageManager();
|
2009-05-14 11:12:14 -07:00
|
|
|
mActivityManager = ActivityManagerNative.getDefault();
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-07-02 17:40:45 -07:00
|
|
|
mAlarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
|
|
|
|
mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
|
|
|
|
|
2009-05-04 16:41:53 -07:00
|
|
|
// Set up our bookkeeping
|
2009-07-02 17:40:45 -07:00
|
|
|
boolean areEnabled = Settings.Secure.getInt(context.getContentResolver(),
|
2009-07-01 19:55:20 -07:00
|
|
|
Settings.Secure.BACKUP_ENABLED, 0) != 0;
|
2009-07-06 16:36:05 -07:00
|
|
|
mProvisioned = Settings.Secure.getInt(context.getContentResolver(),
|
2009-07-27 08:56:39 -07:00
|
|
|
Settings.Secure.BACKUP_PROVISIONED, 0) != 0;
|
2009-06-25 16:03:14 -07:00
|
|
|
mBaseStateDir = new File(Environment.getDataDirectory(), "backup");
|
2009-05-05 15:50:03 -07:00
|
|
|
mDataDir = Environment.getDownloadCacheDirectory();
|
2009-06-10 20:23:25 -07:00
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
// Alarm receivers for scheduled backups & initialization operations
|
2009-07-02 17:40:45 -07:00
|
|
|
mRunBackupReceiver = new RunBackupReceiver();
|
2009-09-21 19:36:51 -07:00
|
|
|
IntentFilter filter = new IntentFilter();
|
|
|
|
filter.addAction(RUN_BACKUP_ACTION);
|
|
|
|
context.registerReceiver(mRunBackupReceiver, filter,
|
|
|
|
android.Manifest.permission.BACKUP, null);
|
|
|
|
|
|
|
|
mRunInitReceiver = new RunInitializeReceiver();
|
|
|
|
filter = new IntentFilter();
|
|
|
|
filter.addAction(RUN_INITIALIZE_ACTION);
|
|
|
|
context.registerReceiver(mRunInitReceiver, filter,
|
|
|
|
android.Manifest.permission.BACKUP, null);
|
2009-07-02 17:40:45 -07:00
|
|
|
|
|
|
|
Intent backupIntent = new Intent(RUN_BACKUP_ACTION);
|
|
|
|
backupIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
|
|
|
|
mRunBackupIntent = PendingIntent.getBroadcast(context, MSG_RUN_BACKUP, backupIntent, 0);
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
Intent initIntent = new Intent(RUN_INITIALIZE_ACTION);
|
|
|
|
backupIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
|
|
|
|
mRunInitIntent = PendingIntent.getBroadcast(context, MSG_RUN_INITIALIZE, initIntent, 0);
|
|
|
|
|
2009-06-12 12:55:53 -07:00
|
|
|
// Set up the backup-request journaling
|
2009-06-25 16:03:14 -07:00
|
|
|
mJournalDir = new File(mBaseStateDir, "pending");
|
|
|
|
mJournalDir.mkdirs(); // creates mBaseStateDir along the way
|
2009-09-30 11:20:45 -07:00
|
|
|
mJournal = null; // will be created on first use
|
2009-06-12 12:55:53 -07:00
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
// Set up the various sorts of package tracking we do
|
|
|
|
initPackageTracking();
|
|
|
|
|
2009-06-18 18:35:32 -07:00
|
|
|
// Build our mapping of uid to backup client services. This implicitly
|
|
|
|
// schedules a backup pass on the Package Manager metadata the first
|
|
|
|
// time anything needs to be backed up.
|
2009-05-06 16:13:56 -07:00
|
|
|
synchronized (mBackupParticipants) {
|
|
|
|
addPackageParticipantsLocked(null);
|
|
|
|
}
|
|
|
|
|
2009-06-17 02:30:10 -07:00
|
|
|
// Set up our transport options and initialize the default transport
|
|
|
|
// TODO: Have transports register themselves somehow?
|
|
|
|
// TODO: Don't create transports that we don't need to?
|
|
|
|
mLocalTransport = new LocalTransport(context); // This is actually pretty cheap
|
2009-06-26 21:07:13 -07:00
|
|
|
ComponentName localName = new ComponentName(context, LocalTransport.class);
|
|
|
|
registerTransport(localName.flattenToShortString(), mLocalTransport);
|
2009-06-17 02:30:10 -07:00
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
mGoogleTransport = null;
|
2009-07-01 19:55:20 -07:00
|
|
|
mCurrentTransport = Settings.Secure.getString(context.getContentResolver(),
|
|
|
|
Settings.Secure.BACKUP_TRANSPORT);
|
|
|
|
if ("".equals(mCurrentTransport)) {
|
|
|
|
mCurrentTransport = null;
|
2009-07-01 11:43:53 -07:00
|
|
|
}
|
2009-06-26 21:07:13 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Starting with transport " + mCurrentTransport);
|
|
|
|
|
|
|
|
// Attach to the Google backup transport. When this comes up, it will set
|
|
|
|
// itself as the current transport because we explicitly reset mCurrentTransport
|
|
|
|
// to null.
|
2009-06-17 02:30:10 -07:00
|
|
|
Intent intent = new Intent().setComponent(new ComponentName(
|
|
|
|
"com.google.android.backup",
|
|
|
|
"com.google.android.backup.BackupTransportService"));
|
|
|
|
context.bindService(intent, mGoogleConnection, Context.BIND_AUTO_CREATE);
|
2009-06-16 18:25:46 -07:00
|
|
|
|
2009-06-12 12:55:53 -07:00
|
|
|
// Now that we know about valid backup participants, parse any
|
2009-07-01 12:34:29 -07:00
|
|
|
// leftover journal files into the pending backup set
|
2009-06-12 12:55:53 -07:00
|
|
|
parseLeftoverJournals();
|
|
|
|
|
2009-07-02 17:40:45 -07:00
|
|
|
// Power management
|
|
|
|
mWakelock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "backup");
|
|
|
|
|
|
|
|
// Start the backup passes going
|
|
|
|
setBackupEnabled(areEnabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class RunBackupReceiver extends BroadcastReceiver {
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
if (RUN_BACKUP_ACTION.equals(intent.getAction())) {
|
2009-09-21 19:36:51 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
if (mPendingInits.size() > 0) {
|
|
|
|
// If there are pending init operations, we process those
|
|
|
|
// and then settle into the usual periodic backup schedule.
|
|
|
|
if (DEBUG) Log.v(TAG, "Init pending at scheduled backup");
|
|
|
|
try {
|
|
|
|
mAlarmManager.cancel(mRunInitIntent);
|
|
|
|
mRunInitIntent.send();
|
|
|
|
} catch (PendingIntent.CanceledException ce) {
|
|
|
|
Log.e(TAG, "Run init intent cancelled");
|
|
|
|
// can't really do more than bail here
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Don't run backups now if we're disabled, not yet
|
2009-09-24 18:01:46 -07:00
|
|
|
// fully set up, in the middle of a backup already,
|
|
|
|
// or racing with an initialize pass.
|
|
|
|
if (mEnabled && mProvisioned
|
|
|
|
&& !mBackupOrRestoreInProgress && !mInitInProgress) {
|
2009-09-21 19:36:51 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Running a backup pass");
|
2009-09-24 18:01:46 -07:00
|
|
|
mBackupOrRestoreInProgress = true;
|
2009-09-21 19:36:51 -07:00
|
|
|
|
|
|
|
// Acquire the wakelock and pass it to the backup thread. it will
|
|
|
|
// be released once backup concludes.
|
|
|
|
mWakelock.acquire();
|
|
|
|
|
|
|
|
Message msg = mBackupHandler.obtainMessage(MSG_RUN_BACKUP);
|
|
|
|
mBackupHandler.sendMessage(msg);
|
|
|
|
} else {
|
|
|
|
Log.w(TAG, "Backup pass but e=" + mEnabled + " p=" + mProvisioned
|
2009-09-24 18:01:46 -07:00
|
|
|
+ " b=" + mBackupOrRestoreInProgress + " i=" + mInitInProgress);
|
2009-09-21 19:36:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
private class RunInitializeReceiver extends BroadcastReceiver {
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
if (RUN_INITIALIZE_ACTION.equals(intent.getAction())) {
|
2009-07-02 17:40:45 -07:00
|
|
|
synchronized (mQueueLock) {
|
2009-09-21 19:36:51 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Running a device init");
|
|
|
|
mInitInProgress = true;
|
|
|
|
|
|
|
|
// Acquire the wakelock and pass it to the init thread. it will
|
|
|
|
// be released once init concludes.
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.acquire();
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
Message msg = mBackupHandler.obtainMessage(MSG_RUN_INITIALIZE);
|
2009-07-02 17:40:45 -07:00
|
|
|
mBackupHandler.sendMessage(msg);
|
|
|
|
}
|
|
|
|
}
|
2009-07-01 12:34:29 -07:00
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
}
|
2009-05-06 16:13:56 -07:00
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
private void initPackageTracking() {
|
|
|
|
if (DEBUG) Log.v(TAG, "Initializing package tracking");
|
|
|
|
|
2009-07-15 16:45:50 -07:00
|
|
|
// Keep a log of what apps we've ever backed up. Because we might have
|
|
|
|
// rebooted in the middle of an operation that was removing something from
|
|
|
|
// this log, we sanity-check its contents here and reconstruct it.
|
2009-07-15 14:18:26 -07:00
|
|
|
mEverStored = new File(mBaseStateDir, "processed");
|
2009-07-15 16:45:50 -07:00
|
|
|
File tempProcessedFile = new File(mBaseStateDir, "processed.new");
|
2009-07-15 14:18:26 -07:00
|
|
|
|
2009-07-15 16:45:50 -07:00
|
|
|
// If we were in the middle of removing something from the ever-backed-up
|
|
|
|
// file, there might be a transient "processed.new" file still present.
|
2009-09-30 11:20:45 -07:00
|
|
|
// Ignore it -- we'll validate "processed" against the current package set.
|
2009-07-15 16:45:50 -07:00
|
|
|
if (tempProcessedFile.exists()) {
|
|
|
|
tempProcessedFile.delete();
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:20:45 -07:00
|
|
|
// If there are previous contents, parse them out then start a new
|
|
|
|
// file to continue the recordkeeping.
|
|
|
|
if (mEverStored.exists()) {
|
|
|
|
RandomAccessFile temp = null;
|
|
|
|
RandomAccessFile in = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
temp = new RandomAccessFile(tempProcessedFile, "rws");
|
|
|
|
in = new RandomAccessFile(mEverStored, "r");
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
PackageInfo info;
|
|
|
|
String pkg = in.readUTF();
|
|
|
|
try {
|
|
|
|
info = mPackageManager.getPackageInfo(pkg, 0);
|
|
|
|
mEverStoredApps.add(pkg);
|
|
|
|
temp.writeUTF(pkg);
|
|
|
|
if (DEBUG) Log.v(TAG, " + " + pkg);
|
|
|
|
} catch (NameNotFoundException e) {
|
|
|
|
// nope, this package was uninstalled; don't include it
|
|
|
|
if (DEBUG) Log.v(TAG, " - " + pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (EOFException e) {
|
|
|
|
// Once we've rewritten the backup history log, atomically replace the
|
|
|
|
// old one with the new one then reopen the file for continuing use.
|
|
|
|
if (!tempProcessedFile.renameTo(mEverStored)) {
|
|
|
|
Log.e(TAG, "Error renaming " + tempProcessedFile + " to " + mEverStored);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.e(TAG, "Error in processed file", e);
|
|
|
|
} finally {
|
|
|
|
try { if (temp != null) temp.close(); } catch (IOException e) {}
|
|
|
|
try { if (in != null) in.close(); } catch (IOException e) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
// Register for broadcasts about package install, etc., so we can
|
|
|
|
// update the provider list.
|
|
|
|
IntentFilter filter = new IntentFilter();
|
|
|
|
filter.addAction(Intent.ACTION_PACKAGE_ADDED);
|
|
|
|
filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
|
|
|
|
filter.addDataScheme("package");
|
|
|
|
mContext.registerReceiver(mBroadcastReceiver, filter);
|
|
|
|
}
|
|
|
|
|
2009-06-12 12:55:53 -07:00
|
|
|
private void parseLeftoverJournals() {
|
2009-09-30 11:20:45 -07:00
|
|
|
for (File f : mJournalDir.listFiles()) {
|
|
|
|
if (mJournal == null || f.compareTo(mJournal) != 0) {
|
|
|
|
// This isn't the current journal, so it must be a leftover. Read
|
|
|
|
// out the package names mentioned there and schedule them for
|
|
|
|
// backup.
|
|
|
|
RandomAccessFile in = null;
|
|
|
|
try {
|
|
|
|
Log.i(TAG, "Found stale backup journal, scheduling:");
|
|
|
|
in = new RandomAccessFile(f, "r");
|
|
|
|
while (true) {
|
|
|
|
String packageName = in.readUTF();
|
|
|
|
Log.i(TAG, " + " + packageName);
|
|
|
|
dataChanged(packageName);
|
2009-06-12 12:55:53 -07:00
|
|
|
}
|
2009-09-30 11:20:45 -07:00
|
|
|
} catch (EOFException e) {
|
|
|
|
// no more data; we're done
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Can't read " + f, e);
|
|
|
|
} finally {
|
|
|
|
// close/delete the file
|
|
|
|
try { if (in != null) in.close(); } catch (IOException e) {}
|
|
|
|
f.delete();
|
2009-06-12 12:55:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
// Maintain persistent state around whether need to do an initialize operation.
|
|
|
|
// Must be called with the queue lock held.
|
|
|
|
void recordInitPendingLocked(boolean isPending, String transportName) {
|
|
|
|
if (DEBUG) Log.i(TAG, "recordInitPendingLocked: " + isPending
|
|
|
|
+ " on transport " + transportName);
|
|
|
|
try {
|
|
|
|
IBackupTransport transport = getTransport(transportName);
|
|
|
|
String transportDirName = transport.transportDirName();
|
|
|
|
File stateDir = new File(mBaseStateDir, transportDirName);
|
|
|
|
File initPendingFile = new File(stateDir, INIT_SENTINEL_FILE_NAME);
|
|
|
|
|
|
|
|
if (isPending) {
|
|
|
|
// We need an init before we can proceed with sending backup data.
|
|
|
|
// Record that with an entry in our set of pending inits, as well as
|
|
|
|
// journaling it via creation of a sentinel file.
|
|
|
|
mPendingInits.add(transportName);
|
|
|
|
try {
|
|
|
|
(new FileOutputStream(initPendingFile)).close();
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
// Something is badly wrong with our permissions; just try to move on
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No more initialization needed; wipe the journal and reset our state.
|
|
|
|
initPendingFile.delete();
|
|
|
|
mPendingInits.remove(transportName);
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transport is local
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 10:12:59 -07:00
|
|
|
// Reset all of our bookkeeping, in response to having been told that
|
|
|
|
// the backend data has been wiped [due to idle expiry, for example],
|
|
|
|
// so we must re-upload all saved settings.
|
|
|
|
void resetBackupState(File stateFileDir) {
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
// Wipe the "what we've ever backed up" tracking
|
|
|
|
mEverStoredApps.clear();
|
2009-09-30 11:20:45 -07:00
|
|
|
mEverStored.delete();
|
2009-09-21 10:12:59 -07:00
|
|
|
|
|
|
|
// Remove all the state files
|
|
|
|
for (File sf : stateFileDir.listFiles()) {
|
2009-09-21 19:36:51 -07:00
|
|
|
// ... but don't touch the needs-init sentinel
|
|
|
|
if (!sf.getName().equals(INIT_SENTINEL_FILE_NAME)) {
|
|
|
|
sf.delete();
|
|
|
|
}
|
2009-09-21 10:12:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enqueue a new backup of every participant
|
|
|
|
int N = mBackupParticipants.size();
|
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
int uid = mBackupParticipants.keyAt(i);
|
|
|
|
HashSet<ApplicationInfo> participants = mBackupParticipants.valueAt(i);
|
|
|
|
for (ApplicationInfo app: participants) {
|
2009-09-30 11:20:45 -07:00
|
|
|
dataChanged(app.packageName);
|
2009-09-21 10:12:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
// Add a transport to our set of available backends
|
|
|
|
private void registerTransport(String name, IBackupTransport transport) {
|
|
|
|
synchronized (mTransports) {
|
2009-07-06 15:44:54 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Registering transport " + name + " = " + transport);
|
2009-06-26 21:07:13 -07:00
|
|
|
mTransports.put(name, transport);
|
|
|
|
}
|
2009-09-21 19:36:51 -07:00
|
|
|
|
|
|
|
// If the init sentinel file exists, we need to be sure to perform the init
|
|
|
|
// as soon as practical. We also create the state directory at registration
|
|
|
|
// time to ensure it's present from the outset.
|
|
|
|
try {
|
|
|
|
String transportName = transport.transportDirName();
|
|
|
|
File stateDir = new File(mBaseStateDir, transportName);
|
|
|
|
stateDir.mkdirs();
|
|
|
|
|
|
|
|
File initSentinel = new File(stateDir, INIT_SENTINEL_FILE_NAME);
|
|
|
|
if (initSentinel.exists()) {
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mPendingInits.add(transportName);
|
|
|
|
|
|
|
|
// TODO: pick a better starting time than now + 1 minute
|
|
|
|
long delay = 1000 * 60; // one minute, in milliseconds
|
|
|
|
mAlarmManager.set(AlarmManager.RTC_WAKEUP,
|
|
|
|
System.currentTimeMillis() + delay, mRunInitIntent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen, the transport is local
|
|
|
|
}
|
2009-06-26 21:07:13 -07:00
|
|
|
}
|
|
|
|
|
2009-05-06 16:13:56 -07:00
|
|
|
// ----- Track installation/removal of packages -----
|
|
|
|
BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
if (DEBUG) Log.d(TAG, "Received broadcast " + intent);
|
|
|
|
|
|
|
|
Uri uri = intent.getData();
|
|
|
|
if (uri == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String pkgName = uri.getSchemeSpecificPart();
|
|
|
|
if (pkgName == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
String action = intent.getAction();
|
|
|
|
if (Intent.ACTION_PACKAGE_ADDED.equals(action)) {
|
|
|
|
synchronized (mBackupParticipants) {
|
|
|
|
Bundle extras = intent.getExtras();
|
|
|
|
if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) {
|
|
|
|
// The package was just upgraded
|
|
|
|
updatePackageParticipantsLocked(pkgName);
|
|
|
|
} else {
|
|
|
|
// The package was just added
|
|
|
|
addPackageParticipantsLocked(pkgName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) {
|
|
|
|
Bundle extras = intent.getExtras();
|
|
|
|
if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) {
|
|
|
|
// The package is being updated. We'll receive a PACKAGE_ADDED shortly.
|
|
|
|
} else {
|
|
|
|
synchronized (mBackupParticipants) {
|
|
|
|
removePackageParticipantsLocked(pkgName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-06-17 02:30:10 -07:00
|
|
|
// ----- Track connection to GoogleBackupTransport service -----
|
|
|
|
ServiceConnection mGoogleConnection = new ServiceConnection() {
|
|
|
|
public void onServiceConnected(ComponentName name, IBinder service) {
|
|
|
|
if (DEBUG) Log.v(TAG, "Connected to Google transport");
|
|
|
|
mGoogleTransport = IBackupTransport.Stub.asInterface(service);
|
2009-06-26 21:07:13 -07:00
|
|
|
registerTransport(name.flattenToShortString(), mGoogleTransport);
|
2009-06-17 02:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onServiceDisconnected(ComponentName name) {
|
|
|
|
if (DEBUG) Log.v(TAG, "Disconnected from Google transport");
|
|
|
|
mGoogleTransport = null;
|
2009-06-26 21:07:13 -07:00
|
|
|
registerTransport(name.flattenToShortString(), null);
|
2009-06-17 02:30:10 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-13 01:41:44 -04:00
|
|
|
// ----- Run the actual backup process asynchronously -----
|
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
private class BackupHandler extends Handler {
|
2009-05-13 01:41:44 -04:00
|
|
|
public void handleMessage(Message msg) {
|
|
|
|
|
|
|
|
switch (msg.what) {
|
|
|
|
case MSG_RUN_BACKUP:
|
2009-06-17 02:30:10 -07:00
|
|
|
{
|
2009-09-29 17:17:34 -07:00
|
|
|
mLastBackupPass = System.currentTimeMillis();
|
|
|
|
mNextBackupPass = mLastBackupPass + BACKUP_INTERVAL;
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
IBackupTransport transport = getTransport(mCurrentTransport);
|
2009-06-17 02:30:10 -07:00
|
|
|
if (transport == null) {
|
|
|
|
Log.v(TAG, "Backup requested but no transport available");
|
2009-09-27 15:16:44 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mBackupOrRestoreInProgress = false;
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.release();
|
2009-06-17 02:30:10 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-05-13 01:41:44 -04:00
|
|
|
// snapshot the pending-backup set and work on that
|
2009-06-19 14:14:22 -07:00
|
|
|
ArrayList<BackupRequest> queue = new ArrayList<BackupRequest>();
|
2009-05-13 01:41:44 -04:00
|
|
|
synchronized (mQueueLock) {
|
2009-07-01 12:34:29 -07:00
|
|
|
// Do we have any work to do?
|
|
|
|
if (mPendingBackups.size() > 0) {
|
|
|
|
for (BackupRequest b: mPendingBackups.values()) {
|
|
|
|
queue.add(b);
|
|
|
|
}
|
|
|
|
Log.v(TAG, "clearing pending backups");
|
|
|
|
mPendingBackups.clear();
|
|
|
|
|
|
|
|
// Start a new backup-queue journal file too
|
2009-09-30 11:20:45 -07:00
|
|
|
File oldJournal = mJournal;
|
|
|
|
mJournal = null;
|
2009-06-12 12:55:53 -07:00
|
|
|
|
2009-07-01 12:34:29 -07:00
|
|
|
// At this point, we have started a new journal file, and the old
|
|
|
|
// file identity is being passed to the backup processing thread.
|
|
|
|
// When it completes successfully, that old journal file will be
|
|
|
|
// deleted. If we crash prior to that, the old journal is parsed
|
|
|
|
// at next boot and the journaled requests fulfilled.
|
|
|
|
(new PerformBackupThread(transport, queue, oldJournal)).start();
|
|
|
|
} else {
|
|
|
|
Log.v(TAG, "Backup requested but nothing pending");
|
2009-09-27 15:16:44 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mBackupOrRestoreInProgress = false;
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.release();
|
2009-07-01 12:34:29 -07:00
|
|
|
}
|
2009-05-13 01:41:44 -04:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
break;
|
2009-06-17 02:30:10 -07:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
|
|
|
|
case MSG_RUN_FULL_BACKUP:
|
2009-05-13 01:41:44 -04:00
|
|
|
break;
|
2009-06-10 20:23:25 -07:00
|
|
|
|
|
|
|
case MSG_RUN_RESTORE:
|
|
|
|
{
|
2009-06-25 18:03:43 -07:00
|
|
|
RestoreParams params = (RestoreParams)msg.obj;
|
2009-07-01 21:04:03 -04:00
|
|
|
Log.d(TAG, "MSG_RUN_RESTORE observer=" + params.observer);
|
2009-07-02 17:40:45 -07:00
|
|
|
(new PerformRestoreThread(params.transport, params.observer,
|
|
|
|
params.token)).start();
|
2009-06-10 20:23:25 -07:00
|
|
|
break;
|
|
|
|
}
|
2009-07-02 11:17:03 -07:00
|
|
|
|
|
|
|
case MSG_RUN_CLEAR:
|
|
|
|
{
|
|
|
|
ClearParams params = (ClearParams)msg.obj;
|
|
|
|
(new PerformClearThread(params.transport, params.packageInfo)).start();
|
|
|
|
break;
|
|
|
|
}
|
2009-09-21 19:36:51 -07:00
|
|
|
|
|
|
|
case MSG_RUN_INITIALIZE:
|
|
|
|
{
|
|
|
|
HashSet<String> queue;
|
|
|
|
|
|
|
|
// Snapshot the pending-init queue and work on that
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
queue = new HashSet<String>(mPendingInits);
|
|
|
|
mPendingInits.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
(new PerformInitializeThread(queue)).start();
|
|
|
|
break;
|
|
|
|
}
|
2009-05-13 01:41:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
// Add the backup agents in the given package to our set of known backup participants.
|
|
|
|
// If 'packageName' is null, adds all backup agents in the whole system.
|
2009-05-06 16:13:56 -07:00
|
|
|
void addPackageParticipantsLocked(String packageName) {
|
2009-05-14 11:12:14 -07:00
|
|
|
// Look for apps that define the android:backupAgent attribute
|
2009-06-02 16:11:00 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "addPackageParticipantsLocked: " + packageName);
|
2009-06-24 00:16:33 -07:00
|
|
|
List<PackageInfo> targetApps = allAgentPackages();
|
2009-05-14 11:12:14 -07:00
|
|
|
addPackageParticipantsLockedInner(packageName, targetApps);
|
2009-05-06 16:13:56 -07:00
|
|
|
}
|
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
private void addPackageParticipantsLockedInner(String packageName,
|
2009-06-24 00:16:33 -07:00
|
|
|
List<PackageInfo> targetPkgs) {
|
2009-05-14 11:12:14 -07:00
|
|
|
if (DEBUG) {
|
2009-06-24 00:16:33 -07:00
|
|
|
Log.v(TAG, "Adding " + targetPkgs.size() + " backup participants:");
|
|
|
|
for (PackageInfo p : targetPkgs) {
|
2009-06-24 17:29:38 -07:00
|
|
|
Log.v(TAG, " " + p + " agent=" + p.applicationInfo.backupAgentName
|
2009-09-01 20:32:49 -07:00
|
|
|
+ " uid=" + p.applicationInfo.uid
|
|
|
|
+ " killAfterRestore="
|
|
|
|
+ (((p.applicationInfo.flags & ApplicationInfo.FLAG_KILL_AFTER_RESTORE) != 0) ? "true" : "false")
|
|
|
|
+ " restoreNeedsApplication="
|
|
|
|
+ (((p.applicationInfo.flags & ApplicationInfo.FLAG_RESTORE_NEEDS_APPLICATION) != 0) ? "true" : "false")
|
|
|
|
);
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
for (PackageInfo pkg : targetPkgs) {
|
|
|
|
if (packageName == null || pkg.packageName.equals(packageName)) {
|
|
|
|
int uid = pkg.applicationInfo.uid;
|
2009-05-14 11:12:14 -07:00
|
|
|
HashSet<ApplicationInfo> set = mBackupParticipants.get(uid);
|
2009-05-06 16:13:56 -07:00
|
|
|
if (set == null) {
|
2009-05-14 11:12:14 -07:00
|
|
|
set = new HashSet<ApplicationInfo>();
|
2009-05-06 16:13:56 -07:00
|
|
|
mBackupParticipants.put(uid, set);
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
set.add(pkg.applicationInfo);
|
2009-07-15 14:18:26 -07:00
|
|
|
|
|
|
|
// If we've never seen this app before, schedule a backup for it
|
|
|
|
if (!mEverStoredApps.contains(pkg.packageName)) {
|
|
|
|
if (DEBUG) Log.i(TAG, "New app " + pkg.packageName
|
|
|
|
+ " never backed up; scheduling");
|
2009-09-30 11:20:45 -07:00
|
|
|
dataChanged(pkg.packageName);
|
2009-07-15 14:18:26 -07:00
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
}
|
|
|
|
}
|
2009-05-06 16:13:56 -07:00
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-06-18 15:58:25 -07:00
|
|
|
// Remove the given package's entry from our known active set. If
|
|
|
|
// 'packageName' is null, *all* participating apps will be removed.
|
2009-05-06 16:13:56 -07:00
|
|
|
void removePackageParticipantsLocked(String packageName) {
|
2009-06-02 16:11:00 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "removePackageParticipantsLocked: " + packageName);
|
2009-06-24 00:16:33 -07:00
|
|
|
List<PackageInfo> allApps = null;
|
2009-05-14 11:12:14 -07:00
|
|
|
if (packageName != null) {
|
2009-06-24 00:16:33 -07:00
|
|
|
allApps = new ArrayList<PackageInfo>();
|
2009-05-14 11:12:14 -07:00
|
|
|
try {
|
2009-06-24 00:16:33 -07:00
|
|
|
int flags = PackageManager.GET_SIGNATURES;
|
|
|
|
allApps.add(mPackageManager.getPackageInfo(packageName, flags));
|
2009-05-14 11:12:14 -07:00
|
|
|
} catch (Exception e) {
|
2009-06-24 00:16:33 -07:00
|
|
|
// just skip it (???)
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// all apps with agents
|
2009-06-24 00:16:33 -07:00
|
|
|
allApps = allAgentPackages();
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
removePackageParticipantsLockedInner(packageName, allApps);
|
2009-05-06 16:13:56 -07:00
|
|
|
}
|
|
|
|
|
2009-05-13 01:41:44 -04:00
|
|
|
private void removePackageParticipantsLockedInner(String packageName,
|
2009-06-24 00:16:33 -07:00
|
|
|
List<PackageInfo> agents) {
|
2009-06-02 16:11:00 -07:00
|
|
|
if (DEBUG) {
|
|
|
|
Log.v(TAG, "removePackageParticipantsLockedInner (" + packageName
|
|
|
|
+ ") removing " + agents.size() + " entries");
|
2009-06-24 00:16:33 -07:00
|
|
|
for (PackageInfo p : agents) {
|
|
|
|
Log.v(TAG, " - " + p);
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
for (PackageInfo pkg : agents) {
|
|
|
|
if (packageName == null || pkg.packageName.equals(packageName)) {
|
|
|
|
int uid = pkg.applicationInfo.uid;
|
2009-05-14 11:12:14 -07:00
|
|
|
HashSet<ApplicationInfo> set = mBackupParticipants.get(uid);
|
2009-05-06 16:13:56 -07:00
|
|
|
if (set != null) {
|
2009-06-05 13:57:54 -07:00
|
|
|
// Find the existing entry with the same package name, and remove it.
|
|
|
|
// We can't just remove(app) because the instances are different.
|
|
|
|
for (ApplicationInfo entry: set) {
|
2009-06-24 00:16:33 -07:00
|
|
|
if (entry.packageName.equals(pkg.packageName)) {
|
2009-06-05 13:57:54 -07:00
|
|
|
set.remove(entry);
|
2009-07-15 16:45:50 -07:00
|
|
|
removeEverBackedUp(pkg.packageName);
|
2009-06-05 13:57:54 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-05-06 16:13:56 -07:00
|
|
|
if (set.size() == 0) {
|
2009-06-24 00:16:33 -07:00
|
|
|
mBackupParticipants.delete(uid);
|
|
|
|
}
|
2009-05-06 16:13:56 -07:00
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 11:12:14 -07:00
|
|
|
// Returns the set of all applications that define an android:backupAgent attribute
|
2009-07-15 14:18:26 -07:00
|
|
|
List<PackageInfo> allAgentPackages() {
|
2009-06-18 15:58:25 -07:00
|
|
|
// !!! TODO: cache this and regenerate only when necessary
|
2009-06-24 00:16:33 -07:00
|
|
|
int flags = PackageManager.GET_SIGNATURES;
|
|
|
|
List<PackageInfo> packages = mPackageManager.getInstalledPackages(flags);
|
|
|
|
int N = packages.size();
|
|
|
|
for (int a = N-1; a >= 0; a--) {
|
2009-08-13 15:13:03 -07:00
|
|
|
PackageInfo pkg = packages.get(a);
|
2009-09-16 10:57:21 -07:00
|
|
|
try {
|
|
|
|
ApplicationInfo app = pkg.applicationInfo;
|
|
|
|
if (((app.flags&ApplicationInfo.FLAG_ALLOW_BACKUP) == 0)
|
|
|
|
|| app.backupAgentName == null
|
|
|
|
|| (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA,
|
|
|
|
pkg.packageName) != PackageManager.PERMISSION_GRANTED)) {
|
|
|
|
packages.remove(a);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// we will need the shared library path, so look that up and store it here
|
|
|
|
app = mPackageManager.getApplicationInfo(pkg.packageName,
|
|
|
|
PackageManager.GET_SHARED_LIBRARY_FILES);
|
|
|
|
pkg.applicationInfo.sharedLibraryFiles = app.sharedLibraryFiles;
|
|
|
|
}
|
|
|
|
} catch (NameNotFoundException e) {
|
2009-06-24 00:16:33 -07:00
|
|
|
packages.remove(a);
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
return packages;
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
2009-06-16 18:25:46 -07:00
|
|
|
|
2009-05-06 16:13:56 -07:00
|
|
|
// Reset the given package's known backup participants. Unlike add/remove, the update
|
|
|
|
// action cannot be passed a null package name.
|
|
|
|
void updatePackageParticipantsLocked(String packageName) {
|
|
|
|
if (packageName == null) {
|
|
|
|
Log.e(TAG, "updatePackageParticipants called with null package name");
|
|
|
|
return;
|
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "updatePackageParticipantsLocked: " + packageName);
|
2009-05-06 16:13:56 -07:00
|
|
|
|
|
|
|
// brute force but small code size
|
2009-06-24 00:16:33 -07:00
|
|
|
List<PackageInfo> allApps = allAgentPackages();
|
2009-05-14 11:12:14 -07:00
|
|
|
removePackageParticipantsLockedInner(packageName, allApps);
|
|
|
|
addPackageParticipantsLockedInner(packageName, allApps);
|
2009-05-06 16:13:56 -07:00
|
|
|
}
|
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
// Called from the backup thread: record that the given app has been successfully
|
|
|
|
// backed up at least once
|
|
|
|
void logBackupComplete(String packageName) {
|
2009-09-30 11:20:45 -07:00
|
|
|
if (packageName.equals(PACKAGE_MANAGER_SENTINEL)) return;
|
|
|
|
|
|
|
|
synchronized (mEverStoredApps) {
|
|
|
|
if (!mEverStoredApps.add(packageName)) return;
|
|
|
|
|
|
|
|
RandomAccessFile out = null;
|
|
|
|
try {
|
|
|
|
out = new RandomAccessFile(mEverStored, "rws");
|
|
|
|
out.seek(out.length());
|
|
|
|
out.writeUTF(packageName);
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.e(TAG, "Can't log backup of " + packageName + " to " + mEverStored);
|
|
|
|
} finally {
|
|
|
|
try { if (out != null) out.close(); } catch (IOException e) {}
|
2009-07-15 14:18:26 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-15 16:45:50 -07:00
|
|
|
// Remove our awareness of having ever backed up the given package
|
|
|
|
void removeEverBackedUp(String packageName) {
|
2009-09-30 11:20:45 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Removing backed-up knowledge of " + packageName + ", new set:");
|
|
|
|
|
|
|
|
synchronized (mEverStoredApps) {
|
|
|
|
// Rewrite the file and rename to overwrite. If we reboot in the middle,
|
|
|
|
// we'll recognize on initialization time that the package no longer
|
|
|
|
// exists and fix it up then.
|
|
|
|
File tempKnownFile = new File(mBaseStateDir, "processed.new");
|
|
|
|
RandomAccessFile known = null;
|
|
|
|
try {
|
|
|
|
known = new RandomAccessFile(tempKnownFile, "rws");
|
|
|
|
mEverStoredApps.remove(packageName);
|
|
|
|
for (String s : mEverStoredApps) {
|
|
|
|
known.writeUTF(s);
|
|
|
|
if (DEBUG) Log.v(TAG, " " + s);
|
2009-07-15 16:45:50 -07:00
|
|
|
}
|
2009-09-30 11:20:45 -07:00
|
|
|
known.close();
|
|
|
|
known = null;
|
|
|
|
if (!tempKnownFile.renameTo(mEverStored)) {
|
|
|
|
throw new IOException("Can't rename " + tempKnownFile + " to " + mEverStored);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
// Bad: we couldn't create the new copy. For safety's sake we
|
|
|
|
// abandon the whole process and remove all what's-backed-up
|
|
|
|
// state entirely, meaning we'll force a backup pass for every
|
|
|
|
// participant on the next boot or [re]install.
|
|
|
|
Log.w(TAG, "Error rewriting " + mEverStored, e);
|
|
|
|
mEverStoredApps.clear();
|
|
|
|
tempKnownFile.delete();
|
|
|
|
mEverStored.delete();
|
|
|
|
} finally {
|
|
|
|
try { if (known != null) known.close(); } catch (IOException e) {}
|
2009-07-15 16:45:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-17 02:30:10 -07:00
|
|
|
// Return the given transport
|
2009-06-26 21:07:13 -07:00
|
|
|
private IBackupTransport getTransport(String transportName) {
|
|
|
|
synchronized (mTransports) {
|
|
|
|
IBackupTransport transport = mTransports.get(transportName);
|
|
|
|
if (transport == null) {
|
|
|
|
Log.w(TAG, "Requested unavailable transport: " + transportName);
|
|
|
|
}
|
|
|
|
return transport;
|
2009-06-07 19:33:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-09 20:45:02 -07:00
|
|
|
// fire off a backup agent, blocking until it attaches or times out
|
|
|
|
IBackupAgent bindToAgentSynchronous(ApplicationInfo app, int mode) {
|
|
|
|
IBackupAgent agent = null;
|
|
|
|
synchronized(mAgentConnectLock) {
|
|
|
|
mConnecting = true;
|
|
|
|
mConnectedAgent = null;
|
|
|
|
try {
|
|
|
|
if (mActivityManager.bindBackupAgent(app, mode)) {
|
|
|
|
Log.d(TAG, "awaiting agent for " + app);
|
|
|
|
|
|
|
|
// success; wait for the agent to arrive
|
2009-06-10 15:49:30 -07:00
|
|
|
// only wait 10 seconds for the clear data to happen
|
|
|
|
long timeoutMark = System.currentTimeMillis() + TIMEOUT_INTERVAL;
|
|
|
|
while (mConnecting && mConnectedAgent == null
|
|
|
|
&& (System.currentTimeMillis() < timeoutMark)) {
|
2009-06-09 20:45:02 -07:00
|
|
|
try {
|
2009-06-10 15:49:30 -07:00
|
|
|
mAgentConnectLock.wait(5000);
|
2009-06-09 20:45:02 -07:00
|
|
|
} catch (InterruptedException e) {
|
2009-06-10 15:49:30 -07:00
|
|
|
// just bail
|
2009-06-09 20:45:02 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we timed out with no connect, abort and move on
|
|
|
|
if (mConnecting == true) {
|
|
|
|
Log.w(TAG, "Timeout waiting for agent " + app);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
agent = mConnectedAgent;
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return agent;
|
|
|
|
}
|
|
|
|
|
2009-06-10 15:49:30 -07:00
|
|
|
// clear an application's data, blocking until the operation completes or times out
|
|
|
|
void clearApplicationDataSynchronous(String packageName) {
|
2009-06-26 15:34:09 -07:00
|
|
|
// Don't wipe packages marked allowClearUserData=false
|
|
|
|
try {
|
|
|
|
PackageInfo info = mPackageManager.getPackageInfo(packageName, 0);
|
|
|
|
if ((info.applicationInfo.flags & ApplicationInfo.FLAG_ALLOW_CLEAR_USER_DATA) == 0) {
|
|
|
|
if (DEBUG) Log.i(TAG, "allowClearUserData=false so not wiping "
|
|
|
|
+ packageName);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (NameNotFoundException e) {
|
|
|
|
Log.w(TAG, "Tried to clear data for " + packageName + " but not found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-10 15:49:30 -07:00
|
|
|
ClearDataObserver observer = new ClearDataObserver();
|
|
|
|
|
|
|
|
synchronized(mClearDataLock) {
|
|
|
|
mClearingData = true;
|
2009-08-07 20:26:13 -07:00
|
|
|
/* This is causing some critical processes to be killed during setup.
|
|
|
|
Temporarily revert this change until we find a better solution.
|
2009-08-06 14:57:53 -07:00
|
|
|
try {
|
|
|
|
mActivityManager.clearApplicationUserData(packageName, observer);
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen because the activity manager is in this process
|
|
|
|
}
|
2009-08-07 20:26:13 -07:00
|
|
|
*/
|
|
|
|
mPackageManager.clearApplicationUserData(packageName, observer);
|
2009-06-10 15:49:30 -07:00
|
|
|
|
|
|
|
// only wait 10 seconds for the clear data to happen
|
|
|
|
long timeoutMark = System.currentTimeMillis() + TIMEOUT_INTERVAL;
|
|
|
|
while (mClearingData && (System.currentTimeMillis() < timeoutMark)) {
|
|
|
|
try {
|
|
|
|
mClearDataLock.wait(5000);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
// won't happen, but still.
|
|
|
|
mClearingData = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ClearDataObserver extends IPackageDataObserver.Stub {
|
2009-09-30 11:20:45 -07:00
|
|
|
public void onRemoveCompleted(String packageName, boolean succeeded) {
|
2009-06-10 15:49:30 -07:00
|
|
|
synchronized(mClearDataLock) {
|
|
|
|
mClearingData = false;
|
2009-06-16 11:02:01 -07:00
|
|
|
mClearDataLock.notifyAll();
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-02 16:11:00 -07:00
|
|
|
// ----- Back up a set of applications via a worker thread -----
|
|
|
|
|
|
|
|
class PerformBackupThread extends Thread {
|
|
|
|
private static final String TAG = "PerformBackupThread";
|
2009-06-16 18:25:46 -07:00
|
|
|
IBackupTransport mTransport;
|
2009-06-02 16:11:00 -07:00
|
|
|
ArrayList<BackupRequest> mQueue;
|
2009-06-25 16:03:14 -07:00
|
|
|
File mStateDir;
|
2009-06-12 12:55:53 -07:00
|
|
|
File mJournal;
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-16 18:25:46 -07:00
|
|
|
public PerformBackupThread(IBackupTransport transport, ArrayList<BackupRequest> queue,
|
2009-06-12 12:55:53 -07:00
|
|
|
File journal) {
|
2009-06-16 18:25:46 -07:00
|
|
|
mTransport = transport;
|
2009-06-02 16:11:00 -07:00
|
|
|
mQueue = queue;
|
2009-06-12 12:55:53 -07:00
|
|
|
mJournal = journal;
|
2009-06-25 16:03:14 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
mStateDir = new File(mBaseStateDir, transport.transportDirName());
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transport is local
|
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2009-09-22 11:14:17 -07:00
|
|
|
int status = BackupConstants.TRANSPORT_OK;
|
2009-07-27 12:20:13 -07:00
|
|
|
long startRealtime = SystemClock.elapsedRealtime();
|
2009-06-02 16:11:00 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Beginning backup of " + mQueue.size() + " targets");
|
|
|
|
|
2009-06-30 16:11:49 -07:00
|
|
|
// Backups run at background priority
|
|
|
|
Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
|
|
|
|
|
2009-06-02 16:11:00 -07:00
|
|
|
try {
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(BACKUP_START_EVENT, mTransport.transportDirName());
|
2009-09-21 17:04:05 -07:00
|
|
|
|
2009-09-30 11:20:45 -07:00
|
|
|
// If we haven't stored package manager metadata yet, we must init the transport.
|
|
|
|
File pmState = new File(mStateDir, PACKAGE_MANAGER_SENTINEL);
|
|
|
|
if (status == BackupConstants.TRANSPORT_OK && pmState.length() <= 0) {
|
|
|
|
Log.i(TAG, "Initializing (wiping) backup state and transport storage");
|
|
|
|
resetBackupState(mStateDir); // Just to make sure.
|
2009-09-21 17:04:05 -07:00
|
|
|
status = mTransport.initializeDevice();
|
2009-09-29 19:12:31 -07:00
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
EventLog.writeEvent(BACKUP_INITIALIZE_EVENT);
|
|
|
|
} else {
|
|
|
|
EventLog.writeEvent(BACKUP_TRANSPORT_FAILURE_EVENT, "(initialize)");
|
|
|
|
Log.e(TAG, "Transport error in initializeDevice()");
|
|
|
|
}
|
2009-09-21 17:04:05 -07:00
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
|
|
|
|
// The package manager doesn't have a proper <application> etc, but since
|
|
|
|
// it's running here in the system process we can just set up its agent
|
|
|
|
// directly and use a synthetic BackupRequest. We always run this pass
|
|
|
|
// because it's cheap and this way we guarantee that we don't get out of
|
|
|
|
// step even if we're selecting among various transports at run time.
|
2009-09-21 17:04:05 -07:00
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
PackageManagerBackupAgent pmAgent = new PackageManagerBackupAgent(
|
|
|
|
mPackageManager, allAgentPackages());
|
|
|
|
BackupRequest pmRequest = new BackupRequest(new ApplicationInfo(), false);
|
|
|
|
pmRequest.appInfo.packageName = PACKAGE_MANAGER_SENTINEL;
|
|
|
|
status = processOneBackup(pmRequest,
|
|
|
|
IBackupAgent.Stub.asInterface(pmAgent.onBind()), mTransport);
|
2009-09-21 10:12:59 -07:00
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
// Now run all the backups in our queue
|
|
|
|
status = doQueuedBackups(mTransport);
|
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
// Tell the transport to finish everything it has buffered
|
|
|
|
status = mTransport.finishBackup();
|
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
int millis = (int) (SystemClock.elapsedRealtime() - startRealtime);
|
|
|
|
EventLog.writeEvent(BACKUP_SUCCESS_EVENT, mQueue.size(), millis);
|
|
|
|
} else {
|
2009-09-29 19:12:31 -07:00
|
|
|
EventLog.writeEvent(BACKUP_TRANSPORT_FAILURE_EVENT, "(finish)");
|
2009-09-21 17:04:05 -07:00
|
|
|
Log.e(TAG, "Transport error in finishBackup()");
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
}
|
2009-06-12 12:55:53 -07:00
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (status == BackupConstants.TRANSPORT_NOT_INITIALIZED) {
|
|
|
|
// The backend reports that our dataset has been wiped. We need to
|
|
|
|
// reset all of our bookkeeping and instead run a new backup pass for
|
2009-09-30 11:20:45 -07:00
|
|
|
// everything. This must come after mBackupOrRestoreInProgress is cleared.
|
2009-09-21 17:04:05 -07:00
|
|
|
EventLog.writeEvent(BACKUP_RESET_EVENT, mTransport.transportDirName());
|
|
|
|
resetBackupState(mStateDir);
|
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Error in backup thread", e);
|
2009-09-22 11:14:17 -07:00
|
|
|
status = BackupConstants.TRANSPORT_ERROR;
|
2009-07-27 12:20:13 -07:00
|
|
|
} finally {
|
2009-09-22 11:14:17 -07:00
|
|
|
// If things went wrong, we need to re-stage the apps we had expected
|
|
|
|
// to be backing up in this pass. This journals the package names in
|
|
|
|
// the current active pending-backup file, not in the we are holding
|
|
|
|
// here in mJournal.
|
|
|
|
if (status != BackupConstants.TRANSPORT_OK) {
|
|
|
|
Log.w(TAG, "Backup pass unsuccessful, restaging");
|
|
|
|
for (BackupRequest req : mQueue) {
|
2009-09-30 11:20:45 -07:00
|
|
|
dataChanged(req.appInfo.packageName);
|
2009-09-22 11:14:17 -07:00
|
|
|
}
|
2009-09-24 18:01:46 -07:00
|
|
|
|
|
|
|
// We also want to reset the backup schedule based on whatever
|
|
|
|
// the transport suggests by way of retry/backoff time.
|
|
|
|
try {
|
|
|
|
startBackupAlarmsLocked(mTransport.requestBackupTime());
|
|
|
|
} catch (RemoteException e) { /* cannot happen */ }
|
2009-09-22 11:14:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Either backup was successful, in which case we of course do not need
|
|
|
|
// this pass's journal any more; or it failed, in which case we just
|
|
|
|
// re-enqueued all of these packages in the current active journal.
|
|
|
|
// Either way, we no longer need this pass's journal.
|
2009-09-30 11:20:45 -07:00
|
|
|
if (mJournal != null && !mJournal.delete()) {
|
2009-09-22 11:14:17 -07:00
|
|
|
Log.e(TAG, "Unable to remove backup journal file " + mJournal);
|
|
|
|
}
|
|
|
|
|
2009-09-24 18:01:46 -07:00
|
|
|
// Only once we're entirely finished do we indicate our completion
|
|
|
|
// and release the wakelock
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mBackupOrRestoreInProgress = false;
|
|
|
|
}
|
2009-09-30 11:20:45 -07:00
|
|
|
|
|
|
|
if (status == BackupConstants.TRANSPORT_NOT_INITIALIZED) {
|
|
|
|
// This must come after mBackupOrRestoreInProgress is cleared.
|
|
|
|
backupNow();
|
|
|
|
}
|
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
mWakelock.release();
|
2009-06-12 12:55:53 -07:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
private int doQueuedBackups(IBackupTransport transport) {
|
2009-06-02 16:11:00 -07:00
|
|
|
for (BackupRequest request : mQueue) {
|
2009-06-09 20:45:02 -07:00
|
|
|
Log.d(TAG, "starting agent for backup of " + request);
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-08-13 15:13:03 -07:00
|
|
|
// Don't run backup, even if requested, if the target app does not have
|
|
|
|
// the requisite permission
|
|
|
|
if (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA,
|
|
|
|
request.appInfo.packageName) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
Log.w(TAG, "Skipping backup of unprivileged package "
|
|
|
|
+ request.appInfo.packageName);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-06-02 16:11:00 -07:00
|
|
|
IBackupAgent agent = null;
|
|
|
|
int mode = (request.fullBackup)
|
|
|
|
? IApplicationThread.BACKUP_MODE_FULL
|
|
|
|
: IApplicationThread.BACKUP_MODE_INCREMENTAL;
|
|
|
|
try {
|
2009-06-09 20:45:02 -07:00
|
|
|
agent = bindToAgentSynchronous(request.appInfo, mode);
|
|
|
|
if (agent != null) {
|
2009-09-21 17:04:05 -07:00
|
|
|
int result = processOneBackup(request, agent, transport);
|
|
|
|
if (result != BackupConstants.TRANSPORT_OK) return result;
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
|
|
|
} catch (SecurityException ex) {
|
|
|
|
// Try for the next one.
|
2009-06-10 15:49:30 -07:00
|
|
|
Log.d(TAG, "error in bind/backup", ex);
|
2009-09-21 17:04:05 -07:00
|
|
|
} finally {
|
|
|
|
try { // unbind even on timeout, just in case
|
|
|
|
mActivityManager.unbindBackupAgent(request.appInfo);
|
|
|
|
} catch (RemoteException e) {}
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
|
|
|
}
|
2009-09-21 17:04:05 -07:00
|
|
|
|
|
|
|
return BackupConstants.TRANSPORT_OK;
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
private int processOneBackup(BackupRequest request, IBackupAgent agent,
|
|
|
|
IBackupTransport transport) {
|
2009-06-10 15:49:30 -07:00
|
|
|
final String packageName = request.appInfo.packageName;
|
2009-09-21 17:04:05 -07:00
|
|
|
if (DEBUG) Log.d(TAG, "processOneBackup doBackup() on " + packageName);
|
2009-07-27 12:20:13 -07:00
|
|
|
|
|
|
|
File savedStateName = new File(mStateDir, packageName);
|
|
|
|
File backupDataName = new File(mDataDir, packageName + ".data");
|
|
|
|
File newStateName = new File(mStateDir, packageName + ".new");
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
ParcelFileDescriptor savedState = null;
|
|
|
|
ParcelFileDescriptor backupData = null;
|
|
|
|
ParcelFileDescriptor newState = null;
|
|
|
|
|
|
|
|
PackageInfo packInfo;
|
2009-06-10 15:49:30 -07:00
|
|
|
try {
|
|
|
|
// Look up the package info & signatures. This is first so that if it
|
|
|
|
// throws an exception, there's no file setup yet that would need to
|
|
|
|
// be unraveled.
|
2009-06-18 18:35:32 -07:00
|
|
|
if (packageName.equals(PACKAGE_MANAGER_SENTINEL)) {
|
|
|
|
// The metadata 'package' is synthetic
|
|
|
|
packInfo = new PackageInfo();
|
|
|
|
packInfo.packageName = packageName;
|
|
|
|
} else {
|
|
|
|
packInfo = mPackageManager.getPackageInfo(packageName,
|
2009-06-10 15:49:30 -07:00
|
|
|
PackageManager.GET_SIGNATURES);
|
2009-06-18 18:35:32 -07:00
|
|
|
}
|
2009-06-10 15:49:30 -07:00
|
|
|
|
|
|
|
// In a full backup, we pass a null ParcelFileDescriptor as
|
|
|
|
// the saved-state "file"
|
2009-07-27 12:20:13 -07:00
|
|
|
if (!request.fullBackup) {
|
|
|
|
savedState = ParcelFileDescriptor.open(savedStateName,
|
2009-06-10 15:49:30 -07:00
|
|
|
ParcelFileDescriptor.MODE_READ_ONLY |
|
2009-07-27 12:20:13 -07:00
|
|
|
ParcelFileDescriptor.MODE_CREATE); // Make an empty file if necessary
|
|
|
|
}
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
backupData = ParcelFileDescriptor.open(backupDataName,
|
|
|
|
ParcelFileDescriptor.MODE_READ_WRITE |
|
|
|
|
ParcelFileDescriptor.MODE_CREATE |
|
|
|
|
ParcelFileDescriptor.MODE_TRUNCATE);
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
newState = ParcelFileDescriptor.open(newStateName,
|
|
|
|
ParcelFileDescriptor.MODE_READ_WRITE |
|
|
|
|
ParcelFileDescriptor.MODE_CREATE |
|
|
|
|
ParcelFileDescriptor.MODE_TRUNCATE);
|
2009-06-10 15:49:30 -07:00
|
|
|
|
|
|
|
// Run the target's backup pass
|
2009-07-27 12:20:13 -07:00
|
|
|
agent.doBackup(savedState, backupData, newState);
|
|
|
|
logBackupComplete(packageName);
|
|
|
|
if (DEBUG) Log.v(TAG, "doBackup() success");
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Error backing up " + packageName, e);
|
|
|
|
EventLog.writeEvent(BACKUP_AGENT_FAILURE_EVENT, packageName, e.toString());
|
|
|
|
backupDataName.delete();
|
|
|
|
newStateName.delete();
|
2009-09-21 10:12:59 -07:00
|
|
|
return BackupConstants.TRANSPORT_ERROR;
|
2009-07-27 12:20:13 -07:00
|
|
|
} finally {
|
|
|
|
try { if (savedState != null) savedState.close(); } catch (IOException e) {}
|
|
|
|
try { if (backupData != null) backupData.close(); } catch (IOException e) {}
|
|
|
|
try { if (newState != null) newState.close(); } catch (IOException e) {}
|
|
|
|
savedState = backupData = newState = null;
|
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
// Now propagate the newly-backed-up data to the transport
|
2009-09-21 17:04:05 -07:00
|
|
|
int result = BackupConstants.TRANSPORT_OK;
|
2009-07-27 12:20:13 -07:00
|
|
|
try {
|
|
|
|
int size = (int) backupDataName.length();
|
|
|
|
if (size > 0) {
|
2009-09-21 17:04:05 -07:00
|
|
|
if (result == BackupConstants.TRANSPORT_OK) {
|
|
|
|
backupData = ParcelFileDescriptor.open(backupDataName,
|
|
|
|
ParcelFileDescriptor.MODE_READ_ONLY);
|
|
|
|
result = transport.performBackup(packInfo, backupData);
|
|
|
|
}
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-09-17 16:17:55 -07:00
|
|
|
// TODO - We call finishBackup() for each application backed up, because
|
|
|
|
// we need to know now whether it succeeded or failed. Instead, we should
|
|
|
|
// hold off on finishBackup() until the end, which implies holding off on
|
|
|
|
// renaming *all* the output state files (see below) until that happens.
|
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (result == BackupConstants.TRANSPORT_OK) {
|
|
|
|
result = transport.finishBackup();
|
2009-09-17 16:17:55 -07:00
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
} else {
|
|
|
|
if (DEBUG) Log.i(TAG, "no backup data written; not calling transport");
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
2009-07-27 12:20:13 -07:00
|
|
|
|
|
|
|
// After successful transport, delete the now-stale data
|
|
|
|
// and juggle the files so that next time we supply the agent
|
|
|
|
// with the new state file it just created.
|
2009-09-21 17:04:05 -07:00
|
|
|
if (result == BackupConstants.TRANSPORT_OK) {
|
|
|
|
backupDataName.delete();
|
|
|
|
newStateName.renameTo(savedStateName);
|
|
|
|
EventLog.writeEvent(BACKUP_PACKAGE_EVENT, packageName, size);
|
|
|
|
} else {
|
|
|
|
EventLog.writeEvent(BACKUP_TRANSPORT_FAILURE_EVENT, packageName);
|
|
|
|
}
|
2009-06-10 15:49:30 -07:00
|
|
|
} catch (Exception e) {
|
2009-07-27 12:20:13 -07:00
|
|
|
Log.e(TAG, "Transport error backing up " + packageName, e);
|
|
|
|
EventLog.writeEvent(BACKUP_TRANSPORT_FAILURE_EVENT, packageName);
|
2009-09-21 17:04:05 -07:00
|
|
|
result = BackupConstants.TRANSPORT_ERROR;
|
2009-07-27 12:20:13 -07:00
|
|
|
} finally {
|
|
|
|
try { if (backupData != null) backupData.close(); } catch (IOException e) {}
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
2009-09-21 10:12:59 -07:00
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
return result;
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Restore handling -----
|
|
|
|
|
2009-06-18 18:35:32 -07:00
|
|
|
private boolean signaturesMatch(Signature[] storedSigs, Signature[] deviceSigs) {
|
2009-06-18 19:41:36 -07:00
|
|
|
// Allow unsigned apps, but not signed on one device and unsigned on the other
|
|
|
|
// !!! TODO: is this the right policy?
|
2009-06-19 14:14:22 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "signaturesMatch(): stored=" + storedSigs
|
|
|
|
+ " device=" + deviceSigs);
|
2009-06-18 19:41:36 -07:00
|
|
|
if ((storedSigs == null || storedSigs.length == 0)
|
|
|
|
&& (deviceSigs == null || deviceSigs.length == 0)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (storedSigs == null || deviceSigs == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-18 18:35:32 -07:00
|
|
|
// !!! TODO: this demands that every stored signature match one
|
|
|
|
// that is present on device, and does not demand the converse.
|
|
|
|
// Is this this right policy?
|
|
|
|
int nStored = storedSigs.length;
|
|
|
|
int nDevice = deviceSigs.length;
|
|
|
|
|
|
|
|
for (int i=0; i < nStored; i++) {
|
|
|
|
boolean match = false;
|
|
|
|
for (int j=0; j < nDevice; j++) {
|
|
|
|
if (storedSigs[i].equals(deviceSigs[j])) {
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!match) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-09 20:45:02 -07:00
|
|
|
class PerformRestoreThread extends Thread {
|
|
|
|
private IBackupTransport mTransport;
|
2009-06-25 18:03:43 -07:00
|
|
|
private IRestoreObserver mObserver;
|
2009-06-26 13:20:02 -07:00
|
|
|
private long mToken;
|
2009-06-25 16:03:14 -07:00
|
|
|
private File mStateDir;
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-06-22 16:44:51 -07:00
|
|
|
class RestoreRequest {
|
|
|
|
public PackageInfo app;
|
|
|
|
public int storedAppVersion;
|
|
|
|
|
|
|
|
RestoreRequest(PackageInfo _app, int _version) {
|
|
|
|
app = _app;
|
|
|
|
storedAppVersion = _version;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-25 18:03:43 -07:00
|
|
|
PerformRestoreThread(IBackupTransport transport, IRestoreObserver observer,
|
2009-06-26 13:20:02 -07:00
|
|
|
long restoreSetToken) {
|
2009-06-09 20:45:02 -07:00
|
|
|
mTransport = transport;
|
2009-07-01 21:04:03 -04:00
|
|
|
Log.d(TAG, "PerformRestoreThread mObserver=" + mObserver);
|
2009-06-25 18:03:43 -07:00
|
|
|
mObserver = observer;
|
2009-06-10 20:23:25 -07:00
|
|
|
mToken = restoreSetToken;
|
2009-06-25 16:03:14 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
mStateDir = new File(mBaseStateDir, transport.transportDirName());
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transport is local
|
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-09 20:45:02 -07:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2009-07-27 12:20:13 -07:00
|
|
|
long startRealtime = SystemClock.elapsedRealtime();
|
2009-07-01 21:04:03 -04:00
|
|
|
if (DEBUG) Log.v(TAG, "Beginning restore process mTransport=" + mTransport
|
2009-08-10 15:43:36 -07:00
|
|
|
+ " mObserver=" + mObserver + " mToken=" + Long.toHexString(mToken));
|
2009-06-09 20:45:02 -07:00
|
|
|
/**
|
|
|
|
* Restore sequence:
|
|
|
|
*
|
2009-06-24 00:16:33 -07:00
|
|
|
* 1. get the restore set description for our identity
|
|
|
|
* 2. for each app in the restore set:
|
2009-07-27 12:20:13 -07:00
|
|
|
* 2.a. if it's restorable on this device, add it to the restore queue
|
2009-06-24 00:16:33 -07:00
|
|
|
* 3. for each app in the restore queue:
|
|
|
|
* 3.a. clear the app data
|
|
|
|
* 3.b. get the restore data for the app from the transport
|
|
|
|
* 3.c. launch the backup agent for the app
|
|
|
|
* 3.d. agent.doRestore() with the data from the server
|
|
|
|
* 3.e. unbind the agent [and kill the app?]
|
|
|
|
* 4. shut down the transport
|
2009-07-27 12:20:13 -07:00
|
|
|
*
|
|
|
|
* On errors, we try our best to recover and move on to the next
|
|
|
|
* application, but if necessary we abort the whole operation --
|
|
|
|
* the user is waiting, after al.
|
2009-06-09 20:45:02 -07:00
|
|
|
*/
|
|
|
|
|
2009-06-25 18:03:43 -07:00
|
|
|
int error = -1; // assume error
|
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
// build the set of apps to restore
|
2009-06-09 20:45:02 -07:00
|
|
|
try {
|
2009-07-27 12:20:13 -07:00
|
|
|
// TODO: Log this before getAvailableRestoreSets, somehow
|
2009-09-22 10:44:10 -07:00
|
|
|
EventLog.writeEvent(RESTORE_START_EVENT, mTransport.transportDirName(), mToken);
|
2009-06-24 00:16:33 -07:00
|
|
|
|
|
|
|
// Get the list of all packages which have backup enabled.
|
|
|
|
// (Include the Package Manager metadata pseudo-package first.)
|
|
|
|
ArrayList<PackageInfo> restorePackages = new ArrayList<PackageInfo>();
|
|
|
|
PackageInfo omPackage = new PackageInfo();
|
|
|
|
omPackage.packageName = PACKAGE_MANAGER_SENTINEL;
|
|
|
|
restorePackages.add(omPackage);
|
|
|
|
|
|
|
|
List<PackageInfo> agentPackages = allAgentPackages();
|
|
|
|
restorePackages.addAll(agentPackages);
|
|
|
|
|
2009-06-25 18:03:43 -07:00
|
|
|
// let the observer know that we're running
|
|
|
|
if (mObserver != null) {
|
|
|
|
try {
|
|
|
|
// !!! TODO: get an actual count from the transport after
|
|
|
|
// its startRestore() runs?
|
|
|
|
mObserver.restoreStarting(restorePackages.size());
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
Log.d(TAG, "Restore observer died at restoreStarting");
|
|
|
|
mObserver = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (mTransport.startRestore(mToken, restorePackages.toArray(new PackageInfo[0])) !=
|
|
|
|
BackupConstants.TRANSPORT_OK) {
|
2009-06-24 00:16:33 -07:00
|
|
|
Log.e(TAG, "Error starting restore operation");
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_TRANSPORT_FAILURE_EVENT);
|
2009-06-24 00:16:33 -07:00
|
|
|
return;
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
String packageName = mTransport.nextRestorePackage();
|
|
|
|
if (packageName == null) {
|
|
|
|
Log.e(TAG, "Error getting first restore package");
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_TRANSPORT_FAILURE_EVENT);
|
2009-06-24 00:16:33 -07:00
|
|
|
return;
|
|
|
|
} else if (packageName.equals("")) {
|
|
|
|
Log.i(TAG, "No restore data available");
|
2009-07-27 12:20:13 -07:00
|
|
|
int millis = (int) (SystemClock.elapsedRealtime() - startRealtime);
|
|
|
|
EventLog.writeEvent(RESTORE_SUCCESS_EVENT, 0, millis);
|
2009-06-24 00:16:33 -07:00
|
|
|
return;
|
|
|
|
} else if (!packageName.equals(PACKAGE_MANAGER_SENTINEL)) {
|
|
|
|
Log.e(TAG, "Expected restore data for \"" + PACKAGE_MANAGER_SENTINEL
|
|
|
|
+ "\", found only \"" + packageName + "\"");
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, PACKAGE_MANAGER_SENTINEL,
|
|
|
|
"Package manager data missing");
|
2009-06-24 00:16:33 -07:00
|
|
|
return;
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
// Pull the Package Manager metadata from the restore set first
|
|
|
|
PackageManagerBackupAgent pmAgent = new PackageManagerBackupAgent(
|
|
|
|
mPackageManager, agentPackages);
|
|
|
|
processOneRestore(omPackage, 0, IBackupAgent.Stub.asInterface(pmAgent.onBind()));
|
|
|
|
|
2009-07-02 14:28:47 -07:00
|
|
|
// Verify that the backup set includes metadata. If not, we can't do
|
|
|
|
// signature/version verification etc, so we simply do not proceed with
|
|
|
|
// the restore operation.
|
2009-07-07 14:23:07 -07:00
|
|
|
if (!pmAgent.hasMetadata()) {
|
2009-07-27 12:20:13 -07:00
|
|
|
Log.e(TAG, "No restore metadata available, so not restoring settings");
|
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, PACKAGE_MANAGER_SENTINEL,
|
|
|
|
"Package manager restore metadata missing");
|
2009-07-02 14:28:47 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-25 18:03:43 -07:00
|
|
|
int count = 0;
|
2009-06-24 00:16:33 -07:00
|
|
|
for (;;) {
|
|
|
|
packageName = mTransport.nextRestorePackage();
|
2009-07-27 12:20:13 -07:00
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
if (packageName == null) {
|
|
|
|
Log.e(TAG, "Error getting next restore package");
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_TRANSPORT_FAILURE_EVENT);
|
2009-06-24 00:16:33 -07:00
|
|
|
return;
|
|
|
|
} else if (packageName.equals("")) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-06-25 18:03:43 -07:00
|
|
|
if (mObserver != null) {
|
|
|
|
try {
|
|
|
|
mObserver.onUpdate(count);
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
Log.d(TAG, "Restore observer died in onUpdate");
|
|
|
|
mObserver = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
Metadata metaInfo = pmAgent.getRestoredMetadata(packageName);
|
|
|
|
if (metaInfo == null) {
|
|
|
|
Log.e(TAG, "Missing metadata for " + packageName);
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName,
|
|
|
|
"Package metadata missing");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
PackageInfo packageInfo;
|
|
|
|
try {
|
|
|
|
int flags = PackageManager.GET_SIGNATURES;
|
|
|
|
packageInfo = mPackageManager.getPackageInfo(packageName, flags);
|
|
|
|
} catch (NameNotFoundException e) {
|
|
|
|
Log.e(TAG, "Invalid package restoring data", e);
|
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName,
|
|
|
|
"Package missing on device");
|
2009-06-24 00:16:33 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
if (metaInfo.versionCode > packageInfo.versionCode) {
|
2009-07-27 12:20:13 -07:00
|
|
|
String message = "Version " + metaInfo.versionCode
|
|
|
|
+ " > installed version " + packageInfo.versionCode;
|
|
|
|
Log.w(TAG, "Package " + packageName + ": " + message);
|
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName, message);
|
2009-06-24 00:16:33 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
if (!signaturesMatch(metaInfo.signatures, packageInfo.signatures)) {
|
|
|
|
Log.w(TAG, "Signature mismatch restoring " + packageName);
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName,
|
|
|
|
"Signature mismatch");
|
2009-06-24 00:16:33 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DEBUG) Log.v(TAG, "Package " + packageName
|
|
|
|
+ " restore version [" + metaInfo.versionCode
|
|
|
|
+ "] is compatible with installed version ["
|
|
|
|
+ packageInfo.versionCode + "]");
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-09-01 20:32:49 -07:00
|
|
|
// Now perform the actual restore: first clear the app's data
|
|
|
|
// if appropriate
|
2009-06-24 00:16:33 -07:00
|
|
|
clearApplicationDataSynchronous(packageName);
|
2009-09-01 20:32:49 -07:00
|
|
|
|
|
|
|
// Then set up and bind the agent (with a restricted Application object
|
|
|
|
// unless the application says otherwise)
|
|
|
|
boolean useRealApp = (packageInfo.applicationInfo.flags
|
|
|
|
& ApplicationInfo.FLAG_RESTORE_NEEDS_APPLICATION) != 0;
|
|
|
|
if (DEBUG && useRealApp) {
|
|
|
|
Log.v(TAG, "agent requires real Application subclass for restore");
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
IBackupAgent agent = bindToAgentSynchronous(
|
|
|
|
packageInfo.applicationInfo,
|
2009-09-01 20:32:49 -07:00
|
|
|
(useRealApp ? IApplicationThread.BACKUP_MODE_INCREMENTAL
|
|
|
|
: IApplicationThread.BACKUP_MODE_RESTORE));
|
2009-06-24 00:16:33 -07:00
|
|
|
if (agent == null) {
|
|
|
|
Log.w(TAG, "Can't find backup agent for " + packageName);
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName,
|
|
|
|
"Restore agent missing");
|
2009-06-24 00:16:33 -07:00
|
|
|
continue;
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
|
|
|
|
2009-09-01 20:32:49 -07:00
|
|
|
// And then finally run the restore on this agent
|
2009-06-24 00:16:33 -07:00
|
|
|
try {
|
|
|
|
processOneRestore(packageInfo, metaInfo.versionCode, agent);
|
2009-07-27 12:20:13 -07:00
|
|
|
++count;
|
2009-06-24 00:16:33 -07:00
|
|
|
} finally {
|
2009-09-01 20:32:49 -07:00
|
|
|
// unbind and tidy up even on timeout or failure, just in case
|
2009-06-24 00:16:33 -07:00
|
|
|
mActivityManager.unbindBackupAgent(packageInfo.applicationInfo);
|
2009-09-01 20:32:49 -07:00
|
|
|
|
|
|
|
// The agent was probably running with a stub Application object,
|
|
|
|
// which isn't a valid run mode for the main app logic. Shut
|
|
|
|
// down the app so that next time it's launched, it gets the
|
|
|
|
// usual full initialization.
|
|
|
|
if ((packageInfo.applicationInfo.flags
|
|
|
|
& ApplicationInfo.FLAG_KILL_AFTER_RESTORE) != 0) {
|
|
|
|
if (DEBUG) Log.d(TAG, "Restore complete, killing host process of "
|
|
|
|
+ packageInfo.applicationInfo.processName);
|
|
|
|
mActivityManager.killApplicationProcess(
|
|
|
|
packageInfo.applicationInfo.processName,
|
|
|
|
packageInfo.applicationInfo.uid);
|
|
|
|
}
|
2009-06-24 00:16:33 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-25 18:03:43 -07:00
|
|
|
|
|
|
|
// if we get this far, report success to the observer
|
|
|
|
error = 0;
|
2009-07-27 12:20:13 -07:00
|
|
|
int millis = (int) (SystemClock.elapsedRealtime() - startRealtime);
|
|
|
|
EventLog.writeEvent(RESTORE_SUCCESS_EVENT, count, millis);
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Error in restore thread", e);
|
2009-06-24 00:16:33 -07:00
|
|
|
} finally {
|
2009-07-27 12:20:13 -07:00
|
|
|
if (DEBUG) Log.d(TAG, "finishing restore mObserver=" + mObserver);
|
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
try {
|
|
|
|
mTransport.finishRestore();
|
2009-06-02 16:11:00 -07:00
|
|
|
} catch (RemoteException e) {
|
2009-06-24 00:16:33 -07:00
|
|
|
Log.e(TAG, "Error finishing restore", e);
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
2009-06-25 18:03:43 -07:00
|
|
|
|
|
|
|
if (mObserver != null) {
|
|
|
|
try {
|
|
|
|
mObserver.restoreFinished(error);
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
Log.d(TAG, "Restore observer died at restoreFinished");
|
|
|
|
}
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
|
|
|
|
// done; we can finally release the wakelock
|
2009-09-24 18:01:46 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mBackupOrRestoreInProgress = false;
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.release();
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-06-24 00:16:33 -07:00
|
|
|
// Do the guts of a restore of one application, using mTransport.getRestoreData().
|
|
|
|
void processOneRestore(PackageInfo app, int appVersionCode, IBackupAgent agent) {
|
2009-06-09 20:45:02 -07:00
|
|
|
// !!! TODO: actually run the restore through mTransport
|
2009-06-10 15:49:30 -07:00
|
|
|
final String packageName = app.packageName;
|
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
if (DEBUG) Log.d(TAG, "processOneRestore packageName=" + packageName);
|
2009-07-01 21:04:03 -04:00
|
|
|
|
2009-08-13 15:13:03 -07:00
|
|
|
// Don't restore to unprivileged packages
|
|
|
|
if (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA,
|
|
|
|
packageName) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
Log.d(TAG, "Skipping restore of unprivileged package " + packageName);
|
|
|
|
}
|
|
|
|
|
2009-06-10 15:49:30 -07:00
|
|
|
// !!! TODO: get the dirs from the transport
|
|
|
|
File backupDataName = new File(mDataDir, packageName + ".restore");
|
2009-07-27 12:20:13 -07:00
|
|
|
File newStateName = new File(mStateDir, packageName + ".new");
|
|
|
|
File savedStateName = new File(mStateDir, packageName);
|
|
|
|
|
|
|
|
ParcelFileDescriptor backupData = null;
|
|
|
|
ParcelFileDescriptor newState = null;
|
|
|
|
|
2009-06-10 15:49:30 -07:00
|
|
|
try {
|
2009-07-27 12:20:13 -07:00
|
|
|
// Run the transport's restore pass
|
|
|
|
backupData = ParcelFileDescriptor.open(backupDataName,
|
2009-06-10 15:49:30 -07:00
|
|
|
ParcelFileDescriptor.MODE_READ_WRITE |
|
2009-07-27 12:20:13 -07:00
|
|
|
ParcelFileDescriptor.MODE_CREATE |
|
|
|
|
ParcelFileDescriptor.MODE_TRUNCATE);
|
2009-06-10 15:49:30 -07:00
|
|
|
|
2009-09-21 17:04:05 -07:00
|
|
|
if (mTransport.getRestoreData(backupData) != BackupConstants.TRANSPORT_OK) {
|
2009-07-27 12:20:13 -07:00
|
|
|
Log.e(TAG, "Error getting restore data for " + packageName);
|
|
|
|
EventLog.writeEvent(RESTORE_TRANSPORT_FAILURE_EVENT);
|
|
|
|
return;
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Okay, we have the data. Now have the agent do the restore.
|
2009-07-27 12:20:13 -07:00
|
|
|
backupData.close();
|
2009-06-10 15:49:30 -07:00
|
|
|
backupData = ParcelFileDescriptor.open(backupDataName,
|
|
|
|
ParcelFileDescriptor.MODE_READ_ONLY);
|
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
newState = ParcelFileDescriptor.open(newStateName,
|
|
|
|
ParcelFileDescriptor.MODE_READ_WRITE |
|
|
|
|
ParcelFileDescriptor.MODE_CREATE |
|
|
|
|
ParcelFileDescriptor.MODE_TRUNCATE);
|
|
|
|
|
|
|
|
agent.doRestore(backupData, appVersionCode, newState);
|
2009-06-10 15:49:30 -07:00
|
|
|
|
|
|
|
// if everything went okay, remember the recorded state now
|
2009-09-20 15:28:33 -07:00
|
|
|
//
|
|
|
|
// !!! TODO: the restored data should be migrated on the server
|
|
|
|
// side into the current dataset. In that case the new state file
|
|
|
|
// we just created would reflect the data already extant in the
|
|
|
|
// backend, so there'd be nothing more to do. Until that happens,
|
|
|
|
// however, we need to make sure that we record the data to the
|
|
|
|
// current backend dataset. (Yes, this means shipping the data over
|
|
|
|
// the wire in both directions. That's bad, but consistency comes
|
|
|
|
// first, then efficiency.) Once we introduce server-side data
|
|
|
|
// migration to the newly-restored device's dataset, we will change
|
|
|
|
// the following from a discard of the newly-written state to the
|
|
|
|
// "correct" operation of renaming into the canonical state blob.
|
|
|
|
newStateName.delete(); // TODO: remove; see above comment
|
|
|
|
//newStateName.renameTo(savedStateName); // TODO: replace with this
|
|
|
|
|
2009-07-27 12:20:13 -07:00
|
|
|
int size = (int) backupDataName.length();
|
|
|
|
EventLog.writeEvent(RESTORE_PACKAGE_EVENT, packageName, size);
|
2009-06-10 15:49:30 -07:00
|
|
|
} catch (Exception e) {
|
2009-07-27 12:20:13 -07:00
|
|
|
Log.e(TAG, "Error restoring data for " + packageName, e);
|
|
|
|
EventLog.writeEvent(RESTORE_AGENT_FAILURE_EVENT, packageName, e.toString());
|
|
|
|
|
2009-07-20 14:49:13 -07:00
|
|
|
// If the agent fails restore, it might have put the app's data
|
|
|
|
// into an incoherent state. For consistency we wipe its data
|
|
|
|
// again in this case before propagating the exception
|
|
|
|
clearApplicationDataSynchronous(packageName);
|
2009-07-24 16:37:43 -07:00
|
|
|
} finally {
|
|
|
|
backupDataName.delete();
|
2009-07-27 12:20:13 -07:00
|
|
|
try { if (backupData != null) backupData.close(); } catch (IOException e) {}
|
|
|
|
try { if (newState != null) newState.close(); } catch (IOException e) {}
|
|
|
|
backupData = newState = null;
|
2009-06-10 15:49:30 -07:00
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-02 11:17:03 -07:00
|
|
|
class PerformClearThread extends Thread {
|
|
|
|
IBackupTransport mTransport;
|
|
|
|
PackageInfo mPackage;
|
|
|
|
|
|
|
|
PerformClearThread(IBackupTransport transport, PackageInfo packageInfo) {
|
|
|
|
mTransport = transport;
|
|
|
|
mPackage = packageInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
// Clear the on-device backup state to ensure a full backup next time
|
|
|
|
File stateDir = new File(mBaseStateDir, mTransport.transportDirName());
|
|
|
|
File stateFile = new File(stateDir, mPackage.packageName);
|
|
|
|
stateFile.delete();
|
|
|
|
|
|
|
|
// Tell the transport to remove all the persistent storage for the app
|
2009-09-30 20:06:45 -07:00
|
|
|
// TODO - need to handle failures
|
2009-07-02 11:17:03 -07:00
|
|
|
mTransport.clearBackupData(mPackage);
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transport is local
|
|
|
|
} finally {
|
|
|
|
try {
|
2009-09-30 20:06:45 -07:00
|
|
|
// TODO - need to handle failures
|
2009-07-02 11:17:03 -07:00
|
|
|
mTransport.finishBackup();
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transport is local
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
|
|
|
|
// Last but not least, release the cpu
|
2009-09-27 15:16:44 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mBackupOrRestoreInProgress = false;
|
|
|
|
}
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.release();
|
2009-07-02 11:17:03 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
class PerformInitializeThread extends Thread {
|
|
|
|
HashSet<String> mQueue;
|
|
|
|
|
|
|
|
PerformInitializeThread(HashSet<String> transportNames) {
|
|
|
|
mQueue = transportNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
for (String transportName : mQueue) {
|
|
|
|
IBackupTransport transport = getTransport(transportName);
|
|
|
|
if (transport == null) {
|
|
|
|
Log.e(TAG, "Requested init for " + transportName + " but not found");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-09-29 19:12:31 -07:00
|
|
|
Log.i(TAG, "Initializing (wiping) backup transport storage: " + transportName);
|
|
|
|
EventLog.writeEvent(BACKUP_START_EVENT, transport.transportDirName());
|
|
|
|
long startRealtime = SystemClock.elapsedRealtime();
|
|
|
|
int status = transport.initializeDevice();
|
2009-09-21 19:36:51 -07:00
|
|
|
|
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
|
|
|
status = transport.finishBackup();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Okay, the wipe really happened. Clean up our local bookkeeping.
|
|
|
|
if (status == BackupConstants.TRANSPORT_OK) {
|
2009-09-29 19:12:31 -07:00
|
|
|
Log.i(TAG, "Device init successful");
|
|
|
|
int millis = (int) (SystemClock.elapsedRealtime() - startRealtime);
|
|
|
|
EventLog.writeEvent(BACKUP_INITIALIZE_EVENT);
|
|
|
|
resetBackupState(new File(mBaseStateDir, transport.transportDirName()));
|
|
|
|
EventLog.writeEvent(BACKUP_SUCCESS_EVENT, 0, millis);
|
2009-09-21 19:36:51 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
recordInitPendingLocked(false, transportName);
|
|
|
|
}
|
2009-09-29 19:12:31 -07:00
|
|
|
} else {
|
|
|
|
// If this didn't work, requeue this one and try again
|
|
|
|
// after a suitable interval
|
|
|
|
Log.e(TAG, "Transport error in initializeDevice()");
|
|
|
|
EventLog.writeEvent(BACKUP_TRANSPORT_FAILURE_EVENT, "(initialize)");
|
2009-09-21 19:36:51 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
recordInitPendingLocked(true, transportName);
|
|
|
|
}
|
|
|
|
// do this via another alarm to make sure of the wakelock states
|
|
|
|
long delay = transport.requestBackupTime();
|
|
|
|
if (DEBUG) Log.w(TAG, "init failed on "
|
|
|
|
+ transportName + " resched in " + delay);
|
|
|
|
mAlarmManager.set(AlarmManager.RTC_WAKEUP,
|
|
|
|
System.currentTimeMillis() + delay, mRunInitIntent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
// can't happen; the transports are local
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Unexpected error performing init", e);
|
|
|
|
} finally {
|
|
|
|
// Done; indicate that we're finished and release the wakelock
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
mInitInProgress = false;
|
|
|
|
}
|
|
|
|
mWakelock.release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-04-29 14:03:25 -07:00
|
|
|
// ----- IBackupManager binder interface -----
|
2009-06-09 20:45:02 -07:00
|
|
|
|
2009-09-30 11:20:45 -07:00
|
|
|
public void dataChanged(String packageName) {
|
2009-04-29 14:03:25 -07:00
|
|
|
// Record that we need a backup pass for the caller. Since multiple callers
|
|
|
|
// may share a uid, we need to note all candidates within that uid and schedule
|
|
|
|
// a backup pass for each of them.
|
2009-07-27 12:20:13 -07:00
|
|
|
EventLog.writeEvent(BACKUP_DATA_CHANGED_EVENT, packageName);
|
2009-05-06 18:06:21 -07:00
|
|
|
|
2009-06-16 17:16:42 -07:00
|
|
|
// If the caller does not hold the BACKUP permission, it can only request a
|
|
|
|
// backup of its own data.
|
|
|
|
HashSet<ApplicationInfo> targets;
|
2009-07-01 19:55:20 -07:00
|
|
|
if ((mContext.checkPermission(android.Manifest.permission.BACKUP, Binder.getCallingPid(),
|
2009-06-16 17:16:42 -07:00
|
|
|
Binder.getCallingUid())) == PackageManager.PERMISSION_DENIED) {
|
|
|
|
targets = mBackupParticipants.get(Binder.getCallingUid());
|
|
|
|
} else {
|
|
|
|
// a caller with full permission can ask to back up any participating app
|
|
|
|
// !!! TODO: allow backup of ANY app?
|
|
|
|
targets = new HashSet<ApplicationInfo>();
|
|
|
|
int N = mBackupParticipants.size();
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
HashSet<ApplicationInfo> s = mBackupParticipants.valueAt(i);
|
|
|
|
if (s != null) {
|
|
|
|
targets.addAll(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
if (targets != null) {
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
// Note that this client has made data changes that need to be backed up
|
2009-05-14 11:12:14 -07:00
|
|
|
for (ApplicationInfo app : targets) {
|
2009-04-30 11:36:21 -07:00
|
|
|
// validate the caller-supplied package name against the known set of
|
|
|
|
// packages associated with this uid
|
2009-05-14 11:12:14 -07:00
|
|
|
if (app.packageName.equals(packageName)) {
|
2009-05-13 01:41:44 -04:00
|
|
|
// Add the caller to the set of pending backups. If there is
|
|
|
|
// one already there, then overwrite it, but no harm done.
|
2009-05-14 11:12:14 -07:00
|
|
|
BackupRequest req = new BackupRequest(app, false);
|
2009-07-07 14:50:26 -07:00
|
|
|
if (mPendingBackups.put(app, req) == null) {
|
|
|
|
// Journal this request in case of crash. The put()
|
|
|
|
// operation returned null when this package was not already
|
|
|
|
// in the set; we want to avoid touching the disk redundantly.
|
|
|
|
writeToJournalLocked(packageName);
|
2009-04-29 14:03:25 -07:00
|
|
|
|
2009-07-07 16:36:02 -07:00
|
|
|
if (DEBUG) {
|
|
|
|
int numKeys = mPendingBackups.size();
|
|
|
|
Log.d(TAG, "Now awaiting backup for " + numKeys + " participants:");
|
|
|
|
for (BackupRequest b : mPendingBackups.values()) {
|
|
|
|
Log.d(TAG, " + " + b + " agent=" + b.appInfo.backupAgentName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
}
|
2009-06-09 20:45:02 -07:00
|
|
|
} else {
|
2009-07-15 14:18:26 -07:00
|
|
|
Log.w(TAG, "dataChanged but no participant pkg='" + packageName + "'"
|
|
|
|
+ " uid=" + Binder.getCallingUid());
|
2009-04-29 14:03:25 -07:00
|
|
|
}
|
|
|
|
}
|
2009-05-06 11:22:00 -07:00
|
|
|
|
2009-06-12 12:55:53 -07:00
|
|
|
private void writeToJournalLocked(String str) {
|
2009-09-30 11:20:45 -07:00
|
|
|
RandomAccessFile out = null;
|
|
|
|
try {
|
|
|
|
if (mJournal == null) mJournal = File.createTempFile("journal", null, mJournalDir);
|
|
|
|
out = new RandomAccessFile(mJournal, "rws");
|
|
|
|
out.seek(out.length());
|
|
|
|
out.writeUTF(str);
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.e(TAG, "Can't write " + str + " to backup journal", e);
|
|
|
|
mJournal = null;
|
|
|
|
} finally {
|
|
|
|
try { if (out != null) out.close(); } catch (IOException e) {}
|
2009-06-12 12:55:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-02 11:17:03 -07:00
|
|
|
// Clear the given package's backup data from the current transport
|
|
|
|
public void clearBackupData(String packageName) {
|
|
|
|
if (DEBUG) Log.v(TAG, "clearBackupData() of " + packageName);
|
|
|
|
PackageInfo info;
|
|
|
|
try {
|
|
|
|
info = mPackageManager.getPackageInfo(packageName, PackageManager.GET_SIGNATURES);
|
|
|
|
} catch (NameNotFoundException e) {
|
|
|
|
Log.d(TAG, "No such package '" + packageName + "' - not clearing backup data");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the caller does not hold the BACKUP permission, it can only request a
|
|
|
|
// wipe of its own backed-up data.
|
|
|
|
HashSet<ApplicationInfo> apps;
|
2009-07-02 12:14:05 -07:00
|
|
|
if ((mContext.checkPermission(android.Manifest.permission.BACKUP, Binder.getCallingPid(),
|
2009-07-02 11:17:03 -07:00
|
|
|
Binder.getCallingUid())) == PackageManager.PERMISSION_DENIED) {
|
|
|
|
apps = mBackupParticipants.get(Binder.getCallingUid());
|
|
|
|
} else {
|
|
|
|
// a caller with full permission can ask to back up any participating app
|
|
|
|
// !!! TODO: allow data-clear of ANY app?
|
|
|
|
if (DEBUG) Log.v(TAG, "Privileged caller, allowing clear of other apps");
|
|
|
|
apps = new HashSet<ApplicationInfo>();
|
|
|
|
int N = mBackupParticipants.size();
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
HashSet<ApplicationInfo> s = mBackupParticipants.valueAt(i);
|
|
|
|
if (s != null) {
|
|
|
|
apps.addAll(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now find the given package in the set of candidate apps
|
|
|
|
for (ApplicationInfo app : apps) {
|
|
|
|
if (app.packageName.equals(packageName)) {
|
|
|
|
if (DEBUG) Log.v(TAG, "Found the app - running clear process");
|
|
|
|
// found it; fire off the clear request
|
|
|
|
synchronized (mQueueLock) {
|
2009-08-05 18:21:40 -07:00
|
|
|
long oldId = Binder.clearCallingIdentity();
|
2009-07-02 17:40:45 -07:00
|
|
|
mWakelock.acquire();
|
2009-07-02 11:17:03 -07:00
|
|
|
Message msg = mBackupHandler.obtainMessage(MSG_RUN_CLEAR,
|
|
|
|
new ClearParams(getTransport(mCurrentTransport), info));
|
|
|
|
mBackupHandler.sendMessage(msg);
|
2009-08-05 18:21:40 -07:00
|
|
|
Binder.restoreCallingIdentity(oldId);
|
2009-07-02 11:17:03 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-15 18:07:25 -07:00
|
|
|
// Run a backup pass immediately for any applications that have declared
|
|
|
|
// that they have pending updates.
|
2009-09-30 11:20:45 -07:00
|
|
|
public void backupNow() {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "backupNow");
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-15 18:07:25 -07:00
|
|
|
if (DEBUG) Log.v(TAG, "Scheduling immediate backup pass");
|
2009-05-06 11:22:00 -07:00
|
|
|
synchronized (mQueueLock) {
|
2009-09-24 18:01:46 -07:00
|
|
|
// Because the alarms we are using can jitter, and we want an *immediate*
|
|
|
|
// backup pass to happen, we restart the timer beginning with "next time,"
|
|
|
|
// then manually fire the backup trigger intent ourselves.
|
|
|
|
startBackupAlarmsLocked(BACKUP_INTERVAL);
|
2009-07-02 17:40:45 -07:00
|
|
|
try {
|
|
|
|
mRunBackupIntent.send();
|
|
|
|
} catch (PendingIntent.CanceledException e) {
|
|
|
|
// should never happen
|
|
|
|
Log.e(TAG, "run-backup intent cancelled!");
|
|
|
|
}
|
2009-05-06 11:22:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-05-06 18:06:21 -07:00
|
|
|
|
2009-07-06 16:36:05 -07:00
|
|
|
// Enable/disable the backup service
|
2009-06-29 14:56:28 -07:00
|
|
|
public void setBackupEnabled(boolean enable) {
|
2009-07-02 17:40:45 -07:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
|
|
|
"setBackupEnabled");
|
2009-06-29 14:56:28 -07:00
|
|
|
|
2009-09-21 19:36:51 -07:00
|
|
|
Log.i(TAG, "Backup enabled => " + enable);
|
|
|
|
|
2009-06-29 14:56:28 -07:00
|
|
|
boolean wasEnabled = mEnabled;
|
|
|
|
synchronized (this) {
|
2009-07-01 19:55:20 -07:00
|
|
|
Settings.Secure.putInt(mContext.getContentResolver(),
|
|
|
|
Settings.Secure.BACKUP_ENABLED, enable ? 1 : 0);
|
2009-06-29 14:56:28 -07:00
|
|
|
mEnabled = enable;
|
|
|
|
}
|
|
|
|
|
2009-07-01 12:34:29 -07:00
|
|
|
synchronized (mQueueLock) {
|
2009-07-06 16:36:05 -07:00
|
|
|
if (enable && !wasEnabled && mProvisioned) {
|
2009-07-01 12:34:29 -07:00
|
|
|
// if we've just been enabled, start scheduling backup passes
|
2009-07-06 16:36:05 -07:00
|
|
|
startBackupAlarmsLocked(BACKUP_INTERVAL);
|
2009-07-01 12:34:29 -07:00
|
|
|
} else if (!enable) {
|
2009-07-02 17:40:45 -07:00
|
|
|
// No longer enabled, so stop running backups
|
2009-09-21 19:36:51 -07:00
|
|
|
if (DEBUG) Log.i(TAG, "Opting out of backup");
|
|
|
|
|
2009-07-02 17:40:45 -07:00
|
|
|
mAlarmManager.cancel(mRunBackupIntent);
|
2009-09-21 19:36:51 -07:00
|
|
|
|
|
|
|
// This also constitutes an opt-out, so we wipe any data for
|
|
|
|
// this device from the backend. We start that process with
|
|
|
|
// an alarm in order to guarantee wakelock states.
|
|
|
|
if (wasEnabled && mProvisioned) {
|
|
|
|
// NOTE: we currently flush every registered transport, not just
|
|
|
|
// the currently-active one.
|
|
|
|
HashSet<String> allTransports;
|
|
|
|
synchronized (mTransports) {
|
|
|
|
allTransports = new HashSet<String>(mTransports.keySet());
|
|
|
|
}
|
|
|
|
// build the set of transports for which we are posting an init
|
|
|
|
for (String transport : allTransports) {
|
|
|
|
recordInitPendingLocked(true, transport);
|
|
|
|
}
|
|
|
|
mAlarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(),
|
|
|
|
mRunInitIntent);
|
|
|
|
}
|
2009-06-29 14:56:28 -07:00
|
|
|
}
|
|
|
|
}
|
2009-07-01 12:34:29 -07:00
|
|
|
}
|
2009-06-29 14:56:28 -07:00
|
|
|
|
2009-07-06 16:36:05 -07:00
|
|
|
// Mark the backup service as having been provisioned
|
|
|
|
public void setBackupProvisioned(boolean available) {
|
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
|
|
|
"setBackupProvisioned");
|
|
|
|
|
|
|
|
boolean wasProvisioned = mProvisioned;
|
|
|
|
synchronized (this) {
|
|
|
|
Settings.Secure.putInt(mContext.getContentResolver(),
|
|
|
|
Settings.Secure.BACKUP_PROVISIONED, available ? 1 : 0);
|
|
|
|
mProvisioned = available;
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mQueueLock) {
|
|
|
|
if (available && !wasProvisioned && mEnabled) {
|
|
|
|
// we're now good to go, so start the backup alarms
|
|
|
|
startBackupAlarmsLocked(FIRST_BACKUP_INTERVAL);
|
|
|
|
} else if (!available) {
|
|
|
|
// No longer enabled, so stop running backups
|
|
|
|
Log.w(TAG, "Backup service no longer provisioned");
|
|
|
|
mAlarmManager.cancel(mRunBackupIntent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void startBackupAlarmsLocked(long delayBeforeFirstBackup) {
|
|
|
|
long when = System.currentTimeMillis() + delayBeforeFirstBackup;
|
|
|
|
mAlarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP, when,
|
|
|
|
BACKUP_INTERVAL, mRunBackupIntent);
|
2009-09-29 17:17:34 -07:00
|
|
|
mNextBackupPass = when;
|
2009-07-06 16:36:05 -07:00
|
|
|
}
|
|
|
|
|
2009-06-29 14:56:28 -07:00
|
|
|
// Report whether the backup mechanism is currently enabled
|
|
|
|
public boolean isBackupEnabled() {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "isBackupEnabled");
|
2009-06-29 14:56:28 -07:00
|
|
|
return mEnabled; // no need to synchronize just to read it
|
|
|
|
}
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
// Report the name of the currently active transport
|
|
|
|
public String getCurrentTransport() {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
2009-07-02 12:14:05 -07:00
|
|
|
"getCurrentTransport");
|
2009-07-01 21:04:03 -04:00
|
|
|
Log.v(TAG, "... getCurrentTransport() returning " + mCurrentTransport);
|
2009-06-26 21:07:13 -07:00
|
|
|
return mCurrentTransport;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Report all known, available backup transports
|
|
|
|
public String[] listAllTransports() {
|
2009-07-06 15:44:54 -07:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "listAllTransports");
|
2009-06-26 21:07:13 -07:00
|
|
|
|
|
|
|
String[] list = null;
|
|
|
|
ArrayList<String> known = new ArrayList<String>();
|
|
|
|
for (Map.Entry<String, IBackupTransport> entry : mTransports.entrySet()) {
|
|
|
|
if (entry.getValue() != null) {
|
|
|
|
known.add(entry.getKey());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (known.size() > 0) {
|
|
|
|
list = new String[known.size()];
|
|
|
|
known.toArray(list);
|
|
|
|
}
|
|
|
|
return list;
|
2009-06-15 18:07:25 -07:00
|
|
|
}
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
// Select which transport to use for the next backup operation. If the given
|
|
|
|
// name is not one of the available transports, no action is taken and the method
|
|
|
|
// returns null.
|
|
|
|
public String selectBackupTransport(String transport) {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "selectBackupTransport");
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
synchronized (mTransports) {
|
|
|
|
String prevTransport = null;
|
|
|
|
if (mTransports.get(transport) != null) {
|
|
|
|
prevTransport = mCurrentTransport;
|
|
|
|
mCurrentTransport = transport;
|
2009-07-01 19:55:20 -07:00
|
|
|
Settings.Secure.putString(mContext.getContentResolver(),
|
|
|
|
Settings.Secure.BACKUP_TRANSPORT, transport);
|
2009-06-26 21:07:13 -07:00
|
|
|
Log.v(TAG, "selectBackupTransport() set " + mCurrentTransport
|
|
|
|
+ " returning " + prevTransport);
|
|
|
|
} else {
|
|
|
|
Log.w(TAG, "Attempt to select unavailable transport " + transport);
|
|
|
|
}
|
|
|
|
return prevTransport;
|
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Callback: a requested backup agent has been instantiated. This should only
|
|
|
|
// be called from the Activity Manager.
|
2009-05-14 11:12:14 -07:00
|
|
|
public void agentConnected(String packageName, IBinder agentBinder) {
|
2009-06-02 16:11:00 -07:00
|
|
|
synchronized(mAgentConnectLock) {
|
|
|
|
if (Binder.getCallingUid() == Process.SYSTEM_UID) {
|
|
|
|
Log.d(TAG, "agentConnected pkg=" + packageName + " agent=" + agentBinder);
|
|
|
|
IBackupAgent agent = IBackupAgent.Stub.asInterface(agentBinder);
|
|
|
|
mConnectedAgent = agent;
|
|
|
|
mConnecting = false;
|
|
|
|
} else {
|
|
|
|
Log.w(TAG, "Non-system process uid=" + Binder.getCallingUid()
|
|
|
|
+ " claiming agent connected");
|
|
|
|
}
|
|
|
|
mAgentConnectLock.notifyAll();
|
|
|
|
}
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Callback: a backup agent has failed to come up, or has unexpectedly quit.
|
|
|
|
// If the agent failed to come up in the first place, the agentBinder argument
|
2009-06-02 16:11:00 -07:00
|
|
|
// will be null. This should only be called from the Activity Manager.
|
2009-05-14 11:12:14 -07:00
|
|
|
public void agentDisconnected(String packageName) {
|
|
|
|
// TODO: handle backup being interrupted
|
2009-06-02 16:11:00 -07:00
|
|
|
synchronized(mAgentConnectLock) {
|
|
|
|
if (Binder.getCallingUid() == Process.SYSTEM_UID) {
|
|
|
|
mConnectedAgent = null;
|
|
|
|
mConnecting = false;
|
|
|
|
} else {
|
|
|
|
Log.w(TAG, "Non-system process uid=" + Binder.getCallingUid()
|
|
|
|
+ " claiming agent disconnected");
|
|
|
|
}
|
|
|
|
mAgentConnectLock.notifyAll();
|
|
|
|
}
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
|
|
|
|
2009-06-07 19:33:20 -07:00
|
|
|
// Hand off a restore session
|
2009-06-26 21:07:13 -07:00
|
|
|
public IRestoreSession beginRestoreSession(String transport) {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "beginRestoreSession");
|
2009-06-16 11:02:01 -07:00
|
|
|
|
|
|
|
synchronized(this) {
|
|
|
|
if (mActiveRestoreSession != null) {
|
|
|
|
Log.d(TAG, "Restore session requested but one already active");
|
|
|
|
return null;
|
|
|
|
}
|
2009-06-26 21:07:13 -07:00
|
|
|
mActiveRestoreSession = new RestoreSession(transport);
|
2009-06-16 11:02:01 -07:00
|
|
|
}
|
|
|
|
return mActiveRestoreSession;
|
2009-06-07 19:33:20 -07:00
|
|
|
}
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-06-08 15:24:01 -07:00
|
|
|
// ----- Restore session -----
|
|
|
|
|
|
|
|
class RestoreSession extends IRestoreSession.Stub {
|
2009-06-16 11:02:01 -07:00
|
|
|
private static final String TAG = "RestoreSession";
|
|
|
|
|
2009-06-08 15:24:01 -07:00
|
|
|
private IBackupTransport mRestoreTransport = null;
|
|
|
|
RestoreSet[] mRestoreSets = null;
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
RestoreSession(String transport) {
|
|
|
|
mRestoreTransport = getTransport(transport);
|
2009-06-08 15:24:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- Binder interface ---
|
2009-07-29 12:57:16 -07:00
|
|
|
public synchronized RestoreSet[] getAvailableRestoreSets() {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
2009-06-10 20:23:25 -07:00
|
|
|
"getAvailableRestoreSets");
|
|
|
|
|
2009-06-16 11:02:01 -07:00
|
|
|
try {
|
2009-07-13 15:17:13 -07:00
|
|
|
if (mRestoreTransport == null) {
|
|
|
|
Log.w(TAG, "Null transport getting restore sets");
|
2009-07-29 12:57:16 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (mRestoreSets == null) { // valid transport; do the one-time fetch
|
2009-06-08 15:24:01 -07:00
|
|
|
mRestoreSets = mRestoreTransport.getAvailableRestoreSets();
|
2009-07-27 12:20:13 -07:00
|
|
|
if (mRestoreSets == null) EventLog.writeEvent(RESTORE_TRANSPORT_FAILURE_EVENT);
|
2009-06-08 15:24:01 -07:00
|
|
|
}
|
|
|
|
return mRestoreSets;
|
2009-07-29 12:57:16 -07:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Error in getAvailableRestoreSets", e);
|
|
|
|
return null;
|
2009-06-16 11:02:01 -07:00
|
|
|
}
|
2009-06-08 15:24:01 -07:00
|
|
|
}
|
|
|
|
|
2009-07-29 12:57:16 -07:00
|
|
|
public synchronized int performRestore(long token, IRestoreObserver observer) {
|
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
|
|
|
"performRestore");
|
2009-06-10 20:23:25 -07:00
|
|
|
|
2009-08-10 15:43:36 -07:00
|
|
|
if (DEBUG) Log.d(TAG, "performRestore token=" + Long.toHexString(token)
|
|
|
|
+ " observer=" + observer);
|
2009-07-01 21:04:03 -04:00
|
|
|
|
2009-07-29 12:57:16 -07:00
|
|
|
if (mRestoreTransport == null || mRestoreSets == null) {
|
|
|
|
Log.e(TAG, "Ignoring performRestore() with no restore set");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-09-24 18:01:46 -07:00
|
|
|
synchronized (mQueueLock) {
|
|
|
|
if (mBackupOrRestoreInProgress) {
|
|
|
|
Log.e(TAG, "Backup pass in progress, restore aborted");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < mRestoreSets.length; i++) {
|
|
|
|
if (token == mRestoreSets[i].token) {
|
|
|
|
long oldId = Binder.clearCallingIdentity();
|
|
|
|
// Suppress backups until the restore operation is finished
|
|
|
|
mBackupOrRestoreInProgress = true;
|
|
|
|
mWakelock.acquire();
|
|
|
|
Message msg = mBackupHandler.obtainMessage(MSG_RUN_RESTORE);
|
|
|
|
msg.obj = new RestoreParams(mRestoreTransport, observer, token);
|
|
|
|
mBackupHandler.sendMessage(msg);
|
|
|
|
Binder.restoreCallingIdentity(oldId);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-06-10 20:23:25 -07:00
|
|
|
}
|
|
|
|
}
|
2009-08-10 16:13:47 -07:00
|
|
|
|
|
|
|
Log.w(TAG, "Restore token " + Long.toHexString(token) + " not found");
|
2009-06-08 15:24:01 -07:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-07-29 12:57:16 -07:00
|
|
|
public synchronized void endRestoreSession() {
|
2009-07-23 18:24:08 -04:00
|
|
|
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP,
|
2009-06-10 20:23:25 -07:00
|
|
|
"endRestoreSession");
|
|
|
|
|
2009-07-29 12:57:16 -07:00
|
|
|
if (DEBUG) Log.d(TAG, "endRestoreSession");
|
|
|
|
|
|
|
|
synchronized (this) {
|
|
|
|
try {
|
|
|
|
if (mRestoreTransport != null) mRestoreTransport.finishRestore();
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(TAG, "Error in finishRestore", e);
|
|
|
|
} finally {
|
|
|
|
mRestoreTransport = null;
|
|
|
|
}
|
|
|
|
}
|
2009-07-01 21:04:03 -04:00
|
|
|
|
2009-07-29 12:57:16 -07:00
|
|
|
synchronized (BackupManagerService.this) {
|
2009-06-16 11:02:01 -07:00
|
|
|
if (BackupManagerService.this.mActiveRestoreSession == this) {
|
|
|
|
BackupManagerService.this.mActiveRestoreSession = null;
|
|
|
|
} else {
|
|
|
|
Log.e(TAG, "ending non-current restore session");
|
|
|
|
}
|
|
|
|
}
|
2009-06-08 15:24:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-02 16:11:00 -07:00
|
|
|
|
2009-05-06 18:06:21 -07:00
|
|
|
@Override
|
|
|
|
public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
|
|
|
|
synchronized (mQueueLock) {
|
2009-07-06 16:36:05 -07:00
|
|
|
pw.println("Backup Manager is " + (mEnabled ? "enabled" : "disabled")
|
2009-09-29 17:17:34 -07:00
|
|
|
+ " / " + (!mProvisioned ? "not " : "") + "provisioned / "
|
|
|
|
+ (!mBackupOrRestoreInProgress ? "not " : "") + "in progress / "
|
|
|
|
+ (this.mPendingInits.size() == 0 ? "not " : "") + "pending init / "
|
|
|
|
+ (!mInitInProgress ? "not " : "") + "initializing");
|
|
|
|
pw.println("Last backup pass: " + mLastBackupPass
|
|
|
|
+ " (now = " + System.currentTimeMillis() + ')');
|
|
|
|
pw.println(" next scheduled: " + mNextBackupPass);
|
|
|
|
|
2009-06-26 21:07:13 -07:00
|
|
|
pw.println("Available transports:");
|
|
|
|
for (String t : listAllTransports()) {
|
2009-09-30 11:20:45 -07:00
|
|
|
pw.println((t.equals(mCurrentTransport) ? " * " : " ") + t);
|
|
|
|
try {
|
|
|
|
File dir = new File(mBaseStateDir, getTransport(t).transportDirName());
|
|
|
|
for (File f : dir.listFiles()) {
|
|
|
|
pw.println(" " + f.getName() + " - " + f.length() + " state bytes");
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
Log.e(TAG, "Error in transportDirName()", e);
|
|
|
|
pw.println(" Error: " + e);
|
|
|
|
}
|
2009-06-26 21:07:13 -07:00
|
|
|
}
|
2009-09-29 17:17:34 -07:00
|
|
|
|
|
|
|
pw.println("Pending init: " + mPendingInits.size());
|
|
|
|
for (String s : mPendingInits) {
|
|
|
|
pw.println(" " + s);
|
|
|
|
}
|
|
|
|
|
2009-05-06 18:06:21 -07:00
|
|
|
int N = mBackupParticipants.size();
|
2009-09-29 17:17:34 -07:00
|
|
|
pw.println("Participants:");
|
2009-05-06 18:06:21 -07:00
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
int uid = mBackupParticipants.keyAt(i);
|
|
|
|
pw.print(" uid: ");
|
|
|
|
pw.println(uid);
|
2009-05-14 11:12:14 -07:00
|
|
|
HashSet<ApplicationInfo> participants = mBackupParticipants.valueAt(i);
|
|
|
|
for (ApplicationInfo app: participants) {
|
2009-09-29 17:17:34 -07:00
|
|
|
pw.println(" " + app.packageName);
|
2009-05-06 18:06:21 -07:00
|
|
|
}
|
|
|
|
}
|
2009-09-29 17:17:34 -07:00
|
|
|
|
2009-07-15 14:18:26 -07:00
|
|
|
pw.println("Ever backed up: " + mEverStoredApps.size());
|
|
|
|
for (String pkg : mEverStoredApps) {
|
|
|
|
pw.println(" " + pkg);
|
|
|
|
}
|
2009-09-29 17:17:34 -07:00
|
|
|
|
|
|
|
pw.println("Pending backup: " + mPendingBackups.size());
|
2009-06-19 14:14:22 -07:00
|
|
|
for (BackupRequest req : mPendingBackups.values()) {
|
2009-06-29 14:56:28 -07:00
|
|
|
pw.println(" " + req);
|
2009-05-14 11:12:14 -07:00
|
|
|
}
|
2009-05-06 18:06:21 -07:00
|
|
|
}
|
|
|
|
}
|
2009-04-29 14:03:25 -07:00
|
|
|
}
|