| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package com.android.server; |
| 18 | |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 19 | import android.app.ActivityManagerNative; |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 20 | import android.app.AlarmManager; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 21 | import android.app.IActivityManager; |
| 22 | import android.app.IApplicationThread; |
| 23 | import android.app.IBackupAgent; |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 24 | import android.app.PendingIntent; |
| Oscar Montemayor | a8529f6 | 2009-11-18 10:14:20 -0800 | [diff] [blame] | 25 | import android.backup.IBackupManager; |
| 26 | import android.backup.IRestoreObserver; |
| 27 | import android.backup.IRestoreSession; |
| 28 | import android.backup.RestoreSet; |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 29 | import android.content.BroadcastReceiver; |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 30 | import android.content.ComponentName; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 31 | import android.content.Context; |
| 32 | import android.content.Intent; |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 33 | import android.content.IntentFilter; |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 34 | import android.content.ServiceConnection; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 35 | import android.content.pm.ApplicationInfo; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 36 | import android.content.pm.IPackageDataObserver; |
| Christopher Tate | 7b88128 | 2009-06-07 13:52:37 -0700 | [diff] [blame] | 37 | import android.content.pm.PackageInfo; |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 38 | import android.content.pm.PackageManager; |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 39 | import android.content.pm.Signature; |
| Oscar Montemayor | a8529f6 | 2009-11-18 10:14:20 -0800 | [diff] [blame] | 40 | import android.content.pm.PackageManager.NameNotFoundException; |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 41 | import android.net.Uri; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 42 | import android.os.Binder; |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 43 | import android.os.Bundle; |
| Christopher Tate | 22b8787 | 2009-05-04 16:41:53 -0700 | [diff] [blame] | 44 | import android.os.Environment; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 45 | import android.os.Handler; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 46 | import android.os.HandlerThread; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 47 | import android.os.IBinder; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 48 | import android.os.Looper; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 49 | import android.os.Message; |
| Christopher Tate | 22b8787 | 2009-05-04 16:41:53 -0700 | [diff] [blame] | 50 | import android.os.ParcelFileDescriptor; |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 51 | import android.os.PowerManager; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 52 | import android.os.Process; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 53 | import android.os.RemoteException; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 54 | import android.os.SystemClock; |
| Oscar Montemayor | a8529f6 | 2009-11-18 10:14:20 -0800 | [diff] [blame] | 55 | import android.provider.Settings; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 56 | import android.util.EventLog; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 57 | import android.util.Log; |
| 58 | import android.util.SparseArray; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 59 | import android.util.SparseIntArray; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 60 | |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 61 | import com.android.internal.backup.BackupConstants; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 62 | import com.android.internal.backup.IBackupTransport; |
| Oscar Montemayor | a8529f6 | 2009-11-18 10:14:20 -0800 | [diff] [blame] | 63 | import com.android.internal.backup.LocalTransport; |
| Christopher Tate | 6aa41f4 | 2009-06-19 14:14:22 -0700 | [diff] [blame] | 64 | import com.android.server.PackageManagerBackupAgent.Metadata; |
| Christopher Tate | 6785dd8 | 2009-06-18 15:58:25 -0700 | [diff] [blame] | 65 | |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 66 | import java.io.EOFException; |
| Christopher Tate | 22b8787 | 2009-05-04 16:41:53 -0700 | [diff] [blame] | 67 | import java.io.File; |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 68 | import java.io.FileDescriptor; |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 69 | import java.io.FileOutputStream; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 70 | import java.io.IOException; |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 71 | import java.io.PrintWriter; |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 72 | import java.io.RandomAccessFile; |
| Joe Onorato | 8ad0281 | 2009-05-13 01:41:44 -0400 | [diff] [blame] | 73 | import java.util.ArrayList; |
| 74 | import java.util.HashMap; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 75 | import java.util.HashSet; |
| 76 | import java.util.List; |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 77 | import java.util.Map; |
| Dan Egnor | c1c49c0 | 2009-10-30 17:35:39 -0700 | [diff] [blame] | 78 | import java.util.Random; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 79 | |
| 80 | class BackupManagerService extends IBackupManager.Stub { |
| 81 | private static final String TAG = "BackupManagerService"; |
| Christopher Tate | 13f4a64 | 2009-09-30 20:06:45 -0700 | [diff] [blame] | 82 | private static final boolean DEBUG = false; |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 83 | |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 84 | // How often we perform a backup pass. Privileged external callers can |
| 85 | // trigger an immediate pass. |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 86 | private static final long BACKUP_INTERVAL = AlarmManager.INTERVAL_HOUR; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 87 | |
| Dan Egnor | c1c49c0 | 2009-10-30 17:35:39 -0700 | [diff] [blame] | 88 | // Random variation in backup scheduling time to avoid server load spikes |
| 89 | private static final int FUZZ_MILLIS = 5 * 60 * 1000; |
| 90 | |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 91 | // The amount of time between the initial provisioning of the device and |
| 92 | // the first backup pass. |
| 93 | private static final long FIRST_BACKUP_INTERVAL = 12 * AlarmManager.INTERVAL_HOUR; |
| 94 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 95 | private static final String RUN_BACKUP_ACTION = "android.backup.intent.RUN"; |
| 96 | private static final String RUN_INITIALIZE_ACTION = "android.backup.intent.INIT"; |
| 97 | private static final String RUN_CLEAR_ACTION = "android.backup.intent.CLEAR"; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 98 | private static final int MSG_RUN_BACKUP = 1; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 99 | private static final int MSG_RUN_FULL_BACKUP = 2; |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 100 | private static final int MSG_RUN_RESTORE = 3; |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 101 | private static final int MSG_RUN_CLEAR = 4; |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 102 | private static final int MSG_RUN_INITIALIZE = 5; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 103 | private static final int MSG_TIMEOUT = 6; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 104 | |
| 105 | // Timeout interval for deciding that a bind or clear-data has taken too long |
| 106 | static final long TIMEOUT_INTERVAL = 10 * 1000; |
| 107 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 108 | // Timeout intervals for agent backup & restore operations |
| 109 | static final long TIMEOUT_BACKUP_INTERVAL = 30 * 1000; |
| 110 | static final long TIMEOUT_RESTORE_INTERVAL = 60 * 1000; |
| 111 | |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 112 | private Context mContext; |
| 113 | private PackageManager mPackageManager; |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 114 | private IActivityManager mActivityManager; |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 115 | private PowerManager mPowerManager; |
| 116 | private AlarmManager mAlarmManager; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 117 | IBackupManager mBackupManagerBinder; |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 118 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 119 | boolean mEnabled; // access to this is synchronized on 'this' |
| 120 | boolean mProvisioned; |
| 121 | PowerManager.WakeLock mWakelock; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 122 | HandlerThread mHandlerThread = new HandlerThread("backup", Process.THREAD_PRIORITY_BACKGROUND); |
| 123 | BackupHandler mBackupHandler; |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 124 | PendingIntent mRunBackupIntent, mRunInitIntent; |
| 125 | BroadcastReceiver mRunBackupReceiver, mRunInitReceiver; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 126 | // map UIDs to the set of backup client services within that UID's app set |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 127 | final SparseArray<HashSet<ApplicationInfo>> mBackupParticipants |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 128 | = new SparseArray<HashSet<ApplicationInfo>>(); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 129 | // set of backup services that have pending changes |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 130 | class BackupRequest { |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 131 | public ApplicationInfo appInfo; |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 132 | public boolean fullBackup; |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 133 | |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 134 | BackupRequest(ApplicationInfo app, boolean isFull) { |
| 135 | appInfo = app; |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 136 | fullBackup = isFull; |
| 137 | } |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 138 | |
| 139 | public String toString() { |
| 140 | return "BackupRequest{app=" + appInfo + " full=" + fullBackup + "}"; |
| 141 | } |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 142 | } |
| Joe Onorato | 8ad0281 | 2009-05-13 01:41:44 -0400 | [diff] [blame] | 143 | // Backups that we haven't started yet. |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 144 | HashMap<ApplicationInfo,BackupRequest> mPendingBackups |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 145 | = new HashMap<ApplicationInfo,BackupRequest>(); |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 146 | |
| 147 | // Pseudoname that we use for the Package Manager metadata "package" |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 148 | static final String PACKAGE_MANAGER_SENTINEL = "@pm@"; |
| Christopher Tate | 6aa41f4 | 2009-06-19 14:14:22 -0700 | [diff] [blame] | 149 | |
| 150 | // locking around the pending-backup management |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 151 | final Object mQueueLock = new Object(); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 152 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 153 | // The thread performing the sequence of queued backups binds to each app's agent |
| 154 | // in succession. Bind notifications are asynchronously delivered through the |
| 155 | // Activity Manager; use this lock object to signal when a requested binding has |
| 156 | // completed. |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 157 | final Object mAgentConnectLock = new Object(); |
| 158 | IBackupAgent mConnectedAgent; |
| 159 | volatile boolean mConnecting; |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 160 | volatile long mLastBackupPass; |
| 161 | volatile long mNextBackupPass; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 162 | |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 163 | // A similar synchronization mechanism around clearing apps' data for restore |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 164 | final Object mClearDataLock = new Object(); |
| 165 | volatile boolean mClearingData; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 166 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 167 | // Transport bookkeeping |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 168 | final HashMap<String,IBackupTransport> mTransports |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 169 | = new HashMap<String,IBackupTransport>(); |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 170 | String mCurrentTransport; |
| 171 | IBackupTransport mLocalTransport, mGoogleTransport; |
| Christopher Tate | 80202c8 | 2010-01-25 19:37:47 -0800 | [diff] [blame] | 172 | ActiveRestoreSession mActiveRestoreSession; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 173 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 174 | class RestoreParams { |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 175 | public IBackupTransport transport; |
| 176 | public IRestoreObserver observer; |
| Dan Egnor | 156411d | 2009-06-26 13:20:02 -0700 | [diff] [blame] | 177 | public long token; |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 178 | |
| Dan Egnor | 156411d | 2009-06-26 13:20:02 -0700 | [diff] [blame] | 179 | RestoreParams(IBackupTransport _transport, IRestoreObserver _obs, long _token) { |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 180 | transport = _transport; |
| 181 | observer = _obs; |
| Dan Egnor | 156411d | 2009-06-26 13:20:02 -0700 | [diff] [blame] | 182 | token = _token; |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 183 | } |
| 184 | } |
| 185 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 186 | class ClearParams { |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 187 | public IBackupTransport transport; |
| 188 | public PackageInfo packageInfo; |
| 189 | |
| 190 | ClearParams(IBackupTransport _transport, PackageInfo _info) { |
| 191 | transport = _transport; |
| 192 | packageInfo = _info; |
| 193 | } |
| 194 | } |
| 195 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 196 | // Bookkeeping of in-flight operations for timeout etc. purposes. The operation |
| 197 | // token is the index of the entry in the pending-operations list. |
| 198 | static final int OP_PENDING = 0; |
| 199 | static final int OP_ACKNOWLEDGED = 1; |
| 200 | static final int OP_TIMEOUT = -1; |
| 201 | |
| 202 | final SparseIntArray mCurrentOperations = new SparseIntArray(); |
| 203 | final Object mCurrentOpLock = new Object(); |
| 204 | final Random mTokenGenerator = new Random(); |
| 205 | |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 206 | // Where we keep our journal files and other bookkeeping |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 207 | File mBaseStateDir; |
| 208 | File mDataDir; |
| 209 | File mJournalDir; |
| 210 | File mJournal; |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 211 | |
| 212 | // Keep a log of all the apps we've ever backed up |
| 213 | private File mEverStored; |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 214 | HashSet<String> mEverStoredApps = new HashSet<String>(); |
| 215 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 216 | // Persistently track the need to do a full init |
| 217 | static final String INIT_SENTINEL_FILE_NAME = "_need_init_"; |
| 218 | HashSet<String> mPendingInits = new HashSet<String>(); // transport names |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 219 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 220 | // ----- Asynchronous backup/restore handler thread ----- |
| 221 | |
| 222 | private class BackupHandler extends Handler { |
| 223 | public BackupHandler(Looper looper) { |
| 224 | super(looper); |
| 225 | } |
| 226 | |
| 227 | public void handleMessage(Message msg) { |
| 228 | |
| 229 | switch (msg.what) { |
| 230 | case MSG_RUN_BACKUP: |
| 231 | { |
| 232 | mLastBackupPass = System.currentTimeMillis(); |
| 233 | mNextBackupPass = mLastBackupPass + BACKUP_INTERVAL; |
| 234 | |
| 235 | IBackupTransport transport = getTransport(mCurrentTransport); |
| 236 | if (transport == null) { |
| 237 | Log.v(TAG, "Backup requested but no transport available"); |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 238 | mWakelock.release(); |
| 239 | break; |
| 240 | } |
| 241 | |
| 242 | // snapshot the pending-backup set and work on that |
| 243 | ArrayList<BackupRequest> queue = new ArrayList<BackupRequest>(); |
| 244 | synchronized (mQueueLock) { |
| 245 | // Do we have any work to do? |
| 246 | if (mPendingBackups.size() > 0) { |
| 247 | for (BackupRequest b: mPendingBackups.values()) { |
| 248 | queue.add(b); |
| 249 | } |
| 250 | if (DEBUG) Log.v(TAG, "clearing pending backups"); |
| 251 | mPendingBackups.clear(); |
| 252 | |
| 253 | // Start a new backup-queue journal file too |
| 254 | File oldJournal = mJournal; |
| 255 | mJournal = null; |
| 256 | |
| 257 | // At this point, we have started a new journal file, and the old |
| 258 | // file identity is being passed to the backup processing thread. |
| 259 | // When it completes successfully, that old journal file will be |
| 260 | // deleted. If we crash prior to that, the old journal is parsed |
| 261 | // at next boot and the journaled requests fulfilled. |
| 262 | (new PerformBackupTask(transport, queue, oldJournal)).run(); |
| 263 | } else { |
| 264 | Log.v(TAG, "Backup requested but nothing pending"); |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 265 | mWakelock.release(); |
| 266 | } |
| 267 | } |
| 268 | break; |
| 269 | } |
| 270 | |
| 271 | case MSG_RUN_FULL_BACKUP: |
| 272 | break; |
| 273 | |
| 274 | case MSG_RUN_RESTORE: |
| 275 | { |
| 276 | RestoreParams params = (RestoreParams)msg.obj; |
| 277 | Log.d(TAG, "MSG_RUN_RESTORE observer=" + params.observer); |
| 278 | (new PerformRestoreTask(params.transport, params.observer, |
| 279 | params.token)).run(); |
| 280 | break; |
| 281 | } |
| 282 | |
| 283 | case MSG_RUN_CLEAR: |
| 284 | { |
| 285 | ClearParams params = (ClearParams)msg.obj; |
| 286 | (new PerformClearTask(params.transport, params.packageInfo)).run(); |
| 287 | break; |
| 288 | } |
| 289 | |
| 290 | case MSG_RUN_INITIALIZE: |
| 291 | { |
| 292 | HashSet<String> queue; |
| 293 | |
| 294 | // Snapshot the pending-init queue and work on that |
| 295 | synchronized (mQueueLock) { |
| 296 | queue = new HashSet<String>(mPendingInits); |
| 297 | mPendingInits.clear(); |
| 298 | } |
| 299 | |
| 300 | (new PerformInitializeTask(queue)).run(); |
| 301 | break; |
| 302 | } |
| 303 | |
| 304 | case MSG_TIMEOUT: |
| 305 | { |
| 306 | synchronized (mCurrentOpLock) { |
| 307 | final int token = msg.arg1; |
| 308 | int state = mCurrentOperations.get(token, OP_TIMEOUT); |
| 309 | if (state == OP_PENDING) { |
| 310 | if (DEBUG) Log.v(TAG, "TIMEOUT: token=" + token); |
| 311 | mCurrentOperations.put(token, OP_TIMEOUT); |
| 312 | } |
| 313 | mCurrentOpLock.notifyAll(); |
| 314 | } |
| 315 | break; |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | // ----- Main service implementation ----- |
| 322 | |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 323 | public BackupManagerService(Context context) { |
| 324 | mContext = context; |
| 325 | mPackageManager = context.getPackageManager(); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 326 | mActivityManager = ActivityManagerNative.getDefault(); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 327 | |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 328 | mAlarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); |
| 329 | mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE); |
| 330 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 331 | mBackupManagerBinder = asInterface(asBinder()); |
| 332 | |
| 333 | // spin up the backup/restore handler thread |
| 334 | mHandlerThread = new HandlerThread("backup", Process.THREAD_PRIORITY_BACKGROUND); |
| 335 | mHandlerThread.start(); |
| 336 | mBackupHandler = new BackupHandler(mHandlerThread.getLooper()); |
| 337 | |
| Christopher Tate | 22b8787 | 2009-05-04 16:41:53 -0700 | [diff] [blame] | 338 | // Set up our bookkeeping |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 339 | boolean areEnabled = Settings.Secure.getInt(context.getContentResolver(), |
| Dianne Hackborn | cf09829 | 2009-07-01 19:55:20 -0700 | [diff] [blame] | 340 | Settings.Secure.BACKUP_ENABLED, 0) != 0; |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 341 | mProvisioned = Settings.Secure.getInt(context.getContentResolver(), |
| Joe Onorato | ab9a2a5 | 2009-07-27 08:56:39 -0700 | [diff] [blame] | 342 | Settings.Secure.BACKUP_PROVISIONED, 0) != 0; |
| Oscar Montemayor | a8529f6 | 2009-11-18 10:14:20 -0800 | [diff] [blame] | 343 | // If Encrypted file systems is enabled or disabled, this call will return the |
| 344 | // correct directory. |
| 345 | mBaseStateDir = new File(Environment.getSecureDataDirectory(), "backup"); |
| 346 | mBaseStateDir.mkdirs(); |
| Christopher Tate | f417247 | 2009-05-05 15:50:03 -0700 | [diff] [blame] | 347 | mDataDir = Environment.getDownloadCacheDirectory(); |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 348 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 349 | // Alarm receivers for scheduled backups & initialization operations |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 350 | mRunBackupReceiver = new RunBackupReceiver(); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 351 | IntentFilter filter = new IntentFilter(); |
| 352 | filter.addAction(RUN_BACKUP_ACTION); |
| 353 | context.registerReceiver(mRunBackupReceiver, filter, |
| 354 | android.Manifest.permission.BACKUP, null); |
| 355 | |
| 356 | mRunInitReceiver = new RunInitializeReceiver(); |
| 357 | filter = new IntentFilter(); |
| 358 | filter.addAction(RUN_INITIALIZE_ACTION); |
| 359 | context.registerReceiver(mRunInitReceiver, filter, |
| 360 | android.Manifest.permission.BACKUP, null); |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 361 | |
| 362 | Intent backupIntent = new Intent(RUN_BACKUP_ACTION); |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 363 | backupIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY); |
| 364 | mRunBackupIntent = PendingIntent.getBroadcast(context, MSG_RUN_BACKUP, backupIntent, 0); |
| 365 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 366 | Intent initIntent = new Intent(RUN_INITIALIZE_ACTION); |
| 367 | backupIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY); |
| 368 | mRunInitIntent = PendingIntent.getBroadcast(context, MSG_RUN_INITIALIZE, initIntent, 0); |
| 369 | |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 370 | // Set up the backup-request journaling |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 371 | mJournalDir = new File(mBaseStateDir, "pending"); |
| 372 | mJournalDir.mkdirs(); // creates mBaseStateDir along the way |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 373 | mJournal = null; // will be created on first use |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 374 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 375 | // Set up the various sorts of package tracking we do |
| 376 | initPackageTracking(); |
| 377 | |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 378 | // Build our mapping of uid to backup client services. This implicitly |
| 379 | // schedules a backup pass on the Package Manager metadata the first |
| 380 | // time anything needs to be backed up. |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 381 | synchronized (mBackupParticipants) { |
| 382 | addPackageParticipantsLocked(null); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 385 | // Set up our transport options and initialize the default transport |
| 386 | // TODO: Have transports register themselves somehow? |
| 387 | // TODO: Don't create transports that we don't need to? |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 388 | mLocalTransport = new LocalTransport(context); // This is actually pretty cheap |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 389 | ComponentName localName = new ComponentName(context, LocalTransport.class); |
| 390 | registerTransport(localName.flattenToShortString(), mLocalTransport); |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 391 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 392 | mGoogleTransport = null; |
| Dianne Hackborn | cf09829 | 2009-07-01 19:55:20 -0700 | [diff] [blame] | 393 | mCurrentTransport = Settings.Secure.getString(context.getContentResolver(), |
| 394 | Settings.Secure.BACKUP_TRANSPORT); |
| 395 | if ("".equals(mCurrentTransport)) { |
| 396 | mCurrentTransport = null; |
| Christopher Tate | ce0bf06 | 2009-07-01 11:43:53 -0700 | [diff] [blame] | 397 | } |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 398 | if (DEBUG) Log.v(TAG, "Starting with transport " + mCurrentTransport); |
| 399 | |
| 400 | // Attach to the Google backup transport. When this comes up, it will set |
| 401 | // itself as the current transport because we explicitly reset mCurrentTransport |
| 402 | // to null. |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 403 | Intent intent = new Intent().setComponent(new ComponentName( |
| 404 | "com.google.android.backup", |
| 405 | "com.google.android.backup.BackupTransportService")); |
| 406 | context.bindService(intent, mGoogleConnection, Context.BIND_AUTO_CREATE); |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 407 | |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 408 | // Now that we know about valid backup participants, parse any |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 409 | // leftover journal files into the pending backup set |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 410 | parseLeftoverJournals(); |
| 411 | |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 412 | // Power management |
| 413 | mWakelock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "backup"); |
| 414 | |
| 415 | // Start the backup passes going |
| 416 | setBackupEnabled(areEnabled); |
| 417 | } |
| 418 | |
| 419 | private class RunBackupReceiver extends BroadcastReceiver { |
| 420 | public void onReceive(Context context, Intent intent) { |
| 421 | if (RUN_BACKUP_ACTION.equals(intent.getAction())) { |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 422 | synchronized (mQueueLock) { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 423 | if (mPendingInits.size() > 0) { |
| 424 | // If there are pending init operations, we process those |
| 425 | // and then settle into the usual periodic backup schedule. |
| 426 | if (DEBUG) Log.v(TAG, "Init pending at scheduled backup"); |
| 427 | try { |
| 428 | mAlarmManager.cancel(mRunInitIntent); |
| 429 | mRunInitIntent.send(); |
| 430 | } catch (PendingIntent.CanceledException ce) { |
| 431 | Log.e(TAG, "Run init intent cancelled"); |
| 432 | // can't really do more than bail here |
| 433 | } |
| 434 | } else { |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 435 | // Don't run backups now if we're disabled or not yet |
| 436 | // fully set up. |
| 437 | if (mEnabled && mProvisioned) { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 438 | if (DEBUG) Log.v(TAG, "Running a backup pass"); |
| 439 | |
| 440 | // Acquire the wakelock and pass it to the backup thread. it will |
| 441 | // be released once backup concludes. |
| 442 | mWakelock.acquire(); |
| 443 | |
| 444 | Message msg = mBackupHandler.obtainMessage(MSG_RUN_BACKUP); |
| 445 | mBackupHandler.sendMessage(msg); |
| 446 | } else { |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 447 | Log.w(TAG, "Backup pass but e=" + mEnabled + " p=" + mProvisioned); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | } |
| 451 | } |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | private class RunInitializeReceiver extends BroadcastReceiver { |
| 456 | public void onReceive(Context context, Intent intent) { |
| 457 | if (RUN_INITIALIZE_ACTION.equals(intent.getAction())) { |
| 458 | synchronized (mQueueLock) { |
| 459 | if (DEBUG) Log.v(TAG, "Running a device init"); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 460 | |
| 461 | // Acquire the wakelock and pass it to the init thread. it will |
| 462 | // be released once init concludes. |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 463 | mWakelock.acquire(); |
| 464 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 465 | Message msg = mBackupHandler.obtainMessage(MSG_RUN_INITIALIZE); |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 466 | mBackupHandler.sendMessage(msg); |
| 467 | } |
| 468 | } |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 469 | } |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 470 | } |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 471 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 472 | private void initPackageTracking() { |
| 473 | if (DEBUG) Log.v(TAG, "Initializing package tracking"); |
| 474 | |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 475 | // Keep a log of what apps we've ever backed up. Because we might have |
| 476 | // rebooted in the middle of an operation that was removing something from |
| 477 | // this log, we sanity-check its contents here and reconstruct it. |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 478 | mEverStored = new File(mBaseStateDir, "processed"); |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 479 | File tempProcessedFile = new File(mBaseStateDir, "processed.new"); |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 480 | |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 481 | // If we were in the middle of removing something from the ever-backed-up |
| 482 | // file, there might be a transient "processed.new" file still present. |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 483 | // Ignore it -- we'll validate "processed" against the current package set. |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 484 | if (tempProcessedFile.exists()) { |
| 485 | tempProcessedFile.delete(); |
| 486 | } |
| 487 | |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 488 | // If there are previous contents, parse them out then start a new |
| 489 | // file to continue the recordkeeping. |
| 490 | if (mEverStored.exists()) { |
| 491 | RandomAccessFile temp = null; |
| 492 | RandomAccessFile in = null; |
| 493 | |
| 494 | try { |
| 495 | temp = new RandomAccessFile(tempProcessedFile, "rws"); |
| 496 | in = new RandomAccessFile(mEverStored, "r"); |
| 497 | |
| 498 | while (true) { |
| 499 | PackageInfo info; |
| 500 | String pkg = in.readUTF(); |
| 501 | try { |
| 502 | info = mPackageManager.getPackageInfo(pkg, 0); |
| 503 | mEverStoredApps.add(pkg); |
| 504 | temp.writeUTF(pkg); |
| 505 | if (DEBUG) Log.v(TAG, " + " + pkg); |
| 506 | } catch (NameNotFoundException e) { |
| 507 | // nope, this package was uninstalled; don't include it |
| 508 | if (DEBUG) Log.v(TAG, " - " + pkg); |
| 509 | } |
| 510 | } |
| 511 | } catch (EOFException e) { |
| 512 | // Once we've rewritten the backup history log, atomically replace the |
| 513 | // old one with the new one then reopen the file for continuing use. |
| 514 | if (!tempProcessedFile.renameTo(mEverStored)) { |
| 515 | Log.e(TAG, "Error renaming " + tempProcessedFile + " to " + mEverStored); |
| 516 | } |
| 517 | } catch (IOException e) { |
| 518 | Log.e(TAG, "Error in processed file", e); |
| 519 | } finally { |
| 520 | try { if (temp != null) temp.close(); } catch (IOException e) {} |
| 521 | try { if (in != null) in.close(); } catch (IOException e) {} |
| 522 | } |
| 523 | } |
| 524 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 525 | // Register for broadcasts about package install, etc., so we can |
| 526 | // update the provider list. |
| 527 | IntentFilter filter = new IntentFilter(); |
| 528 | filter.addAction(Intent.ACTION_PACKAGE_ADDED); |
| 529 | filter.addAction(Intent.ACTION_PACKAGE_REMOVED); |
| 530 | filter.addDataScheme("package"); |
| 531 | mContext.registerReceiver(mBroadcastReceiver, filter); |
| 532 | } |
| 533 | |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 534 | private void parseLeftoverJournals() { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 535 | for (File f : mJournalDir.listFiles()) { |
| 536 | if (mJournal == null || f.compareTo(mJournal) != 0) { |
| 537 | // This isn't the current journal, so it must be a leftover. Read |
| 538 | // out the package names mentioned there and schedule them for |
| 539 | // backup. |
| 540 | RandomAccessFile in = null; |
| 541 | try { |
| 542 | Log.i(TAG, "Found stale backup journal, scheduling:"); |
| 543 | in = new RandomAccessFile(f, "r"); |
| 544 | while (true) { |
| 545 | String packageName = in.readUTF(); |
| 546 | Log.i(TAG, " + " + packageName); |
| 547 | dataChanged(packageName); |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 548 | } |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 549 | } catch (EOFException e) { |
| 550 | // no more data; we're done |
| 551 | } catch (Exception e) { |
| 552 | Log.e(TAG, "Can't read " + f, e); |
| 553 | } finally { |
| 554 | // close/delete the file |
| 555 | try { if (in != null) in.close(); } catch (IOException e) {} |
| 556 | f.delete(); |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
| 559 | } |
| 560 | } |
| 561 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 562 | // Maintain persistent state around whether need to do an initialize operation. |
| 563 | // Must be called with the queue lock held. |
| 564 | void recordInitPendingLocked(boolean isPending, String transportName) { |
| 565 | if (DEBUG) Log.i(TAG, "recordInitPendingLocked: " + isPending |
| 566 | + " on transport " + transportName); |
| 567 | try { |
| 568 | IBackupTransport transport = getTransport(transportName); |
| 569 | String transportDirName = transport.transportDirName(); |
| 570 | File stateDir = new File(mBaseStateDir, transportDirName); |
| 571 | File initPendingFile = new File(stateDir, INIT_SENTINEL_FILE_NAME); |
| 572 | |
| 573 | if (isPending) { |
| 574 | // We need an init before we can proceed with sending backup data. |
| 575 | // Record that with an entry in our set of pending inits, as well as |
| 576 | // journaling it via creation of a sentinel file. |
| 577 | mPendingInits.add(transportName); |
| 578 | try { |
| 579 | (new FileOutputStream(initPendingFile)).close(); |
| 580 | } catch (IOException ioe) { |
| 581 | // Something is badly wrong with our permissions; just try to move on |
| 582 | } |
| 583 | } else { |
| 584 | // No more initialization needed; wipe the journal and reset our state. |
| 585 | initPendingFile.delete(); |
| 586 | mPendingInits.remove(transportName); |
| 587 | } |
| 588 | } catch (RemoteException e) { |
| 589 | // can't happen; the transport is local |
| 590 | } |
| 591 | } |
| 592 | |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 593 | // Reset all of our bookkeeping, in response to having been told that |
| 594 | // the backend data has been wiped [due to idle expiry, for example], |
| 595 | // so we must re-upload all saved settings. |
| 596 | void resetBackupState(File stateFileDir) { |
| 597 | synchronized (mQueueLock) { |
| 598 | // Wipe the "what we've ever backed up" tracking |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 599 | mEverStoredApps.clear(); |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 600 | mEverStored.delete(); |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 601 | |
| 602 | // Remove all the state files |
| 603 | for (File sf : stateFileDir.listFiles()) { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 604 | // ... but don't touch the needs-init sentinel |
| 605 | if (!sf.getName().equals(INIT_SENTINEL_FILE_NAME)) { |
| 606 | sf.delete(); |
| 607 | } |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | // Enqueue a new backup of every participant |
| 611 | int N = mBackupParticipants.size(); |
| 612 | for (int i=0; i<N; i++) { |
| 613 | int uid = mBackupParticipants.keyAt(i); |
| 614 | HashSet<ApplicationInfo> participants = mBackupParticipants.valueAt(i); |
| 615 | for (ApplicationInfo app: participants) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 616 | dataChanged(app.packageName); |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | } |
| 620 | } |
| 621 | |
| Christopher Tate | dfa47b56e | 2009-12-22 16:01:32 -0800 | [diff] [blame] | 622 | // Add a transport to our set of available backends. If 'transport' is null, this |
| 623 | // is an unregistration, and the transport's entry is removed from our bookkeeping. |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 624 | private void registerTransport(String name, IBackupTransport transport) { |
| 625 | synchronized (mTransports) { |
| Christopher Tate | 34ebd0e | 2009-07-06 15:44:54 -0700 | [diff] [blame] | 626 | if (DEBUG) Log.v(TAG, "Registering transport " + name + " = " + transport); |
| Christopher Tate | dfa47b56e | 2009-12-22 16:01:32 -0800 | [diff] [blame] | 627 | if (transport != null) { |
| 628 | mTransports.put(name, transport); |
| 629 | } else { |
| 630 | mTransports.remove(name); |
| Christopher Tate | b0dcaaf | 2010-01-29 16:27:04 -0800 | [diff] [blame] | 631 | if ((mCurrentTransport != null) && mCurrentTransport.equals(name)) { |
| Christopher Tate | dfa47b56e | 2009-12-22 16:01:32 -0800 | [diff] [blame] | 632 | mCurrentTransport = null; |
| 633 | } |
| 634 | // Nothing further to do in the unregistration case |
| 635 | return; |
| 636 | } |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 637 | } |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 638 | |
| 639 | // If the init sentinel file exists, we need to be sure to perform the init |
| 640 | // as soon as practical. We also create the state directory at registration |
| 641 | // time to ensure it's present from the outset. |
| 642 | try { |
| 643 | String transportName = transport.transportDirName(); |
| 644 | File stateDir = new File(mBaseStateDir, transportName); |
| 645 | stateDir.mkdirs(); |
| 646 | |
| 647 | File initSentinel = new File(stateDir, INIT_SENTINEL_FILE_NAME); |
| 648 | if (initSentinel.exists()) { |
| 649 | synchronized (mQueueLock) { |
| 650 | mPendingInits.add(transportName); |
| 651 | |
| 652 | // TODO: pick a better starting time than now + 1 minute |
| 653 | long delay = 1000 * 60; // one minute, in milliseconds |
| 654 | mAlarmManager.set(AlarmManager.RTC_WAKEUP, |
| 655 | System.currentTimeMillis() + delay, mRunInitIntent); |
| 656 | } |
| 657 | } |
| 658 | } catch (RemoteException e) { |
| 659 | // can't happen, the transport is local |
| 660 | } |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 661 | } |
| 662 | |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 663 | // ----- Track installation/removal of packages ----- |
| 664 | BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() { |
| 665 | public void onReceive(Context context, Intent intent) { |
| 666 | if (DEBUG) Log.d(TAG, "Received broadcast " + intent); |
| 667 | |
| 668 | Uri uri = intent.getData(); |
| 669 | if (uri == null) { |
| 670 | return; |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 671 | } |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 672 | String pkgName = uri.getSchemeSpecificPart(); |
| 673 | if (pkgName == null) { |
| 674 | return; |
| 675 | } |
| 676 | |
| 677 | String action = intent.getAction(); |
| 678 | if (Intent.ACTION_PACKAGE_ADDED.equals(action)) { |
| 679 | synchronized (mBackupParticipants) { |
| 680 | Bundle extras = intent.getExtras(); |
| 681 | if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) { |
| 682 | // The package was just upgraded |
| 683 | updatePackageParticipantsLocked(pkgName); |
| 684 | } else { |
| 685 | // The package was just added |
| 686 | addPackageParticipantsLocked(pkgName); |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) { |
| 691 | Bundle extras = intent.getExtras(); |
| 692 | if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) { |
| 693 | // The package is being updated. We'll receive a PACKAGE_ADDED shortly. |
| 694 | } else { |
| 695 | synchronized (mBackupParticipants) { |
| 696 | removePackageParticipantsLocked(pkgName); |
| 697 | } |
| 698 | } |
| 699 | } |
| 700 | } |
| 701 | }; |
| 702 | |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 703 | // ----- Track connection to GoogleBackupTransport service ----- |
| 704 | ServiceConnection mGoogleConnection = new ServiceConnection() { |
| 705 | public void onServiceConnected(ComponentName name, IBinder service) { |
| 706 | if (DEBUG) Log.v(TAG, "Connected to Google transport"); |
| 707 | mGoogleTransport = IBackupTransport.Stub.asInterface(service); |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 708 | registerTransport(name.flattenToShortString(), mGoogleTransport); |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | public void onServiceDisconnected(ComponentName name) { |
| 712 | if (DEBUG) Log.v(TAG, "Disconnected from Google transport"); |
| 713 | mGoogleTransport = null; |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 714 | registerTransport(name.flattenToShortString(), null); |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 715 | } |
| 716 | }; |
| 717 | |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 718 | // Add the backup agents in the given package to our set of known backup participants. |
| 719 | // If 'packageName' is null, adds all backup agents in the whole system. |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 720 | void addPackageParticipantsLocked(String packageName) { |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 721 | // Look for apps that define the android:backupAgent attribute |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 722 | if (DEBUG) Log.v(TAG, "addPackageParticipantsLocked: " + packageName); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 723 | List<PackageInfo> targetApps = allAgentPackages(); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 724 | addPackageParticipantsLockedInner(packageName, targetApps); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 727 | private void addPackageParticipantsLockedInner(String packageName, |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 728 | List<PackageInfo> targetPkgs) { |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 729 | if (DEBUG) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 730 | Log.v(TAG, "Adding " + targetPkgs.size() + " backup participants:"); |
| 731 | for (PackageInfo p : targetPkgs) { |
| Christopher Tate | 111bd4a | 2009-06-24 17:29:38 -0700 | [diff] [blame] | 732 | Log.v(TAG, " " + p + " agent=" + p.applicationInfo.backupAgentName |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 733 | + " uid=" + p.applicationInfo.uid |
| 734 | + " killAfterRestore=" |
| 735 | + (((p.applicationInfo.flags & ApplicationInfo.FLAG_KILL_AFTER_RESTORE) != 0) ? "true" : "false") |
| 736 | + " restoreNeedsApplication=" |
| 737 | + (((p.applicationInfo.flags & ApplicationInfo.FLAG_RESTORE_NEEDS_APPLICATION) != 0) ? "true" : "false") |
| 738 | ); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 739 | } |
| 740 | } |
| 741 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 742 | for (PackageInfo pkg : targetPkgs) { |
| 743 | if (packageName == null || pkg.packageName.equals(packageName)) { |
| 744 | int uid = pkg.applicationInfo.uid; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 745 | HashSet<ApplicationInfo> set = mBackupParticipants.get(uid); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 746 | if (set == null) { |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 747 | set = new HashSet<ApplicationInfo>(); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 748 | mBackupParticipants.put(uid, set); |
| 749 | } |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 750 | set.add(pkg.applicationInfo); |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 751 | |
| 752 | // If we've never seen this app before, schedule a backup for it |
| 753 | if (!mEverStoredApps.contains(pkg.packageName)) { |
| 754 | if (DEBUG) Log.i(TAG, "New app " + pkg.packageName |
| 755 | + " never backed up; scheduling"); |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 756 | dataChanged(pkg.packageName); |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 757 | } |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 758 | } |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 759 | } |
| 760 | } |
| 761 | |
| Christopher Tate | 6785dd8 | 2009-06-18 15:58:25 -0700 | [diff] [blame] | 762 | // Remove the given package's entry from our known active set. If |
| 763 | // 'packageName' is null, *all* participating apps will be removed. |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 764 | void removePackageParticipantsLocked(String packageName) { |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 765 | if (DEBUG) Log.v(TAG, "removePackageParticipantsLocked: " + packageName); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 766 | List<PackageInfo> allApps = null; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 767 | if (packageName != null) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 768 | allApps = new ArrayList<PackageInfo>(); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 769 | try { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 770 | int flags = PackageManager.GET_SIGNATURES; |
| 771 | allApps.add(mPackageManager.getPackageInfo(packageName, flags)); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 772 | } catch (Exception e) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 773 | // just skip it (???) |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 774 | } |
| 775 | } else { |
| 776 | // all apps with agents |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 777 | allApps = allAgentPackages(); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 778 | } |
| 779 | removePackageParticipantsLockedInner(packageName, allApps); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| Joe Onorato | 8ad0281 | 2009-05-13 01:41:44 -0400 | [diff] [blame] | 782 | private void removePackageParticipantsLockedInner(String packageName, |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 783 | List<PackageInfo> agents) { |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 784 | if (DEBUG) { |
| 785 | Log.v(TAG, "removePackageParticipantsLockedInner (" + packageName |
| 786 | + ") removing " + agents.size() + " entries"); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 787 | for (PackageInfo p : agents) { |
| 788 | Log.v(TAG, " - " + p); |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 789 | } |
| 790 | } |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 791 | for (PackageInfo pkg : agents) { |
| 792 | if (packageName == null || pkg.packageName.equals(packageName)) { |
| 793 | int uid = pkg.applicationInfo.uid; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 794 | HashSet<ApplicationInfo> set = mBackupParticipants.get(uid); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 795 | if (set != null) { |
| Christopher Tate | cd4ff2e | 2009-06-05 13:57:54 -0700 | [diff] [blame] | 796 | // Find the existing entry with the same package name, and remove it. |
| 797 | // We can't just remove(app) because the instances are different. |
| 798 | for (ApplicationInfo entry: set) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 799 | if (entry.packageName.equals(pkg.packageName)) { |
| Christopher Tate | cd4ff2e | 2009-06-05 13:57:54 -0700 | [diff] [blame] | 800 | set.remove(entry); |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 801 | removeEverBackedUp(pkg.packageName); |
| Christopher Tate | cd4ff2e | 2009-06-05 13:57:54 -0700 | [diff] [blame] | 802 | break; |
| 803 | } |
| 804 | } |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 805 | if (set.size() == 0) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 806 | mBackupParticipants.delete(uid); |
| 807 | } |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 808 | } |
| 809 | } |
| 810 | } |
| 811 | } |
| 812 | |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 813 | // Returns the set of all applications that define an android:backupAgent attribute |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 814 | List<PackageInfo> allAgentPackages() { |
| Christopher Tate | 6785dd8 | 2009-06-18 15:58:25 -0700 | [diff] [blame] | 815 | // !!! TODO: cache this and regenerate only when necessary |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 816 | int flags = PackageManager.GET_SIGNATURES; |
| 817 | List<PackageInfo> packages = mPackageManager.getInstalledPackages(flags); |
| 818 | int N = packages.size(); |
| 819 | for (int a = N-1; a >= 0; a--) { |
| Christopher Tate | 0749dcd | 2009-08-13 15:13:03 -0700 | [diff] [blame] | 820 | PackageInfo pkg = packages.get(a); |
| Christopher Tate | b8eb1cb | 2009-09-16 10:57:21 -0700 | [diff] [blame] | 821 | try { |
| 822 | ApplicationInfo app = pkg.applicationInfo; |
| 823 | if (((app.flags&ApplicationInfo.FLAG_ALLOW_BACKUP) == 0) |
| 824 | || app.backupAgentName == null |
| 825 | || (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA, |
| 826 | pkg.packageName) != PackageManager.PERMISSION_GRANTED)) { |
| 827 | packages.remove(a); |
| 828 | } |
| 829 | else { |
| 830 | // we will need the shared library path, so look that up and store it here |
| 831 | app = mPackageManager.getApplicationInfo(pkg.packageName, |
| 832 | PackageManager.GET_SHARED_LIBRARY_FILES); |
| 833 | pkg.applicationInfo.sharedLibraryFiles = app.sharedLibraryFiles; |
| 834 | } |
| 835 | } catch (NameNotFoundException e) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 836 | packages.remove(a); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 837 | } |
| 838 | } |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 839 | return packages; |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 840 | } |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 841 | |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 842 | // Reset the given package's known backup participants. Unlike add/remove, the update |
| 843 | // action cannot be passed a null package name. |
| 844 | void updatePackageParticipantsLocked(String packageName) { |
| 845 | if (packageName == null) { |
| 846 | Log.e(TAG, "updatePackageParticipants called with null package name"); |
| 847 | return; |
| 848 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 849 | if (DEBUG) Log.v(TAG, "updatePackageParticipantsLocked: " + packageName); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 850 | |
| 851 | // brute force but small code size |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 852 | List<PackageInfo> allApps = allAgentPackages(); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 853 | removePackageParticipantsLockedInner(packageName, allApps); |
| 854 | addPackageParticipantsLockedInner(packageName, allApps); |
| Christopher Tate | 3799bc2 | 2009-05-06 16:13:56 -0700 | [diff] [blame] | 855 | } |
| 856 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 857 | // Called from the backup thread: record that the given app has been successfully |
| 858 | // backed up at least once |
| 859 | void logBackupComplete(String packageName) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 860 | if (packageName.equals(PACKAGE_MANAGER_SENTINEL)) return; |
| 861 | |
| 862 | synchronized (mEverStoredApps) { |
| 863 | if (!mEverStoredApps.add(packageName)) return; |
| 864 | |
| 865 | RandomAccessFile out = null; |
| 866 | try { |
| 867 | out = new RandomAccessFile(mEverStored, "rws"); |
| 868 | out.seek(out.length()); |
| 869 | out.writeUTF(packageName); |
| 870 | } catch (IOException e) { |
| 871 | Log.e(TAG, "Can't log backup of " + packageName + " to " + mEverStored); |
| 872 | } finally { |
| 873 | try { if (out != null) out.close(); } catch (IOException e) {} |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 874 | } |
| 875 | } |
| 876 | } |
| 877 | |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 878 | // Remove our awareness of having ever backed up the given package |
| 879 | void removeEverBackedUp(String packageName) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 880 | if (DEBUG) Log.v(TAG, "Removing backed-up knowledge of " + packageName + ", new set:"); |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 881 | |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 882 | synchronized (mEverStoredApps) { |
| 883 | // Rewrite the file and rename to overwrite. If we reboot in the middle, |
| 884 | // we'll recognize on initialization time that the package no longer |
| 885 | // exists and fix it up then. |
| 886 | File tempKnownFile = new File(mBaseStateDir, "processed.new"); |
| 887 | RandomAccessFile known = null; |
| 888 | try { |
| 889 | known = new RandomAccessFile(tempKnownFile, "rws"); |
| 890 | mEverStoredApps.remove(packageName); |
| 891 | for (String s : mEverStoredApps) { |
| 892 | known.writeUTF(s); |
| 893 | if (DEBUG) Log.v(TAG, " " + s); |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 894 | } |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 895 | known.close(); |
| 896 | known = null; |
| 897 | if (!tempKnownFile.renameTo(mEverStored)) { |
| 898 | throw new IOException("Can't rename " + tempKnownFile + " to " + mEverStored); |
| 899 | } |
| 900 | } catch (IOException e) { |
| 901 | // Bad: we couldn't create the new copy. For safety's sake we |
| 902 | // abandon the whole process and remove all what's-backed-up |
| 903 | // state entirely, meaning we'll force a backup pass for every |
| 904 | // participant on the next boot or [re]install. |
| 905 | Log.w(TAG, "Error rewriting " + mEverStored, e); |
| 906 | mEverStoredApps.clear(); |
| 907 | tempKnownFile.delete(); |
| 908 | mEverStored.delete(); |
| 909 | } finally { |
| 910 | try { if (known != null) known.close(); } catch (IOException e) {} |
| Christopher Tate | e97e807 | 2009-07-15 16:45:50 -0700 | [diff] [blame] | 911 | } |
| 912 | } |
| 913 | } |
| 914 | |
| Dan Egnor | 87a02bc | 2009-06-17 02:30:10 -0700 | [diff] [blame] | 915 | // Return the given transport |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 916 | private IBackupTransport getTransport(String transportName) { |
| 917 | synchronized (mTransports) { |
| 918 | IBackupTransport transport = mTransports.get(transportName); |
| 919 | if (transport == null) { |
| 920 | Log.w(TAG, "Requested unavailable transport: " + transportName); |
| 921 | } |
| 922 | return transport; |
| Christopher Tate | 8c850b7 | 2009-06-07 19:33:20 -0700 | [diff] [blame] | 923 | } |
| Christopher Tate | 8c850b7 | 2009-06-07 19:33:20 -0700 | [diff] [blame] | 924 | } |
| 925 | |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 926 | // fire off a backup agent, blocking until it attaches or times out |
| 927 | IBackupAgent bindToAgentSynchronous(ApplicationInfo app, int mode) { |
| 928 | IBackupAgent agent = null; |
| 929 | synchronized(mAgentConnectLock) { |
| 930 | mConnecting = true; |
| 931 | mConnectedAgent = null; |
| 932 | try { |
| 933 | if (mActivityManager.bindBackupAgent(app, mode)) { |
| 934 | Log.d(TAG, "awaiting agent for " + app); |
| 935 | |
| 936 | // success; wait for the agent to arrive |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 937 | // only wait 10 seconds for the clear data to happen |
| 938 | long timeoutMark = System.currentTimeMillis() + TIMEOUT_INTERVAL; |
| 939 | while (mConnecting && mConnectedAgent == null |
| 940 | && (System.currentTimeMillis() < timeoutMark)) { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 941 | try { |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 942 | mAgentConnectLock.wait(5000); |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 943 | } catch (InterruptedException e) { |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 944 | // just bail |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 945 | return null; |
| 946 | } |
| 947 | } |
| 948 | |
| 949 | // if we timed out with no connect, abort and move on |
| 950 | if (mConnecting == true) { |
| 951 | Log.w(TAG, "Timeout waiting for agent " + app); |
| 952 | return null; |
| 953 | } |
| 954 | agent = mConnectedAgent; |
| 955 | } |
| 956 | } catch (RemoteException e) { |
| 957 | // can't happen |
| 958 | } |
| 959 | } |
| 960 | return agent; |
| 961 | } |
| 962 | |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 963 | // clear an application's data, blocking until the operation completes or times out |
| 964 | void clearApplicationDataSynchronous(String packageName) { |
| Christopher Tate | f7c886b | 2009-06-26 15:34:09 -0700 | [diff] [blame] | 965 | // Don't wipe packages marked allowClearUserData=false |
| 966 | try { |
| 967 | PackageInfo info = mPackageManager.getPackageInfo(packageName, 0); |
| 968 | if ((info.applicationInfo.flags & ApplicationInfo.FLAG_ALLOW_CLEAR_USER_DATA) == 0) { |
| 969 | if (DEBUG) Log.i(TAG, "allowClearUserData=false so not wiping " |
| 970 | + packageName); |
| 971 | return; |
| 972 | } |
| 973 | } catch (NameNotFoundException e) { |
| 974 | Log.w(TAG, "Tried to clear data for " + packageName + " but not found"); |
| 975 | return; |
| 976 | } |
| 977 | |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 978 | ClearDataObserver observer = new ClearDataObserver(); |
| 979 | |
| 980 | synchronized(mClearDataLock) { |
| 981 | mClearingData = true; |
| Amith Yamasani | 2e6bca6 | 2009-08-07 20:26:13 -0700 | [diff] [blame] | 982 | /* This is causing some critical processes to be killed during setup. |
| 983 | Temporarily revert this change until we find a better solution. |
| Christopher Tate | 9dfdac5 | 2009-08-06 14:57:53 -0700 | [diff] [blame] | 984 | try { |
| 985 | mActivityManager.clearApplicationUserData(packageName, observer); |
| 986 | } catch (RemoteException e) { |
| 987 | // can't happen because the activity manager is in this process |
| 988 | } |
| Amith Yamasani | 2e6bca6 | 2009-08-07 20:26:13 -0700 | [diff] [blame] | 989 | */ |
| 990 | mPackageManager.clearApplicationUserData(packageName, observer); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 991 | |
| 992 | // only wait 10 seconds for the clear data to happen |
| 993 | long timeoutMark = System.currentTimeMillis() + TIMEOUT_INTERVAL; |
| 994 | while (mClearingData && (System.currentTimeMillis() < timeoutMark)) { |
| 995 | try { |
| 996 | mClearDataLock.wait(5000); |
| 997 | } catch (InterruptedException e) { |
| 998 | // won't happen, but still. |
| 999 | mClearingData = false; |
| 1000 | } |
| 1001 | } |
| 1002 | } |
| 1003 | } |
| 1004 | |
| 1005 | class ClearDataObserver extends IPackageDataObserver.Stub { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1006 | public void onRemoveCompleted(String packageName, boolean succeeded) { |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1007 | synchronized(mClearDataLock) { |
| 1008 | mClearingData = false; |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 1009 | mClearDataLock.notifyAll(); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | } |
| 1013 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1014 | // ----- |
| 1015 | // Utility methods used by the asynchronous-with-timeout backup/restore operations |
| 1016 | boolean waitUntilOperationComplete(int token) { |
| 1017 | int finalState = OP_PENDING; |
| 1018 | synchronized (mCurrentOpLock) { |
| 1019 | try { |
| 1020 | while ((finalState = mCurrentOperations.get(token, OP_TIMEOUT)) == OP_PENDING) { |
| 1021 | try { |
| 1022 | mCurrentOpLock.wait(); |
| 1023 | } catch (InterruptedException e) {} |
| 1024 | } |
| 1025 | } catch (IndexOutOfBoundsException e) { |
| 1026 | // the operation has been mysteriously cleared from our |
| 1027 | // bookkeeping -- consider this a success and ignore it. |
| 1028 | } |
| 1029 | } |
| 1030 | mBackupHandler.removeMessages(MSG_TIMEOUT); |
| 1031 | if (DEBUG) Log.v(TAG, "operation " + token + " complete: finalState=" + finalState); |
| 1032 | return finalState == OP_ACKNOWLEDGED; |
| 1033 | } |
| 1034 | |
| 1035 | void prepareOperationTimeout(int token, long interval) { |
| 1036 | if (DEBUG) Log.v(TAG, "starting timeout: token=" + token + " interval=" + interval); |
| 1037 | mCurrentOperations.put(token, OP_PENDING); |
| 1038 | Message msg = mBackupHandler.obtainMessage(MSG_TIMEOUT, token, 0); |
| 1039 | mBackupHandler.sendMessageDelayed(msg, interval); |
| 1040 | } |
| 1041 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1042 | // ----- Back up a set of applications via a worker thread ----- |
| 1043 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1044 | class PerformBackupTask implements Runnable { |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1045 | private static final String TAG = "PerformBackupThread"; |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 1046 | IBackupTransport mTransport; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1047 | ArrayList<BackupRequest> mQueue; |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 1048 | File mStateDir; |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1049 | File mJournal; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1050 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1051 | public PerformBackupTask(IBackupTransport transport, ArrayList<BackupRequest> queue, |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1052 | File journal) { |
| Christopher Tate | aa08844 | 2009-06-16 18:25:46 -0700 | [diff] [blame] | 1053 | mTransport = transport; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1054 | mQueue = queue; |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1055 | mJournal = journal; |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 1056 | |
| 1057 | try { |
| 1058 | mStateDir = new File(mBaseStateDir, transport.transportDirName()); |
| 1059 | } catch (RemoteException e) { |
| 1060 | // can't happen; the transport is local |
| 1061 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1062 | } |
| 1063 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1064 | public void run() { |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1065 | int status = BackupConstants.TRANSPORT_OK; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1066 | long startRealtime = SystemClock.elapsedRealtime(); |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1067 | if (DEBUG) Log.v(TAG, "Beginning backup of " + mQueue.size() + " targets"); |
| 1068 | |
| Christopher Tate | 7958834 | 2009-06-30 16:11:49 -0700 | [diff] [blame] | 1069 | // Backups run at background priority |
| 1070 | Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND); |
| 1071 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1072 | try { |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1073 | EventLog.writeEvent(EventLogTags.BACKUP_START, mTransport.transportDirName()); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1074 | |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1075 | // If we haven't stored package manager metadata yet, we must init the transport. |
| 1076 | File pmState = new File(mStateDir, PACKAGE_MANAGER_SENTINEL); |
| 1077 | if (status == BackupConstants.TRANSPORT_OK && pmState.length() <= 0) { |
| 1078 | Log.i(TAG, "Initializing (wiping) backup state and transport storage"); |
| 1079 | resetBackupState(mStateDir); // Just to make sure. |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1080 | status = mTransport.initializeDevice(); |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1081 | if (status == BackupConstants.TRANSPORT_OK) { |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1082 | EventLog.writeEvent(EventLogTags.BACKUP_INITIALIZE); |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1083 | } else { |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1084 | EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, "(initialize)"); |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1085 | Log.e(TAG, "Transport error in initializeDevice()"); |
| 1086 | } |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1087 | } |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1088 | |
| 1089 | // The package manager doesn't have a proper <application> etc, but since |
| 1090 | // it's running here in the system process we can just set up its agent |
| 1091 | // directly and use a synthetic BackupRequest. We always run this pass |
| 1092 | // because it's cheap and this way we guarantee that we don't get out of |
| 1093 | // step even if we're selecting among various transports at run time. |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1094 | if (status == BackupConstants.TRANSPORT_OK) { |
| 1095 | PackageManagerBackupAgent pmAgent = new PackageManagerBackupAgent( |
| 1096 | mPackageManager, allAgentPackages()); |
| 1097 | BackupRequest pmRequest = new BackupRequest(new ApplicationInfo(), false); |
| 1098 | pmRequest.appInfo.packageName = PACKAGE_MANAGER_SENTINEL; |
| 1099 | status = processOneBackup(pmRequest, |
| 1100 | IBackupAgent.Stub.asInterface(pmAgent.onBind()), mTransport); |
| 1101 | } |
| Christopher Tate | 90967f4 | 2009-09-20 15:28:33 -0700 | [diff] [blame] | 1102 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1103 | if (status == BackupConstants.TRANSPORT_OK) { |
| 1104 | // Now run all the backups in our queue |
| 1105 | status = doQueuedBackups(mTransport); |
| 1106 | } |
| 1107 | |
| 1108 | if (status == BackupConstants.TRANSPORT_OK) { |
| 1109 | // Tell the transport to finish everything it has buffered |
| 1110 | status = mTransport.finishBackup(); |
| 1111 | if (status == BackupConstants.TRANSPORT_OK) { |
| 1112 | int millis = (int) (SystemClock.elapsedRealtime() - startRealtime); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1113 | EventLog.writeEvent(EventLogTags.BACKUP_SUCCESS, mQueue.size(), millis); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1114 | } else { |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1115 | EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, "(finish)"); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1116 | Log.e(TAG, "Transport error in finishBackup()"); |
| 1117 | } |
| 1118 | } |
| 1119 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1120 | if (status == BackupConstants.TRANSPORT_NOT_INITIALIZED) { |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 1121 | // The backend reports that our dataset has been wiped. We need to |
| 1122 | // reset all of our bookkeeping and instead run a new backup pass for |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 1123 | // everything. |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1124 | EventLog.writeEvent(EventLogTags.BACKUP_RESET, mTransport.transportDirName()); |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 1125 | resetBackupState(mStateDir); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1126 | } |
| 1127 | } catch (Exception e) { |
| 1128 | Log.e(TAG, "Error in backup thread", e); |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1129 | status = BackupConstants.TRANSPORT_ERROR; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1130 | } finally { |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1131 | // If things went wrong, we need to re-stage the apps we had expected |
| 1132 | // to be backing up in this pass. This journals the package names in |
| 1133 | // the current active pending-backup file, not in the we are holding |
| 1134 | // here in mJournal. |
| 1135 | if (status != BackupConstants.TRANSPORT_OK) { |
| 1136 | Log.w(TAG, "Backup pass unsuccessful, restaging"); |
| 1137 | for (BackupRequest req : mQueue) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1138 | dataChanged(req.appInfo.packageName); |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1139 | } |
| Christopher Tate | 21ab6a5 | 2009-09-24 18:01:46 -0700 | [diff] [blame] | 1140 | |
| 1141 | // We also want to reset the backup schedule based on whatever |
| 1142 | // the transport suggests by way of retry/backoff time. |
| 1143 | try { |
| 1144 | startBackupAlarmsLocked(mTransport.requestBackupTime()); |
| 1145 | } catch (RemoteException e) { /* cannot happen */ } |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | // Either backup was successful, in which case we of course do not need |
| 1149 | // this pass's journal any more; or it failed, in which case we just |
| 1150 | // re-enqueued all of these packages in the current active journal. |
| 1151 | // Either way, we no longer need this pass's journal. |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1152 | if (mJournal != null && !mJournal.delete()) { |
| Christopher Tate | b03b3bb | 2009-09-22 11:14:17 -0700 | [diff] [blame] | 1153 | Log.e(TAG, "Unable to remove backup journal file " + mJournal); |
| 1154 | } |
| 1155 | |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 1156 | // Only once we're entirely finished do we release the wakelock |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1157 | if (status == BackupConstants.TRANSPORT_NOT_INITIALIZED) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1158 | backupNow(); |
| 1159 | } |
| 1160 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1161 | mWakelock.release(); |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1162 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1163 | } |
| 1164 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1165 | private int doQueuedBackups(IBackupTransport transport) { |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1166 | for (BackupRequest request : mQueue) { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1167 | Log.d(TAG, "starting agent for backup of " + request); |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1168 | |
| Christopher Tate | 0749dcd | 2009-08-13 15:13:03 -0700 | [diff] [blame] | 1169 | // Don't run backup, even if requested, if the target app does not have |
| 1170 | // the requisite permission |
| 1171 | if (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA, |
| 1172 | request.appInfo.packageName) != PackageManager.PERMISSION_GRANTED) { |
| 1173 | Log.w(TAG, "Skipping backup of unprivileged package " |
| 1174 | + request.appInfo.packageName); |
| 1175 | continue; |
| 1176 | } |
| 1177 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1178 | IBackupAgent agent = null; |
| 1179 | int mode = (request.fullBackup) |
| 1180 | ? IApplicationThread.BACKUP_MODE_FULL |
| 1181 | : IApplicationThread.BACKUP_MODE_INCREMENTAL; |
| 1182 | try { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1183 | agent = bindToAgentSynchronous(request.appInfo, mode); |
| 1184 | if (agent != null) { |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1185 | int result = processOneBackup(request, agent, transport); |
| 1186 | if (result != BackupConstants.TRANSPORT_OK) return result; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1187 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1188 | } catch (SecurityException ex) { |
| 1189 | // Try for the next one. |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1190 | Log.d(TAG, "error in bind/backup", ex); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1191 | } finally { |
| 1192 | try { // unbind even on timeout, just in case |
| 1193 | mActivityManager.unbindBackupAgent(request.appInfo); |
| 1194 | } catch (RemoteException e) {} |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1195 | } |
| 1196 | } |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1197 | |
| 1198 | return BackupConstants.TRANSPORT_OK; |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1199 | } |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1200 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1201 | private int processOneBackup(BackupRequest request, IBackupAgent agent, |
| 1202 | IBackupTransport transport) { |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1203 | final String packageName = request.appInfo.packageName; |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1204 | if (DEBUG) Log.d(TAG, "processOneBackup doBackup() on " + packageName); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1205 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1206 | File savedStateName = new File(mStateDir, packageName); |
| 1207 | File backupDataName = new File(mDataDir, packageName + ".data"); |
| 1208 | File newStateName = new File(mStateDir, packageName + ".new"); |
| 1209 | |
| 1210 | ParcelFileDescriptor savedState = null; |
| 1211 | ParcelFileDescriptor backupData = null; |
| 1212 | ParcelFileDescriptor newState = null; |
| 1213 | |
| 1214 | PackageInfo packInfo; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1215 | int token = mTokenGenerator.nextInt(); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1216 | try { |
| 1217 | // Look up the package info & signatures. This is first so that if it |
| 1218 | // throws an exception, there's no file setup yet that would need to |
| 1219 | // be unraveled. |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 1220 | if (packageName.equals(PACKAGE_MANAGER_SENTINEL)) { |
| 1221 | // The metadata 'package' is synthetic |
| 1222 | packInfo = new PackageInfo(); |
| 1223 | packInfo.packageName = packageName; |
| 1224 | } else { |
| 1225 | packInfo = mPackageManager.getPackageInfo(packageName, |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1226 | PackageManager.GET_SIGNATURES); |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 1227 | } |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1228 | |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1229 | // In a full backup, we pass a null ParcelFileDescriptor as |
| 1230 | // the saved-state "file" |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1231 | if (!request.fullBackup) { |
| 1232 | savedState = ParcelFileDescriptor.open(savedStateName, |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1233 | ParcelFileDescriptor.MODE_READ_ONLY | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1234 | ParcelFileDescriptor.MODE_CREATE); // Make an empty file if necessary |
| 1235 | } |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1236 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1237 | backupData = ParcelFileDescriptor.open(backupDataName, |
| 1238 | ParcelFileDescriptor.MODE_READ_WRITE | |
| 1239 | ParcelFileDescriptor.MODE_CREATE | |
| 1240 | ParcelFileDescriptor.MODE_TRUNCATE); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1241 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1242 | newState = ParcelFileDescriptor.open(newStateName, |
| 1243 | ParcelFileDescriptor.MODE_READ_WRITE | |
| 1244 | ParcelFileDescriptor.MODE_CREATE | |
| 1245 | ParcelFileDescriptor.MODE_TRUNCATE); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1246 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1247 | // Initiate the target's backup pass |
| 1248 | prepareOperationTimeout(token, TIMEOUT_BACKUP_INTERVAL); |
| 1249 | agent.doBackup(savedState, backupData, newState, token, mBackupManagerBinder); |
| 1250 | boolean success = waitUntilOperationComplete(token); |
| 1251 | |
| 1252 | if (!success) { |
| 1253 | // timeout -- bail out into the failed-transaction logic |
| 1254 | throw new RuntimeException("Backup timeout"); |
| 1255 | } |
| 1256 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1257 | logBackupComplete(packageName); |
| 1258 | if (DEBUG) Log.v(TAG, "doBackup() success"); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1259 | } catch (Exception e) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1260 | Log.e(TAG, "Error backing up " + packageName, e); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1261 | EventLog.writeEvent(EventLogTags.BACKUP_AGENT_FAILURE, packageName, e.toString()); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1262 | backupDataName.delete(); |
| 1263 | newStateName.delete(); |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 1264 | return BackupConstants.TRANSPORT_ERROR; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1265 | } finally { |
| 1266 | try { if (savedState != null) savedState.close(); } catch (IOException e) {} |
| 1267 | try { if (backupData != null) backupData.close(); } catch (IOException e) {} |
| 1268 | try { if (newState != null) newState.close(); } catch (IOException e) {} |
| 1269 | savedState = backupData = newState = null; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1270 | synchronized (mCurrentOpLock) { |
| 1271 | mCurrentOperations.clear(); |
| 1272 | } |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
| 1275 | // Now propagate the newly-backed-up data to the transport |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1276 | int result = BackupConstants.TRANSPORT_OK; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1277 | try { |
| 1278 | int size = (int) backupDataName.length(); |
| 1279 | if (size > 0) { |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1280 | if (result == BackupConstants.TRANSPORT_OK) { |
| 1281 | backupData = ParcelFileDescriptor.open(backupDataName, |
| 1282 | ParcelFileDescriptor.MODE_READ_ONLY); |
| 1283 | result = transport.performBackup(packInfo, backupData); |
| 1284 | } |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1285 | |
| Dan Egnor | 83861e7 | 2009-09-17 16:17:55 -0700 | [diff] [blame] | 1286 | // TODO - We call finishBackup() for each application backed up, because |
| 1287 | // we need to know now whether it succeeded or failed. Instead, we should |
| 1288 | // hold off on finishBackup() until the end, which implies holding off on |
| 1289 | // renaming *all* the output state files (see below) until that happens. |
| 1290 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1291 | if (result == BackupConstants.TRANSPORT_OK) { |
| 1292 | result = transport.finishBackup(); |
| Dan Egnor | 83861e7 | 2009-09-17 16:17:55 -0700 | [diff] [blame] | 1293 | } |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1294 | } else { |
| 1295 | if (DEBUG) Log.i(TAG, "no backup data written; not calling transport"); |
| 1296 | } |
| 1297 | |
| 1298 | // After successful transport, delete the now-stale data |
| 1299 | // and juggle the files so that next time we supply the agent |
| 1300 | // with the new state file it just created. |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1301 | if (result == BackupConstants.TRANSPORT_OK) { |
| 1302 | backupDataName.delete(); |
| 1303 | newStateName.renameTo(savedStateName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1304 | EventLog.writeEvent(EventLogTags.BACKUP_PACKAGE, packageName, size); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1305 | } else { |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1306 | EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, packageName); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1307 | } |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1308 | } catch (Exception e) { |
| 1309 | Log.e(TAG, "Transport error backing up " + packageName, e); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1310 | EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, packageName); |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1311 | result = BackupConstants.TRANSPORT_ERROR; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1312 | } finally { |
| 1313 | try { if (backupData != null) backupData.close(); } catch (IOException e) {} |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1314 | } |
| Christopher Tate | d55e18a | 2009-09-21 10:12:59 -0700 | [diff] [blame] | 1315 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1316 | return result; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1317 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1318 | } |
| 1319 | |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1320 | |
| 1321 | // ----- Restore handling ----- |
| 1322 | |
| Christopher Tate | 78dd4a7 | 2009-11-04 11:49:08 -0800 | [diff] [blame] | 1323 | private boolean signaturesMatch(Signature[] storedSigs, PackageInfo target) { |
| 1324 | // If the target resides on the system partition, we allow it to restore |
| 1325 | // data from the like-named package in a restore set even if the signatures |
| 1326 | // do not match. (Unlike general applications, those flashed to the system |
| 1327 | // partition will be signed with the device's platform certificate, so on |
| 1328 | // different phones the same system app will have different signatures.) |
| 1329 | if ((target.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) { |
| 1330 | if (DEBUG) Log.v(TAG, "System app " + target.packageName + " - skipping sig check"); |
| 1331 | return true; |
| 1332 | } |
| 1333 | |
| Christopher Tate | 20efdf6b | 2009-06-18 19:41:36 -0700 | [diff] [blame] | 1334 | // Allow unsigned apps, but not signed on one device and unsigned on the other |
| 1335 | // !!! TODO: is this the right policy? |
| Christopher Tate | 78dd4a7 | 2009-11-04 11:49:08 -0800 | [diff] [blame] | 1336 | Signature[] deviceSigs = target.signatures; |
| Christopher Tate | 6aa41f4 | 2009-06-19 14:14:22 -0700 | [diff] [blame] | 1337 | if (DEBUG) Log.v(TAG, "signaturesMatch(): stored=" + storedSigs |
| 1338 | + " device=" + deviceSigs); |
| Christopher Tate | 20efdf6b | 2009-06-18 19:41:36 -0700 | [diff] [blame] | 1339 | if ((storedSigs == null || storedSigs.length == 0) |
| 1340 | && (deviceSigs == null || deviceSigs.length == 0)) { |
| 1341 | return true; |
| 1342 | } |
| 1343 | if (storedSigs == null || deviceSigs == null) { |
| 1344 | return false; |
| 1345 | } |
| 1346 | |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 1347 | // !!! TODO: this demands that every stored signature match one |
| 1348 | // that is present on device, and does not demand the converse. |
| 1349 | // Is this this right policy? |
| 1350 | int nStored = storedSigs.length; |
| 1351 | int nDevice = deviceSigs.length; |
| 1352 | |
| 1353 | for (int i=0; i < nStored; i++) { |
| 1354 | boolean match = false; |
| 1355 | for (int j=0; j < nDevice; j++) { |
| 1356 | if (storedSigs[i].equals(deviceSigs[j])) { |
| 1357 | match = true; |
| 1358 | break; |
| 1359 | } |
| 1360 | } |
| 1361 | if (!match) { |
| 1362 | return false; |
| 1363 | } |
| 1364 | } |
| 1365 | return true; |
| 1366 | } |
| 1367 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1368 | class PerformRestoreTask implements Runnable { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1369 | private IBackupTransport mTransport; |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1370 | private IRestoreObserver mObserver; |
| Dan Egnor | 156411d | 2009-06-26 13:20:02 -0700 | [diff] [blame] | 1371 | private long mToken; |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 1372 | private File mStateDir; |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1373 | |
| Christopher Tate | 5cbbf56 | 2009-06-22 16:44:51 -0700 | [diff] [blame] | 1374 | class RestoreRequest { |
| 1375 | public PackageInfo app; |
| 1376 | public int storedAppVersion; |
| 1377 | |
| 1378 | RestoreRequest(PackageInfo _app, int _version) { |
| 1379 | app = _app; |
| 1380 | storedAppVersion = _version; |
| 1381 | } |
| 1382 | } |
| 1383 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1384 | PerformRestoreTask(IBackupTransport transport, IRestoreObserver observer, |
| Dan Egnor | 156411d | 2009-06-26 13:20:02 -0700 | [diff] [blame] | 1385 | long restoreSetToken) { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1386 | mTransport = transport; |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 1387 | Log.d(TAG, "PerformRestoreThread mObserver=" + mObserver); |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1388 | mObserver = observer; |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 1389 | mToken = restoreSetToken; |
| Christopher Tate | 5cb400b | 2009-06-25 16:03:14 -0700 | [diff] [blame] | 1390 | |
| 1391 | try { |
| 1392 | mStateDir = new File(mBaseStateDir, transport.transportDirName()); |
| 1393 | } catch (RemoteException e) { |
| 1394 | // can't happen; the transport is local |
| 1395 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1398 | public void run() { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1399 | long startRealtime = SystemClock.elapsedRealtime(); |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 1400 | if (DEBUG) Log.v(TAG, "Beginning restore process mTransport=" + mTransport |
| Christopher Tate | f2c321a | 2009-08-10 15:43:36 -0700 | [diff] [blame] | 1401 | + " mObserver=" + mObserver + " mToken=" + Long.toHexString(mToken)); |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1402 | /** |
| 1403 | * Restore sequence: |
| 1404 | * |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1405 | * 1. get the restore set description for our identity |
| 1406 | * 2. for each app in the restore set: |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1407 | * 2.a. if it's restorable on this device, add it to the restore queue |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1408 | * 3. for each app in the restore queue: |
| 1409 | * 3.a. clear the app data |
| 1410 | * 3.b. get the restore data for the app from the transport |
| 1411 | * 3.c. launch the backup agent for the app |
| 1412 | * 3.d. agent.doRestore() with the data from the server |
| 1413 | * 3.e. unbind the agent [and kill the app?] |
| 1414 | * 4. shut down the transport |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1415 | * |
| 1416 | * On errors, we try our best to recover and move on to the next |
| 1417 | * application, but if necessary we abort the whole operation -- |
| 1418 | * the user is waiting, after al. |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1419 | */ |
| 1420 | |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1421 | int error = -1; // assume error |
| 1422 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1423 | // build the set of apps to restore |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1424 | try { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1425 | // TODO: Log this before getAvailableRestoreSets, somehow |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1426 | EventLog.writeEvent(EventLogTags.RESTORE_START, mTransport.transportDirName(), mToken); |
| Christopher Tate | abce4e8 | 2009-06-18 18:35:32 -0700 | [diff] [blame] | 1427 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1428 | // Get the list of all packages which have backup enabled. |
| 1429 | // (Include the Package Manager metadata pseudo-package first.) |
| 1430 | ArrayList<PackageInfo> restorePackages = new ArrayList<PackageInfo>(); |
| 1431 | PackageInfo omPackage = new PackageInfo(); |
| 1432 | omPackage.packageName = PACKAGE_MANAGER_SENTINEL; |
| 1433 | restorePackages.add(omPackage); |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1434 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1435 | List<PackageInfo> agentPackages = allAgentPackages(); |
| 1436 | restorePackages.addAll(agentPackages); |
| 1437 | |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1438 | // let the observer know that we're running |
| 1439 | if (mObserver != null) { |
| 1440 | try { |
| 1441 | // !!! TODO: get an actual count from the transport after |
| 1442 | // its startRestore() runs? |
| 1443 | mObserver.restoreStarting(restorePackages.size()); |
| 1444 | } catch (RemoteException e) { |
| 1445 | Log.d(TAG, "Restore observer died at restoreStarting"); |
| 1446 | mObserver = null; |
| 1447 | } |
| 1448 | } |
| 1449 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1450 | if (mTransport.startRestore(mToken, restorePackages.toArray(new PackageInfo[0])) != |
| 1451 | BackupConstants.TRANSPORT_OK) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1452 | Log.e(TAG, "Error starting restore operation"); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1453 | EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1454 | return; |
| 1455 | } |
| 1456 | |
| 1457 | String packageName = mTransport.nextRestorePackage(); |
| 1458 | if (packageName == null) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1459 | Log.e(TAG, "Error getting first restore package"); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1460 | EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1461 | return; |
| 1462 | } else if (packageName.equals("")) { |
| 1463 | Log.i(TAG, "No restore data available"); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1464 | int millis = (int) (SystemClock.elapsedRealtime() - startRealtime); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1465 | EventLog.writeEvent(EventLogTags.RESTORE_SUCCESS, 0, millis); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1466 | return; |
| 1467 | } else if (!packageName.equals(PACKAGE_MANAGER_SENTINEL)) { |
| 1468 | Log.e(TAG, "Expected restore data for \"" + PACKAGE_MANAGER_SENTINEL |
| 1469 | + "\", found only \"" + packageName + "\""); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1470 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, PACKAGE_MANAGER_SENTINEL, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1471 | "Package manager data missing"); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1472 | return; |
| 1473 | } |
| 1474 | |
| 1475 | // Pull the Package Manager metadata from the restore set first |
| 1476 | PackageManagerBackupAgent pmAgent = new PackageManagerBackupAgent( |
| 1477 | mPackageManager, agentPackages); |
| 1478 | processOneRestore(omPackage, 0, IBackupAgent.Stub.asInterface(pmAgent.onBind())); |
| 1479 | |
| Christopher Tate | 8c03247 | 2009-07-02 14:28:47 -0700 | [diff] [blame] | 1480 | // Verify that the backup set includes metadata. If not, we can't do |
| 1481 | // signature/version verification etc, so we simply do not proceed with |
| 1482 | // the restore operation. |
| Christopher Tate | 3d7cd13 | 2009-07-07 14:23:07 -0700 | [diff] [blame] | 1483 | if (!pmAgent.hasMetadata()) { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1484 | Log.e(TAG, "No restore metadata available, so not restoring settings"); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1485 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, PACKAGE_MANAGER_SENTINEL, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1486 | "Package manager restore metadata missing"); |
| Christopher Tate | 8c03247 | 2009-07-02 14:28:47 -0700 | [diff] [blame] | 1487 | return; |
| 1488 | } |
| 1489 | |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1490 | int count = 0; |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1491 | for (;;) { |
| 1492 | packageName = mTransport.nextRestorePackage(); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1493 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1494 | if (packageName == null) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1495 | Log.e(TAG, "Error getting next restore package"); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1496 | EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1497 | return; |
| 1498 | } else if (packageName.equals("")) { |
| 1499 | break; |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1500 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1501 | |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1502 | if (mObserver != null) { |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1503 | try { |
| 1504 | mObserver.onUpdate(count); |
| 1505 | } catch (RemoteException e) { |
| 1506 | Log.d(TAG, "Restore observer died in onUpdate"); |
| 1507 | mObserver = null; |
| 1508 | } |
| 1509 | } |
| 1510 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1511 | Metadata metaInfo = pmAgent.getRestoredMetadata(packageName); |
| 1512 | if (metaInfo == null) { |
| 1513 | Log.e(TAG, "Missing metadata for " + packageName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1514 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1515 | "Package metadata missing"); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1516 | continue; |
| 1517 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1518 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1519 | PackageInfo packageInfo; |
| 1520 | try { |
| 1521 | int flags = PackageManager.GET_SIGNATURES; |
| 1522 | packageInfo = mPackageManager.getPackageInfo(packageName, flags); |
| 1523 | } catch (NameNotFoundException e) { |
| 1524 | Log.e(TAG, "Invalid package restoring data", e); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1525 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1526 | "Package missing on device"); |
| 1527 | continue; |
| 1528 | } |
| 1529 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1530 | if (metaInfo.versionCode > packageInfo.versionCode) { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1531 | String message = "Version " + metaInfo.versionCode |
| 1532 | + " > installed version " + packageInfo.versionCode; |
| 1533 | Log.w(TAG, "Package " + packageName + ": " + message); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1534 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, message); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1535 | continue; |
| 1536 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1537 | |
| Christopher Tate | 78dd4a7 | 2009-11-04 11:49:08 -0800 | [diff] [blame] | 1538 | if (!signaturesMatch(metaInfo.signatures, packageInfo)) { |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1539 | Log.w(TAG, "Signature mismatch restoring " + packageName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1540 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1541 | "Signature mismatch"); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1542 | continue; |
| 1543 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1544 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1545 | if (DEBUG) Log.v(TAG, "Package " + packageName |
| 1546 | + " restore version [" + metaInfo.versionCode |
| 1547 | + "] is compatible with installed version [" |
| 1548 | + packageInfo.versionCode + "]"); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1549 | |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1550 | // Now perform the actual restore: first clear the app's data |
| 1551 | // if appropriate |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1552 | clearApplicationDataSynchronous(packageName); |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1553 | |
| 1554 | // Then set up and bind the agent (with a restricted Application object |
| 1555 | // unless the application says otherwise) |
| 1556 | boolean useRealApp = (packageInfo.applicationInfo.flags |
| 1557 | & ApplicationInfo.FLAG_RESTORE_NEEDS_APPLICATION) != 0; |
| 1558 | if (DEBUG && useRealApp) { |
| 1559 | Log.v(TAG, "agent requires real Application subclass for restore"); |
| 1560 | } |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1561 | IBackupAgent agent = bindToAgentSynchronous( |
| 1562 | packageInfo.applicationInfo, |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1563 | (useRealApp ? IApplicationThread.BACKUP_MODE_INCREMENTAL |
| 1564 | : IApplicationThread.BACKUP_MODE_RESTORE)); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1565 | if (agent == null) { |
| 1566 | Log.w(TAG, "Can't find backup agent for " + packageName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1567 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1568 | "Restore agent missing"); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1569 | continue; |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1570 | } |
| 1571 | |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1572 | // And then finally run the restore on this agent |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1573 | try { |
| 1574 | processOneRestore(packageInfo, metaInfo.versionCode, agent); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1575 | ++count; |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1576 | } finally { |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1577 | // unbind and tidy up even on timeout or failure, just in case |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1578 | mActivityManager.unbindBackupAgent(packageInfo.applicationInfo); |
| Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 1579 | |
| 1580 | // The agent was probably running with a stub Application object, |
| 1581 | // which isn't a valid run mode for the main app logic. Shut |
| 1582 | // down the app so that next time it's launched, it gets the |
| 1583 | // usual full initialization. |
| 1584 | if ((packageInfo.applicationInfo.flags |
| 1585 | & ApplicationInfo.FLAG_KILL_AFTER_RESTORE) != 0) { |
| 1586 | if (DEBUG) Log.d(TAG, "Restore complete, killing host process of " |
| 1587 | + packageInfo.applicationInfo.processName); |
| 1588 | mActivityManager.killApplicationProcess( |
| 1589 | packageInfo.applicationInfo.processName, |
| 1590 | packageInfo.applicationInfo.uid); |
| 1591 | } |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1592 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1593 | } |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1594 | |
| 1595 | // if we get this far, report success to the observer |
| 1596 | error = 0; |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1597 | int millis = (int) (SystemClock.elapsedRealtime() - startRealtime); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1598 | EventLog.writeEvent(EventLogTags.RESTORE_SUCCESS, count, millis); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1599 | } catch (Exception e) { |
| 1600 | Log.e(TAG, "Error in restore thread", e); |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1601 | } finally { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1602 | if (DEBUG) Log.d(TAG, "finishing restore mObserver=" + mObserver); |
| 1603 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1604 | try { |
| 1605 | mTransport.finishRestore(); |
| 1606 | } catch (RemoteException e) { |
| 1607 | Log.e(TAG, "Error finishing restore", e); |
| 1608 | } |
| Christopher Tate | 7d562ec | 2009-06-25 18:03:43 -0700 | [diff] [blame] | 1609 | |
| 1610 | if (mObserver != null) { |
| 1611 | try { |
| 1612 | mObserver.restoreFinished(error); |
| 1613 | } catch (RemoteException e) { |
| 1614 | Log.d(TAG, "Restore observer died at restoreFinished"); |
| 1615 | } |
| 1616 | } |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1617 | |
| 1618 | // done; we can finally release the wakelock |
| 1619 | mWakelock.release(); |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1620 | } |
| 1621 | } |
| 1622 | |
| Dan Egnor | efe5264 | 2009-06-24 00:16:33 -0700 | [diff] [blame] | 1623 | // Do the guts of a restore of one application, using mTransport.getRestoreData(). |
| 1624 | void processOneRestore(PackageInfo app, int appVersionCode, IBackupAgent agent) { |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1625 | // !!! TODO: actually run the restore through mTransport |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1626 | final String packageName = app.packageName; |
| 1627 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1628 | if (DEBUG) Log.d(TAG, "processOneRestore packageName=" + packageName); |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 1629 | |
| Christopher Tate | 0749dcd | 2009-08-13 15:13:03 -0700 | [diff] [blame] | 1630 | // Don't restore to unprivileged packages |
| 1631 | if (mPackageManager.checkPermission(android.Manifest.permission.BACKUP_DATA, |
| 1632 | packageName) != PackageManager.PERMISSION_GRANTED) { |
| 1633 | Log.d(TAG, "Skipping restore of unprivileged package " + packageName); |
| 1634 | } |
| 1635 | |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1636 | // !!! TODO: get the dirs from the transport |
| 1637 | File backupDataName = new File(mDataDir, packageName + ".restore"); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1638 | File newStateName = new File(mStateDir, packageName + ".new"); |
| 1639 | File savedStateName = new File(mStateDir, packageName); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1640 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1641 | ParcelFileDescriptor backupData = null; |
| 1642 | ParcelFileDescriptor newState = null; |
| 1643 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1644 | int token = mTokenGenerator.nextInt(); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1645 | try { |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1646 | // Run the transport's restore pass |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1647 | backupData = ParcelFileDescriptor.open(backupDataName, |
| 1648 | ParcelFileDescriptor.MODE_READ_WRITE | |
| 1649 | ParcelFileDescriptor.MODE_CREATE | |
| 1650 | ParcelFileDescriptor.MODE_TRUNCATE); |
| 1651 | |
| Dan Egnor | 0144516 | 2009-09-21 17:04:05 -0700 | [diff] [blame] | 1652 | if (mTransport.getRestoreData(backupData) != BackupConstants.TRANSPORT_OK) { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1653 | Log.e(TAG, "Error getting restore data for " + packageName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1654 | EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1655 | return; |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1656 | } |
| 1657 | |
| 1658 | // Okay, we have the data. Now have the agent do the restore. |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1659 | backupData.close(); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1660 | backupData = ParcelFileDescriptor.open(backupDataName, |
| 1661 | ParcelFileDescriptor.MODE_READ_ONLY); |
| 1662 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1663 | newState = ParcelFileDescriptor.open(newStateName, |
| 1664 | ParcelFileDescriptor.MODE_READ_WRITE | |
| 1665 | ParcelFileDescriptor.MODE_CREATE | |
| 1666 | ParcelFileDescriptor.MODE_TRUNCATE); |
| 1667 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1668 | // Kick off the restore, checking for hung agents |
| 1669 | prepareOperationTimeout(token, TIMEOUT_RESTORE_INTERVAL); |
| 1670 | agent.doRestore(backupData, appVersionCode, newState, token, mBackupManagerBinder); |
| 1671 | boolean success = waitUntilOperationComplete(token); |
| 1672 | |
| 1673 | if (!success) { |
| 1674 | throw new RuntimeException("restore timeout"); |
| 1675 | } |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1676 | |
| 1677 | // if everything went okay, remember the recorded state now |
| Christopher Tate | 90967f4 | 2009-09-20 15:28:33 -0700 | [diff] [blame] | 1678 | // |
| 1679 | // !!! TODO: the restored data should be migrated on the server |
| 1680 | // side into the current dataset. In that case the new state file |
| 1681 | // we just created would reflect the data already extant in the |
| 1682 | // backend, so there'd be nothing more to do. Until that happens, |
| 1683 | // however, we need to make sure that we record the data to the |
| 1684 | // current backend dataset. (Yes, this means shipping the data over |
| 1685 | // the wire in both directions. That's bad, but consistency comes |
| 1686 | // first, then efficiency.) Once we introduce server-side data |
| 1687 | // migration to the newly-restored device's dataset, we will change |
| 1688 | // the following from a discard of the newly-written state to the |
| 1689 | // "correct" operation of renaming into the canonical state blob. |
| 1690 | newStateName.delete(); // TODO: remove; see above comment |
| 1691 | //newStateName.renameTo(savedStateName); // TODO: replace with this |
| 1692 | |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1693 | int size = (int) backupDataName.length(); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1694 | EventLog.writeEvent(EventLogTags.RESTORE_PACKAGE, packageName, size); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1695 | } catch (Exception e) { |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1696 | Log.e(TAG, "Error restoring data for " + packageName, e); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1697 | EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName, e.toString()); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1698 | |
| Christopher Tate | 9673304 | 2009-07-20 14:49:13 -0700 | [diff] [blame] | 1699 | // If the agent fails restore, it might have put the app's data |
| 1700 | // into an incoherent state. For consistency we wipe its data |
| 1701 | // again in this case before propagating the exception |
| Christopher Tate | 9673304 | 2009-07-20 14:49:13 -0700 | [diff] [blame] | 1702 | clearApplicationDataSynchronous(packageName); |
| Christopher Tate | 1531dc8 | 2009-07-24 16:37:43 -0700 | [diff] [blame] | 1703 | } finally { |
| 1704 | backupDataName.delete(); |
| Dan Egnor | bb9001c | 2009-07-27 12:20:13 -0700 | [diff] [blame] | 1705 | try { if (backupData != null) backupData.close(); } catch (IOException e) {} |
| 1706 | try { if (newState != null) newState.close(); } catch (IOException e) {} |
| 1707 | backupData = newState = null; |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1708 | mCurrentOperations.delete(token); |
| Christopher Tate | c7b31e3 | 2009-06-10 15:49:30 -0700 | [diff] [blame] | 1709 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1710 | } |
| 1711 | } |
| 1712 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1713 | class PerformClearTask implements Runnable { |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1714 | IBackupTransport mTransport; |
| 1715 | PackageInfo mPackage; |
| 1716 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1717 | PerformClearTask(IBackupTransport transport, PackageInfo packageInfo) { |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1718 | mTransport = transport; |
| 1719 | mPackage = packageInfo; |
| 1720 | } |
| 1721 | |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1722 | public void run() { |
| 1723 | try { |
| 1724 | // Clear the on-device backup state to ensure a full backup next time |
| 1725 | File stateDir = new File(mBaseStateDir, mTransport.transportDirName()); |
| 1726 | File stateFile = new File(stateDir, mPackage.packageName); |
| 1727 | stateFile.delete(); |
| 1728 | |
| 1729 | // Tell the transport to remove all the persistent storage for the app |
| Christopher Tate | 13f4a64 | 2009-09-30 20:06:45 -0700 | [diff] [blame] | 1730 | // TODO - need to handle failures |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1731 | mTransport.clearBackupData(mPackage); |
| 1732 | } catch (RemoteException e) { |
| 1733 | // can't happen; the transport is local |
| 1734 | } finally { |
| 1735 | try { |
| Christopher Tate | 13f4a64 | 2009-09-30 20:06:45 -0700 | [diff] [blame] | 1736 | // TODO - need to handle failures |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1737 | mTransport.finishBackup(); |
| 1738 | } catch (RemoteException e) { |
| 1739 | // can't happen; the transport is local |
| 1740 | } |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1741 | |
| 1742 | // Last but not least, release the cpu |
| 1743 | mWakelock.release(); |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1744 | } |
| 1745 | } |
| 1746 | } |
| 1747 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1748 | class PerformInitializeTask implements Runnable { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1749 | HashSet<String> mQueue; |
| 1750 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 1751 | PerformInitializeTask(HashSet<String> transportNames) { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1752 | mQueue = transportNames; |
| 1753 | } |
| 1754 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1755 | public void run() { |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1756 | try { |
| 1757 | for (String transportName : mQueue) { |
| 1758 | IBackupTransport transport = getTransport(transportName); |
| 1759 | if (transport == null) { |
| 1760 | Log.e(TAG, "Requested init for " + transportName + " but not found"); |
| 1761 | continue; |
| 1762 | } |
| 1763 | |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1764 | Log.i(TAG, "Initializing (wiping) backup transport storage: " + transportName); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1765 | EventLog.writeEvent(EventLogTags.BACKUP_START, transport.transportDirName()); |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1766 | long startRealtime = SystemClock.elapsedRealtime(); |
| 1767 | int status = transport.initializeDevice(); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1768 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1769 | if (status == BackupConstants.TRANSPORT_OK) { |
| 1770 | status = transport.finishBackup(); |
| 1771 | } |
| 1772 | |
| 1773 | // Okay, the wipe really happened. Clean up our local bookkeeping. |
| 1774 | if (status == BackupConstants.TRANSPORT_OK) { |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1775 | Log.i(TAG, "Device init successful"); |
| 1776 | int millis = (int) (SystemClock.elapsedRealtime() - startRealtime); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1777 | EventLog.writeEvent(EventLogTags.BACKUP_INITIALIZE); |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1778 | resetBackupState(new File(mBaseStateDir, transport.transportDirName())); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1779 | EventLog.writeEvent(EventLogTags.BACKUP_SUCCESS, 0, millis); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1780 | synchronized (mQueueLock) { |
| 1781 | recordInitPendingLocked(false, transportName); |
| 1782 | } |
| Dan Egnor | 726247c | 2009-09-29 19:12:31 -0700 | [diff] [blame] | 1783 | } else { |
| 1784 | // If this didn't work, requeue this one and try again |
| 1785 | // after a suitable interval |
| 1786 | Log.e(TAG, "Transport error in initializeDevice()"); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1787 | EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, "(initialize)"); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1788 | synchronized (mQueueLock) { |
| 1789 | recordInitPendingLocked(true, transportName); |
| 1790 | } |
| 1791 | // do this via another alarm to make sure of the wakelock states |
| 1792 | long delay = transport.requestBackupTime(); |
| 1793 | if (DEBUG) Log.w(TAG, "init failed on " |
| 1794 | + transportName + " resched in " + delay); |
| 1795 | mAlarmManager.set(AlarmManager.RTC_WAKEUP, |
| 1796 | System.currentTimeMillis() + delay, mRunInitIntent); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1797 | } |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1798 | } |
| 1799 | } catch (RemoteException e) { |
| 1800 | // can't happen; the transports are local |
| 1801 | } catch (Exception e) { |
| 1802 | Log.e(TAG, "Unexpected error performing init", e); |
| 1803 | } finally { |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 1804 | // Done; release the wakelock |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1805 | mWakelock.release(); |
| 1806 | } |
| 1807 | } |
| 1808 | } |
| 1809 | |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1810 | |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1811 | // ----- IBackupManager binder interface ----- |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1812 | |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1813 | public void dataChanged(String packageName) { |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1814 | // Record that we need a backup pass for the caller. Since multiple callers |
| 1815 | // may share a uid, we need to note all candidates within that uid and schedule |
| 1816 | // a backup pass for each of them. |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 1817 | EventLog.writeEvent(EventLogTags.BACKUP_DATA_CHANGED, packageName); |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 1818 | |
| Christopher Tate | 63d2700 | 2009-06-16 17:16:42 -0700 | [diff] [blame] | 1819 | // If the caller does not hold the BACKUP permission, it can only request a |
| 1820 | // backup of its own data. |
| 1821 | HashSet<ApplicationInfo> targets; |
| Dianne Hackborn | cf09829 | 2009-07-01 19:55:20 -0700 | [diff] [blame] | 1822 | if ((mContext.checkPermission(android.Manifest.permission.BACKUP, Binder.getCallingPid(), |
| Christopher Tate | 63d2700 | 2009-06-16 17:16:42 -0700 | [diff] [blame] | 1823 | Binder.getCallingUid())) == PackageManager.PERMISSION_DENIED) { |
| 1824 | targets = mBackupParticipants.get(Binder.getCallingUid()); |
| 1825 | } else { |
| 1826 | // a caller with full permission can ask to back up any participating app |
| 1827 | // !!! TODO: allow backup of ANY app? |
| Christopher Tate | 63d2700 | 2009-06-16 17:16:42 -0700 | [diff] [blame] | 1828 | targets = new HashSet<ApplicationInfo>(); |
| 1829 | int N = mBackupParticipants.size(); |
| 1830 | for (int i = 0; i < N; i++) { |
| 1831 | HashSet<ApplicationInfo> s = mBackupParticipants.valueAt(i); |
| 1832 | if (s != null) { |
| 1833 | targets.addAll(s); |
| 1834 | } |
| 1835 | } |
| 1836 | } |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1837 | if (targets != null) { |
| 1838 | synchronized (mQueueLock) { |
| 1839 | // Note that this client has made data changes that need to be backed up |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 1840 | for (ApplicationInfo app : targets) { |
| Christopher Tate | a8bf815 | 2009-04-30 11:36:21 -0700 | [diff] [blame] | 1841 | // validate the caller-supplied package name against the known set of |
| 1842 | // packages associated with this uid |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 1843 | if (app.packageName.equals(packageName)) { |
| Joe Onorato | 8ad0281 | 2009-05-13 01:41:44 -0400 | [diff] [blame] | 1844 | // Add the caller to the set of pending backups. If there is |
| 1845 | // one already there, then overwrite it, but no harm done. |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 1846 | BackupRequest req = new BackupRequest(app, false); |
| Christopher Tate | a7de384 | 2009-07-07 14:50:26 -0700 | [diff] [blame] | 1847 | if (mPendingBackups.put(app, req) == null) { |
| 1848 | // Journal this request in case of crash. The put() |
| 1849 | // operation returned null when this package was not already |
| 1850 | // in the set; we want to avoid touching the disk redundantly. |
| 1851 | writeToJournalLocked(packageName); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1852 | |
| Christopher Tate | 22b60d8 | 2009-07-07 16:36:02 -0700 | [diff] [blame] | 1853 | if (DEBUG) { |
| 1854 | int numKeys = mPendingBackups.size(); |
| 1855 | Log.d(TAG, "Now awaiting backup for " + numKeys + " participants:"); |
| 1856 | for (BackupRequest b : mPendingBackups.values()) { |
| 1857 | Log.d(TAG, " + " + b + " agent=" + b.appInfo.backupAgentName); |
| 1858 | } |
| 1859 | } |
| 1860 | } |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 1861 | } |
| 1862 | } |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1863 | } |
| Christopher Tate | df01dea | 2009-06-09 20:45:02 -0700 | [diff] [blame] | 1864 | } else { |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 1865 | Log.w(TAG, "dataChanged but no participant pkg='" + packageName + "'" |
| 1866 | + " uid=" + Binder.getCallingUid()); |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 1867 | } |
| 1868 | } |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 1869 | |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1870 | private void writeToJournalLocked(String str) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1871 | RandomAccessFile out = null; |
| 1872 | try { |
| 1873 | if (mJournal == null) mJournal = File.createTempFile("journal", null, mJournalDir); |
| 1874 | out = new RandomAccessFile(mJournal, "rws"); |
| 1875 | out.seek(out.length()); |
| 1876 | out.writeUTF(str); |
| 1877 | } catch (IOException e) { |
| 1878 | Log.e(TAG, "Can't write " + str + " to backup journal", e); |
| 1879 | mJournal = null; |
| 1880 | } finally { |
| 1881 | try { if (out != null) out.close(); } catch (IOException e) {} |
| Christopher Tate | cde87f4 | 2009-06-12 12:55:53 -0700 | [diff] [blame] | 1882 | } |
| 1883 | } |
| 1884 | |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1885 | // Clear the given package's backup data from the current transport |
| 1886 | public void clearBackupData(String packageName) { |
| 1887 | if (DEBUG) Log.v(TAG, "clearBackupData() of " + packageName); |
| 1888 | PackageInfo info; |
| 1889 | try { |
| 1890 | info = mPackageManager.getPackageInfo(packageName, PackageManager.GET_SIGNATURES); |
| 1891 | } catch (NameNotFoundException e) { |
| 1892 | Log.d(TAG, "No such package '" + packageName + "' - not clearing backup data"); |
| 1893 | return; |
| 1894 | } |
| 1895 | |
| 1896 | // If the caller does not hold the BACKUP permission, it can only request a |
| 1897 | // wipe of its own backed-up data. |
| 1898 | HashSet<ApplicationInfo> apps; |
| Christopher Tate | 4e3e50c | 2009-07-02 12:14:05 -0700 | [diff] [blame] | 1899 | if ((mContext.checkPermission(android.Manifest.permission.BACKUP, Binder.getCallingPid(), |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1900 | Binder.getCallingUid())) == PackageManager.PERMISSION_DENIED) { |
| 1901 | apps = mBackupParticipants.get(Binder.getCallingUid()); |
| 1902 | } else { |
| 1903 | // a caller with full permission can ask to back up any participating app |
| 1904 | // !!! TODO: allow data-clear of ANY app? |
| 1905 | if (DEBUG) Log.v(TAG, "Privileged caller, allowing clear of other apps"); |
| 1906 | apps = new HashSet<ApplicationInfo>(); |
| 1907 | int N = mBackupParticipants.size(); |
| 1908 | for (int i = 0; i < N; i++) { |
| 1909 | HashSet<ApplicationInfo> s = mBackupParticipants.valueAt(i); |
| 1910 | if (s != null) { |
| 1911 | apps.addAll(s); |
| 1912 | } |
| 1913 | } |
| 1914 | } |
| 1915 | |
| 1916 | // now find the given package in the set of candidate apps |
| 1917 | for (ApplicationInfo app : apps) { |
| 1918 | if (app.packageName.equals(packageName)) { |
| 1919 | if (DEBUG) Log.v(TAG, "Found the app - running clear process"); |
| 1920 | // found it; fire off the clear request |
| 1921 | synchronized (mQueueLock) { |
| Christopher Tate | aa93b04 | 2009-08-05 18:21:40 -0700 | [diff] [blame] | 1922 | long oldId = Binder.clearCallingIdentity(); |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1923 | mWakelock.acquire(); |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1924 | Message msg = mBackupHandler.obtainMessage(MSG_RUN_CLEAR, |
| 1925 | new ClearParams(getTransport(mCurrentTransport), info)); |
| 1926 | mBackupHandler.sendMessage(msg); |
| Christopher Tate | aa93b04 | 2009-08-05 18:21:40 -0700 | [diff] [blame] | 1927 | Binder.restoreCallingIdentity(oldId); |
| Christopher Tate | ee0e78a | 2009-07-02 11:17:03 -0700 | [diff] [blame] | 1928 | } |
| 1929 | break; |
| 1930 | } |
| 1931 | } |
| 1932 | } |
| 1933 | |
| Christopher Tate | ace7f09 | 2009-06-15 18:07:25 -0700 | [diff] [blame] | 1934 | // Run a backup pass immediately for any applications that have declared |
| 1935 | // that they have pending updates. |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 1936 | public void backupNow() { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 1937 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "backupNow"); |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 1938 | |
| Christopher Tate | ace7f09 | 2009-06-15 18:07:25 -0700 | [diff] [blame] | 1939 | if (DEBUG) Log.v(TAG, "Scheduling immediate backup pass"); |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 1940 | synchronized (mQueueLock) { |
| Christopher Tate | 21ab6a5 | 2009-09-24 18:01:46 -0700 | [diff] [blame] | 1941 | // Because the alarms we are using can jitter, and we want an *immediate* |
| 1942 | // backup pass to happen, we restart the timer beginning with "next time," |
| 1943 | // then manually fire the backup trigger intent ourselves. |
| 1944 | startBackupAlarmsLocked(BACKUP_INTERVAL); |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1945 | try { |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1946 | mRunBackupIntent.send(); |
| 1947 | } catch (PendingIntent.CanceledException e) { |
| 1948 | // should never happen |
| 1949 | Log.e(TAG, "run-backup intent cancelled!"); |
| 1950 | } |
| Christopher Tate | 4675812 | 2009-05-06 11:22:00 -0700 | [diff] [blame] | 1951 | } |
| 1952 | } |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 1953 | |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 1954 | // Enable/disable the backup service |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1955 | public void setBackupEnabled(boolean enable) { |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1956 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| 1957 | "setBackupEnabled"); |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1958 | |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1959 | Log.i(TAG, "Backup enabled => " + enable); |
| 1960 | |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1961 | boolean wasEnabled = mEnabled; |
| 1962 | synchronized (this) { |
| Dianne Hackborn | cf09829 | 2009-07-01 19:55:20 -0700 | [diff] [blame] | 1963 | Settings.Secure.putInt(mContext.getContentResolver(), |
| 1964 | Settings.Secure.BACKUP_ENABLED, enable ? 1 : 0); |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1965 | mEnabled = enable; |
| 1966 | } |
| 1967 | |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 1968 | synchronized (mQueueLock) { |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 1969 | if (enable && !wasEnabled && mProvisioned) { |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 1970 | // if we've just been enabled, start scheduling backup passes |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 1971 | startBackupAlarmsLocked(BACKUP_INTERVAL); |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 1972 | } else if (!enable) { |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1973 | // No longer enabled, so stop running backups |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1974 | if (DEBUG) Log.i(TAG, "Opting out of backup"); |
| 1975 | |
| Christopher Tate | b6787f2 | 2009-07-02 17:40:45 -0700 | [diff] [blame] | 1976 | mAlarmManager.cancel(mRunBackupIntent); |
| Christopher Tate | 4cc86e1 | 2009-09-21 19:36:51 -0700 | [diff] [blame] | 1977 | |
| 1978 | // This also constitutes an opt-out, so we wipe any data for |
| 1979 | // this device from the backend. We start that process with |
| 1980 | // an alarm in order to guarantee wakelock states. |
| 1981 | if (wasEnabled && mProvisioned) { |
| 1982 | // NOTE: we currently flush every registered transport, not just |
| 1983 | // the currently-active one. |
| 1984 | HashSet<String> allTransports; |
| 1985 | synchronized (mTransports) { |
| 1986 | allTransports = new HashSet<String>(mTransports.keySet()); |
| 1987 | } |
| 1988 | // build the set of transports for which we are posting an init |
| 1989 | for (String transport : allTransports) { |
| 1990 | recordInitPendingLocked(true, transport); |
| 1991 | } |
| 1992 | mAlarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), |
| 1993 | mRunInitIntent); |
| 1994 | } |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1995 | } |
| 1996 | } |
| Christopher Tate | 49401dd | 2009-07-01 12:34:29 -0700 | [diff] [blame] | 1997 | } |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 1998 | |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 1999 | // Mark the backup service as having been provisioned |
| 2000 | public void setBackupProvisioned(boolean available) { |
| 2001 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| 2002 | "setBackupProvisioned"); |
| 2003 | |
| 2004 | boolean wasProvisioned = mProvisioned; |
| 2005 | synchronized (this) { |
| 2006 | Settings.Secure.putInt(mContext.getContentResolver(), |
| 2007 | Settings.Secure.BACKUP_PROVISIONED, available ? 1 : 0); |
| 2008 | mProvisioned = available; |
| 2009 | } |
| 2010 | |
| 2011 | synchronized (mQueueLock) { |
| 2012 | if (available && !wasProvisioned && mEnabled) { |
| 2013 | // we're now good to go, so start the backup alarms |
| 2014 | startBackupAlarmsLocked(FIRST_BACKUP_INTERVAL); |
| 2015 | } else if (!available) { |
| 2016 | // No longer enabled, so stop running backups |
| 2017 | Log.w(TAG, "Backup service no longer provisioned"); |
| 2018 | mAlarmManager.cancel(mRunBackupIntent); |
| 2019 | } |
| 2020 | } |
| 2021 | } |
| 2022 | |
| 2023 | private void startBackupAlarmsLocked(long delayBeforeFirstBackup) { |
| Dan Egnor | c1c49c0 | 2009-10-30 17:35:39 -0700 | [diff] [blame] | 2024 | // We used to use setInexactRepeating(), but that may be linked to |
| 2025 | // backups running at :00 more often than not, creating load spikes. |
| 2026 | // Schedule at an exact time for now, and also add a bit of "fuzz". |
| 2027 | |
| 2028 | Random random = new Random(); |
| 2029 | long when = System.currentTimeMillis() + delayBeforeFirstBackup + |
| 2030 | random.nextInt(FUZZ_MILLIS); |
| 2031 | mAlarmManager.setRepeating(AlarmManager.RTC_WAKEUP, when, |
| 2032 | BACKUP_INTERVAL + random.nextInt(FUZZ_MILLIS), mRunBackupIntent); |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2033 | mNextBackupPass = when; |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 2034 | } |
| 2035 | |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 2036 | // Report whether the backup mechanism is currently enabled |
| 2037 | public boolean isBackupEnabled() { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2038 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "isBackupEnabled"); |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 2039 | return mEnabled; // no need to synchronize just to read it |
| 2040 | } |
| 2041 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2042 | // Report the name of the currently active transport |
| 2043 | public String getCurrentTransport() { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2044 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| Christopher Tate | 4e3e50c | 2009-07-02 12:14:05 -0700 | [diff] [blame] | 2045 | "getCurrentTransport"); |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 2046 | Log.v(TAG, "... getCurrentTransport() returning " + mCurrentTransport); |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2047 | return mCurrentTransport; |
| Christopher Tate | ace7f09 | 2009-06-15 18:07:25 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2050 | // Report all known, available backup transports |
| 2051 | public String[] listAllTransports() { |
| Christopher Tate | 34ebd0e | 2009-07-06 15:44:54 -0700 | [diff] [blame] | 2052 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "listAllTransports"); |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2053 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2054 | String[] list = null; |
| 2055 | ArrayList<String> known = new ArrayList<String>(); |
| 2056 | for (Map.Entry<String, IBackupTransport> entry : mTransports.entrySet()) { |
| 2057 | if (entry.getValue() != null) { |
| 2058 | known.add(entry.getKey()); |
| 2059 | } |
| 2060 | } |
| 2061 | |
| 2062 | if (known.size() > 0) { |
| 2063 | list = new String[known.size()]; |
| 2064 | known.toArray(list); |
| 2065 | } |
| 2066 | return list; |
| 2067 | } |
| 2068 | |
| 2069 | // Select which transport to use for the next backup operation. If the given |
| 2070 | // name is not one of the available transports, no action is taken and the method |
| 2071 | // returns null. |
| 2072 | public String selectBackupTransport(String transport) { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2073 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "selectBackupTransport"); |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2074 | |
| 2075 | synchronized (mTransports) { |
| 2076 | String prevTransport = null; |
| 2077 | if (mTransports.get(transport) != null) { |
| 2078 | prevTransport = mCurrentTransport; |
| 2079 | mCurrentTransport = transport; |
| Dianne Hackborn | cf09829 | 2009-07-01 19:55:20 -0700 | [diff] [blame] | 2080 | Settings.Secure.putString(mContext.getContentResolver(), |
| 2081 | Settings.Secure.BACKUP_TRANSPORT, transport); |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2082 | Log.v(TAG, "selectBackupTransport() set " + mCurrentTransport |
| 2083 | + " returning " + prevTransport); |
| 2084 | } else { |
| 2085 | Log.w(TAG, "Attempt to select unavailable transport " + transport); |
| 2086 | } |
| 2087 | return prevTransport; |
| 2088 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2089 | } |
| 2090 | |
| 2091 | // Callback: a requested backup agent has been instantiated. This should only |
| 2092 | // be called from the Activity Manager. |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2093 | public void agentConnected(String packageName, IBinder agentBinder) { |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2094 | synchronized(mAgentConnectLock) { |
| 2095 | if (Binder.getCallingUid() == Process.SYSTEM_UID) { |
| 2096 | Log.d(TAG, "agentConnected pkg=" + packageName + " agent=" + agentBinder); |
| 2097 | IBackupAgent agent = IBackupAgent.Stub.asInterface(agentBinder); |
| 2098 | mConnectedAgent = agent; |
| 2099 | mConnecting = false; |
| 2100 | } else { |
| 2101 | Log.w(TAG, "Non-system process uid=" + Binder.getCallingUid() |
| 2102 | + " claiming agent connected"); |
| 2103 | } |
| 2104 | mAgentConnectLock.notifyAll(); |
| 2105 | } |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2106 | } |
| 2107 | |
| 2108 | // Callback: a backup agent has failed to come up, or has unexpectedly quit. |
| 2109 | // If the agent failed to come up in the first place, the agentBinder argument |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2110 | // will be null. This should only be called from the Activity Manager. |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2111 | public void agentDisconnected(String packageName) { |
| 2112 | // TODO: handle backup being interrupted |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2113 | synchronized(mAgentConnectLock) { |
| 2114 | if (Binder.getCallingUid() == Process.SYSTEM_UID) { |
| 2115 | mConnectedAgent = null; |
| 2116 | mConnecting = false; |
| 2117 | } else { |
| 2118 | Log.w(TAG, "Non-system process uid=" + Binder.getCallingUid() |
| 2119 | + " claiming agent disconnected"); |
| 2120 | } |
| 2121 | mAgentConnectLock.notifyAll(); |
| 2122 | } |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2123 | } |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2124 | |
| Christopher Tate | 8c850b7 | 2009-06-07 19:33:20 -0700 | [diff] [blame] | 2125 | // Hand off a restore session |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2126 | public IRestoreSession beginRestoreSession(String transport) { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2127 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, "beginRestoreSession"); |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2128 | |
| 2129 | synchronized(this) { |
| 2130 | if (mActiveRestoreSession != null) { |
| 2131 | Log.d(TAG, "Restore session requested but one already active"); |
| 2132 | return null; |
| 2133 | } |
| Christopher Tate | 80202c8 | 2010-01-25 19:37:47 -0800 | [diff] [blame] | 2134 | mActiveRestoreSession = new ActiveRestoreSession(transport); |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2135 | } |
| 2136 | return mActiveRestoreSession; |
| Christopher Tate | 8c850b7 | 2009-06-07 19:33:20 -0700 | [diff] [blame] | 2137 | } |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2138 | |
| Christopher Tate | 44a2790 | 2010-01-27 17:15:49 -0800 | [diff] [blame] | 2139 | // Note that a currently-active backup agent has notified us that it has |
| 2140 | // completed the given outstanding asynchronous backup/restore operation. |
| 2141 | public void opComplete(int token) { |
| 2142 | synchronized (mCurrentOpLock) { |
| 2143 | if (DEBUG) Log.v(TAG, "opComplete: " + token); |
| 2144 | mCurrentOperations.put(token, OP_ACKNOWLEDGED); |
| 2145 | mCurrentOpLock.notifyAll(); |
| 2146 | } |
| 2147 | } |
| 2148 | |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2149 | // ----- Restore session ----- |
| 2150 | |
| Christopher Tate | 80202c8 | 2010-01-25 19:37:47 -0800 | [diff] [blame] | 2151 | class ActiveRestoreSession extends IRestoreSession.Stub { |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2152 | private static final String TAG = "RestoreSession"; |
| 2153 | |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2154 | private IBackupTransport mRestoreTransport = null; |
| 2155 | RestoreSet[] mRestoreSets = null; |
| 2156 | |
| Christopher Tate | 80202c8 | 2010-01-25 19:37:47 -0800 | [diff] [blame] | 2157 | ActiveRestoreSession(String transport) { |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2158 | mRestoreTransport = getTransport(transport); |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2159 | } |
| 2160 | |
| 2161 | // --- Binder interface --- |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2162 | public synchronized RestoreSet[] getAvailableRestoreSets() { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2163 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 2164 | "getAvailableRestoreSets"); |
| 2165 | |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2166 | try { |
| Christopher Tate | 4338304 | 2009-07-13 15:17:13 -0700 | [diff] [blame] | 2167 | if (mRestoreTransport == null) { |
| 2168 | Log.w(TAG, "Null transport getting restore sets"); |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2169 | return null; |
| 2170 | } |
| 2171 | if (mRestoreSets == null) { // valid transport; do the one-time fetch |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2172 | mRestoreSets = mRestoreTransport.getAvailableRestoreSets(); |
| Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 2173 | if (mRestoreSets == null) EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE); |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2174 | } |
| 2175 | return mRestoreSets; |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2176 | } catch (Exception e) { |
| 2177 | Log.e(TAG, "Error in getAvailableRestoreSets", e); |
| 2178 | return null; |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2179 | } |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2180 | } |
| 2181 | |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2182 | public synchronized int performRestore(long token, IRestoreObserver observer) { |
| 2183 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| 2184 | "performRestore"); |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 2185 | |
| Christopher Tate | f2c321a | 2009-08-10 15:43:36 -0700 | [diff] [blame] | 2186 | if (DEBUG) Log.d(TAG, "performRestore token=" + Long.toHexString(token) |
| 2187 | + " observer=" + observer); |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 2188 | |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2189 | if (mRestoreTransport == null || mRestoreSets == null) { |
| 2190 | Log.e(TAG, "Ignoring performRestore() with no restore set"); |
| 2191 | return -1; |
| 2192 | } |
| 2193 | |
| Christopher Tate | 21ab6a5 | 2009-09-24 18:01:46 -0700 | [diff] [blame] | 2194 | synchronized (mQueueLock) { |
| Christopher Tate | 21ab6a5 | 2009-09-24 18:01:46 -0700 | [diff] [blame] | 2195 | for (int i = 0; i < mRestoreSets.length; i++) { |
| 2196 | if (token == mRestoreSets[i].token) { |
| 2197 | long oldId = Binder.clearCallingIdentity(); |
| Christopher Tate | 21ab6a5 | 2009-09-24 18:01:46 -0700 | [diff] [blame] | 2198 | mWakelock.acquire(); |
| 2199 | Message msg = mBackupHandler.obtainMessage(MSG_RUN_RESTORE); |
| 2200 | msg.obj = new RestoreParams(mRestoreTransport, observer, token); |
| 2201 | mBackupHandler.sendMessage(msg); |
| 2202 | Binder.restoreCallingIdentity(oldId); |
| 2203 | return 0; |
| 2204 | } |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 2205 | } |
| 2206 | } |
| Christopher Tate | 0e0b4ae | 2009-08-10 16:13:47 -0700 | [diff] [blame] | 2207 | |
| 2208 | Log.w(TAG, "Restore token " + Long.toHexString(token) + " not found"); |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2209 | return -1; |
| 2210 | } |
| 2211 | |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2212 | public synchronized void endRestoreSession() { |
| Joe Onorato | 5933a49 | 2009-07-23 18:24:08 -0400 | [diff] [blame] | 2213 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BACKUP, |
| Christopher Tate | 9bbc21a | 2009-06-10 20:23:25 -0700 | [diff] [blame] | 2214 | "endRestoreSession"); |
| 2215 | |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2216 | if (DEBUG) Log.d(TAG, "endRestoreSession"); |
| Joe Onorato | 9a5e3e1 | 2009-07-01 21:04:03 -0400 | [diff] [blame] | 2217 | |
| Dan Egnor | 0084da5 | 2009-07-29 12:57:16 -0700 | [diff] [blame] | 2218 | synchronized (this) { |
| 2219 | try { |
| 2220 | if (mRestoreTransport != null) mRestoreTransport.finishRestore(); |
| 2221 | } catch (Exception e) { |
| 2222 | Log.e(TAG, "Error in finishRestore", e); |
| 2223 | } finally { |
| 2224 | mRestoreTransport = null; |
| 2225 | } |
| 2226 | } |
| 2227 | |
| 2228 | synchronized (BackupManagerService.this) { |
| Christopher Tate | f68eb50 | 2009-06-16 11:02:01 -0700 | [diff] [blame] | 2229 | if (BackupManagerService.this.mActiveRestoreSession == this) { |
| 2230 | BackupManagerService.this.mActiveRestoreSession = null; |
| 2231 | } else { |
| 2232 | Log.e(TAG, "ending non-current restore session"); |
| 2233 | } |
| 2234 | } |
| Christopher Tate | 9b3905c | 2009-06-08 15:24:01 -0700 | [diff] [blame] | 2235 | } |
| 2236 | } |
| 2237 | |
| Christopher Tate | 043dadc | 2009-06-02 16:11:00 -0700 | [diff] [blame] | 2238 | |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 2239 | @Override |
| 2240 | public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { |
| 2241 | synchronized (mQueueLock) { |
| Christopher Tate | 8031a3d | 2009-07-06 16:36:05 -0700 | [diff] [blame] | 2242 | pw.println("Backup Manager is " + (mEnabled ? "enabled" : "disabled") |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2243 | + " / " + (!mProvisioned ? "not " : "") + "provisioned / " |
| Christopher Tate | c2af5d3 | 2010-02-02 15:18:58 -0800 | [diff] [blame^] | 2244 | + (this.mPendingInits.size() == 0 ? "not " : "") + "pending init"); |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2245 | pw.println("Last backup pass: " + mLastBackupPass |
| 2246 | + " (now = " + System.currentTimeMillis() + ')'); |
| 2247 | pw.println(" next scheduled: " + mNextBackupPass); |
| 2248 | |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2249 | pw.println("Available transports:"); |
| 2250 | for (String t : listAllTransports()) { |
| Dan Egnor | 852f8e4 | 2009-09-30 11:20:45 -0700 | [diff] [blame] | 2251 | pw.println((t.equals(mCurrentTransport) ? " * " : " ") + t); |
| 2252 | try { |
| 2253 | File dir = new File(mBaseStateDir, getTransport(t).transportDirName()); |
| 2254 | for (File f : dir.listFiles()) { |
| 2255 | pw.println(" " + f.getName() + " - " + f.length() + " state bytes"); |
| 2256 | } |
| 2257 | } catch (RemoteException e) { |
| 2258 | Log.e(TAG, "Error in transportDirName()", e); |
| 2259 | pw.println(" Error: " + e); |
| 2260 | } |
| Christopher Tate | 9171749 | 2009-06-26 21:07:13 -0700 | [diff] [blame] | 2261 | } |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2262 | |
| 2263 | pw.println("Pending init: " + mPendingInits.size()); |
| 2264 | for (String s : mPendingInits) { |
| 2265 | pw.println(" " + s); |
| 2266 | } |
| 2267 | |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 2268 | int N = mBackupParticipants.size(); |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2269 | pw.println("Participants:"); |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 2270 | for (int i=0; i<N; i++) { |
| 2271 | int uid = mBackupParticipants.keyAt(i); |
| 2272 | pw.print(" uid: "); |
| 2273 | pw.println(uid); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2274 | HashSet<ApplicationInfo> participants = mBackupParticipants.valueAt(i); |
| 2275 | for (ApplicationInfo app: participants) { |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2276 | pw.println(" " + app.packageName); |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 2277 | } |
| 2278 | } |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2279 | |
| Christopher Tate | 73e0252 | 2009-07-15 14:18:26 -0700 | [diff] [blame] | 2280 | pw.println("Ever backed up: " + mEverStoredApps.size()); |
| 2281 | for (String pkg : mEverStoredApps) { |
| 2282 | pw.println(" " + pkg); |
| 2283 | } |
| Christopher Tate | 55f931a | 2009-09-29 17:17:34 -0700 | [diff] [blame] | 2284 | |
| 2285 | pw.println("Pending backup: " + mPendingBackups.size()); |
| Christopher Tate | 6aa41f4 | 2009-06-19 14:14:22 -0700 | [diff] [blame] | 2286 | for (BackupRequest req : mPendingBackups.values()) { |
| Christopher Tate | 6ef58a1 | 2009-06-29 14:56:28 -0700 | [diff] [blame] | 2287 | pw.println(" " + req); |
| Christopher Tate | 181fafa | 2009-05-14 11:12:14 -0700 | [diff] [blame] | 2288 | } |
| Joe Onorato | b1a7ffe | 2009-05-06 18:06:21 -0700 | [diff] [blame] | 2289 | } |
| 2290 | } |
| Christopher Tate | 487529a | 2009-04-29 14:03:25 -0700 | [diff] [blame] | 2291 | } |