blob: 00302b2fc6da63eb73196265950f77a22a3316be [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
17package com.android.server;
18
Jeff Sharkey0095a822018-02-15 13:06:53 -070019import static android.os.storage.OnObbStateChangeListener.ERROR_ALREADY_MOUNTED;
20import static android.os.storage.OnObbStateChangeListener.ERROR_COULD_NOT_MOUNT;
21import static android.os.storage.OnObbStateChangeListener.ERROR_COULD_NOT_UNMOUNT;
22import static android.os.storage.OnObbStateChangeListener.ERROR_INTERNAL;
23import static android.os.storage.OnObbStateChangeListener.ERROR_NOT_MOUNTED;
24import static android.os.storage.OnObbStateChangeListener.ERROR_PERMISSION_DENIED;
25import static android.os.storage.OnObbStateChangeListener.MOUNTED;
26import static android.os.storage.OnObbStateChangeListener.UNMOUNTED;
27
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070028import static com.android.internal.util.XmlUtils.readIntAttribute;
Jeff Sharkeye8a4b662015-06-27 15:43:45 -070029import static com.android.internal.util.XmlUtils.readLongAttribute;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070030import static com.android.internal.util.XmlUtils.readStringAttribute;
31import static com.android.internal.util.XmlUtils.writeIntAttribute;
Jeff Sharkeye8a4b662015-06-27 15:43:45 -070032import static com.android.internal.util.XmlUtils.writeLongAttribute;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070033import static com.android.internal.util.XmlUtils.writeStringAttribute;
Jeff Sharkey5217cac2015-12-20 15:34:01 -070034
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070035import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
36import static org.xmlpull.v1.XmlPullParser.START_TAG;
37
Jason parks8888c592011-01-20 22:46:41 -060038import android.Manifest;
Jeff Sharkeyef10ee02015-07-05 14:17:27 -070039import android.annotation.Nullable;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -070040import android.app.ActivityManager;
Jeff Sharkey9765e442017-12-14 22:15:14 -070041import android.app.ActivityManagerInternal;
42import android.app.ActivityManagerInternal.ScreenObserver;
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -070043import android.app.AppOpsManager;
Jeff Sharkey14cbe522015-07-08 14:06:37 -070044import android.app.IActivityManager;
Jeff Sharkey9765e442017-12-14 22:15:14 -070045import android.app.KeyguardManager;
Pavel Grafovce72ef02018-01-10 17:14:11 +000046import android.app.admin.SecurityLog;
Jeff Sharkey9bed0702017-01-23 20:37:05 -070047import android.app.usage.StorageStatsManager;
Jeff Sharkeybcd262d2015-06-10 09:41:17 -070048import android.content.BroadcastReceiver;
Kenny Roota02b8b02010-08-05 16:14:17 -070049import android.content.ComponentName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.content.Context;
51import android.content.Intent;
Jeff Sharkeybcd262d2015-06-10 09:41:17 -070052import android.content.IntentFilter;
Kenny Roota02b8b02010-08-05 16:14:17 -070053import android.content.ServiceConnection;
Jeff Sharkey275e3e42015-04-24 16:10:32 -070054import android.content.pm.IPackageMoveObserver;
55import android.content.pm.PackageManager;
Jeff Sharkey14cbe522015-07-08 14:06:37 -070056import android.content.pm.ProviderInfo;
Jeff Sharkeybcd262d2015-06-10 09:41:17 -070057import android.content.pm.UserInfo;
Elliott Hughesf839b4f2014-09-26 12:30:47 -070058import android.content.res.Configuration;
Kenny Root02c87302010-07-01 08:10:18 -070059import android.content.res.ObbInfo;
Daniel Colascione766b6322018-01-08 19:10:36 -080060import android.database.ContentObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.net.Uri;
Kenny Root02c87302010-07-01 08:10:18 -070062import android.os.Binder;
Jeff Sharkey4c099d02015-05-15 13:45:00 -070063import android.os.DropBoxManager;
Kenny Roota02b8b02010-08-05 16:14:17 -070064import android.os.Environment;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070065import android.os.Environment.UserEnvironment;
Jeff Sharkey48877892015-03-18 11:27:19 -070066import android.os.FileUtils;
Suchi Amalapurapuc42e29e2010-02-22 16:03:53 -080067import android.os.Handler;
Dianne Hackbornefa92b22013-05-03 14:11:43 -070068import android.os.HandlerThread;
Kenny Roota02b8b02010-08-05 16:14:17 -070069import android.os.IBinder;
Jin Qian12690d52017-10-13 18:17:04 -070070import android.os.IStoraged;
Jeff Sharkey1019de92017-09-06 13:47:03 -060071import android.os.IVold;
Jeff Sharkey8058fe62017-09-13 11:50:33 -060072import android.os.IVoldListener;
Jeff Sharkeyb302c542017-09-15 12:57:59 -060073import android.os.IVoldTaskListener;
Daniel Sandler5f27ef42010-03-16 15:42:02 -040074import android.os.Looper;
Suchi Amalapurapuc42e29e2010-02-22 16:03:53 -080075import android.os.Message;
Daichi Hirono9e8d9e22015-11-13 14:37:00 +090076import android.os.ParcelFileDescriptor;
Jeff Sharkey500ce9e2017-02-12 02:39:24 -070077import android.os.ParcelableException;
Jeff Sharkeyb302c542017-09-15 12:57:59 -060078import android.os.PersistableBundle;
Jeff Sharkeyce14cd02015-12-07 15:35:42 -070079import android.os.PowerManager;
Jeff Sharkey9527b222015-06-24 15:24:48 -070080import android.os.Process;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -070081import android.os.RemoteCallbackList;
San Mehat4270e1e2010-01-29 05:32:19 -080082import android.os.RemoteException;
Suchi Amalapurapufd3530f2010-01-18 00:15:59 -080083import android.os.ServiceManager;
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -070084import android.os.SystemClock;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import android.os.SystemProperties;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070086import android.os.UserHandle;
Emily Bernier92aa5a22014-07-07 10:11:48 -040087import android.os.UserManager;
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -070088import android.os.storage.DiskInfo;
Kenny Roota02b8b02010-08-05 16:14:17 -070089import android.os.storage.IObbActionListener;
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -070090import android.os.storage.IStorageEventListener;
Sudheer Shanka2250d562016-11-07 15:41:02 -080091import android.os.storage.IStorageManager;
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -070092import android.os.storage.IStorageShutdownObserver;
Kenny Rootaf9d6672010-10-08 09:21:39 -070093import android.os.storage.OnObbStateChangeListener;
Paul Lawrence46791e72014-04-03 09:10:26 -070094import android.os.storage.StorageManager;
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -070095import android.os.storage.StorageManagerInternal;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070096import android.os.storage.StorageVolume;
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -070097import android.os.storage.VolumeInfo;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070098import android.os.storage.VolumeRecord;
Jeff Sharkey14cbe522015-07-08 14:06:37 -070099import android.provider.MediaStore;
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700100import android.provider.Settings;
Jason parksf7b3cd42011-01-27 09:28:25 -0600101import android.text.TextUtils;
Jeff Sharkey1783f142015-04-17 10:52:51 -0700102import android.text.format.DateUtils;
Jeff Sharkey48877892015-03-18 11:27:19 -0700103import android.util.ArrayMap;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700104import android.util.AtomicFile;
Jeff Sharkey9f2dc052018-01-07 16:47:31 -0700105import android.util.DataUnit;
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700106import android.util.Log;
Felipe Leme281389a2016-10-10 17:12:20 -0700107import android.util.Pair;
San Mehata5078592010-03-25 09:36:54 -0700108import android.util.Slog;
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700109import android.util.TimeUtils;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700110import android.util.Xml;
Jeff Sharkey48877892015-03-18 11:27:19 -0700111
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800112import com.android.internal.annotations.GuardedBy;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700113import com.android.internal.app.IMediaContainerService;
Daichi Hirono9fb00182016-11-08 14:12:17 +0900114import com.android.internal.os.AppFuseMount;
Jeff Sharkey1019de92017-09-06 13:47:03 -0600115import com.android.internal.os.BackgroundThread;
Daichi Hirono812c95d2017-02-08 16:20:20 +0900116import com.android.internal.os.FuseUnavailableMountException;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700117import com.android.internal.os.SomeArgs;
Jeff Sharkey9527b222015-06-24 15:24:48 -0700118import com.android.internal.os.Zygote;
Jeff Sharkey48877892015-03-18 11:27:19 -0700119import com.android.internal.util.ArrayUtils;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -0600120import com.android.internal.util.DumpUtils;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700121import com.android.internal.util.FastXmlSerializer;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800122import com.android.internal.util.HexDump;
Jeff Sharkey5aca2b82013-10-16 16:21:54 -0700123import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700124import com.android.internal.util.Preconditions;
Jeff Sharkeyb9fe5372015-12-03 15:23:08 -0700125import com.android.internal.widget.LockPatternUtils;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700126import com.android.server.pm.PackageManagerService;
Daichi Hirono9fb00182016-11-08 14:12:17 +0900127import com.android.server.storage.AppFuseBridge;
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -0700128
Jeff Sharkey5217cac2015-12-20 15:34:01 -0700129import libcore.io.IoUtils;
130import libcore.util.EmptyArray;
131
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700132import org.xmlpull.v1.XmlPullParser;
133import org.xmlpull.v1.XmlPullParserException;
134import org.xmlpull.v1.XmlSerializer;
135
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700136import java.io.File;
Kenny Root38cf8862010-09-26 14:18:51 -0700137import java.io.FileDescriptor;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700138import java.io.FileInputStream;
139import java.io.FileNotFoundException;
Christopher Tate7265abe2014-11-21 13:54:45 -0800140import java.io.FileOutputStream;
Kenny Root05105f72010-09-22 17:29:43 -0700141import java.io.IOException;
Kenny Root38cf8862010-09-26 14:18:51 -0700142import java.io.PrintWriter;
Kenny Root3b1abba2010-10-13 15:00:07 -0700143import java.math.BigInteger;
Paul Lawrence8e397362014-01-27 15:22:30 -0800144import java.nio.charset.StandardCharsets;
Jeff Sharkey0095a822018-02-15 13:06:53 -0700145import java.security.GeneralSecurityException;
Kenny Root3b1abba2010-10-13 15:00:07 -0700146import java.security.spec.KeySpec;
San Mehat22dd86e2010-01-12 12:21:18 -0800147import java.util.ArrayList;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800148import java.util.Arrays;
Kenny Roota02b8b02010-08-05 16:14:17 -0700149import java.util.HashMap;
Kenny Root38cf8862010-09-26 14:18:51 -0700150import java.util.Iterator;
Kenny Roota02b8b02010-08-05 16:14:17 -0700151import java.util.LinkedList;
152import java.util.List;
Elliott Hughesf839b4f2014-09-26 12:30:47 -0700153import java.util.Locale;
Kenny Roota02b8b02010-08-05 16:14:17 -0700154import java.util.Map;
Kenny Root38cf8862010-09-26 14:18:51 -0700155import java.util.Map.Entry;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700156import java.util.Objects;
Svet Ganov6ee871e2015-07-10 14:29:33 -0700157import java.util.concurrent.CopyOnWriteArrayList;
Kenny Root51a573c2012-05-17 13:30:28 -0700158import java.util.concurrent.CountDownLatch;
159import java.util.concurrent.TimeUnit;
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -0700160import java.util.concurrent.TimeoutException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161
Kenny Root3b1abba2010-10-13 15:00:07 -0700162import javax.crypto.SecretKey;
163import javax.crypto.SecretKeyFactory;
164import javax.crypto.spec.PBEKeySpec;
165
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166/**
Jeff Sharkey48877892015-03-18 11:27:19 -0700167 * Service responsible for various storage media. Connects to {@code vold} to
168 * watch for and manage dynamically added storage, such as SD cards and USB mass
169 * storage. Also decides how storage should be presented to users on the device.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 */
Jeff Sharkey9765e442017-12-14 22:15:14 -0700171class StorageManagerService extends IStorageManager.Stub
172 implements Watchdog.Monitor, ScreenObserver {
Jason parks5af0b912010-11-29 09:05:25 -0600173
Christopher Tated417d622013-08-19 16:14:25 -0700174 // Static direct instance pointer for the tightly-coupled idle service to use
Sudheer Shanka2250d562016-11-07 15:41:02 -0800175 static StorageManagerService sSelf = null;
Christopher Tated417d622013-08-19 16:14:25 -0700176
Daniel Colascione766b6322018-01-08 19:10:36 -0800177 /* Read during boot to decide whether to enable zram when available */
178 private static final String ZRAM_ENABLED_PROPERTY =
179 "persist.sys.zram_enabled";
180
Jeff Sharkey56e62932015-03-21 20:41:00 -0700181 public static class Lifecycle extends SystemService {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800182 private StorageManagerService mStorageManagerService;
Jeff Sharkey56e62932015-03-21 20:41:00 -0700183
184 public Lifecycle(Context context) {
185 super(context);
186 }
187
188 @Override
189 public void onStart() {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800190 mStorageManagerService = new StorageManagerService(getContext());
191 publishBinderService("mount", mStorageManagerService);
192 mStorageManagerService.start();
Jeff Sharkey56e62932015-03-21 20:41:00 -0700193 }
194
195 @Override
196 public void onBootPhase(int phase) {
197 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800198 mStorageManagerService.systemReady();
Yasuhiro Matsuda87a38b52015-07-24 22:10:16 +0900199 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800200 mStorageManagerService.bootCompleted();
Jeff Sharkey56e62932015-03-21 20:41:00 -0700201 }
202 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700203
204 @Override
Jeff Sharkeyab15c392016-05-05 11:45:01 -0600205 public void onSwitchUser(int userHandle) {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800206 mStorageManagerService.mCurrentUserId = userHandle;
Jeff Sharkeyab15c392016-05-05 11:45:01 -0600207 }
208
209 @Override
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700210 public void onUnlockUser(int userHandle) {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800211 mStorageManagerService.onUnlockUser(userHandle);
Jeff Sharkey48877892015-03-18 11:27:19 -0700212 }
213
214 @Override
215 public void onCleanupUser(int userHandle) {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800216 mStorageManagerService.onCleanupUser(userHandle);
Jeff Sharkey48877892015-03-18 11:27:19 -0700217 }
Jeff Sharkey56e62932015-03-21 20:41:00 -0700218 }
219
Dianne Hackborn40e9f292012-11-27 19:12:23 -0800220 private static final boolean DEBUG_EVENTS = false;
Kenny Rootb7db2722011-01-25 16:39:35 -0800221 private static final boolean DEBUG_OBB = false;
Kenny Root02c87302010-07-01 08:10:18 -0700222
Kenny Root07714d42011-08-17 17:49:28 -0700223 // Disable this since it messes up long-running cryptfs operations.
224 private static final boolean WATCHDOG_ENABLE = false;
225
Jeff Sharkey00455bf2016-11-04 14:45:24 -0600226 /**
227 * Our goal is for all Android devices to be usable as development devices,
228 * which includes the new Direct Boot mode added in N. For devices that
229 * don't have native FBE support, we offer an emulation mode for developer
230 * testing purposes, but if it's prohibitively difficult to support this
231 * mode, it can be disabled for specific products using this flag.
232 */
233 private static final boolean EMULATE_FBE_SUPPORTED = true;
234
Sudheer Shanka2250d562016-11-07 15:41:02 -0800235 private static final String TAG = "StorageManagerService";
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700236
Jeff Sharkey9756d752015-05-14 21:07:42 -0700237 private static final String TAG_STORAGE_BENCHMARK = "storage_benchmark";
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700238 private static final String TAG_STORAGE_TRIM = "storage_trim";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239
Jeff Sharkey275e3e42015-04-24 16:10:32 -0700240 /** Magic value sent by MoveTask.cpp */
241 private static final int MOVE_STATUS_COPY_FINISHED = 82;
242
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700243 private static final int VERSION_INIT = 1;
244 private static final int VERSION_ADD_PRIMARY = 2;
Jeff Sharkeyfced5342015-05-10 14:53:34 -0700245 private static final int VERSION_FIX_PRIMARY = 3;
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700246
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700247 private static final String TAG_VOLUMES = "volumes";
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700248 private static final String ATTR_VERSION = "version";
249 private static final String ATTR_PRIMARY_STORAGE_UUID = "primaryStorageUuid";
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700250 private static final String TAG_VOLUME = "volume";
251 private static final String ATTR_TYPE = "type";
252 private static final String ATTR_FS_UUID = "fsUuid";
Jeff Sharkey5cc0df22015-06-17 19:44:05 -0700253 private static final String ATTR_PART_GUID = "partGuid";
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700254 private static final String ATTR_NICKNAME = "nickname";
255 private static final String ATTR_USER_FLAGS = "userFlags";
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700256 private static final String ATTR_CREATED_MILLIS = "createdMillis";
257 private static final String ATTR_LAST_TRIM_MILLIS = "lastTrimMillis";
258 private static final String ATTR_LAST_BENCH_MILLIS = "lastBenchMillis";
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700259
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700260 private final AtomicFile mSettingsFile;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700261
Jeff Sharkey48877892015-03-18 11:27:19 -0700262 /**
263 * <em>Never</em> hold the lock while performing downcalls into vold, since
264 * unsolicited events can suddenly appear to update data structures.
265 */
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600266 private final Object mLock = LockGuard.installNewLock(LockGuard.INDEX_STORAGE);
Jeff Sharkey48877892015-03-18 11:27:19 -0700267
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700268 /** Set of users that we know are unlocked. */
Jeff Sharkey48877892015-03-18 11:27:19 -0700269 @GuardedBy("mLock")
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700270 private int[] mLocalUnlockedUsers = EmptyArray.INT;
271 /** Set of users that system knows are unlocked. */
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800272 @GuardedBy("mLock")
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700273 private int[] mSystemUnlockedUsers = EmptyArray.INT;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700274
275 /** Map from disk ID to disk */
Jeff Sharkey48877892015-03-18 11:27:19 -0700276 @GuardedBy("mLock")
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700277 private ArrayMap<String, DiskInfo> mDisks = new ArrayMap<>();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700278 /** Map from volume ID to disk */
Jeff Sharkey48877892015-03-18 11:27:19 -0700279 @GuardedBy("mLock")
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700280 private final ArrayMap<String, VolumeInfo> mVolumes = new ArrayMap<>();
Jeff Sharkey48877892015-03-18 11:27:19 -0700281
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700282 /** Map from UUID to record */
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700283 @GuardedBy("mLock")
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700284 private ArrayMap<String, VolumeRecord> mRecords = new ArrayMap<>();
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700285 @GuardedBy("mLock")
286 private String mPrimaryStorageUuid;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700287
Jeff Sharkeyeba260d2015-04-19 14:35:16 -0700288 /** Map from disk ID to latches */
289 @GuardedBy("mLock")
290 private ArrayMap<String, CountDownLatch> mDiskScanLatches = new ArrayMap<>();
291
Jeff Sharkey275e3e42015-04-24 16:10:32 -0700292 @GuardedBy("mLock")
293 private IPackageMoveObserver mMoveCallback;
294 @GuardedBy("mLock")
295 private String mMoveTargetUuid;
296
Jeff Sharkeyab15c392016-05-05 11:45:01 -0600297 private volatile int mCurrentUserId = UserHandle.USER_SYSTEM;
298
Daichi Hirono9fb00182016-11-08 14:12:17 +0900299 /** Holding lock for AppFuse business */
300 private final Object mAppFuseLock = new Object();
301
302 @GuardedBy("mAppFuseLock")
303 private int mNextAppFuseName = 0;
304
305 @GuardedBy("mAppFuseLock")
Daichi Hironoe56740d2017-02-02 13:56:45 +0900306 private AppFuseBridge mAppFuseBridge = null;
Daichi Hirono9fb00182016-11-08 14:12:17 +0900307
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700308 private VolumeInfo findVolumeByIdOrThrow(String id) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700309 synchronized (mLock) {
310 final VolumeInfo vol = mVolumes.get(id);
311 if (vol != null) {
312 return vol;
313 }
314 }
315 throw new IllegalArgumentException("No volume found for ID " + id);
316 }
317
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700318 private String findVolumeIdForPathOrThrow(String path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700319 synchronized (mLock) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700320 for (int i = 0; i < mVolumes.size(); i++) {
321 final VolumeInfo vol = mVolumes.valueAt(i);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700322 if (vol.path != null && path.startsWith(vol.path)) {
323 return vol.id;
Jeff Sharkey48877892015-03-18 11:27:19 -0700324 }
325 }
326 }
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700327 throw new IllegalArgumentException("No volume found for path " + path);
Jeff Sharkey48877892015-03-18 11:27:19 -0700328 }
329
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700330 private VolumeRecord findRecordForPath(String path) {
331 synchronized (mLock) {
332 for (int i = 0; i < mVolumes.size(); i++) {
333 final VolumeInfo vol = mVolumes.valueAt(i);
334 if (vol.path != null && path.startsWith(vol.path)) {
335 return mRecords.get(vol.fsUuid);
336 }
337 }
338 }
339 return null;
340 }
341
342 private String scrubPath(String path) {
343 if (path.startsWith(Environment.getDataDirectory().getAbsolutePath())) {
344 return "internal";
345 }
346 final VolumeRecord rec = findRecordForPath(path);
347 if (rec == null || rec.createdMillis == 0) {
348 return "unknown";
349 } else {
350 return "ext:" + (int) ((System.currentTimeMillis() - rec.createdMillis)
351 / DateUtils.WEEK_IN_MILLIS) + "w";
352 }
353 }
354
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700355 private @Nullable VolumeInfo findStorageForUuid(String volumeUuid) {
Jeff Sharkey275e3e42015-04-24 16:10:32 -0700356 final StorageManager storage = mContext.getSystemService(StorageManager.class);
357 if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700358 return storage.findVolumeById(VolumeInfo.ID_EMULATED_INTERNAL);
Jeff Sharkey275e3e42015-04-24 16:10:32 -0700359 } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
360 return storage.getPrimaryPhysicalVolume();
361 } else {
362 return storage.findEmulatedForPrivate(storage.findVolumeByUuid(volumeUuid));
363 }
364 }
365
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700366 private boolean shouldBenchmark() {
367 final long benchInterval = Settings.Global.getLong(mContext.getContentResolver(),
368 Settings.Global.STORAGE_BENCHMARK_INTERVAL, DateUtils.WEEK_IN_MILLIS);
Jeff Sharkeye83d8a92015-09-09 14:53:38 -0700369 if (benchInterval == -1) {
370 return false;
371 } else if (benchInterval == 0) {
372 return true;
373 }
374
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700375 synchronized (mLock) {
376 for (int i = 0; i < mVolumes.size(); i++) {
377 final VolumeInfo vol = mVolumes.valueAt(i);
378 final VolumeRecord rec = mRecords.get(vol.fsUuid);
Jeff Sharkeye83d8a92015-09-09 14:53:38 -0700379 if (vol.isMountedWritable() && rec != null) {
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700380 final long benchAge = System.currentTimeMillis() - rec.lastBenchMillis;
381 if (benchAge >= benchInterval) {
382 return true;
383 }
384 }
385 }
386 return false;
387 }
388 }
389
Jeff Sharkeyeba260d2015-04-19 14:35:16 -0700390 private CountDownLatch findOrCreateDiskScanLatch(String diskId) {
391 synchronized (mLock) {
392 CountDownLatch latch = mDiskScanLatches.get(diskId);
393 if (latch == null) {
394 latch = new CountDownLatch(1);
395 mDiskScanLatches.put(diskId, latch);
396 }
397 return latch;
398 }
399 }
400
Paul Lawrence8e397362014-01-27 15:22:30 -0800401 /** List of crypto types.
402 * These must match CRYPT_TYPE_XXX in cryptfs.h AND their
403 * corresponding commands in CommandListener.cpp */
404 public static final String[] CRYPTO_TYPES
405 = { "password", "default", "pattern", "pin" };
406
Brian Carlstrom7395a8a2014-04-28 22:11:01 -0700407 private final Context mContext;
Jeff Sharkeycd575992016-03-29 14:12:49 -0600408
Jeff Sharkey1019de92017-09-06 13:47:03 -0600409 private volatile IVold mVold;
Jin Qian12690d52017-10-13 18:17:04 -0700410 private volatile IStoraged mStoraged;
Jeff Sharkey1019de92017-09-06 13:47:03 -0600411
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700412 private volatile boolean mSystemReady = false;
Yasuhiro Matsuda87a38b52015-07-24 22:10:16 +0900413 private volatile boolean mBootCompleted = false;
Jeff Sharkey48877892015-03-18 11:27:19 -0700414 private volatile boolean mDaemonConnected = false;
Jeff Sharkey9765e442017-12-14 22:15:14 -0700415 private volatile boolean mSecureKeyguardShowing = true;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700416
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700417 private PackageManagerService mPms;
418
419 private final Callbacks mCallbacks;
Jeff Sharkeyb9fe5372015-12-03 15:23:08 -0700420 private final LockPatternUtils mLockPatternUtils;
Jeff Sharkey48877892015-03-18 11:27:19 -0700421
San Mehat6cdd9c02010-02-09 14:45:20 -0800422 /**
Kenny Root3b1abba2010-10-13 15:00:07 -0700423 * The size of the crypto algorithm key in bits for OBB files. Currently
424 * Twofish is used which takes 128-bit keys.
425 */
426 private static final int CRYPTO_ALGORITHM_KEY_SIZE = 128;
427
428 /**
429 * The number of times to run SHA1 in the PBKDF2 function for OBB files.
430 * 1024 is reasonably secure and not too slow.
431 */
432 private static final int PBKDF2_HASH_ROUNDS = 1024;
433
434 /**
Kenny Roota02b8b02010-08-05 16:14:17 -0700435 * Mounted OBB tracking information. Used to track the current state of all
436 * OBBs.
Kenny Root02c87302010-07-01 08:10:18 -0700437 */
Kenny Root735de3b2010-09-30 14:11:39 -0700438 final private Map<IBinder, List<ObbState>> mObbMounts = new HashMap<IBinder, List<ObbState>>();
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700439
440 /** Map from raw paths to {@link ObbState}. */
Kenny Roota02b8b02010-08-05 16:14:17 -0700441 final private Map<String, ObbState> mObbPathToStateMap = new HashMap<String, ObbState>();
442
Svet Ganov6ee871e2015-07-10 14:29:33 -0700443 // Not guarded by a lock.
Sudheer Shanka2250d562016-11-07 15:41:02 -0800444 private final StorageManagerInternalImpl mStorageManagerInternal
445 = new StorageManagerInternalImpl();
Svet Ganov6ee871e2015-07-10 14:29:33 -0700446
Kenny Roota02b8b02010-08-05 16:14:17 -0700447 class ObbState implements IBinder.DeathRecipient {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700448 public ObbState(String rawPath, String canonicalPath, int callingUid,
Jeff Sharkey41cd6812017-09-11 10:32:17 -0600449 IObbActionListener token, int nonce, String volId) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700450 this.rawPath = rawPath;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700451 this.canonicalPath = canonicalPath;
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700452 this.ownerGid = UserHandle.getSharedAppGid(callingUid);
Kenny Rootaf9d6672010-10-08 09:21:39 -0700453 this.token = token;
454 this.nonce = nonce;
Jeff Sharkey41cd6812017-09-11 10:32:17 -0600455 this.volId = volId;
Kenny Roota02b8b02010-08-05 16:14:17 -0700456 }
457
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700458 final String rawPath;
459 final String canonicalPath;
Kenny Roota02b8b02010-08-05 16:14:17 -0700460
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700461 final int ownerGid;
Kenny Roota02b8b02010-08-05 16:14:17 -0700462
Kenny Rootaf9d6672010-10-08 09:21:39 -0700463 // Token of remote Binder caller
464 final IObbActionListener token;
465
466 // Identifier to pass back to the token
467 final int nonce;
Kenny Roota02b8b02010-08-05 16:14:17 -0700468
Jeff Sharkey41cd6812017-09-11 10:32:17 -0600469 String volId;
470
Kenny Root735de3b2010-09-30 14:11:39 -0700471 public IBinder getBinder() {
472 return token.asBinder();
473 }
474
Kenny Roota02b8b02010-08-05 16:14:17 -0700475 @Override
476 public void binderDied() {
477 ObbAction action = new UnmountObbAction(this, true);
478 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
Kenny Root735de3b2010-09-30 14:11:39 -0700479 }
Kenny Roota02b8b02010-08-05 16:14:17 -0700480
Kenny Root5919ac62010-10-05 09:49:40 -0700481 public void link() throws RemoteException {
482 getBinder().linkToDeath(this, 0);
483 }
484
485 public void unlink() {
Kenny Root735de3b2010-09-30 14:11:39 -0700486 getBinder().unlinkToDeath(this, 0);
Kenny Roota02b8b02010-08-05 16:14:17 -0700487 }
Kenny Root38cf8862010-09-26 14:18:51 -0700488
489 @Override
490 public String toString() {
491 StringBuilder sb = new StringBuilder("ObbState{");
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700492 sb.append("rawPath=").append(rawPath);
493 sb.append(",canonicalPath=").append(canonicalPath);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700494 sb.append(",ownerGid=").append(ownerGid);
495 sb.append(",token=").append(token);
496 sb.append(",binder=").append(getBinder());
Jeff Sharkey41cd6812017-09-11 10:32:17 -0600497 sb.append(",volId=").append(volId);
Kenny Root38cf8862010-09-26 14:18:51 -0700498 sb.append('}');
499 return sb.toString();
500 }
Kenny Roota02b8b02010-08-05 16:14:17 -0700501 }
502
503 // OBB Action Handler
504 final private ObbActionHandler mObbActionHandler;
505
506 // OBB action handler messages
507 private static final int OBB_RUN_ACTION = 1;
508 private static final int OBB_MCS_BOUND = 2;
509 private static final int OBB_MCS_UNBIND = 3;
510 private static final int OBB_MCS_RECONNECT = 4;
Kenny Rootaf9d6672010-10-08 09:21:39 -0700511 private static final int OBB_FLUSH_MOUNT_STATE = 5;
Kenny Roota02b8b02010-08-05 16:14:17 -0700512
513 /*
514 * Default Container Service information
515 */
516 static final ComponentName DEFAULT_CONTAINER_COMPONENT = new ComponentName(
517 "com.android.defcontainer", "com.android.defcontainer.DefaultContainerService");
518
519 final private DefaultContainerConnection mDefContainerConn = new DefaultContainerConnection();
520
521 class DefaultContainerConnection implements ServiceConnection {
Jeff Sharkey48877892015-03-18 11:27:19 -0700522 @Override
Kenny Roota02b8b02010-08-05 16:14:17 -0700523 public void onServiceConnected(ComponentName name, IBinder service) {
524 if (DEBUG_OBB)
525 Slog.i(TAG, "onServiceConnected");
526 IMediaContainerService imcs = IMediaContainerService.Stub.asInterface(service);
527 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_MCS_BOUND, imcs));
528 }
529
Jeff Sharkey48877892015-03-18 11:27:19 -0700530 @Override
Kenny Roota02b8b02010-08-05 16:14:17 -0700531 public void onServiceDisconnected(ComponentName name) {
532 if (DEBUG_OBB)
533 Slog.i(TAG, "onServiceDisconnected");
534 }
Jeff Sharkey54402792017-09-15 16:05:19 -0600535 }
Kenny Roota02b8b02010-08-05 16:14:17 -0700536
537 // Used in the ObbActionHandler
538 private IMediaContainerService mContainerService = null;
Kenny Root02c87302010-07-01 08:10:18 -0700539
Christopher Tate7265abe2014-11-21 13:54:45 -0800540 // Last fstrim operation tracking
541 private static final String LAST_FSTRIM_FILE = "last-fstrim";
542 private final File mLastMaintenanceFile;
543 private long mLastMaintenance;
544
Kenny Root02c87302010-07-01 08:10:18 -0700545 // Handler messages
Jeff Sharkey48877892015-03-18 11:27:19 -0700546 private static final int H_SYSTEM_READY = 1;
547 private static final int H_DAEMON_CONNECTED = 2;
548 private static final int H_SHUTDOWN = 3;
549 private static final int H_FSTRIM = 4;
550 private static final int H_VOLUME_MOUNT = 5;
551 private static final int H_VOLUME_BROADCAST = 6;
Jeff Sharkeyabc3e852015-08-03 14:41:13 -0700552 private static final int H_INTERNAL_BROADCAST = 7;
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700553 private static final int H_VOLUME_UNMOUNT = 8;
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800554 private static final int H_PARTITION_FORGET = 9;
555 private static final int H_RESET = 10;
Jin Qiana85b9912017-10-17 15:48:18 -0700556 private static final int H_RUN_IDLE_MAINT = 11;
557 private static final int H_ABORT_IDLE_MAINT = 12;
Suchi Amalapurapu6ffce2e2010-03-08 14:48:40 -0800558
Sudheer Shanka2250d562016-11-07 15:41:02 -0800559 class StorageManagerServiceHandler extends Handler {
560 public StorageManagerServiceHandler(Looper looper) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700561 super(looper);
Daniel Sandler5f27ef42010-03-16 15:42:02 -0400562 }
563
Jason parks5af0b912010-11-29 09:05:25 -0600564 @Override
Suchi Amalapurapuc42e29e2010-02-22 16:03:53 -0800565 public void handleMessage(Message msg) {
566 switch (msg.what) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700567 case H_SYSTEM_READY: {
Jeff Sharkey48877892015-03-18 11:27:19 -0700568 handleSystemReady();
569 break;
570 }
571 case H_DAEMON_CONNECTED: {
572 handleDaemonConnected();
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700573 break;
574 }
Christopher Tated417d622013-08-19 16:14:25 -0700575 case H_FSTRIM: {
Christopher Tated417d622013-08-19 16:14:25 -0700576 Slog.i(TAG, "Running fstrim idle maintenance");
Christopher Tate7265abe2014-11-21 13:54:45 -0800577
578 // Remember when we kicked it off
579 try {
580 mLastMaintenance = System.currentTimeMillis();
581 mLastMaintenanceFile.setLastModified(mLastMaintenance);
582 } catch (Exception e) {
583 Slog.e(TAG, "Unable to record last fstrim!");
584 }
585
Jeff Sharkeyb302c542017-09-15 12:57:59 -0600586 // TODO: Reintroduce shouldBenchmark() test
Jeff Sharkey7e19f532017-11-06 13:54:11 -0700587 fstrim(0, null);
Christopher Tate7265abe2014-11-21 13:54:45 -0800588
Christopher Tated417d622013-08-19 16:14:25 -0700589 // invoke the completion callback, if any
Jeff Sharkeye8a4b662015-06-27 15:43:45 -0700590 // TODO: fstrim is non-blocking, so remove this useless callback
Christopher Tated417d622013-08-19 16:14:25 -0700591 Runnable callback = (Runnable) msg.obj;
592 if (callback != null) {
593 callback.run();
594 }
595 break;
596 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700597 case H_SHUTDOWN: {
Sudheer Shanka2250d562016-11-07 15:41:02 -0800598 final IStorageShutdownObserver obs = (IStorageShutdownObserver) msg.obj;
Jeff Sharkey48877892015-03-18 11:27:19 -0700599 boolean success = false;
600 try {
Jeff Sharkey54402792017-09-15 16:05:19 -0600601 mVold.shutdown();
602 success = true;
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600603 } catch (Exception e) {
604 Slog.wtf(TAG, e);
Jeff Sharkey48877892015-03-18 11:27:19 -0700605 }
606 if (obs != null) {
607 try {
608 obs.onShutDownComplete(success ? 0 : -1);
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600609 } catch (Exception ignored) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700610 }
611 }
612 break;
613 }
614 case H_VOLUME_MOUNT: {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700615 final VolumeInfo vol = (VolumeInfo) msg.obj;
Jeff Sharkey2e606d72015-07-27 14:19:54 -0700616 if (isMountDisallowed(vol)) {
617 Slog.i(TAG, "Ignoring mount " + vol.getId() + " due to policy");
618 break;
619 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700620 try {
Jeff Sharkey54402792017-09-15 16:05:19 -0600621 mVold.mount(vol.id, vol.mountFlags, vol.mountUserId);
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600622 } catch (Exception e) {
623 Slog.wtf(TAG, e);
Jeff Sharkey48877892015-03-18 11:27:19 -0700624 }
625 break;
626 }
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700627 case H_VOLUME_UNMOUNT: {
628 final VolumeInfo vol = (VolumeInfo) msg.obj;
629 unmount(vol.getId());
630 break;
631 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700632 case H_VOLUME_BROADCAST: {
633 final StorageVolume userVol = (StorageVolume) msg.obj;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700634 final String envState = userVol.getState();
635 Slog.d(TAG, "Volume " + userVol.getId() + " broadcasting " + envState + " to "
Jeff Sharkey48877892015-03-18 11:27:19 -0700636 + userVol.getOwner());
637
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700638 final String action = VolumeInfo.getBroadcastForEnvironment(envState);
Jeff Sharkey48877892015-03-18 11:27:19 -0700639 if (action != null) {
640 final Intent intent = new Intent(action,
641 Uri.fromFile(userVol.getPathFile()));
642 intent.putExtra(StorageVolume.EXTRA_STORAGE_VOLUME, userVol);
Jeff Sharkey082f83b2017-03-26 14:34:47 -0600643 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT
644 | Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
Jeff Sharkey48877892015-03-18 11:27:19 -0700645 mContext.sendBroadcastAsUser(intent, userVol.getOwner());
646 }
647 break;
648 }
Jeff Sharkeyabc3e852015-08-03 14:41:13 -0700649 case H_INTERNAL_BROADCAST: {
650 // Internal broadcasts aimed at system components, not for
651 // third-party apps.
652 final Intent intent = (Intent) msg.obj;
653 mContext.sendBroadcastAsUser(intent, UserHandle.ALL,
654 android.Manifest.permission.WRITE_MEDIA_STORAGE);
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800655 break;
656 }
657 case H_PARTITION_FORGET: {
Jeff Sharkeydb4b6192017-10-24 11:08:50 -0600658 final VolumeRecord rec = (VolumeRecord) msg.obj;
659 forgetPartition(rec.partGuid, rec.fsUuid);
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800660 break;
661 }
662 case H_RESET: {
663 resetIfReadyAndConnected();
664 break;
Jeff Sharkeyabc3e852015-08-03 14:41:13 -0700665 }
Jin Qiana85b9912017-10-17 15:48:18 -0700666 case H_RUN_IDLE_MAINT: {
667 Slog.i(TAG, "Running idle maintenance");
668 runIdleMaint((Runnable)msg.obj);
669 break;
670 }
671 case H_ABORT_IDLE_MAINT: {
672 Slog.i(TAG, "Aborting idle maintenance");
673 abortIdleMaint((Runnable)msg.obj);
674 break;
675 }
676
Suchi Amalapurapuc42e29e2010-02-22 16:03:53 -0800677 }
678 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700679 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700680
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700681 private final Handler mHandler;
Suchi Amalapurapuc42e29e2010-02-22 16:03:53 -0800682
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700683 private BroadcastReceiver mUserReceiver = new BroadcastReceiver() {
684 @Override
685 public void onReceive(Context context, Intent intent) {
686 final String action = intent.getAction();
687 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700688 Preconditions.checkArgument(userId >= 0);
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700689
690 try {
691 if (Intent.ACTION_USER_ADDED.equals(action)) {
692 final UserManager um = mContext.getSystemService(UserManager.class);
693 final int userSerialNumber = um.getUserSerialNumber(userId);
Jeff Sharkey54402792017-09-15 16:05:19 -0600694 mVold.onUserAdded(userId, userSerialNumber);
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700695 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700696 synchronized (mVolumes) {
697 final int size = mVolumes.size();
698 for (int i = 0; i < size; i++) {
699 final VolumeInfo vol = mVolumes.valueAt(i);
700 if (vol.mountUserId == userId) {
701 vol.mountUserId = UserHandle.USER_NULL;
702 mHandler.obtainMessage(H_VOLUME_UNMOUNT, vol).sendToTarget();
703 }
704 }
705 }
Jeff Sharkey54402792017-09-15 16:05:19 -0600706 mVold.onUserRemoved(userId);
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700707 }
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600708 } catch (Exception e) {
709 Slog.wtf(TAG, e);
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700710 }
711 }
712 };
713
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -0700714 private void waitForLatch(CountDownLatch latch, String condition, long timeoutMillis)
715 throws TimeoutException {
716 final long startMillis = SystemClock.elapsedRealtime();
Jeff Sharkeyeba260d2015-04-19 14:35:16 -0700717 while (true) {
Kenny Root51a573c2012-05-17 13:30:28 -0700718 try {
719 if (latch.await(5000, TimeUnit.MILLISECONDS)) {
San Mehat207e5382010-02-04 20:46:54 -0800720 return;
Kenny Root51a573c2012-05-17 13:30:28 -0700721 } else {
722 Slog.w(TAG, "Thread " + Thread.currentThread().getName()
Jeff Sharkey48877892015-03-18 11:27:19 -0700723 + " still waiting for " + condition + "...");
San Mehat207e5382010-02-04 20:46:54 -0800724 }
Kenny Root51a573c2012-05-17 13:30:28 -0700725 } catch (InterruptedException e) {
Jeff Sharkeyeba260d2015-04-19 14:35:16 -0700726 Slog.w(TAG, "Interrupt while waiting for " + condition);
San Mehat207e5382010-02-04 20:46:54 -0800727 }
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -0700728 if (timeoutMillis > 0 && SystemClock.elapsedRealtime() > startMillis + timeoutMillis) {
729 throw new TimeoutException("Thread " + Thread.currentThread().getName()
730 + " gave up waiting for " + condition + " after " + timeoutMillis + "ms");
731 }
San Mehat207e5382010-02-04 20:46:54 -0800732 }
San Mehat1f6301e2010-01-07 22:40:27 -0800733 }
Kenny Root02c87302010-07-01 08:10:18 -0700734
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700735 private void handleSystemReady() {
Jeff Sharkey8924e872015-11-30 12:52:10 -0700736 initIfReadyAndConnected();
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800737 resetIfReadyAndConnected();
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700738
Jeff Sharkey48877892015-03-18 11:27:19 -0700739 // Start scheduling nominally-daily fstrim operations
Christopher Tate115afda2014-06-06 19:06:26 -0700740 MountServiceIdler.scheduleIdlePass(mContext);
Daniel Colascione766b6322018-01-08 19:10:36 -0800741
742 // Toggle zram-enable system property in response to settings
743 mContext.getContentResolver().registerContentObserver(
744 Settings.Global.getUriFor(Settings.Global.ZRAM_ENABLED),
745 false /*notifyForDescendants*/,
746 new ContentObserver(null /* current thread */) {
747 @Override
748 public void onChange(boolean selfChange) {
749 refreshZramSettings();
750 }
751 });
752 refreshZramSettings();
753 }
754
755 /**
756 * Update the zram_enabled system property (which init reads to
757 * decide whether to enable zram) to reflect the zram_enabled
758 * preference (which we can change for experimentation purposes).
759 */
760 private void refreshZramSettings() {
761 String propertyValue = SystemProperties.get(ZRAM_ENABLED_PROPERTY);
762 if ("".equals(propertyValue)) {
763 return; // System doesn't have zram toggling support
764 }
765 String desiredPropertyValue =
766 Settings.Global.getInt(mContext.getContentResolver(),
767 Settings.Global.ZRAM_ENABLED,
768 1) != 0
769 ? "1" : "0";
770 if (!desiredPropertyValue.equals(propertyValue)) {
771 // Avoid redundant disk writes by setting only if we're
772 // changing the property value. There's no race: we're the
773 // sole writer.
774 SystemProperties.set(ZRAM_ENABLED_PROPERTY, desiredPropertyValue);
775 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700776 }
777
Jeff Sharkey14cbe522015-07-08 14:06:37 -0700778 /**
779 * MediaProvider has a ton of code that makes assumptions about storage
780 * paths never changing, so we outright kill them to pick up new state.
781 */
782 @Deprecated
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700783 private void killMediaProvider(List<UserInfo> users) {
784 if (users == null) return;
785
Jeff Sharkeyb3cf9532015-07-17 15:12:39 -0700786 final long token = Binder.clearCallingIdentity();
787 try {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700788 for (UserInfo user : users) {
789 // System user does not have media provider, so skip.
790 if (user.isSystemOnly()) continue;
791
Jeff Sharkey2a9e3f82015-12-18 10:57:58 -0700792 final ProviderInfo provider = mPms.resolveContentProvider(MediaStore.AUTHORITY,
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600793 PackageManager.MATCH_DIRECT_BOOT_AWARE
794 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
795 user.id);
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700796 if (provider != null) {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800797 final IActivityManager am = ActivityManager.getService();
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700798 try {
Jeff Sharkey85f449e2016-06-23 09:26:00 -0600799 am.killApplication(provider.applicationInfo.packageName,
800 UserHandle.getAppId(provider.applicationInfo.uid),
801 UserHandle.USER_ALL, "vold reset");
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700802 // We only need to run this once. It will kill all users' media processes.
803 break;
804 } catch (RemoteException e) {
805 }
Jeff Sharkeyb3cf9532015-07-17 15:12:39 -0700806 }
Jeff Sharkey14cbe522015-07-08 14:06:37 -0700807 }
Jeff Sharkeyb3cf9532015-07-17 15:12:39 -0700808 } finally {
809 Binder.restoreCallingIdentity(token);
Jeff Sharkey14cbe522015-07-08 14:06:37 -0700810 }
811 }
812
Andreas Gampea36dc622018-02-05 17:19:22 -0800813 @GuardedBy("mLock")
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800814 private void addInternalVolumeLocked() {
Amith Yamasania7892482015-08-07 11:09:05 -0700815 // Create a stub volume that represents internal storage
816 final VolumeInfo internal = new VolumeInfo(VolumeInfo.ID_PRIVATE_INTERNAL,
817 VolumeInfo.TYPE_PRIVATE, null, null);
818 internal.state = VolumeInfo.STATE_MOUNTED;
819 internal.path = Environment.getDataDirectory().getAbsolutePath();
820 mVolumes.put(internal.id, internal);
821 }
822
Jeff Sharkey8924e872015-11-30 12:52:10 -0700823 private void initIfReadyAndConnected() {
824 Slog.d(TAG, "Thinking about init, mSystemReady=" + mSystemReady
825 + ", mDaemonConnected=" + mDaemonConnected);
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700826 if (mSystemReady && mDaemonConnected
Paul Lawrence20be5d62016-02-26 13:51:17 -0800827 && !StorageManager.isFileEncryptedNativeOnly()) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700828 // When booting a device without native support, make sure that our
829 // user directories are locked or unlocked based on the current
830 // emulation status.
Paul Lawrence20be5d62016-02-26 13:51:17 -0800831 final boolean initLocked = StorageManager.isFileEncryptedEmulatedOnly();
Paul Crowleyd94ab732016-02-15 06:44:51 +0000832 Slog.d(TAG, "Setting up emulation state, initlocked=" + initLocked);
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700833 final List<UserInfo> users = mContext.getSystemService(UserManager.class).getUsers();
Jeff Sharkey8924e872015-11-30 12:52:10 -0700834 for (UserInfo user : users) {
835 try {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700836 if (initLocked) {
Jeff Sharkey54402792017-09-15 16:05:19 -0600837 mVold.lockUserKey(user.id);
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700838 } else {
Jeff Sharkey54402792017-09-15 16:05:19 -0600839 mVold.unlockUserKey(user.id, user.serialNumber, encodeBytes(null),
840 encodeBytes(null));
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700841 }
Jeff Sharkey43e12112017-09-12 16:31:45 -0600842 } catch (Exception e) {
843 Slog.wtf(TAG, e);
Jeff Sharkey8924e872015-11-30 12:52:10 -0700844 }
845 }
846 }
847 }
848
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800849 private void resetIfReadyAndConnected() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700850 Slog.d(TAG, "Thinking about reset, mSystemReady=" + mSystemReady
851 + ", mDaemonConnected=" + mDaemonConnected);
852 if (mSystemReady && mDaemonConnected) {
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800853 final List<UserInfo> users = mContext.getSystemService(UserManager.class).getUsers();
Xiaohui Chen621b3fc2015-10-02 14:41:42 -0700854 killMediaProvider(users);
Jeff Sharkey14cbe522015-07-08 14:06:37 -0700855
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700856 final int[] systemUnlockedUsers;
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800857 synchronized (mLock) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700858 systemUnlockedUsers = mSystemUnlockedUsers;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700859
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800860 mDisks.clear();
861 mVolumes.clear();
862
863 addInternalVolumeLocked();
864 }
Jeff Sharkey59d577a2015-04-11 21:27:21 -0700865
Jeff Sharkey48877892015-03-18 11:27:19 -0700866 try {
Jeff Sharkey54402792017-09-15 16:05:19 -0600867 mVold.reset();
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700868
869 // Tell vold about all existing and started users
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700870 for (UserInfo user : users) {
Jeff Sharkey54402792017-09-15 16:05:19 -0600871 mVold.onUserAdded(user.id, user.serialNumber);
Jeff Sharkeybcd262d2015-06-10 09:41:17 -0700872 }
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700873 for (int userId : systemUnlockedUsers) {
Jeff Sharkey54402792017-09-15 16:05:19 -0600874 mVold.onUserStarted(userId);
Jin Qian12690d52017-10-13 18:17:04 -0700875 mStoraged.onUserStarted(userId);
Jeff Sharkey50a05452015-04-29 11:24:52 -0700876 }
Jeff Sharkey9765e442017-12-14 22:15:14 -0700877 mVold.onSecureKeyguardStateChanged(mSecureKeyguardShowing);
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600878 } catch (Exception e) {
879 Slog.wtf(TAG, e);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700880 }
881 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700882 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700883
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700884 private void onUnlockUser(int userId) {
885 Slog.d(TAG, "onUnlockUser " + userId);
Jeff Sharkey48877892015-03-18 11:27:19 -0700886
887 // We purposefully block here to make sure that user-specific
888 // staging area is ready so it's ready for zygote-forked apps to
889 // bind mount against.
890 try {
Jeff Sharkey54402792017-09-15 16:05:19 -0600891 mVold.onUserStarted(userId);
Jin Qian12690d52017-10-13 18:17:04 -0700892 mStoraged.onUserStarted(userId);
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600893 } catch (Exception e) {
894 Slog.wtf(TAG, e);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700895 }
Jeff Sharkey48877892015-03-18 11:27:19 -0700896
897 // Record user as started so newly mounted volumes kick off events
898 // correctly, then synthesize events for any already-mounted volumes.
yuanhuihuiefd1f122016-07-13 21:21:03 +0800899 synchronized (mLock) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700900 for (int i = 0; i < mVolumes.size(); i++) {
901 final VolumeInfo vol = mVolumes.valueAt(i);
Jeff Sharkey46349872015-07-28 10:49:47 -0700902 if (vol.isVisibleForRead(userId) && vol.isMountedReadable()) {
Svet Ganov6ee871e2015-07-10 14:29:33 -0700903 final StorageVolume userVol = vol.buildStorageVolume(mContext, userId, false);
Jeff Sharkey48877892015-03-18 11:27:19 -0700904 mHandler.obtainMessage(H_VOLUME_BROADCAST, userVol).sendToTarget();
Jeff Sharkey7151a9a2015-04-04 15:22:37 -0700905
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700906 final String envState = VolumeInfo.getEnvironmentForState(vol.getState());
907 mCallbacks.notifyStorageStateChanged(userVol.getPath(), envState, envState);
Jeff Sharkey48877892015-03-18 11:27:19 -0700908 }
909 }
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700910 mSystemUnlockedUsers = ArrayUtils.appendInt(mSystemUnlockedUsers, userId);
Jeff Sharkey48877892015-03-18 11:27:19 -0700911 }
912 }
913
914 private void onCleanupUser(int userId) {
915 Slog.d(TAG, "onCleanupUser " + userId);
916
917 try {
Jeff Sharkey54402792017-09-15 16:05:19 -0600918 mVold.onUserStopped(userId);
Jin Qian12690d52017-10-13 18:17:04 -0700919 mStoraged.onUserStopped(userId);
Jeff Sharkeyace874b2017-09-07 15:27:33 -0600920 } catch (Exception e) {
921 Slog.wtf(TAG, e);
Jeff Sharkey48877892015-03-18 11:27:19 -0700922 }
923
yuanhuihuiefd1f122016-07-13 21:21:03 +0800924 synchronized (mLock) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -0700925 mSystemUnlockedUsers = ArrayUtils.removeInt(mSystemUnlockedUsers, userId);
Jeff Sharkey48877892015-03-18 11:27:19 -0700926 }
927 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700928
Jeff Sharkey9765e442017-12-14 22:15:14 -0700929 @Override
930 public void onAwakeStateChanged(boolean isAwake) {
931 // Ignored
932 }
933
934 @Override
935 public void onKeyguardStateChanged(boolean isShowing) {
936 // Push down current secure keyguard status so that we ignore malicious
937 // USB devices while locked.
938 mSecureKeyguardShowing = isShowing
939 && mContext.getSystemService(KeyguardManager.class).isDeviceSecure();
940 try {
941 mVold.onSecureKeyguardStateChanged(mSecureKeyguardShowing);
942 } catch (Exception e) {
943 Slog.wtf(TAG, e);
944 }
945 }
946
Christopher Tated417d622013-08-19 16:14:25 -0700947 void runIdleMaintenance(Runnable callback) {
948 mHandler.sendMessage(mHandler.obtainMessage(H_FSTRIM, callback));
949 }
950
Christopher Tate7265abe2014-11-21 13:54:45 -0800951 // Binder entry point for kicking off an immediate fstrim
952 @Override
953 public void runMaintenance() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700954 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Christopher Tate7265abe2014-11-21 13:54:45 -0800955 runIdleMaintenance(null);
956 }
957
958 @Override
959 public long lastMaintenance() {
960 return mLastMaintenance;
961 }
962
San Mehat4270e1e2010-01-29 05:32:19 -0800963 public void onDaemonConnected() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700964 mDaemonConnected = true;
965 mHandler.obtainMessage(H_DAEMON_CONNECTED).sendToTarget();
966 }
967
968 private void handleDaemonConnected() {
Jeff Sharkey8924e872015-11-30 12:52:10 -0700969 initIfReadyAndConnected();
Jeff Sharkey5a9bb742015-11-03 10:15:57 -0800970 resetIfReadyAndConnected();
Jeff Sharkey48877892015-03-18 11:27:19 -0700971
Jeff Sharkey48877892015-03-18 11:27:19 -0700972 // On an encrypted device we can't see system properties yet, so pull
973 // the system locale out of the mount service.
974 if ("".equals(SystemProperties.get("vold.encrypt_progress"))) {
975 copyLocaleFromMountService();
976 }
San Mehat4270e1e2010-01-29 05:32:19 -0800977 }
978
Elliott Hughesf839b4f2014-09-26 12:30:47 -0700979 private void copyLocaleFromMountService() {
980 String systemLocale;
981 try {
982 systemLocale = getField(StorageManager.SYSTEM_LOCALE_KEY);
983 } catch (RemoteException e) {
984 return;
985 }
986 if (TextUtils.isEmpty(systemLocale)) {
987 return;
988 }
989
990 Slog.d(TAG, "Got locale " + systemLocale + " from mount service");
991 Locale locale = Locale.forLanguageTag(systemLocale);
992 Configuration config = new Configuration();
993 config.setLocale(locale);
994 try {
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800995 ActivityManager.getService().updatePersistentConfiguration(config);
Elliott Hughesf839b4f2014-09-26 12:30:47 -0700996 } catch (RemoteException e) {
997 Slog.e(TAG, "Error setting system locale from mount service", e);
998 }
Elliott Hughes9c33f282014-10-13 12:39:56 -0700999
1000 // Temporary workaround for http://b/17945169.
1001 Slog.d(TAG, "Setting system properties to " + systemLocale + " from mount service");
Narayan Kamathd30dbb82015-01-15 14:48:15 +00001002 SystemProperties.set("persist.sys.locale", locale.toLanguageTag());
Elliott Hughesf839b4f2014-09-26 12:30:47 -07001003 }
1004
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001005 private final IVoldListener mListener = new IVoldListener.Stub() {
1006 @Override
1007 public void onDiskCreated(String diskId, int flags) {
1008 synchronized (mLock) {
Jeff Sharkey901c0422018-04-20 13:11:20 -06001009 final String value = SystemProperties.get(StorageManager.PROP_ADOPTABLE);
1010 switch (value) {
1011 case "force_on":
1012 flags |= DiskInfo.FLAG_ADOPTABLE;
1013 break;
1014 case "force_off":
1015 flags &= ~DiskInfo.FLAG_ADOPTABLE;
1016 break;
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001017 }
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001018 mDisks.put(diskId, new DiskInfo(diskId, flags));
1019 }
1020 }
1021
1022 @Override
1023 public void onDiskScanned(String diskId) {
1024 synchronized (mLock) {
1025 final DiskInfo disk = mDisks.get(diskId);
1026 if (disk != null) {
1027 onDiskScannedLocked(disk);
1028 }
1029 }
1030 }
1031
1032 @Override
1033 public void onDiskMetadataChanged(String diskId, long sizeBytes, String label,
1034 String sysPath) {
1035 synchronized (mLock) {
1036 final DiskInfo disk = mDisks.get(diskId);
1037 if (disk != null) {
1038 disk.size = sizeBytes;
1039 disk.label = label;
1040 disk.sysPath = sysPath;
1041 }
1042 }
1043 }
1044
1045 @Override
1046 public void onDiskDestroyed(String diskId) {
1047 synchronized (mLock) {
1048 final DiskInfo disk = mDisks.remove(diskId);
1049 if (disk != null) {
1050 mCallbacks.notifyDiskDestroyed(disk);
1051 }
1052 }
1053 }
1054
1055 @Override
1056 public void onVolumeCreated(String volId, int type, String diskId, String partGuid) {
1057 synchronized (mLock) {
1058 final DiskInfo disk = mDisks.get(diskId);
1059 final VolumeInfo vol = new VolumeInfo(volId, type, disk, partGuid);
1060 mVolumes.put(volId, vol);
1061 onVolumeCreatedLocked(vol);
1062 }
1063 }
1064
1065 @Override
1066 public void onVolumeStateChanged(String volId, int state) {
1067 synchronized (mLock) {
1068 final VolumeInfo vol = mVolumes.get(volId);
1069 if (vol != null) {
1070 final int oldState = vol.state;
1071 final int newState = state;
1072 vol.state = newState;
1073 onVolumeStateChangedLocked(vol, oldState, newState);
1074 }
1075 }
1076 }
1077
1078 @Override
1079 public void onVolumeMetadataChanged(String volId, String fsType, String fsUuid,
1080 String fsLabel) {
1081 synchronized (mLock) {
1082 final VolumeInfo vol = mVolumes.get(volId);
1083 if (vol != null) {
1084 vol.fsType = fsType;
1085 vol.fsUuid = fsUuid;
1086 vol.fsLabel = fsLabel;
1087 }
1088 }
1089 }
1090
1091 @Override
1092 public void onVolumePathChanged(String volId, String path) {
1093 synchronized (mLock) {
1094 final VolumeInfo vol = mVolumes.get(volId);
1095 if (vol != null) {
1096 vol.path = path;
1097 }
1098 }
1099 }
1100
1101 @Override
1102 public void onVolumeInternalPathChanged(String volId, String internalPath) {
1103 synchronized (mLock) {
1104 final VolumeInfo vol = mVolumes.get(volId);
1105 if (vol != null) {
1106 vol.internalPath = internalPath;
1107 }
1108 }
1109 }
1110
1111 @Override
1112 public void onVolumeDestroyed(String volId) {
1113 synchronized (mLock) {
1114 mVolumes.remove(volId);
1115 }
1116 }
1117 };
1118
Andreas Gampea36dc622018-02-05 17:19:22 -08001119 @GuardedBy("mLock")
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001120 private void onDiskScannedLocked(DiskInfo disk) {
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001121 int volumeCount = 0;
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001122 for (int i = 0; i < mVolumes.size(); i++) {
1123 final VolumeInfo vol = mVolumes.valueAt(i);
1124 if (Objects.equals(disk.id, vol.getDiskId())) {
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001125 volumeCount++;
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001126 }
1127 }
1128
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001129 final Intent intent = new Intent(DiskInfo.ACTION_DISK_SCANNED);
Jeff Sharkey7732e1e2016-03-30 17:14:23 -06001130 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT
1131 | Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001132 intent.putExtra(DiskInfo.EXTRA_DISK_ID, disk.id);
1133 intent.putExtra(DiskInfo.EXTRA_VOLUME_COUNT, volumeCount);
Jeff Sharkeyabc3e852015-08-03 14:41:13 -07001134 mHandler.obtainMessage(H_INTERNAL_BROADCAST, intent).sendToTarget();
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001135
1136 final CountDownLatch latch = mDiskScanLatches.remove(disk.id);
1137 if (latch != null) {
1138 latch.countDown();
1139 }
1140
Jeff Sharkeyf5a6bd72015-05-19 14:42:38 -07001141 disk.volumeCount = volumeCount;
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001142 mCallbacks.notifyDiskScanned(disk, volumeCount);
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001143 }
1144
Andreas Gampea36dc622018-02-05 17:19:22 -08001145 @GuardedBy("mLock")
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07001146 private void onVolumeCreatedLocked(VolumeInfo vol) {
Jeff Sharkey6855c482016-03-31 14:34:38 -06001147 if (mPms.isOnlyCoreApps()) {
1148 Slog.d(TAG, "System booted in core-only mode; ignoring volume " + vol.getId());
1149 return;
1150 }
1151
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001152 if (vol.type == VolumeInfo.TYPE_EMULATED) {
1153 final StorageManager storage = mContext.getSystemService(StorageManager.class);
1154 final VolumeInfo privateVol = storage.findPrivateForEmulated(vol);
1155
1156 if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, mPrimaryStorageUuid)
1157 && VolumeInfo.ID_PRIVATE_INTERNAL.equals(privateVol.id)) {
1158 Slog.v(TAG, "Found primary storage at " + vol);
1159 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_PRIMARY;
1160 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_VISIBLE;
1161 mHandler.obtainMessage(H_VOLUME_MOUNT, vol).sendToTarget();
1162
1163 } else if (Objects.equals(privateVol.fsUuid, mPrimaryStorageUuid)) {
1164 Slog.v(TAG, "Found primary storage at " + vol);
1165 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_PRIMARY;
1166 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_VISIBLE;
1167 mHandler.obtainMessage(H_VOLUME_MOUNT, vol).sendToTarget();
1168 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001169
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07001170 } else if (vol.type == VolumeInfo.TYPE_PUBLIC) {
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001171 // TODO: only look at first public partition
1172 if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, mPrimaryStorageUuid)
1173 && vol.disk.isDefaultPrimary()) {
1174 Slog.v(TAG, "Found primary storage at " + vol);
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07001175 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_PRIMARY;
1176 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_VISIBLE;
San Mehat4270e1e2010-01-29 05:32:19 -08001177 }
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07001178
1179 // Adoptable public disks are visible to apps, since they meet
1180 // public API requirement of being in a stable location.
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001181 if (vol.disk.isAdoptable()) {
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07001182 vol.mountFlags |= VolumeInfo.MOUNT_FLAG_VISIBLE;
1183 }
1184
Jeff Sharkeyab15c392016-05-05 11:45:01 -06001185 vol.mountUserId = mCurrentUserId;
Jeff Sharkey48877892015-03-18 11:27:19 -07001186 mHandler.obtainMessage(H_VOLUME_MOUNT, vol).sendToTarget();
San Mehat4270e1e2010-01-29 05:32:19 -08001187
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001188 } else if (vol.type == VolumeInfo.TYPE_PRIVATE) {
1189 mHandler.obtainMessage(H_VOLUME_MOUNT, vol).sendToTarget();
1190
San Mehat4270e1e2010-01-29 05:32:19 -08001191 } else {
Jeff Sharkey48877892015-03-18 11:27:19 -07001192 Slog.d(TAG, "Skipping automatic mounting of " + vol);
San Mehat4270e1e2010-01-29 05:32:19 -08001193 }
1194 }
1195
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001196 private boolean isBroadcastWorthy(VolumeInfo vol) {
1197 switch (vol.getType()) {
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001198 case VolumeInfo.TYPE_PRIVATE:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001199 case VolumeInfo.TYPE_PUBLIC:
1200 case VolumeInfo.TYPE_EMULATED:
1201 break;
1202 default:
1203 return false;
1204 }
1205
1206 switch (vol.getState()) {
1207 case VolumeInfo.STATE_MOUNTED:
1208 case VolumeInfo.STATE_MOUNTED_READ_ONLY:
1209 case VolumeInfo.STATE_EJECTING:
1210 case VolumeInfo.STATE_UNMOUNTED:
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001211 case VolumeInfo.STATE_UNMOUNTABLE:
Tony Mantlerf0d71052015-06-24 11:45:25 -07001212 case VolumeInfo.STATE_BAD_REMOVAL:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001213 break;
1214 default:
1215 return false;
1216 }
1217
1218 return true;
1219 }
1220
Andreas Gampea36dc622018-02-05 17:19:22 -08001221 @GuardedBy("mLock")
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07001222 private void onVolumeStateChangedLocked(VolumeInfo vol, int oldState, int newState) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001223 // Remember that we saw this volume so we're ready to accept user
1224 // metadata, or so we can annoy them when a private volume is ejected
1225 if (vol.isMountedReadable() && !TextUtils.isEmpty(vol.fsUuid)) {
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001226 VolumeRecord rec = mRecords.get(vol.fsUuid);
1227 if (rec == null) {
1228 rec = new VolumeRecord(vol.type, vol.fsUuid);
1229 rec.partGuid = vol.partGuid;
Jeff Sharkeye8a4b662015-06-27 15:43:45 -07001230 rec.createdMillis = System.currentTimeMillis();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001231 if (vol.type == VolumeInfo.TYPE_PRIVATE) {
1232 rec.nickname = vol.disk.getDescription();
1233 }
1234 mRecords.put(rec.fsUuid, rec);
1235 writeSettingsLocked();
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001236 } else {
1237 // Handle upgrade case where we didn't store partition GUID
1238 if (TextUtils.isEmpty(rec.partGuid)) {
1239 rec.partGuid = vol.partGuid;
1240 writeSettingsLocked();
1241 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001242 }
1243 }
1244
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001245 mCallbacks.notifyVolumeStateChanged(vol, oldState, newState);
1246
Yasuhiro Matsuda87a38b52015-07-24 22:10:16 +09001247 // Do not broadcast before boot has completed to avoid launching the
1248 // processes that receive the intent unnecessarily.
1249 if (mBootCompleted && isBroadcastWorthy(vol)) {
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001250 final Intent intent = new Intent(VolumeInfo.ACTION_VOLUME_STATE_CHANGED);
Jeff Sharkeyc7acac62015-06-12 16:16:56 -07001251 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.id);
1252 intent.putExtra(VolumeInfo.EXTRA_VOLUME_STATE, newState);
Tony Mantlerf0d71052015-06-24 11:45:25 -07001253 intent.putExtra(VolumeRecord.EXTRA_FS_UUID, vol.fsUuid);
Jeff Sharkey7732e1e2016-03-30 17:14:23 -06001254 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT
1255 | Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
Jeff Sharkeyabc3e852015-08-03 14:41:13 -07001256 mHandler.obtainMessage(H_INTERNAL_BROADCAST, intent).sendToTarget();
Jeff Sharkeye6c04f92015-04-18 21:38:05 -07001257 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001258
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001259 final String oldStateEnv = VolumeInfo.getEnvironmentForState(oldState);
1260 final String newStateEnv = VolumeInfo.getEnvironmentForState(newState);
Emily Bernier92aa5a22014-07-07 10:11:48 -04001261
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001262 if (!Objects.equals(oldStateEnv, newStateEnv)) {
1263 // Kick state changed event towards all started users. Any users
1264 // started after this point will trigger additional
1265 // user-specific broadcasts.
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07001266 for (int userId : mSystemUnlockedUsers) {
Jeff Sharkey46349872015-07-28 10:49:47 -07001267 if (vol.isVisibleForRead(userId)) {
Svet Ganov6ee871e2015-07-10 14:29:33 -07001268 final StorageVolume userVol = vol.buildStorageVolume(mContext, userId, false);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001269 mHandler.obtainMessage(H_VOLUME_BROADCAST, userVol).sendToTarget();
Jeff Sharkey48877892015-03-18 11:27:19 -07001270
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001271 mCallbacks.notifyStorageStateChanged(userVol.getPath(), oldStateEnv,
1272 newStateEnv);
San Mehat4270e1e2010-01-29 05:32:19 -08001273 }
1274 }
1275 }
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001276
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07001277 if (vol.type == VolumeInfo.TYPE_PUBLIC && vol.state == VolumeInfo.STATE_EJECTING) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001278 // TODO: this should eventually be handled by new ObbVolume state changes
1279 /*
1280 * Some OBBs might have been unmounted when this volume was
1281 * unmounted, so send a message to the handler to let it know to
1282 * remove those from the list of mounted OBBS.
1283 */
1284 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(
1285 OBB_FLUSH_MOUNT_STATE, vol.path));
1286 }
Pavel Grafovce72ef02018-01-10 17:14:11 +00001287 maybeLogMediaMount(vol, newState);
1288 }
1289
1290 private void maybeLogMediaMount(VolumeInfo vol, int newState) {
1291 if (!SecurityLog.isLoggingEnabled()) {
1292 return;
1293 }
1294
1295 final DiskInfo disk = vol.getDisk();
1296 if (disk == null || (disk.flags & (DiskInfo.FLAG_SD | DiskInfo.FLAG_USB)) == 0) {
1297 return;
1298 }
1299
1300 // Sometimes there is a newline character.
1301 final String label = disk.label != null ? disk.label.trim() : "";
1302
1303 if (newState == VolumeInfo.STATE_MOUNTED
1304 || newState == VolumeInfo.STATE_MOUNTED_READ_ONLY) {
1305 SecurityLog.writeEvent(SecurityLog.TAG_MEDIA_MOUNT, vol.path, label);
1306 } else if (newState == VolumeInfo.STATE_UNMOUNTED
1307 || newState == VolumeInfo.STATE_BAD_REMOVAL) {
1308 SecurityLog.writeEvent(SecurityLog.TAG_MEDIA_UNMOUNT, vol.path, label);
1309 }
San Mehat4270e1e2010-01-29 05:32:19 -08001310 }
1311
Andreas Gampea36dc622018-02-05 17:19:22 -08001312 @GuardedBy("mLock")
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001313 private void onMoveStatusLocked(int status) {
1314 if (mMoveCallback == null) {
1315 Slog.w(TAG, "Odd, status but no move requested");
1316 return;
1317 }
1318
1319 // TODO: estimate remaining time
1320 try {
Jeff Sharkey50a05452015-04-29 11:24:52 -07001321 mMoveCallback.onStatusChanged(-1, status, -1);
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001322 } catch (RemoteException ignored) {
1323 }
1324
1325 // We've finished copying and we're about to clean up old data, so
1326 // remember that move was successful if we get rebooted
1327 if (status == MOVE_STATUS_COPY_FINISHED) {
1328 Slog.d(TAG, "Move to " + mMoveTargetUuid + " copy phase finshed; persisting");
1329
1330 mPrimaryStorageUuid = mMoveTargetUuid;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001331 writeSettingsLocked();
Jeff Sharkey275e3e42015-04-24 16:10:32 -07001332 }
1333
1334 if (PackageManager.isMoveStatusFinished(status)) {
1335 Slog.d(TAG, "Move to " + mMoveTargetUuid + " finished with status " + status);
1336
1337 mMoveCallback = null;
1338 mMoveTargetUuid = null;
1339 }
1340 }
1341
Jeff Sharkey48877892015-03-18 11:27:19 -07001342 private void enforcePermission(String perm) {
1343 mContext.enforceCallingOrSelfPermission(perm, perm);
Mike Lockwooda5250c92011-05-23 13:44:04 -04001344 }
1345
Jeff Sharkey2e606d72015-07-27 14:19:54 -07001346 /**
1347 * Decide if volume is mountable per device policies.
1348 */
1349 private boolean isMountDisallowed(VolumeInfo vol) {
Philip P. Moltmannec3cbb22016-09-14 13:24:52 -07001350 UserManager userManager = mContext.getSystemService(UserManager.class);
1351
1352 boolean isUsbRestricted = false;
1353 if (vol.disk != null && vol.disk.isUsb()) {
1354 isUsbRestricted = userManager.hasUserRestriction(UserManager.DISALLOW_USB_FILE_TRANSFER,
Jeff Sharkey2e606d72015-07-27 14:19:54 -07001355 Binder.getCallingUserHandle());
Emily Bernier92aa5a22014-07-07 10:11:48 -04001356 }
Philip P. Moltmannec3cbb22016-09-14 13:24:52 -07001357
1358 boolean isTypeRestricted = false;
1359 if (vol.type == VolumeInfo.TYPE_PUBLIC || vol.type == VolumeInfo.TYPE_PRIVATE) {
1360 isTypeRestricted = userManager
1361 .hasUserRestriction(UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
1362 Binder.getCallingUserHandle());
1363 }
1364
1365 return isUsbRestricted || isTypeRestricted;
Emily Bernier92aa5a22014-07-07 10:11:48 -04001366 }
1367
Amith Yamasani462ac3a2015-06-30 14:21:01 -07001368 private void enforceAdminUser() {
1369 UserManager um = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
1370 final int callingUserId = UserHandle.getCallingUserId();
1371 boolean isAdmin;
1372 long token = Binder.clearCallingIdentity();
1373 try {
1374 isAdmin = um.getUserInfo(callingUserId).isAdmin();
1375 } finally {
1376 Binder.restoreCallingIdentity(token);
1377 }
1378 if (!isAdmin) {
1379 throw new SecurityException("Only admin users can adopt sd cards");
1380 }
1381 }
1382
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001383 /**
Sudheer Shanka2250d562016-11-07 15:41:02 -08001384 * Constructs a new StorageManagerService instance
San Mehat207e5382010-02-04 20:46:54 -08001385 *
1386 * @param context Binder context for this service
1387 */
Sudheer Shanka2250d562016-11-07 15:41:02 -08001388 public StorageManagerService(Context context) {
Christopher Tated417d622013-08-19 16:14:25 -07001389 sSelf = this;
1390
San Mehat207e5382010-02-04 20:46:54 -08001391 mContext = context;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001392 mCallbacks = new Callbacks(FgThread.get().getLooper());
Jeff Sharkeyb9fe5372015-12-03 15:23:08 -07001393 mLockPatternUtils = new LockPatternUtils(mContext);
San Mehat207e5382010-02-04 20:46:54 -08001394
San Mehat207e5382010-02-04 20:46:54 -08001395 // XXX: This will go away soon in favor of IMountServiceObserver
1396 mPms = (PackageManagerService) ServiceManager.getService("package");
1397
Dianne Hackbornefa92b22013-05-03 14:11:43 -07001398 HandlerThread hthread = new HandlerThread(TAG);
1399 hthread.start();
Sudheer Shanka2250d562016-11-07 15:41:02 -08001400 mHandler = new StorageManagerServiceHandler(hthread.getLooper());
Daniel Sandler5f27ef42010-03-16 15:42:02 -04001401
Sudheer Shanka2250d562016-11-07 15:41:02 -08001402 // Add OBB Action Handler to StorageManagerService thread.
Dianne Hackborn8d044e82013-04-30 17:24:15 -07001403 mObbActionHandler = new ObbActionHandler(IoThread.get().getLooper());
Kenny Roota02b8b02010-08-05 16:14:17 -07001404
Christopher Tate7265abe2014-11-21 13:54:45 -08001405 // Initialize the last-fstrim tracking if necessary
1406 File dataDir = Environment.getDataDirectory();
1407 File systemDir = new File(dataDir, "system");
1408 mLastMaintenanceFile = new File(systemDir, LAST_FSTRIM_FILE);
1409 if (!mLastMaintenanceFile.exists()) {
1410 // Not setting mLastMaintenance here means that we will force an
1411 // fstrim during reboot following the OTA that installs this code.
1412 try {
1413 (new FileOutputStream(mLastMaintenanceFile)).close();
1414 } catch (IOException e) {
1415 Slog.e(TAG, "Unable to create fstrim record " + mLastMaintenanceFile.getPath());
1416 }
1417 } else {
1418 mLastMaintenance = mLastMaintenanceFile.lastModified();
1419 }
1420
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001421 mSettingsFile = new AtomicFile(
Dianne Hackborne17b4452018-01-10 13:15:40 -08001422 new File(Environment.getDataSystemDirectory(), "storage.xml"), "storage-settings");
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001423
1424 synchronized (mLock) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001425 readSettingsLocked();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001426 }
1427
Sudheer Shanka2250d562016-11-07 15:41:02 -08001428 LocalServices.addService(StorageManagerInternal.class, mStorageManagerInternal);
Svet Ganov6ee871e2015-07-10 14:29:33 -07001429
Jeff Sharkeybcd262d2015-06-10 09:41:17 -07001430 final IntentFilter userFilter = new IntentFilter();
1431 userFilter.addAction(Intent.ACTION_USER_ADDED);
1432 userFilter.addAction(Intent.ACTION_USER_REMOVED);
1433 mContext.registerReceiver(mUserReceiver, userFilter, null, mHandler);
1434
Jeff Sharkey5a9bb742015-11-03 10:15:57 -08001435 synchronized (mLock) {
1436 addInternalVolumeLocked();
1437 }
Amith Yamasania7892482015-08-07 11:09:05 -07001438
Kenny Root07714d42011-08-17 17:49:28 -07001439 // Add ourself to the Watchdog monitors if enabled.
1440 if (WATCHDOG_ENABLE) {
1441 Watchdog.getInstance().addMonitor(this);
1442 }
San Mehat207e5382010-02-04 20:46:54 -08001443 }
1444
Jeff Sharkeycd575992016-03-29 14:12:49 -06001445 private void start() {
Jeff Sharkey1019de92017-09-06 13:47:03 -06001446 connect();
Jeff Sharkeycd575992016-03-29 14:12:49 -06001447 }
1448
Jeff Sharkey1019de92017-09-06 13:47:03 -06001449 private void connect() {
Jin Qian12690d52017-10-13 18:17:04 -07001450 IBinder binder = ServiceManager.getService("storaged");
1451 if (binder != null) {
1452 try {
1453 binder.linkToDeath(new DeathRecipient() {
1454 @Override
1455 public void binderDied() {
1456 Slog.w(TAG, "storaged died; reconnecting");
1457 mStoraged = null;
1458 connect();
1459 }
1460 }, 0);
1461 } catch (RemoteException e) {
1462 binder = null;
1463 }
1464 }
1465
1466 if (binder != null) {
1467 mStoraged = IStoraged.Stub.asInterface(binder);
1468 } else {
1469 Slog.w(TAG, "storaged not found; trying again");
1470 }
1471
1472 binder = ServiceManager.getService("vold");
Jeff Sharkey1019de92017-09-06 13:47:03 -06001473 if (binder != null) {
1474 try {
1475 binder.linkToDeath(new DeathRecipient() {
1476 @Override
1477 public void binderDied() {
1478 Slog.w(TAG, "vold died; reconnecting");
Jin Qian12690d52017-10-13 18:17:04 -07001479 mVold = null;
Jeff Sharkey1019de92017-09-06 13:47:03 -06001480 connect();
1481 }
1482 }, 0);
1483 } catch (RemoteException e) {
1484 binder = null;
1485 }
1486 }
1487
1488 if (binder != null) {
1489 mVold = IVold.Stub.asInterface(binder);
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001490 try {
1491 mVold.setListener(mListener);
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001492 } catch (RemoteException e) {
Jin Qian12690d52017-10-13 18:17:04 -07001493 mVold = null;
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001494 Slog.w(TAG, "vold listener rejected; trying again", e);
1495 }
Jeff Sharkey1019de92017-09-06 13:47:03 -06001496 } else {
1497 Slog.w(TAG, "vold not found; trying again");
Jeff Sharkey1019de92017-09-06 13:47:03 -06001498 }
Jeff Sharkey8058fe62017-09-13 11:50:33 -06001499
Jin Qian12690d52017-10-13 18:17:04 -07001500 if (mStoraged == null || mVold == null) {
1501 BackgroundThread.getHandler().postDelayed(() -> {
1502 connect();
1503 }, DateUtils.SECOND_IN_MILLIS);
1504 } else {
1505 onDaemonConnected();
1506 }
Jeff Sharkey1019de92017-09-06 13:47:03 -06001507 }
1508
Jeff Sharkey56e62932015-03-21 20:41:00 -07001509 private void systemReady() {
Jeff Sharkey9765e442017-12-14 22:15:14 -07001510 LocalServices.getService(ActivityManagerInternal.class)
1511 .registerScreenObserver(this);
1512
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001513 mSystemReady = true;
1514 mHandler.obtainMessage(H_SYSTEM_READY).sendToTarget();
1515 }
1516
Yasuhiro Matsuda87a38b52015-07-24 22:10:16 +09001517 private void bootCompleted() {
1518 mBootCompleted = true;
1519 }
1520
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001521 private String getDefaultPrimaryStorageUuid() {
1522 if (SystemProperties.getBoolean(StorageManager.PROP_PRIMARY_PHYSICAL, false)) {
1523 return StorageManager.UUID_PRIMARY_PHYSICAL;
1524 } else {
1525 return StorageManager.UUID_PRIVATE_INTERNAL;
1526 }
1527 }
1528
Andreas Gampea36dc622018-02-05 17:19:22 -08001529 @GuardedBy("mLock")
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001530 private void readSettingsLocked() {
1531 mRecords.clear();
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001532 mPrimaryStorageUuid = getDefaultPrimaryStorageUuid();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001533
1534 FileInputStream fis = null;
1535 try {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001536 fis = mSettingsFile.openRead();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001537 final XmlPullParser in = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001538 in.setInput(fis, StandardCharsets.UTF_8.name());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001539
1540 int type;
1541 while ((type = in.next()) != END_DOCUMENT) {
1542 if (type == START_TAG) {
1543 final String tag = in.getName();
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001544 if (TAG_VOLUMES.equals(tag)) {
1545 final int version = readIntAttribute(in, ATTR_VERSION, VERSION_INIT);
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001546 final boolean primaryPhysical = SystemProperties.getBoolean(
1547 StorageManager.PROP_PRIMARY_PHYSICAL, false);
1548 final boolean validAttr = (version >= VERSION_FIX_PRIMARY)
1549 || (version >= VERSION_ADD_PRIMARY && !primaryPhysical);
1550 if (validAttr) {
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001551 mPrimaryStorageUuid = readStringAttribute(in,
1552 ATTR_PRIMARY_STORAGE_UUID);
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001553 }
1554
1555 } else if (TAG_VOLUME.equals(tag)) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001556 final VolumeRecord rec = readVolumeRecord(in);
1557 mRecords.put(rec.fsUuid, rec);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001558 }
1559 }
1560 }
1561 } catch (FileNotFoundException e) {
1562 // Missing metadata is okay, probably first boot
1563 } catch (IOException e) {
1564 Slog.wtf(TAG, "Failed reading metadata", e);
1565 } catch (XmlPullParserException e) {
1566 Slog.wtf(TAG, "Failed reading metadata", e);
1567 } finally {
1568 IoUtils.closeQuietly(fis);
1569 }
1570 }
1571
Andreas Gampea36dc622018-02-05 17:19:22 -08001572 @GuardedBy("mLock")
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001573 private void writeSettingsLocked() {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001574 FileOutputStream fos = null;
1575 try {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001576 fos = mSettingsFile.startWrite();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001577
1578 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001579 out.setOutput(fos, StandardCharsets.UTF_8.name());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001580 out.startDocument(null, true);
1581 out.startTag(null, TAG_VOLUMES);
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001582 writeIntAttribute(out, ATTR_VERSION, VERSION_FIX_PRIMARY);
Jeff Sharkey620b32b2015-04-23 19:36:02 -07001583 writeStringAttribute(out, ATTR_PRIMARY_STORAGE_UUID, mPrimaryStorageUuid);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001584 final int size = mRecords.size();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001585 for (int i = 0; i < size; i++) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001586 final VolumeRecord rec = mRecords.valueAt(i);
1587 writeVolumeRecord(out, rec);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001588 }
1589 out.endTag(null, TAG_VOLUMES);
1590 out.endDocument();
1591
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001592 mSettingsFile.finishWrite(fos);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001593 } catch (IOException e) {
1594 if (fos != null) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001595 mSettingsFile.failWrite(fos);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001596 }
1597 }
1598 }
1599
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001600 public static VolumeRecord readVolumeRecord(XmlPullParser in) throws IOException {
1601 final int type = readIntAttribute(in, ATTR_TYPE);
1602 final String fsUuid = readStringAttribute(in, ATTR_FS_UUID);
1603 final VolumeRecord meta = new VolumeRecord(type, fsUuid);
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001604 meta.partGuid = readStringAttribute(in, ATTR_PART_GUID);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001605 meta.nickname = readStringAttribute(in, ATTR_NICKNAME);
1606 meta.userFlags = readIntAttribute(in, ATTR_USER_FLAGS);
Jeff Sharkeye8a4b662015-06-27 15:43:45 -07001607 meta.createdMillis = readLongAttribute(in, ATTR_CREATED_MILLIS);
1608 meta.lastTrimMillis = readLongAttribute(in, ATTR_LAST_TRIM_MILLIS);
1609 meta.lastBenchMillis = readLongAttribute(in, ATTR_LAST_BENCH_MILLIS);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001610 return meta;
1611 }
1612
1613 public static void writeVolumeRecord(XmlSerializer out, VolumeRecord rec) throws IOException {
1614 out.startTag(null, TAG_VOLUME);
1615 writeIntAttribute(out, ATTR_TYPE, rec.type);
1616 writeStringAttribute(out, ATTR_FS_UUID, rec.fsUuid);
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001617 writeStringAttribute(out, ATTR_PART_GUID, rec.partGuid);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001618 writeStringAttribute(out, ATTR_NICKNAME, rec.nickname);
1619 writeIntAttribute(out, ATTR_USER_FLAGS, rec.userFlags);
Jeff Sharkeye8a4b662015-06-27 15:43:45 -07001620 writeLongAttribute(out, ATTR_CREATED_MILLIS, rec.createdMillis);
1621 writeLongAttribute(out, ATTR_LAST_TRIM_MILLIS, rec.lastTrimMillis);
1622 writeLongAttribute(out, ATTR_LAST_BENCH_MILLIS, rec.lastBenchMillis);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001623 out.endTag(null, TAG_VOLUME);
1624 }
1625
San Mehat207e5382010-02-04 20:46:54 -08001626 /**
San Mehat4270e1e2010-01-29 05:32:19 -08001627 * Exposed API calls below here
1628 */
1629
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001630 @Override
Sudheer Shanka2250d562016-11-07 15:41:02 -08001631 public void registerListener(IStorageEventListener listener) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001632 mCallbacks.register(listener);
San Mehat4270e1e2010-01-29 05:32:19 -08001633 }
1634
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001635 @Override
Sudheer Shanka2250d562016-11-07 15:41:02 -08001636 public void unregisterListener(IStorageEventListener listener) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001637 mCallbacks.unregister(listener);
San Mehat4270e1e2010-01-29 05:32:19 -08001638 }
1639
Jeff Sharkey48877892015-03-18 11:27:19 -07001640 @Override
Sudheer Shanka2250d562016-11-07 15:41:02 -08001641 public void shutdown(final IStorageShutdownObserver observer) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001642 enforcePermission(android.Manifest.permission.SHUTDOWN);
San Mehat4270e1e2010-01-29 05:32:19 -08001643
San Mehata5078592010-03-25 09:36:54 -07001644 Slog.i(TAG, "Shutting down");
Jeff Sharkey48877892015-03-18 11:27:19 -07001645 mHandler.obtainMessage(H_SHUTDOWN, observer).sendToTarget();
San Mehat4270e1e2010-01-29 05:32:19 -08001646 }
1647
Jeff Sharkey48877892015-03-18 11:27:19 -07001648 @Override
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001649 public void mount(String volId) {
1650 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001651
Jeff Sharkeyef10ee02015-07-05 14:17:27 -07001652 final VolumeInfo vol = findVolumeByIdOrThrow(volId);
Jeff Sharkey2e606d72015-07-27 14:19:54 -07001653 if (isMountDisallowed(vol)) {
1654 throw new SecurityException("Mounting " + volId + " restricted by policy");
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001655 }
1656 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001657 mVold.mount(vol.id, vol.mountFlags, vol.mountUserId);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001658 } catch (Exception e) {
1659 Slog.wtf(TAG, e);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001660 }
1661 }
1662
1663 @Override
1664 public void unmount(String volId) {
1665 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001666
Jeff Sharkeyef10ee02015-07-05 14:17:27 -07001667 final VolumeInfo vol = findVolumeByIdOrThrow(volId);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001668 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001669 mVold.unmount(vol.id);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001670 } catch (Exception e) {
1671 Slog.wtf(TAG, e);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001672 }
1673 }
1674
1675 @Override
1676 public void format(String volId) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001677 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
San Mehat5b77dab2010-01-26 13:28:50 -08001678
Jeff Sharkeyef10ee02015-07-05 14:17:27 -07001679 final VolumeInfo vol = findVolumeByIdOrThrow(volId);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001680 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001681 mVold.format(vol.id, "auto");
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001682 } catch (Exception e) {
1683 Slog.wtf(TAG, e);
Jeff Sharkey48877892015-03-18 11:27:19 -07001684 }
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001685 }
1686
1687 @Override
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001688 public void benchmark(String volId, IVoldTaskListener listener) {
Jeff Sharkey9756d752015-05-14 21:07:42 -07001689 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
Jeff Sharkey9756d752015-05-14 21:07:42 -07001690
1691 try {
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001692 mVold.benchmark(volId, new IVoldTaskListener.Stub() {
1693 @Override
1694 public void onStatus(int status, PersistableBundle extras) {
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001695 dispatchOnStatus(listener, status, extras);
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001696 }
1697
1698 @Override
1699 public void onFinished(int status, PersistableBundle extras) {
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001700 dispatchOnFinished(listener, status, extras);
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001701
1702 final String path = extras.getString("path");
1703 final String ident = extras.getString("ident");
1704 final long create = extras.getLong("create");
1705 final long run = extras.getLong("run");
1706 final long destroy = extras.getLong("destroy");
1707
1708 final DropBoxManager dropBox = mContext.getSystemService(DropBoxManager.class);
1709 dropBox.addText(TAG_STORAGE_BENCHMARK, scrubPath(path)
1710 + " " + ident + " " + create + " " + run + " " + destroy);
1711
1712 synchronized (mLock) {
1713 final VolumeRecord rec = findRecordForPath(path);
1714 if (rec != null) {
1715 rec.lastBenchMillis = System.currentTimeMillis();
1716 writeSettingsLocked();
1717 }
1718 }
1719 }
1720 });
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001721 } catch (RemoteException e) {
1722 throw e.rethrowAsRuntimeException();
Jeff Sharkey9756d752015-05-14 21:07:42 -07001723 }
1724 }
1725
1726 @Override
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001727 public void partitionPublic(String diskId) {
1728 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001729
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001730 final CountDownLatch latch = findOrCreateDiskScanLatch(diskId);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001731 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001732 mVold.partition(diskId, IVold.PARTITION_TYPE_PUBLIC, -1);
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -07001733 waitForLatch(latch, "partitionPublic", 3 * DateUtils.MINUTE_IN_MILLIS);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001734 } catch (Exception e) {
1735 Slog.wtf(TAG, e);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001736 }
1737 }
1738
1739 @Override
1740 public void partitionPrivate(String diskId) {
1741 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
Amith Yamasani462ac3a2015-06-30 14:21:01 -07001742 enforceAdminUser();
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001743
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001744 final CountDownLatch latch = findOrCreateDiskScanLatch(diskId);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001745 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001746 mVold.partition(diskId, IVold.PARTITION_TYPE_PRIVATE, -1);
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -07001747 waitForLatch(latch, "partitionPrivate", 3 * DateUtils.MINUTE_IN_MILLIS);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001748 } catch (Exception e) {
1749 Slog.wtf(TAG, e);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001750 }
1751 }
1752
1753 @Override
1754 public void partitionMixed(String diskId, int ratio) {
1755 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
Amith Yamasani462ac3a2015-06-30 14:21:01 -07001756 enforceAdminUser();
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001757
Jeff Sharkeyeba260d2015-04-19 14:35:16 -07001758 final CountDownLatch latch = findOrCreateDiskScanLatch(diskId);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001759 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001760 mVold.partition(diskId, IVold.PARTITION_TYPE_MIXED, ratio);
Jeff Sharkeyedcdaf62015-07-09 09:45:36 -07001761 waitForLatch(latch, "partitionMixed", 3 * DateUtils.MINUTE_IN_MILLIS);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001762 } catch (Exception e) {
1763 Slog.wtf(TAG, e);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07001764 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001765 }
1766
Jeff Sharkey48877892015-03-18 11:27:19 -07001767 @Override
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001768 public void setVolumeNickname(String fsUuid, String nickname) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001769 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001770
Jeff Sharkey50a05452015-04-29 11:24:52 -07001771 Preconditions.checkNotNull(fsUuid);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001772 synchronized (mLock) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001773 final VolumeRecord rec = mRecords.get(fsUuid);
1774 rec.nickname = nickname;
Jeff Sharkey50a05452015-04-29 11:24:52 -07001775 mCallbacks.notifyVolumeRecordChanged(rec);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001776 writeSettingsLocked();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001777 }
1778 }
1779
1780 @Override
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001781 public void setVolumeUserFlags(String fsUuid, int flags, int mask) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001782 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001783
Jeff Sharkey50a05452015-04-29 11:24:52 -07001784 Preconditions.checkNotNull(fsUuid);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001785 synchronized (mLock) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001786 final VolumeRecord rec = mRecords.get(fsUuid);
1787 rec.userFlags = (rec.userFlags & ~mask) | (flags & mask);
Jeff Sharkey50a05452015-04-29 11:24:52 -07001788 mCallbacks.notifyVolumeRecordChanged(rec);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001789 writeSettingsLocked();
1790 }
1791 }
1792
1793 @Override
1794 public void forgetVolume(String fsUuid) {
1795 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001796
Jeff Sharkey50a05452015-04-29 11:24:52 -07001797 Preconditions.checkNotNull(fsUuid);
Jeff Sharkey5a9bb742015-11-03 10:15:57 -08001798
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001799 synchronized (mLock) {
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001800 final VolumeRecord rec = mRecords.remove(fsUuid);
1801 if (rec != null && !TextUtils.isEmpty(rec.partGuid)) {
Jeff Sharkeydb4b6192017-10-24 11:08:50 -06001802 mHandler.obtainMessage(H_PARTITION_FORGET, rec).sendToTarget();
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001803 }
1804 mCallbacks.notifyVolumeForgotten(fsUuid);
Jeff Sharkey50a05452015-04-29 11:24:52 -07001805
1806 // If this had been primary storage, revert back to internal and
1807 // reset vold so we bind into new volume into place.
1808 if (Objects.equals(mPrimaryStorageUuid, fsUuid)) {
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001809 mPrimaryStorageUuid = getDefaultPrimaryStorageUuid();
Jeff Sharkey5a9bb742015-11-03 10:15:57 -08001810 mHandler.obtainMessage(H_RESET).sendToTarget();
Jeff Sharkey50a05452015-04-29 11:24:52 -07001811 }
1812
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07001813 writeSettingsLocked();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07001814 }
1815 }
1816
Jeff Sharkey7d2af542015-05-12 15:27:15 -07001817 @Override
1818 public void forgetAllVolumes() {
1819 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkey7d2af542015-05-12 15:27:15 -07001820
Jeff Sharkey50a05452015-04-29 11:24:52 -07001821 synchronized (mLock) {
1822 for (int i = 0; i < mRecords.size(); i++) {
1823 final String fsUuid = mRecords.keyAt(i);
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001824 final VolumeRecord rec = mRecords.valueAt(i);
1825 if (!TextUtils.isEmpty(rec.partGuid)) {
Jeff Sharkeydb4b6192017-10-24 11:08:50 -06001826 mHandler.obtainMessage(H_PARTITION_FORGET, rec).sendToTarget();
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001827 }
Jeff Sharkey50a05452015-04-29 11:24:52 -07001828 mCallbacks.notifyVolumeForgotten(fsUuid);
1829 }
Jeff Sharkey50a05452015-04-29 11:24:52 -07001830 mRecords.clear();
Jeff Sharkey50a05452015-04-29 11:24:52 -07001831
Jeff Sharkeyfced5342015-05-10 14:53:34 -07001832 if (!Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, mPrimaryStorageUuid)) {
1833 mPrimaryStorageUuid = getDefaultPrimaryStorageUuid();
1834 }
1835
1836 writeSettingsLocked();
Jeff Sharkey5a9bb742015-11-03 10:15:57 -08001837 mHandler.obtainMessage(H_RESET).sendToTarget();
Jeff Sharkey50a05452015-04-29 11:24:52 -07001838 }
1839 }
1840
Jeff Sharkeydb4b6192017-10-24 11:08:50 -06001841 private void forgetPartition(String partGuid, String fsUuid) {
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001842 try {
Jeff Sharkeydb4b6192017-10-24 11:08:50 -06001843 mVold.forgetPartition(partGuid, fsUuid);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001844 } catch (Exception e) {
1845 Slog.wtf(TAG, e);
Jeff Sharkey5cc0df22015-06-17 19:44:05 -07001846 }
1847 }
1848
Jeff Sharkey31d0b702016-11-21 14:16:53 -07001849 @Override
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001850 public void fstrim(int flags, IVoldTaskListener listener) {
Jeff Sharkey31d0b702016-11-21 14:16:53 -07001851 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
Jeff Sharkey31d0b702016-11-21 14:16:53 -07001852
1853 try {
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001854 mVold.fstrim(flags, new IVoldTaskListener.Stub() {
1855 @Override
1856 public void onStatus(int status, PersistableBundle extras) {
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001857 dispatchOnStatus(listener, status, extras);
1858
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001859 // Ignore trim failures
1860 if (status != 0) return;
1861
1862 final String path = extras.getString("path");
1863 final long bytes = extras.getLong("bytes");
1864 final long time = extras.getLong("time");
1865
1866 final DropBoxManager dropBox = mContext.getSystemService(DropBoxManager.class);
1867 dropBox.addText(TAG_STORAGE_TRIM, scrubPath(path) + " " + bytes + " " + time);
1868
1869 synchronized (mLock) {
1870 final VolumeRecord rec = findRecordForPath(path);
1871 if (rec != null) {
1872 rec.lastTrimMillis = System.currentTimeMillis();
1873 writeSettingsLocked();
1874 }
1875 }
1876 }
1877
1878 @Override
1879 public void onFinished(int status, PersistableBundle extras) {
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001880 dispatchOnFinished(listener, status, extras);
1881
Jeff Sharkeyb302c542017-09-15 12:57:59 -06001882 // TODO: benchmark when desired
1883 }
1884 });
Jeff Sharkey7e19f532017-11-06 13:54:11 -07001885 } catch (RemoteException e) {
1886 throw e.rethrowAsRuntimeException();
Jeff Sharkey31d0b702016-11-21 14:16:53 -07001887 }
1888 }
1889
Jin Qiana85b9912017-10-17 15:48:18 -07001890 void runIdleMaint(Runnable callback) {
1891 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
1892
1893 try {
1894 mVold.runIdleMaint(new IVoldTaskListener.Stub() {
1895 @Override
1896 public void onStatus(int status, PersistableBundle extras) {
1897 // Not currently used
1898 }
1899 @Override
1900 public void onFinished(int status, PersistableBundle extras) {
1901 if (callback != null) {
1902 BackgroundThread.getHandler().post(callback);
1903 }
1904 }
1905 });
1906 } catch (Exception e) {
1907 Slog.wtf(TAG, e);
1908 }
1909 }
1910
1911 @Override
1912 public void runIdleMaintenance() {
1913 runIdleMaint(null);
1914 }
1915
1916 void abortIdleMaint(Runnable callback) {
1917 enforcePermission(android.Manifest.permission.MOUNT_FORMAT_FILESYSTEMS);
1918
1919 try {
1920 mVold.abortIdleMaint(new IVoldTaskListener.Stub() {
1921 @Override
1922 public void onStatus(int status, PersistableBundle extras) {
1923 // Not currently used
1924 }
1925 @Override
1926 public void onFinished(int status, PersistableBundle extras) {
1927 if (callback != null) {
1928 BackgroundThread.getHandler().post(callback);
1929 }
1930 }
1931 });
1932 } catch (Exception e) {
1933 Slog.wtf(TAG, e);
1934 }
1935 }
1936
1937 @Override
1938 public void abortIdleMaintenance() {
1939 abortIdleMaint(null);
1940 }
1941
Svet Ganov6ee871e2015-07-10 14:29:33 -07001942 private void remountUidExternalStorage(int uid, int mode) {
Jeff Sharkey9527b222015-06-24 15:24:48 -07001943 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06001944 mVold.remountUid(uid, mode);
Jeff Sharkeyace874b2017-09-07 15:27:33 -06001945 } catch (Exception e) {
1946 Slog.wtf(TAG, e);
Jeff Sharkey9527b222015-06-24 15:24:48 -07001947 }
1948 }
1949
1950 @Override
Jeff Sharkey4c099d02015-05-15 13:45:00 -07001951 public void setDebugFlags(int flags, int mask) {
1952 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkey4c099d02015-05-15 13:45:00 -07001953
Jeff Sharkeyba512352015-11-12 20:17:45 -08001954 if ((mask & StorageManager.DEBUG_EMULATE_FBE) != 0) {
Jeff Sharkey00455bf2016-11-04 14:45:24 -06001955 if (!EMULATE_FBE_SUPPORTED) {
1956 throw new IllegalStateException(
1957 "Emulation not supported on this device");
1958 }
Paul Lawrence20be5d62016-02-26 13:51:17 -08001959 if (StorageManager.isFileEncryptedNativeOnly()) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07001960 throw new IllegalStateException(
Jeff Sharkey00455bf2016-11-04 14:45:24 -06001961 "Emulation not supported on device with native FBE");
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07001962 }
Jeff Sharkey5a785162016-03-21 13:02:06 -06001963 if (mLockPatternUtils.isCredentialRequiredToDecrypt(false)) {
1964 throw new IllegalStateException(
1965 "Emulation requires disabling 'Secure start-up' in Settings > Security");
1966 }
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07001967
Jeff Sharkey1176e512016-02-29 17:01:26 -07001968 final long token = Binder.clearCallingIdentity();
1969 try {
1970 final boolean emulateFbe = (flags & StorageManager.DEBUG_EMULATE_FBE) != 0;
1971 SystemProperties.set(StorageManager.PROP_EMULATE_FBE, Boolean.toString(emulateFbe));
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07001972
Jeff Sharkey1176e512016-02-29 17:01:26 -07001973 // Perform hard reboot to kick policy into place
1974 mContext.getSystemService(PowerManager.class).reboot(null);
1975 } finally {
1976 Binder.restoreCallingIdentity(token);
1977 }
Jeff Sharkeyba512352015-11-12 20:17:45 -08001978 }
Jeff Sharkey4c099d02015-05-15 13:45:00 -07001979
Jeff Sharkey901c0422018-04-20 13:11:20 -06001980 if ((mask & (StorageManager.DEBUG_ADOPTABLE_FORCE_ON
1981 | StorageManager.DEBUG_ADOPTABLE_FORCE_OFF)) != 0) {
1982 final String value;
1983 if ((flags & StorageManager.DEBUG_ADOPTABLE_FORCE_ON) != 0) {
1984 value = "force_on";
1985 } else if ((flags & StorageManager.DEBUG_ADOPTABLE_FORCE_OFF) != 0) {
1986 value = "force_off";
1987 } else {
1988 value = "";
1989 }
Jeff Sharkeyba512352015-11-12 20:17:45 -08001990
Jeff Sharkey901c0422018-04-20 13:11:20 -06001991 final long token = Binder.clearCallingIdentity();
1992 try {
1993 SystemProperties.set(StorageManager.PROP_ADOPTABLE, value);
1994
1995 // Reset storage to kick new setting into place
Jeff Sharkeyba512352015-11-12 20:17:45 -08001996 mHandler.obtainMessage(H_RESET).sendToTarget();
Jeff Sharkey901c0422018-04-20 13:11:20 -06001997 } finally {
1998 Binder.restoreCallingIdentity(token);
Jeff Sharkeyba512352015-11-12 20:17:45 -08001999 }
Jeff Sharkey4c099d02015-05-15 13:45:00 -07002000 }
Jeff Sharkey33dd1562016-04-07 11:05:33 -06002001
2002 if ((mask & (StorageManager.DEBUG_SDCARDFS_FORCE_ON
2003 | StorageManager.DEBUG_SDCARDFS_FORCE_OFF)) != 0) {
2004 final String value;
2005 if ((flags & StorageManager.DEBUG_SDCARDFS_FORCE_ON) != 0) {
2006 value = "force_on";
2007 } else if ((flags & StorageManager.DEBUG_SDCARDFS_FORCE_OFF) != 0) {
2008 value = "force_off";
2009 } else {
2010 value = "";
2011 }
2012
2013 final long token = Binder.clearCallingIdentity();
2014 try {
2015 SystemProperties.set(StorageManager.PROP_SDCARDFS, value);
2016
2017 // Reset storage to kick new setting into place
2018 mHandler.obtainMessage(H_RESET).sendToTarget();
2019 } finally {
2020 Binder.restoreCallingIdentity(token);
2021 }
2022 }
Jeff Sharkeye53e2d92017-03-25 23:14:06 -06002023
2024 if ((mask & StorageManager.DEBUG_VIRTUAL_DISK) != 0) {
2025 final boolean enabled = (flags & StorageManager.DEBUG_VIRTUAL_DISK) != 0;
2026
2027 final long token = Binder.clearCallingIdentity();
2028 try {
2029 SystemProperties.set(StorageManager.PROP_VIRTUAL_DISK, Boolean.toString(enabled));
2030
2031 // Reset storage to kick new setting into place
2032 mHandler.obtainMessage(H_RESET).sendToTarget();
2033 } finally {
2034 Binder.restoreCallingIdentity(token);
2035 }
2036 }
Jeff Sharkey4c099d02015-05-15 13:45:00 -07002037 }
2038
2039 @Override
Jeff Sharkey275e3e42015-04-24 16:10:32 -07002040 public String getPrimaryStorageUuid() {
Jeff Sharkey620b32b2015-04-23 19:36:02 -07002041 synchronized (mLock) {
2042 return mPrimaryStorageUuid;
2043 }
2044 }
2045
2046 @Override
Jeff Sharkey275e3e42015-04-24 16:10:32 -07002047 public void setPrimaryStorageUuid(String volumeUuid, IPackageMoveObserver callback) {
2048 enforcePermission(android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS);
Jeff Sharkey620b32b2015-04-23 19:36:02 -07002049
Jeff Sharkeya31460c2016-06-22 09:04:33 -06002050 final VolumeInfo from;
2051 final VolumeInfo to;
2052
Jeff Sharkey275e3e42015-04-24 16:10:32 -07002053 synchronized (mLock) {
Jeff Sharkeyfced5342015-05-10 14:53:34 -07002054 if (Objects.equals(mPrimaryStorageUuid, volumeUuid)) {
2055 throw new IllegalArgumentException("Primary storage already at " + volumeUuid);
Jeff Sharkey275e3e42015-04-24 16:10:32 -07002056 }
2057
2058 if (mMoveCallback != null) {
2059 throw new IllegalStateException("Move already in progress");
2060 }
2061 mMoveCallback = callback;
2062 mMoveTargetUuid = volumeUuid;
2063
Jeff Sharkeya65e6492017-06-21 13:45:11 -06002064 // We need all the users unlocked to move their primary storage
2065 final List<UserInfo> users = mContext.getSystemService(UserManager.class).getUsers();
2066 for (UserInfo user : users) {
2067 if (StorageManager.isFileEncryptedNativeOrEmulated()
2068 && !isUserKeyUnlocked(user.id)) {
2069 Slog.w(TAG, "Failing move due to locked user " + user.id);
2070 onMoveStatusLocked(PackageManager.MOVE_FAILED_LOCKED_USER);
2071 return;
2072 }
2073 }
2074
Jeff Sharkeyfced5342015-05-10 14:53:34 -07002075 // When moving to/from primary physical volume, we probably just nuked
2076 // the current storage location, so we have nothing to move.
2077 if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, mPrimaryStorageUuid)
2078 || Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
2079 Slog.d(TAG, "Skipping move to/from primary physical");
2080 onMoveStatusLocked(MOVE_STATUS_COPY_FINISHED);
2081 onMoveStatusLocked(PackageManager.MOVE_SUCCEEDED);
Jeff Sharkey5a9bb742015-11-03 10:15:57 -08002082 mHandler.obtainMessage(H_RESET).sendToTarget();
Jeff Sharkeya31460c2016-06-22 09:04:33 -06002083 return;
Jeff Sharkeyfced5342015-05-10 14:53:34 -07002084
2085 } else {
Jeff Sharkeya31460c2016-06-22 09:04:33 -06002086 from = findStorageForUuid(mPrimaryStorageUuid);
2087 to = findStorageForUuid(volumeUuid);
Jeff Sharkeyef10ee02015-07-05 14:17:27 -07002088
2089 if (from == null) {
2090 Slog.w(TAG, "Failing move due to missing from volume " + mPrimaryStorageUuid);
2091 onMoveStatusLocked(PackageManager.MOVE_FAILED_INTERNAL_ERROR);
2092 return;
2093 } else if (to == null) {
2094 Slog.w(TAG, "Failing move due to missing to volume " + volumeUuid);
2095 onMoveStatusLocked(PackageManager.MOVE_FAILED_INTERNAL_ERROR);
2096 return;
2097 }
Jeff Sharkey275e3e42015-04-24 16:10:32 -07002098 }
Jeff Sharkey620b32b2015-04-23 19:36:02 -07002099 }
Jeff Sharkeya31460c2016-06-22 09:04:33 -06002100
2101 try {
Jeff Sharkeyb302c542017-09-15 12:57:59 -06002102 mVold.moveStorage(from.id, to.id, new IVoldTaskListener.Stub() {
2103 @Override
2104 public void onStatus(int status, PersistableBundle extras) {
2105 synchronized (mLock) {
2106 onMoveStatusLocked(status);
2107 }
2108 }
2109
2110 @Override
2111 public void onFinished(int status, PersistableBundle extras) {
2112 // Not currently used
2113 }
2114 });
Jeff Sharkeyace874b2017-09-07 15:27:33 -06002115 } catch (Exception e) {
2116 Slog.wtf(TAG, e);
Jeff Sharkeya31460c2016-06-22 09:04:33 -06002117 }
Jeff Sharkey620b32b2015-04-23 19:36:02 -07002118 }
2119
San Mehatb1043402010-02-05 08:26:50 -08002120 private void warnOnNotMounted() {
Jeff Sharkey48877892015-03-18 11:27:19 -07002121 synchronized (mLock) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002122 for (int i = 0; i < mVolumes.size(); i++) {
2123 final VolumeInfo vol = mVolumes.valueAt(i);
Jeff Sharkey27de30d2015-04-18 16:20:27 -07002124 if (vol.isPrimary() && vol.isMountedWritable()) {
Jeff Sharkey48877892015-03-18 11:27:19 -07002125 // Cool beans, we have a mounted primary volume
2126 return;
2127 }
Jeff Sharkey32ee8312012-09-30 13:21:31 -07002128 }
San Mehatb1043402010-02-05 08:26:50 -08002129 }
Jeff Sharkey48877892015-03-18 11:27:19 -07002130
2131 Slog.w(TAG, "No primary storage mounted!");
San Mehatb1043402010-02-05 08:26:50 -08002132 }
2133
Kenny Roota02b8b02010-08-05 16:14:17 -07002134 private boolean isUidOwnerOfPackageOrSystem(String packageName, int callerUid) {
2135 if (callerUid == android.os.Process.SYSTEM_UID) {
2136 return true;
2137 }
2138
Kenny Root02c87302010-07-01 08:10:18 -07002139 if (packageName == null) {
2140 return false;
2141 }
2142
Jeff Sharkeycd654482016-01-08 17:42:11 -07002143 final int packageUid = mPms.getPackageUid(packageName,
2144 PackageManager.MATCH_DEBUG_TRIAGED_MISSING, UserHandle.getUserId(callerUid));
Kenny Root02c87302010-07-01 08:10:18 -07002145
2146 if (DEBUG_OBB) {
2147 Slog.d(TAG, "packageName = " + packageName + ", packageUid = " +
2148 packageUid + ", callerUid = " + callerUid);
2149 }
2150
2151 return callerUid == packageUid;
2152 }
2153
Jeff Sharkey54402792017-09-15 16:05:19 -06002154 @Override
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002155 public String getMountedObbPath(String rawPath) {
2156 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
Kenny Rootaf9d6672010-10-08 09:21:39 -07002157
Kenny Root02c87302010-07-01 08:10:18 -07002158 warnOnNotMounted();
2159
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002160 final ObbState state;
Rubin Xucd7a0142015-04-17 23:45:27 +01002161 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002162 state = mObbPathToStateMap.get(rawPath);
2163 }
2164 if (state == null) {
2165 Slog.w(TAG, "Failed to find OBB mounted at " + rawPath);
2166 return null;
2167 }
2168
Jeff Sharkey54402792017-09-15 16:05:19 -06002169 return findVolumeByIdOrThrow(state.volId).getPath().getAbsolutePath();
Kenny Root02c87302010-07-01 08:10:18 -07002170 }
2171
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002172 @Override
2173 public boolean isObbMounted(String rawPath) {
2174 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
Kenny Rootaf9d6672010-10-08 09:21:39 -07002175 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002176 return mObbPathToStateMap.containsKey(rawPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07002177 }
Kenny Root02c87302010-07-01 08:10:18 -07002178 }
2179
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002180 @Override
2181 public void mountObb(
2182 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2183 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2184 Preconditions.checkNotNull(canonicalPath, "canonicalPath cannot be null");
2185 Preconditions.checkNotNull(token, "token cannot be null");
Kenny Rootaf9d6672010-10-08 09:21:39 -07002186
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002187 final int callingUid = Binder.getCallingUid();
Jeff Sharkey41cd6812017-09-11 10:32:17 -06002188 final ObbState obbState = new ObbState(rawPath, canonicalPath,
2189 callingUid, token, nonce, null);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002190 final ObbAction action = new MountObbAction(obbState, key, callingUid);
Kenny Roota02b8b02010-08-05 16:14:17 -07002191 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
2192
2193 if (DEBUG_OBB)
2194 Slog.i(TAG, "Send to OBB handler: " + action.toString());
Kenny Root02c87302010-07-01 08:10:18 -07002195 }
2196
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002197 @Override
2198 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) {
2199 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2200
2201 final ObbState existingState;
Rubin Xucd7a0142015-04-17 23:45:27 +01002202 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002203 existingState = mObbPathToStateMap.get(rawPath);
Kenny Rootf1121dc2010-09-29 07:30:53 -07002204 }
2205
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002206 if (existingState != null) {
2207 // TODO: separate state object from request data
2208 final int callingUid = Binder.getCallingUid();
Jeff Sharkey41cd6812017-09-11 10:32:17 -06002209 final ObbState newState = new ObbState(rawPath, existingState.canonicalPath,
2210 callingUid, token, nonce, existingState.volId);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002211 final ObbAction action = new UnmountObbAction(newState, force);
2212 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
Kenny Root02c87302010-07-01 08:10:18 -07002213
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002214 if (DEBUG_OBB)
2215 Slog.i(TAG, "Send to OBB handler: " + action.toString());
2216 } else {
2217 Slog.w(TAG, "Unknown OBB mount at " + rawPath);
2218 }
Kenny Roota02b8b02010-08-05 16:14:17 -07002219 }
2220
Ben Komalo444eca22011-09-01 15:17:44 -07002221 @Override
2222 public int getEncryptionState() {
2223 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
2224 "no permission to access the crypt keeper");
2225
Ben Komalo444eca22011-09-01 15:17:44 -07002226 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002227 return mVold.fdeComplete();
2228 } catch (Exception e) {
2229 Slog.wtf(TAG, e);
Sudheer Shankaf7341142016-10-18 17:15:18 -07002230 return StorageManager.ENCRYPTION_STATE_ERROR_UNKNOWN;
Ben Komalo444eca22011-09-01 15:17:44 -07002231 }
2232 }
2233
2234 @Override
Jason parks5af0b912010-11-29 09:05:25 -06002235 public int decryptStorage(String password) {
Jason parks8888c592011-01-20 22:46:41 -06002236 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
2237 "no permission to access the crypt keeper");
Jason parks5af0b912010-11-29 09:05:25 -06002238
Jeff Sharkey8058fe62017-09-13 11:50:33 -06002239 if (TextUtils.isEmpty(password)) {
2240 throw new IllegalArgumentException("password cannot be empty");
2241 }
2242
Jason parks5af0b912010-11-29 09:05:25 -06002243 if (DEBUG_EVENTS) {
2244 Slog.i(TAG, "decrypting storage...");
2245 }
2246
2247 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002248 mVold.fdeCheckPassword(password);
2249 mHandler.postDelayed(() -> {
2250 try {
2251 mVold.fdeRestart();
2252 } catch (Exception e) {
2253 Slog.wtf(TAG, e);
2254 }
2255 }, DateUtils.SECOND_IN_MILLIS);
2256 return 0;
2257 } catch (Exception e) {
2258 Slog.wtf(TAG, e);
2259 return StorageManager.ENCRYPTION_STATE_ERROR_UNKNOWN;
Jason parks5af0b912010-11-29 09:05:25 -06002260 }
Jason parks5af0b912010-11-29 09:05:25 -06002261 }
2262
Jeff Sharkey54402792017-09-15 16:05:19 -06002263 @Override
Paul Lawrence46791e72014-04-03 09:10:26 -07002264 public int encryptStorage(int type, String password) {
Jason parks8888c592011-01-20 22:46:41 -06002265 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
2266 "no permission to access the crypt keeper");
Jason parks56aa5322011-01-07 09:01:15 -06002267
Jeff Sharkey8058fe62017-09-13 11:50:33 -06002268 if (type == StorageManager.CRYPT_TYPE_DEFAULT) {
2269 password = "";
2270 } else if (TextUtils.isEmpty(password)) {
2271 throw new IllegalArgumentException("password cannot be empty");
2272 }
2273
Jason parks56aa5322011-01-07 09:01:15 -06002274 if (DEBUG_EVENTS) {
Jason parks8888c592011-01-20 22:46:41 -06002275 Slog.i(TAG, "encrypting storage...");
Jason parks56aa5322011-01-07 09:01:15 -06002276 }
2277
2278 try {
Paul Lawrence89a0ae42017-12-22 10:11:10 -08002279 mVold.fdeEnable(type, password, 0);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002280 } catch (Exception e) {
2281 Slog.wtf(TAG, e);
2282 return -1;
Jason parks56aa5322011-01-07 09:01:15 -06002283 }
2284
2285 return 0;
2286 }
2287
Paul Lawrence8e397362014-01-27 15:22:30 -08002288 /** Set the password for encrypting the master key.
2289 * @param type One of the CRYPTO_TYPE_XXX consts defined in StorageManager.
2290 * @param password The password to set.
2291 */
Jeff Sharkey54402792017-09-15 16:05:19 -06002292 @Override
Paul Lawrence8e397362014-01-27 15:22:30 -08002293 public int changeEncryptionPassword(int type, String password) {
Jason parksf7b3cd42011-01-27 09:28:25 -06002294 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
2295 "no permission to access the crypt keeper");
2296
Jeff Sharkeyae266462017-11-27 13:32:24 -07002297 if (StorageManager.isFileEncryptedNativeOnly()) {
2298 // Not supported on FBE devices
2299 return -1;
2300 }
2301
Jeff Sharkey8058fe62017-09-13 11:50:33 -06002302 if (type == StorageManager.CRYPT_TYPE_DEFAULT) {
2303 password = "";
2304 } else if (TextUtils.isEmpty(password)) {
2305 throw new IllegalArgumentException("password cannot be empty");
2306 }
2307
Jason parksf7b3cd42011-01-27 09:28:25 -06002308 if (DEBUG_EVENTS) {
2309 Slog.i(TAG, "changing encryption password...");
2310 }
2311
2312 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002313 mVold.fdeChangePassword(type, password);
2314 return 0;
2315 } catch (Exception e) {
2316 Slog.wtf(TAG, e);
2317 return -1;
Jason parksf7b3cd42011-01-27 09:28:25 -06002318 }
2319 }
2320
Christopher Tate32418be2011-10-10 13:51:12 -07002321 /**
2322 * Validate a user-supplied password string with cryptfs
2323 */
2324 @Override
2325 public int verifyEncryptionPassword(String password) throws RemoteException {
2326 // Only the system process is permitted to validate passwords
2327 if (Binder.getCallingUid() != android.os.Process.SYSTEM_UID) {
2328 throw new SecurityException("no permission to access the crypt keeper");
2329 }
2330
2331 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
2332 "no permission to access the crypt keeper");
2333
2334 if (TextUtils.isEmpty(password)) {
2335 throw new IllegalArgumentException("password cannot be empty");
2336 }
2337
Christopher Tate32418be2011-10-10 13:51:12 -07002338 if (DEBUG_EVENTS) {
2339 Slog.i(TAG, "validating encryption password...");
2340 }
2341
2342 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002343 mVold.fdeVerifyPassword(password);
2344 return 0;
2345 } catch (Exception e) {
2346 Slog.wtf(TAG, e);
2347 return -1;
Christopher Tate32418be2011-10-10 13:51:12 -07002348 }
2349 }
2350
Paul Lawrence8e397362014-01-27 15:22:30 -08002351 /**
2352 * Get the type of encryption used to encrypt the master key.
2353 * @return The type, one of the CRYPT_TYPE_XXX consts from StorageManager.
2354 */
2355 @Override
Svetoslav16e4a1a2014-09-29 18:16:20 -07002356 public int getPasswordType() {
Paul Lawrence76a40572017-03-15 11:08:04 -07002357 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Paul Lawrence9de713d2016-05-02 22:45:33 +00002358 "no permission to access the crypt keeper");
2359
Paul Lawrence8e397362014-01-27 15:22:30 -08002360 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002361 return mVold.fdeGetPasswordType();
2362 } catch (Exception e) {
2363 Slog.wtf(TAG, e);
2364 return -1;
Paul Lawrence8e397362014-01-27 15:22:30 -08002365 }
2366 }
2367
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002368 /**
2369 * Set a field in the crypto header.
2370 * @param field field to set
2371 * @param contents contents to set in field
2372 */
2373 @Override
2374 public void setField(String field, String contents) throws RemoteException {
Paul Lawrence76a40572017-03-15 11:08:04 -07002375 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Paul Lawrence0bbd1082016-04-26 15:21:02 -07002376 "no permission to access the crypt keeper");
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002377
Jeff Sharkeyae266462017-11-27 13:32:24 -07002378 if (StorageManager.isFileEncryptedNativeOnly()) {
2379 // Not supported on FBE devices
2380 return;
2381 }
2382
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002383 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002384 mVold.fdeSetField(field, contents);
2385 return;
2386 } catch (Exception e) {
2387 Slog.wtf(TAG, e);
2388 return;
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002389 }
2390 }
2391
2392 /**
2393 * Gets a field from the crypto header.
2394 * @param field field to get
2395 * @return contents of field
2396 */
2397 @Override
2398 public String getField(String field) throws RemoteException {
Paul Lawrence76a40572017-03-15 11:08:04 -07002399 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Paul Lawrence0bbd1082016-04-26 15:21:02 -07002400 "no permission to access the crypt keeper");
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002401
Jeff Sharkeyae266462017-11-27 13:32:24 -07002402 if (StorageManager.isFileEncryptedNativeOnly()) {
2403 // Not supported on FBE devices
2404 return null;
2405 }
2406
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002407 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002408 return mVold.fdeGetField(field);
2409 } catch (Exception e) {
2410 Slog.wtf(TAG, e);
2411 return null;
Paul Lawrencee51dcf92014-03-18 10:56:00 -07002412 }
2413 }
2414
Paul Lawrence3806d9c2015-10-29 10:30:46 -07002415 /**
2416 * Is userdata convertible to file based encryption?
2417 * @return non zero for convertible
2418 */
2419 @Override
2420 public boolean isConvertibleToFBE() throws RemoteException {
Paul Lawrence76a40572017-03-15 11:08:04 -07002421 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Paul Lawrence0bbd1082016-04-26 15:21:02 -07002422 "no permission to access the crypt keeper");
Paul Lawrence3806d9c2015-10-29 10:30:46 -07002423
Paul Lawrence3806d9c2015-10-29 10:30:46 -07002424 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002425 return mVold.isConvertibleToFbe();
2426 } catch (Exception e) {
2427 Slog.wtf(TAG, e);
2428 return false;
Paul Lawrence3806d9c2015-10-29 10:30:46 -07002429 }
2430 }
2431
Jeff Sharkeyb049e212012-09-07 23:16:01 -07002432 @Override
Paul Lawrence945490c2014-03-27 16:37:28 +00002433 public String getPassword() throws RemoteException {
Paul Lawrence76a40572017-03-15 11:08:04 -07002434 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Rubin Xucd7a0142015-04-17 23:45:27 +01002435 "only keyguard can retrieve password");
Paul Lawrence0bbd1082016-04-26 15:21:02 -07002436
Paul Lawrence945490c2014-03-27 16:37:28 +00002437 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002438 return mVold.fdeGetPassword();
2439 } catch (Exception e) {
2440 Slog.wtf(TAG, e);
Paul Lawrence24063b52015-01-06 13:11:23 -08002441 return null;
Paul Lawrence945490c2014-03-27 16:37:28 +00002442 }
2443 }
2444
2445 @Override
2446 public void clearPassword() throws RemoteException {
Paul Lawrence76a40572017-03-15 11:08:04 -07002447 mContext.enforceCallingOrSelfPermission(Manifest.permission.CRYPT_KEEPER,
Paul Lawrence0bbd1082016-04-26 15:21:02 -07002448 "only keyguard can clear password");
2449
Paul Lawrence945490c2014-03-27 16:37:28 +00002450 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002451 mVold.fdeClearPassword();
2452 return;
2453 } catch (Exception e) {
2454 Slog.wtf(TAG, e);
2455 return;
Paul Lawrence945490c2014-03-27 16:37:28 +00002456 }
2457 }
2458
2459 @Override
Lenka Trochtovac4dd0212015-11-18 12:22:06 +01002460 public void createUserKey(int userId, int serialNumber, boolean ephemeral) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002461 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Paul Crowleybcf48ed2015-04-22 13:36:59 +01002462
Paul Crowleybcf48ed2015-04-22 13:36:59 +01002463 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002464 mVold.createUserKey(userId, serialNumber, ephemeral);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002465 } catch (Exception e) {
2466 Slog.wtf(TAG, e);
Paul Crowleybcf48ed2015-04-22 13:36:59 +01002467 }
2468 }
2469
Paul Crowley7ec733f2015-05-19 12:42:00 +01002470 @Override
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002471 public void destroyUserKey(int userId) {
2472 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Paul Crowley7ec733f2015-05-19 12:42:00 +01002473
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002474 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002475 mVold.destroyUserKey(userId);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002476 } catch (Exception e) {
2477 Slog.wtf(TAG, e);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002478 }
2479 }
2480
Jeff Sharkey43e12112017-09-12 16:31:45 -06002481 private String encodeBytes(byte[] bytes) {
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002482 if (ArrayUtils.isEmpty(bytes)) {
Jeff Sharkey43e12112017-09-12 16:31:45 -06002483 return "!";
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002484 } else {
Jeff Sharkey43e12112017-09-12 16:31:45 -06002485 return HexDump.toHexString(bytes);
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002486 }
2487 }
2488
Paul Crowleycc701552016-05-17 14:18:49 -07002489 /*
2490 * Add this token/secret pair to the set of ways we can recover a disk encryption key.
2491 * Changing the token/secret for a disk encryption key is done in two phases: first, adding
2492 * a new token/secret pair with this call, then delting all other pairs with
2493 * fixateNewestUserKeyAuth. This allows other places where a credential is used, such as
2494 * Gatekeeper, to be updated between the two calls.
2495 */
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002496 @Override
Paul Crowleycc701552016-05-17 14:18:49 -07002497 public void addUserKeyAuth(int userId, int serialNumber, byte[] token, byte[] secret) {
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002498 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002499
2500 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002501 mVold.addUserKeyAuth(userId, serialNumber, encodeBytes(token), encodeBytes(secret));
Jeff Sharkey43e12112017-09-12 16:31:45 -06002502 } catch (Exception e) {
2503 Slog.wtf(TAG, e);
Paul Crowleycc701552016-05-17 14:18:49 -07002504 }
2505 }
2506
2507 /*
2508 * Delete all disk encryption token/secret pairs except the most recently added one
2509 */
2510 @Override
2511 public void fixateNewestUserKeyAuth(int userId) {
2512 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Paul Crowleycc701552016-05-17 14:18:49 -07002513
2514 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002515 mVold.fixateNewestUserKeyAuth(userId);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002516 } catch (Exception e) {
2517 Slog.wtf(TAG, e);
Paul Crowleyfaeb3eb2016-02-08 15:58:29 +00002518 }
2519 }
2520
2521 @Override
2522 public void unlockUserKey(int userId, int serialNumber, byte[] token, byte[] secret) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002523 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002524
Jeff Sharkeyce18c812016-04-27 16:00:41 -06002525 if (StorageManager.isFileEncryptedNativeOrEmulated()) {
Rubin Xu3bf722a2016-12-15 16:07:38 +00002526 // When a user has secure lock screen, require secret to actually unlock.
2527 // This check is mostly in place for emulation mode.
2528 if (mLockPatternUtils.isSecure(userId) && ArrayUtils.isEmpty(secret)) {
2529 throw new IllegalStateException("Secret required to unlock secure user " + userId);
Jeff Sharkeyce18c812016-04-27 16:00:41 -06002530 }
Jeff Sharkeyb9fe5372015-12-03 15:23:08 -07002531
Jeff Sharkeyce18c812016-04-27 16:00:41 -06002532 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002533 mVold.unlockUserKey(userId, serialNumber, encodeBytes(token),
2534 encodeBytes(secret));
Jeff Sharkey43e12112017-09-12 16:31:45 -06002535 } catch (Exception e) {
2536 Slog.wtf(TAG, e);
2537 return;
Jeff Sharkeyce18c812016-04-27 16:00:41 -06002538 }
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002539 }
2540
2541 synchronized (mLock) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07002542 mLocalUnlockedUsers = ArrayUtils.appendInt(mLocalUnlockedUsers, userId);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002543 }
2544 }
2545
2546 @Override
2547 public void lockUserKey(int userId) {
2548 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002549
2550 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002551 mVold.lockUserKey(userId);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002552 } catch (Exception e) {
2553 Slog.wtf(TAG, e);
2554 return;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002555 }
2556
2557 synchronized (mLock) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07002558 mLocalUnlockedUsers = ArrayUtils.removeInt(mLocalUnlockedUsers, userId);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002559 }
2560 }
2561
2562 @Override
2563 public boolean isUserKeyUnlocked(int userId) {
Jeff Sharkeyce18c812016-04-27 16:00:41 -06002564 synchronized (mLock) {
2565 return ArrayUtils.contains(mLocalUnlockedUsers, userId);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002566 }
2567 }
2568
2569 @Override
Jeff Sharkey47f71082016-02-01 17:03:54 -07002570 public void prepareUserStorage(String volumeUuid, int userId, int serialNumber, int flags) {
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002571 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002572
2573 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002574 mVold.prepareUserStorage(volumeUuid, userId, serialNumber, flags);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002575 } catch (Exception e) {
2576 Slog.wtf(TAG, e);
Paul Crowley7ec733f2015-05-19 12:42:00 +01002577 }
2578 }
2579
Paul Crowleybcf48ed2015-04-22 13:36:59 +01002580 @Override
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06002581 public void destroyUserStorage(String volumeUuid, int userId, int flags) {
2582 enforcePermission(android.Manifest.permission.STORAGE_INTERNAL);
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06002583
2584 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002585 mVold.destroyUserStorage(volumeUuid, userId, flags);
Jeff Sharkey43e12112017-09-12 16:31:45 -06002586 } catch (Exception e) {
2587 Slog.wtf(TAG, e);
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -06002588 }
2589 }
2590
Daichi Hironoe56740d2017-02-02 13:56:45 +09002591 class AppFuseMountScope extends AppFuseBridge.MountScope {
Daichi Hirono812c95d2017-02-08 16:20:20 +09002592 boolean opened = false;
2593
2594 public AppFuseMountScope(int uid, int pid, int mountId) {
2595 super(uid, pid, mountId);
2596 }
2597
2598 @Override
2599 public ParcelFileDescriptor open() throws NativeDaemonConnectorException {
Jeff Sharkey54402792017-09-15 16:05:19 -06002600 try {
2601 return new ParcelFileDescriptor(
2602 mVold.mountAppFuse(uid, Process.myPid(), mountId));
2603 } catch (Exception e) {
2604 throw new NativeDaemonConnectorException("Failed to mount", e);
Daichi Hirono812c95d2017-02-08 16:20:20 +09002605 }
Daichi Hirono9fb00182016-11-08 14:12:17 +09002606 }
2607
2608 @Override
Daichi Hironoe56740d2017-02-02 13:56:45 +09002609 public void close() throws Exception {
Daichi Hirono812c95d2017-02-08 16:20:20 +09002610 if (opened) {
Jeff Sharkey54402792017-09-15 16:05:19 -06002611 mVold.unmountAppFuse(uid, Process.myPid(), mountId);
Daichi Hirono812c95d2017-02-08 16:20:20 +09002612 opened = false;
2613 }
Daichi Hirono9fb00182016-11-08 14:12:17 +09002614 }
2615 }
2616
2617 @Override
Daichi Hirono812c95d2017-02-08 16:20:20 +09002618 public @Nullable AppFuseMount mountProxyFileDescriptorBridge() {
Daichi Hironoe56740d2017-02-02 13:56:45 +09002619 Slog.v(TAG, "mountProxyFileDescriptorBridge");
Daichi Hirono9fb00182016-11-08 14:12:17 +09002620 final int uid = Binder.getCallingUid();
2621 final int pid = Binder.getCallingPid();
Daichi Hirono9fb00182016-11-08 14:12:17 +09002622
Daichi Hironoe56740d2017-02-02 13:56:45 +09002623 while (true) {
2624 synchronized (mAppFuseLock) {
2625 boolean newlyCreated = false;
2626 if (mAppFuseBridge == null) {
2627 mAppFuseBridge = new AppFuseBridge();
2628 new Thread(mAppFuseBridge, AppFuseBridge.TAG).start();
2629 newlyCreated = true;
Daichi Hirono9fb00182016-11-08 14:12:17 +09002630 }
Daichi Hironoe56740d2017-02-02 13:56:45 +09002631 try {
2632 final int name = mNextAppFuseName++;
2633 try {
2634 return new AppFuseMount(
Daichi Hirono812c95d2017-02-08 16:20:20 +09002635 name, mAppFuseBridge.addBridge(new AppFuseMountScope(uid, pid, name)));
2636 } catch (FuseUnavailableMountException e) {
Daichi Hironoe56740d2017-02-02 13:56:45 +09002637 if (newlyCreated) {
2638 // If newly created bridge fails, it's a real error.
Daichi Hirono812c95d2017-02-08 16:20:20 +09002639 Slog.e(TAG, "", e);
2640 return null;
Daichi Hironoe56740d2017-02-02 13:56:45 +09002641 }
2642 // It seems the thread of mAppFuseBridge has already been terminated.
2643 mAppFuseBridge = null;
2644 }
2645 } catch (NativeDaemonConnectorException e) {
2646 throw e.rethrowAsParcelableException();
2647 }
Daichi Hirono9fb00182016-11-08 14:12:17 +09002648 }
Daichi Hirono9fb00182016-11-08 14:12:17 +09002649 }
2650 }
2651
2652 @Override
Daichi Hirono812c95d2017-02-08 16:20:20 +09002653 public @Nullable ParcelFileDescriptor openProxyFileDescriptor(
2654 int mountId, int fileId, int mode) {
2655 Slog.v(TAG, "mountProxyFileDescriptor");
Daichi Hirono9fb00182016-11-08 14:12:17 +09002656 final int pid = Binder.getCallingPid();
2657 try {
2658 synchronized (mAppFuseLock) {
Daichi Hironoe56740d2017-02-02 13:56:45 +09002659 if (mAppFuseBridge == null) {
Daichi Hirono812c95d2017-02-08 16:20:20 +09002660 Slog.e(TAG, "FuseBridge has not been created");
2661 return null;
Daichi Hirono9fb00182016-11-08 14:12:17 +09002662 }
Daichi Hironoe56740d2017-02-02 13:56:45 +09002663 return mAppFuseBridge.openFile(pid, mountId, fileId, mode);
Daichi Hirono9fb00182016-11-08 14:12:17 +09002664 }
Daichi Hirono812c95d2017-02-08 16:20:20 +09002665 } catch (FuseUnavailableMountException | InterruptedException error) {
2666 Slog.v(TAG, "The mount point has already been invalid", error);
2667 return null;
Daichi Hirono9fb00182016-11-08 14:12:17 +09002668 }
2669 }
2670
Daichi Hirono9e8d9e22015-11-13 14:37:00 +09002671 @Override
Jeff Sharkeyae266462017-11-27 13:32:24 -07002672 public void mkdirs(String callingPkg, String appPath) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002673 final int userId = UserHandle.getUserId(Binder.getCallingUid());
2674 final UserEnvironment userEnv = new UserEnvironment(userId);
Farid Zare Seisanac094512018-04-02 15:06:13 -07002675 final String propertyName = "sys.user." + userId + ".ce_available";
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002676
Jeff Sharkey196c7552018-03-26 15:56:50 -06002677 // Ignore requests to create directories while storage is locked
Farid Zare Seisanac094512018-04-02 15:06:13 -07002678 if (!isUserKeyUnlocked(userId)) {
2679 throw new IllegalStateException("Failed to prepare " + appPath);
2680 }
2681
2682 // Ignore requests to create directories if CE storage is not available
Farid Zare Seisan7f6b8122018-03-30 11:19:10 -07002683 if ((userId == UserHandle.USER_SYSTEM)
2684 && !SystemProperties.getBoolean(propertyName, false)) {
Farid Zare Seisanac094512018-04-02 15:06:13 -07002685 throw new IllegalStateException("Failed to prepare " + appPath);
2686 }
Jeff Sharkey196c7552018-03-26 15:56:50 -06002687
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002688 // Validate that reported package name belongs to caller
2689 final AppOpsManager appOps = (AppOpsManager) mContext.getSystemService(
2690 Context.APP_OPS_SERVICE);
2691 appOps.checkPackage(Binder.getCallingUid(), callingPkg);
2692
Jeff Sharkey48877892015-03-18 11:27:19 -07002693 File appFile = null;
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002694 try {
Jeff Sharkey48877892015-03-18 11:27:19 -07002695 appFile = new File(appPath).getCanonicalFile();
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002696 } catch (IOException e) {
Jeff Sharkeyae266462017-11-27 13:32:24 -07002697 throw new IllegalStateException("Failed to resolve " + appPath + ": " + e);
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002698 }
2699
2700 // Try translating the app path into a vold path, but require that it
2701 // belong to the calling package.
Jeff Sharkey48877892015-03-18 11:27:19 -07002702 if (FileUtils.contains(userEnv.buildExternalStorageAppDataDirs(callingPkg), appFile) ||
2703 FileUtils.contains(userEnv.buildExternalStorageAppObbDirs(callingPkg), appFile) ||
2704 FileUtils.contains(userEnv.buildExternalStorageAppMediaDirs(callingPkg), appFile)) {
2705 appPath = appFile.getAbsolutePath();
2706 if (!appPath.endsWith("/")) {
2707 appPath = appPath + "/";
2708 }
2709
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002710 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06002711 mVold.mkdirs(appPath);
Jeff Sharkey27a108c2017-11-30 17:11:40 -07002712 return;
Jeff Sharkeyace874b2017-09-07 15:27:33 -06002713 } catch (Exception e) {
Jeff Sharkeyae266462017-11-27 13:32:24 -07002714 throw new IllegalStateException("Failed to prepare " + appPath + ": " + e);
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002715 }
2716 }
2717
Jeff Sharkey48877892015-03-18 11:27:19 -07002718 throw new SecurityException("Invalid mkdirs path: " + appFile);
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -07002719 }
2720
2721 @Override
Jeff Sharkey46349872015-07-28 10:49:47 -07002722 public StorageVolume[] getVolumeList(int uid, String packageName, int flags) {
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07002723 final int userId = UserHandle.getUserId(uid);
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002724
Jeff Sharkey46349872015-07-28 10:49:47 -07002725 final boolean forWrite = (flags & StorageManager.FLAG_FOR_WRITE) != 0;
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002726 final boolean realState = (flags & StorageManager.FLAG_REAL_STATE) != 0;
2727 final boolean includeInvisible = (flags & StorageManager.FLAG_INCLUDE_INVISIBLE) != 0;
Jeff Sharkey46349872015-07-28 10:49:47 -07002728
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002729 final boolean userKeyUnlocked;
2730 final boolean storagePermission;
2731 final long token = Binder.clearCallingIdentity();
Svetoslav38c3dbb2015-07-14 11:27:06 -07002732 try {
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002733 userKeyUnlocked = isUserKeyUnlocked(userId);
Sudheer Shanka2250d562016-11-07 15:41:02 -08002734 storagePermission = mStorageManagerInternal.hasExternalStorage(uid, packageName);
Svetoslav38c3dbb2015-07-14 11:27:06 -07002735 } finally {
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002736 Binder.restoreCallingIdentity(token);
Svetoslav38c3dbb2015-07-14 11:27:06 -07002737 }
Svet Ganov6ee871e2015-07-10 14:29:33 -07002738
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002739 boolean foundPrimary = false;
2740
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07002741 final ArrayList<StorageVolume> res = new ArrayList<>();
Jeff Sharkey48877892015-03-18 11:27:19 -07002742 synchronized (mLock) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002743 for (int i = 0; i < mVolumes.size(); i++) {
2744 final VolumeInfo vol = mVolumes.valueAt(i);
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002745 switch (vol.getType()) {
2746 case VolumeInfo.TYPE_PUBLIC:
2747 case VolumeInfo.TYPE_EMULATED:
2748 break;
2749 default:
2750 continue;
2751 }
2752
2753 boolean match = false;
2754 if (forWrite) {
2755 match = vol.isVisibleForWrite(userId);
2756 } else {
Felipe Leme123a0e72016-06-10 11:09:11 -07002757 match = vol.isVisibleForRead(userId)
2758 || (includeInvisible && vol.getPath() != null);
Jeff Sharkeyc02bfae2016-03-27 15:06:53 -06002759 }
2760 if (!match) continue;
2761
2762 boolean reportUnmounted = false;
2763 if ((vol.getType() == VolumeInfo.TYPE_EMULATED) && !userKeyUnlocked) {
2764 reportUnmounted = true;
2765 } else if (!storagePermission && !realState) {
2766 reportUnmounted = true;
2767 }
2768
2769 final StorageVolume userVol = vol.buildStorageVolume(mContext, userId,
2770 reportUnmounted);
2771 if (vol.isPrimary()) {
2772 res.add(0, userVol);
2773 foundPrimary = true;
2774 } else {
2775 res.add(userVol);
Jeff Sharkeyb049e212012-09-07 23:16:01 -07002776 }
Mike Lockwood8fa5f802011-03-24 08:12:30 -07002777 }
Mike Lockwood8fa5f802011-03-24 08:12:30 -07002778 }
Jeff Sharkey48877892015-03-18 11:27:19 -07002779
2780 if (!foundPrimary) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002781 Log.w(TAG, "No primary storage defined yet; hacking together a stub");
Jeff Sharkey48877892015-03-18 11:27:19 -07002782
2783 final boolean primaryPhysical = SystemProperties.getBoolean(
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002784 StorageManager.PROP_PRIMARY_PHYSICAL, false);
Jeff Sharkey48877892015-03-18 11:27:19 -07002785
2786 final String id = "stub_primary";
2787 final File path = Environment.getLegacyExternalStorageDirectory();
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002788 final String description = mContext.getString(android.R.string.unknownName);
Jeff Sharkey48877892015-03-18 11:27:19 -07002789 final boolean primary = true;
2790 final boolean removable = primaryPhysical;
2791 final boolean emulated = !primaryPhysical;
Jeff Sharkey48877892015-03-18 11:27:19 -07002792 final boolean allowMassStorage = false;
2793 final long maxFileSize = 0L;
2794 final UserHandle owner = new UserHandle(userId);
2795 final String uuid = null;
Jeff Sharkey48877892015-03-18 11:27:19 -07002796 final String state = Environment.MEDIA_REMOVED;
2797
Jerry Zhangf9c5c252017-08-16 18:07:51 -07002798 res.add(0, new StorageVolume(id, path,
2799 description, primary, removable, emulated,
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002800 allowMassStorage, maxFileSize, owner, uuid, state));
Jeff Sharkey48877892015-03-18 11:27:19 -07002801 }
2802
2803 return res.toArray(new StorageVolume[res.size()]);
Mike Lockwood8fa5f802011-03-24 08:12:30 -07002804 }
2805
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002806 @Override
2807 public DiskInfo[] getDisks() {
2808 synchronized (mLock) {
2809 final DiskInfo[] res = new DiskInfo[mDisks.size()];
2810 for (int i = 0; i < mDisks.size(); i++) {
2811 res[i] = mDisks.valueAt(i);
2812 }
2813 return res;
2814 }
2815 }
2816
2817 @Override
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07002818 public VolumeInfo[] getVolumes(int flags) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -07002819 synchronized (mLock) {
2820 final VolumeInfo[] res = new VolumeInfo[mVolumes.size()];
2821 for (int i = 0; i < mVolumes.size(); i++) {
2822 res[i] = mVolumes.valueAt(i);
2823 }
2824 return res;
2825 }
2826 }
2827
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07002828 @Override
2829 public VolumeRecord[] getVolumeRecords(int flags) {
2830 synchronized (mLock) {
2831 final VolumeRecord[] res = new VolumeRecord[mRecords.size()];
2832 for (int i = 0; i < mRecords.size(); i++) {
2833 res[i] = mRecords.valueAt(i);
2834 }
2835 return res;
2836 }
2837 }
2838
Jeff Sharkey9bed0702017-01-23 20:37:05 -07002839 @Override
2840 public long getCacheQuotaBytes(String volumeUuid, int uid) {
2841 if (uid != Binder.getCallingUid()) {
2842 mContext.enforceCallingPermission(android.Manifest.permission.STORAGE_INTERNAL, TAG);
2843 }
Daniel Nishi80fdb012017-03-09 14:30:07 -08002844 final long token = Binder.clearCallingIdentity();
2845 final StorageStatsManager stats = mContext.getSystemService(StorageStatsManager.class);
2846 try {
2847 return stats.getCacheQuotaBytes(volumeUuid, uid);
2848 } finally {
2849 Binder.restoreCallingIdentity(token);
2850 }
Jeff Sharkey9bed0702017-01-23 20:37:05 -07002851 }
2852
2853 @Override
2854 public long getCacheSizeBytes(String volumeUuid, int uid) {
2855 if (uid != Binder.getCallingUid()) {
2856 mContext.enforceCallingPermission(android.Manifest.permission.STORAGE_INTERNAL, TAG);
2857 }
2858 final long token = Binder.clearCallingIdentity();
2859 try {
2860 return mContext.getSystemService(StorageStatsManager.class)
2861 .queryStatsForUid(volumeUuid, uid).getCacheBytes();
Jeff Sharkey789a8fc2017-04-16 13:18:35 -06002862 } catch (IOException e) {
2863 throw new ParcelableException(e);
Jeff Sharkey9bed0702017-01-23 20:37:05 -07002864 } finally {
2865 Binder.restoreCallingIdentity(token);
2866 }
2867 }
2868
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002869 private int adjustAllocateFlags(int flags, int callingUid, String callingPackage) {
2870 // Require permission to allocate aggressively
2871 if ((flags & StorageManager.FLAG_ALLOCATE_AGGRESSIVE) != 0) {
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002872 mContext.enforceCallingOrSelfPermission(
2873 android.Manifest.permission.ALLOCATE_AGGRESSIVE, TAG);
2874 }
2875
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002876 // Apps normally can't directly defy reserved space
2877 flags &= ~StorageManager.FLAG_ALLOCATE_DEFY_ALL_RESERVED;
2878 flags &= ~StorageManager.FLAG_ALLOCATE_DEFY_HALF_RESERVED;
2879
2880 // However, if app is actively using the camera, then we're willing to
2881 // clear up to half of the reserved cache space, since the user might be
2882 // trying to capture an important memory.
2883 final AppOpsManager appOps = mContext.getSystemService(AppOpsManager.class);
2884 final long token = Binder.clearCallingIdentity();
2885 try {
2886 if (appOps.isOperationActive(AppOpsManager.OP_CAMERA, callingUid, callingPackage)) {
2887 Slog.d(TAG, "UID " + callingUid + " is actively using camera;"
2888 + " letting them defy reserved cached data");
2889 flags |= StorageManager.FLAG_ALLOCATE_DEFY_HALF_RESERVED;
2890 }
2891 } finally {
2892 Binder.restoreCallingIdentity(token);
2893 }
2894
2895 return flags;
2896 }
2897
2898 @Override
2899 public long getAllocatableBytes(String volumeUuid, int flags, String callingPackage) {
2900 flags = adjustAllocateFlags(flags, Binder.getCallingUid(), callingPackage);
2901
2902 final StorageManager storage = mContext.getSystemService(StorageManager.class);
2903 final StorageStatsManager stats = mContext.getSystemService(StorageStatsManager.class);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002904 final long token = Binder.clearCallingIdentity();
2905 try {
2906 // In general, apps can allocate as much space as they want, except
2907 // we never let them eat into either the minimum cache space or into
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002908 // the low disk warning space. To avoid user confusion, this logic
2909 // should be kept in sync with getFreeBytes().
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002910 final File path = storage.findPathForUuid(volumeUuid);
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002911
2912 final long usable = path.getUsableSpace();
2913 final long lowReserved = storage.getStorageLowBytes(path);
2914 final long fullReserved = storage.getStorageFullBytes(path);
2915
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002916 if (stats.isQuotaSupported(volumeUuid)) {
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002917 final long cacheTotal = stats.getCacheBytes(volumeUuid);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002918 final long cacheReserved = storage.getStorageCacheBytes(path, flags);
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002919 final long cacheClearable = Math.max(0, cacheTotal - cacheReserved);
2920
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002921 if ((flags & StorageManager.FLAG_ALLOCATE_AGGRESSIVE) != 0) {
2922 return Math.max(0, (usable + cacheClearable) - fullReserved);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002923 } else {
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002924 return Math.max(0, (usable + cacheClearable) - lowReserved);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002925 }
2926 } else {
2927 // When we don't have fast quota information, we ignore cached
2928 // data and only consider unused bytes.
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002929 if ((flags & StorageManager.FLAG_ALLOCATE_AGGRESSIVE) != 0) {
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002930 return Math.max(0, usable - fullReserved);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002931 } else {
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002932 return Math.max(0, usable - lowReserved);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002933 }
2934 }
Jeff Sharkey789a8fc2017-04-16 13:18:35 -06002935 } catch (IOException e) {
2936 throw new ParcelableException(e);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002937 } finally {
2938 Binder.restoreCallingIdentity(token);
2939 }
Jeff Sharkey500ce9e2017-02-12 02:39:24 -07002940 }
2941
2942 @Override
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002943 public void allocateBytes(String volumeUuid, long bytes, int flags, String callingPackage) {
2944 flags = adjustAllocateFlags(flags, Binder.getCallingUid(), callingPackage);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002945
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002946 final long allocatableBytes = getAllocatableBytes(volumeUuid, flags, callingPackage);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002947 if (bytes > allocatableBytes) {
2948 throw new ParcelableException(new IOException("Failed to allocate " + bytes
2949 + " because only " + allocatableBytes + " allocatable"));
2950 }
2951
Jeff Sharkey35e46d22017-06-09 10:01:20 -06002952 final StorageManager storage = mContext.getSystemService(StorageManager.class);
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002953 final long token = Binder.clearCallingIdentity();
2954 try {
Jeff Sharkey789a8fc2017-04-16 13:18:35 -06002955 // Free up enough disk space to satisfy both the requested allocation
2956 // and our low disk warning space.
2957 final File path = storage.findPathForUuid(volumeUuid);
Jeff Sharkeyddff8072017-05-26 13:10:46 -06002958 if ((flags & StorageManager.FLAG_ALLOCATE_AGGRESSIVE) != 0) {
2959 bytes += storage.getStorageFullBytes(path);
2960 } else {
2961 bytes += storage.getStorageLowBytes(path);
2962 }
Jeff Sharkey789a8fc2017-04-16 13:18:35 -06002963
Jeff Sharkeyd5d5e922017-02-21 10:51:23 -07002964 mPms.freeStorage(volumeUuid, bytes, flags);
2965 } catch (IOException e) {
2966 throw new ParcelableException(e);
2967 } finally {
2968 Binder.restoreCallingIdentity(token);
Jeff Sharkey500ce9e2017-02-12 02:39:24 -07002969 }
2970 }
2971
Kenny Rootaf9d6672010-10-08 09:21:39 -07002972 private void addObbStateLocked(ObbState obbState) throws RemoteException {
2973 final IBinder binder = obbState.getBinder();
2974 List<ObbState> obbStates = mObbMounts.get(binder);
Kenny Root5919ac62010-10-05 09:49:40 -07002975
Kenny Rootaf9d6672010-10-08 09:21:39 -07002976 if (obbStates == null) {
2977 obbStates = new ArrayList<ObbState>();
2978 mObbMounts.put(binder, obbStates);
2979 } else {
2980 for (final ObbState o : obbStates) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07002981 if (o.rawPath.equals(obbState.rawPath)) {
Kenny Rootaf9d6672010-10-08 09:21:39 -07002982 throw new IllegalStateException("Attempt to add ObbState twice. "
Sudheer Shanka2250d562016-11-07 15:41:02 -08002983 + "This indicates an error in the StorageManagerService logic.");
Kenny Root5919ac62010-10-05 09:49:40 -07002984 }
2985 }
Kenny Roota02b8b02010-08-05 16:14:17 -07002986 }
Kenny Rootaf9d6672010-10-08 09:21:39 -07002987
2988 obbStates.add(obbState);
2989 try {
2990 obbState.link();
2991 } catch (RemoteException e) {
2992 /*
2993 * The binder died before we could link it, so clean up our state
2994 * and return failure.
2995 */
2996 obbStates.remove(obbState);
2997 if (obbStates.isEmpty()) {
2998 mObbMounts.remove(binder);
2999 }
3000
3001 // Rethrow the error so mountObb can get it
3002 throw e;
3003 }
3004
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003005 mObbPathToStateMap.put(obbState.rawPath, obbState);
Kenny Roota02b8b02010-08-05 16:14:17 -07003006 }
3007
Kenny Rootaf9d6672010-10-08 09:21:39 -07003008 private void removeObbStateLocked(ObbState obbState) {
3009 final IBinder binder = obbState.getBinder();
3010 final List<ObbState> obbStates = mObbMounts.get(binder);
3011 if (obbStates != null) {
3012 if (obbStates.remove(obbState)) {
3013 obbState.unlink();
Kenny Root05105f72010-09-22 17:29:43 -07003014 }
Kenny Rootaf9d6672010-10-08 09:21:39 -07003015 if (obbStates.isEmpty()) {
3016 mObbMounts.remove(binder);
3017 }
Kenny Roota02b8b02010-08-05 16:14:17 -07003018 }
Kenny Roota02b8b02010-08-05 16:14:17 -07003019
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003020 mObbPathToStateMap.remove(obbState.rawPath);
Kenny Root38cf8862010-09-26 14:18:51 -07003021 }
3022
Kenny Roota02b8b02010-08-05 16:14:17 -07003023 private class ObbActionHandler extends Handler {
3024 private boolean mBound = false;
Kenny Root480afe72010-10-07 10:17:50 -07003025 private final List<ObbAction> mActions = new LinkedList<ObbAction>();
Kenny Roota02b8b02010-08-05 16:14:17 -07003026
3027 ObbActionHandler(Looper l) {
3028 super(l);
3029 }
3030
3031 @Override
3032 public void handleMessage(Message msg) {
3033 switch (msg.what) {
3034 case OBB_RUN_ACTION: {
Kenny Root480afe72010-10-07 10:17:50 -07003035 final ObbAction action = (ObbAction) msg.obj;
Kenny Roota02b8b02010-08-05 16:14:17 -07003036
3037 if (DEBUG_OBB)
3038 Slog.i(TAG, "OBB_RUN_ACTION: " + action.toString());
3039
3040 // If a bind was already initiated we don't really
3041 // need to do anything. The pending install
3042 // will be processed later on.
3043 if (!mBound) {
3044 // If this is the only one pending we might
3045 // have to bind to the service again.
3046 if (!connectToService()) {
Jeff Sharkey0095a822018-02-15 13:06:53 -07003047 action.notifyObbStateChange(new ObbException(ERROR_INTERNAL,
3048 "Failed to bind to media container service"));
Kenny Roota02b8b02010-08-05 16:14:17 -07003049 return;
Kenny Roota02b8b02010-08-05 16:14:17 -07003050 }
Kenny Roota02b8b02010-08-05 16:14:17 -07003051 }
Kenny Root735de3b2010-09-30 14:11:39 -07003052
Kenny Root735de3b2010-09-30 14:11:39 -07003053 mActions.add(action);
Kenny Roota02b8b02010-08-05 16:14:17 -07003054 break;
3055 }
3056 case OBB_MCS_BOUND: {
3057 if (DEBUG_OBB)
3058 Slog.i(TAG, "OBB_MCS_BOUND");
3059 if (msg.obj != null) {
3060 mContainerService = (IMediaContainerService) msg.obj;
3061 }
3062 if (mContainerService == null) {
3063 // Something seriously wrong. Bail out
Kenny Roota02b8b02010-08-05 16:14:17 -07003064 for (ObbAction action : mActions) {
3065 // Indicate service bind error
Jeff Sharkey0095a822018-02-15 13:06:53 -07003066 action.notifyObbStateChange(new ObbException(ERROR_INTERNAL,
3067 "Failed to bind to media container service"));
Kenny Roota02b8b02010-08-05 16:14:17 -07003068 }
3069 mActions.clear();
3070 } else if (mActions.size() > 0) {
Kenny Root480afe72010-10-07 10:17:50 -07003071 final ObbAction action = mActions.get(0);
Kenny Roota02b8b02010-08-05 16:14:17 -07003072 if (action != null) {
3073 action.execute(this);
3074 }
3075 } else {
3076 // Should never happen ideally.
3077 Slog.w(TAG, "Empty queue");
3078 }
3079 break;
3080 }
3081 case OBB_MCS_RECONNECT: {
3082 if (DEBUG_OBB)
3083 Slog.i(TAG, "OBB_MCS_RECONNECT");
3084 if (mActions.size() > 0) {
3085 if (mBound) {
3086 disconnectService();
3087 }
3088 if (!connectToService()) {
Kenny Roota02b8b02010-08-05 16:14:17 -07003089 for (ObbAction action : mActions) {
3090 // Indicate service bind error
Jeff Sharkey0095a822018-02-15 13:06:53 -07003091 action.notifyObbStateChange(new ObbException(ERROR_INTERNAL,
3092 "Failed to bind to media container service"));
Kenny Roota02b8b02010-08-05 16:14:17 -07003093 }
3094 mActions.clear();
3095 }
3096 }
3097 break;
3098 }
3099 case OBB_MCS_UNBIND: {
3100 if (DEBUG_OBB)
3101 Slog.i(TAG, "OBB_MCS_UNBIND");
3102
3103 // Delete pending install
3104 if (mActions.size() > 0) {
3105 mActions.remove(0);
3106 }
3107 if (mActions.size() == 0) {
3108 if (mBound) {
3109 disconnectService();
3110 }
3111 } else {
3112 // There are more pending requests in queue.
3113 // Just post MCS_BOUND message to trigger processing
3114 // of next pending install.
3115 mObbActionHandler.sendEmptyMessage(OBB_MCS_BOUND);
3116 }
3117 break;
3118 }
Kenny Rootaf9d6672010-10-08 09:21:39 -07003119 case OBB_FLUSH_MOUNT_STATE: {
3120 final String path = (String) msg.obj;
3121
3122 if (DEBUG_OBB)
3123 Slog.i(TAG, "Flushing all OBB state for path " + path);
3124
3125 synchronized (mObbMounts) {
3126 final List<ObbState> obbStatesToRemove = new LinkedList<ObbState>();
3127
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003128 final Iterator<ObbState> i = mObbPathToStateMap.values().iterator();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003129 while (i.hasNext()) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003130 final ObbState state = i.next();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003131
3132 /*
3133 * If this entry's source file is in the volume path
3134 * that got unmounted, remove it because it's no
3135 * longer valid.
3136 */
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003137 if (state.canonicalPath.startsWith(path)) {
3138 obbStatesToRemove.add(state);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003139 }
3140 }
3141
3142 for (final ObbState obbState : obbStatesToRemove) {
3143 if (DEBUG_OBB)
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003144 Slog.i(TAG, "Removing state for " + obbState.rawPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003145
3146 removeObbStateLocked(obbState);
3147
3148 try {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003149 obbState.token.onObbResult(obbState.rawPath, obbState.nonce,
Kenny Rootaf9d6672010-10-08 09:21:39 -07003150 OnObbStateChangeListener.UNMOUNTED);
3151 } catch (RemoteException e) {
3152 Slog.i(TAG, "Couldn't send unmount notification for OBB: "
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003153 + obbState.rawPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003154 }
3155 }
3156 }
3157 break;
3158 }
Kenny Roota02b8b02010-08-05 16:14:17 -07003159 }
3160 }
3161
3162 private boolean connectToService() {
3163 if (DEBUG_OBB)
3164 Slog.i(TAG, "Trying to bind to DefaultContainerService");
3165
3166 Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
Jeff Sharkey6dce4962015-07-03 18:08:41 -07003167 if (mContext.bindServiceAsUser(service, mDefContainerConn, Context.BIND_AUTO_CREATE,
Xiaohui Chene4de5a02015-09-22 15:33:31 -07003168 UserHandle.SYSTEM)) {
Kenny Roota02b8b02010-08-05 16:14:17 -07003169 mBound = true;
3170 return true;
3171 }
3172 return false;
3173 }
3174
3175 private void disconnectService() {
3176 mContainerService = null;
3177 mBound = false;
3178 mContext.unbindService(mDefContainerConn);
3179 }
3180 }
3181
Jeff Sharkey0095a822018-02-15 13:06:53 -07003182 private static class ObbException extends Exception {
3183 public final int status;
3184
3185 public ObbException(int status, String message) {
3186 super(message);
3187 this.status = status;
3188 }
3189
3190 public ObbException(int status, Throwable cause) {
3191 super(cause.getMessage(), cause);
3192 this.status = status;
3193 }
3194 }
3195
Kenny Roota02b8b02010-08-05 16:14:17 -07003196 abstract class ObbAction {
3197 private static final int MAX_RETRIES = 3;
3198 private int mRetries;
3199
3200 ObbState mObbState;
3201
3202 ObbAction(ObbState obbState) {
3203 mObbState = obbState;
3204 }
3205
3206 public void execute(ObbActionHandler handler) {
3207 try {
3208 if (DEBUG_OBB)
Ben Komalo444eca22011-09-01 15:17:44 -07003209 Slog.i(TAG, "Starting to execute action: " + toString());
Kenny Roota02b8b02010-08-05 16:14:17 -07003210 mRetries++;
3211 if (mRetries > MAX_RETRIES) {
Kenny Root480afe72010-10-07 10:17:50 -07003212 mObbActionHandler.sendEmptyMessage(OBB_MCS_UNBIND);
Jeff Sharkey0095a822018-02-15 13:06:53 -07003213 notifyObbStateChange(new ObbException(ERROR_INTERNAL,
3214 "Failed to bind to media container service"));
Kenny Roota02b8b02010-08-05 16:14:17 -07003215 } else {
3216 handleExecute();
3217 if (DEBUG_OBB)
3218 Slog.i(TAG, "Posting install MCS_UNBIND");
3219 mObbActionHandler.sendEmptyMessage(OBB_MCS_UNBIND);
3220 }
Jeff Sharkey0095a822018-02-15 13:06:53 -07003221 } catch (ObbException e) {
3222 notifyObbStateChange(e);
Kenny Root17eb6fb2010-10-06 15:02:52 -07003223 mObbActionHandler.sendEmptyMessage(OBB_MCS_UNBIND);
Kenny Roota02b8b02010-08-05 16:14:17 -07003224 }
3225 }
3226
Jeff Sharkey0095a822018-02-15 13:06:53 -07003227 abstract void handleExecute() throws ObbException;
Kenny Root38cf8862010-09-26 14:18:51 -07003228
Jeff Sharkey0095a822018-02-15 13:06:53 -07003229 protected ObbInfo getObbInfo() throws ObbException {
3230 final ObbInfo obbInfo;
Kenny Root38cf8862010-09-26 14:18:51 -07003231 try {
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07003232 obbInfo = mContainerService.getObbInfo(mObbState.canonicalPath);
Jeff Sharkey0095a822018-02-15 13:06:53 -07003233 } catch (Exception e) {
3234 throw new ObbException(ERROR_PERMISSION_DENIED, e);
Kenny Root38cf8862010-09-26 14:18:51 -07003235 }
Jeff Sharkey0095a822018-02-15 13:06:53 -07003236 if (obbInfo != null) {
3237 return obbInfo;
3238 } else {
3239 throw new ObbException(ERROR_INTERNAL,
3240 "Missing OBB info for: " + mObbState.canonicalPath);
Kenny Root38cf8862010-09-26 14:18:51 -07003241 }
Kenny Root38cf8862010-09-26 14:18:51 -07003242 }
3243
Jeff Sharkey0095a822018-02-15 13:06:53 -07003244 protected void notifyObbStateChange(ObbException e) {
3245 Slog.w(TAG, e);
3246 notifyObbStateChange(e.status);
3247 }
3248
3249 protected void notifyObbStateChange(int status) {
Kenny Rootaf9d6672010-10-08 09:21:39 -07003250 if (mObbState == null || mObbState.token == null) {
3251 return;
3252 }
3253
Kenny Root38cf8862010-09-26 14:18:51 -07003254 try {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003255 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, status);
Kenny Root38cf8862010-09-26 14:18:51 -07003256 } catch (RemoteException e) {
Sudheer Shanka2250d562016-11-07 15:41:02 -08003257 Slog.w(TAG, "StorageEventListener went away while calling onObbStateChanged");
Kenny Root38cf8862010-09-26 14:18:51 -07003258 }
3259 }
Kenny Roota02b8b02010-08-05 16:14:17 -07003260 }
3261
3262 class MountObbAction extends ObbAction {
Ben Komalo444eca22011-09-01 15:17:44 -07003263 private final String mKey;
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003264 private final int mCallingUid;
Kenny Roota02b8b02010-08-05 16:14:17 -07003265
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003266 MountObbAction(ObbState obbState, String key, int callingUid) {
Kenny Roota02b8b02010-08-05 16:14:17 -07003267 super(obbState);
3268 mKey = key;
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003269 mCallingUid = callingUid;
Kenny Roota02b8b02010-08-05 16:14:17 -07003270 }
3271
Jason parks5af0b912010-11-29 09:05:25 -06003272 @Override
Jeff Sharkey0095a822018-02-15 13:06:53 -07003273 public void handleExecute() throws ObbException {
Kenny Rootaf9d6672010-10-08 09:21:39 -07003274 warnOnNotMounted();
3275
Kenny Root38cf8862010-09-26 14:18:51 -07003276 final ObbInfo obbInfo = getObbInfo();
3277
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003278 if (!isUidOwnerOfPackageOrSystem(obbInfo.packageName, mCallingUid)) {
Jeff Sharkey0095a822018-02-15 13:06:53 -07003279 throw new ObbException(ERROR_PERMISSION_DENIED, "Denied attempt to mount OBB "
3280 + obbInfo.filename + " which is owned by " + obbInfo.packageName);
Kenny Roota02b8b02010-08-05 16:14:17 -07003281 }
3282
Kenny Rootaf9d6672010-10-08 09:21:39 -07003283 final boolean isMounted;
3284 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003285 isMounted = mObbPathToStateMap.containsKey(mObbState.rawPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003286 }
3287 if (isMounted) {
Jeff Sharkey0095a822018-02-15 13:06:53 -07003288 throw new ObbException(ERROR_ALREADY_MOUNTED,
3289 "Attempt to mount OBB which is already mounted: " + obbInfo.filename);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003290 }
3291
Kenny Rootaf9d6672010-10-08 09:21:39 -07003292 final String hashedKey;
Jeff Sharkey41cd6812017-09-11 10:32:17 -06003293 final String binderKey;
Kenny Rootaf9d6672010-10-08 09:21:39 -07003294 if (mKey == null) {
3295 hashedKey = "none";
Jeff Sharkey41cd6812017-09-11 10:32:17 -06003296 binderKey = "";
Kenny Rootaf9d6672010-10-08 09:21:39 -07003297 } else {
Kenny Rootaf9d6672010-10-08 09:21:39 -07003298 try {
Kenny Root3b1abba2010-10-13 15:00:07 -07003299 SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1");
3300
3301 KeySpec ks = new PBEKeySpec(mKey.toCharArray(), obbInfo.salt,
3302 PBKDF2_HASH_ROUNDS, CRYPTO_ALGORITHM_KEY_SIZE);
3303 SecretKey key = factory.generateSecret(ks);
3304 BigInteger bi = new BigInteger(key.getEncoded());
3305 hashedKey = bi.toString(16);
Jeff Sharkey41cd6812017-09-11 10:32:17 -06003306 binderKey = hashedKey;
Jeff Sharkey0095a822018-02-15 13:06:53 -07003307 } catch (GeneralSecurityException e) {
3308 throw new ObbException(ERROR_INTERNAL, e);
Kenny Root38cf8862010-09-26 14:18:51 -07003309 }
Kenny Rootaf9d6672010-10-08 09:21:39 -07003310 }
Kenny Root38cf8862010-09-26 14:18:51 -07003311
Kenny Rootaf9d6672010-10-08 09:21:39 -07003312 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06003313 mObbState.volId = mVold.createObb(mObbState.canonicalPath, binderKey,
3314 mObbState.ownerGid);
3315 mVold.mount(mObbState.volId, 0, -1);
Kenny Roota02b8b02010-08-05 16:14:17 -07003316
Kenny Rootaf9d6672010-10-08 09:21:39 -07003317 if (DEBUG_OBB)
Xiaohui Chen621b3fc2015-10-02 14:41:42 -07003318 Slog.d(TAG, "Successfully mounted OBB " + mObbState.canonicalPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003319
3320 synchronized (mObbMounts) {
3321 addObbStateLocked(mObbState);
3322 }
3323
Jeff Sharkey0095a822018-02-15 13:06:53 -07003324 notifyObbStateChange(MOUNTED);
3325 } catch (Exception e) {
3326 throw new ObbException(ERROR_COULD_NOT_MOUNT, e);
Kenny Root02c87302010-07-01 08:10:18 -07003327 }
3328 }
3329
Jason parks5af0b912010-11-29 09:05:25 -06003330 @Override
Kenny Roota02b8b02010-08-05 16:14:17 -07003331 public String toString() {
3332 StringBuilder sb = new StringBuilder();
3333 sb.append("MountObbAction{");
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003334 sb.append(mObbState);
Kenny Roota02b8b02010-08-05 16:14:17 -07003335 sb.append('}');
3336 return sb.toString();
3337 }
3338 }
3339
3340 class UnmountObbAction extends ObbAction {
Ben Komalo444eca22011-09-01 15:17:44 -07003341 private final boolean mForceUnmount;
Kenny Roota02b8b02010-08-05 16:14:17 -07003342
3343 UnmountObbAction(ObbState obbState, boolean force) {
3344 super(obbState);
3345 mForceUnmount = force;
3346 }
3347
Jason parks5af0b912010-11-29 09:05:25 -06003348 @Override
Jeff Sharkey0095a822018-02-15 13:06:53 -07003349 public void handleExecute() throws ObbException {
Kenny Rootaf9d6672010-10-08 09:21:39 -07003350 warnOnNotMounted();
3351
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003352 final ObbState existingState;
Kenny Root38cf8862010-09-26 14:18:51 -07003353 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003354 existingState = mObbPathToStateMap.get(mObbState.rawPath);
Kenny Rootaf9d6672010-10-08 09:21:39 -07003355 }
Kenny Root38cf8862010-09-26 14:18:51 -07003356
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003357 if (existingState == null) {
Jeff Sharkey0095a822018-02-15 13:06:53 -07003358 throw new ObbException(ERROR_NOT_MOUNTED, "Missing existingState");
Kenny Rootaf9d6672010-10-08 09:21:39 -07003359 }
3360
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003361 if (existingState.ownerGid != mObbState.ownerGid) {
Jeff Sharkey0095a822018-02-15 13:06:53 -07003362 notifyObbStateChange(new ObbException(ERROR_PERMISSION_DENIED,
3363 "Permission denied to unmount OBB " + existingState.rawPath
3364 + " (owned by GID " + existingState.ownerGid + ")"));
Kenny Rootaf9d6672010-10-08 09:21:39 -07003365 return;
3366 }
3367
Kenny Rootaf9d6672010-10-08 09:21:39 -07003368 try {
Jeff Sharkey54402792017-09-15 16:05:19 -06003369 mVold.unmount(mObbState.volId);
3370 mVold.destroyObb(mObbState.volId);
3371 mObbState.volId = null;
Kenny Roota02b8b02010-08-05 16:14:17 -07003372
Kenny Rootaf9d6672010-10-08 09:21:39 -07003373 synchronized (mObbMounts) {
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003374 removeObbStateLocked(existingState);
Kenny Root38cf8862010-09-26 14:18:51 -07003375 }
3376
Jeff Sharkey0095a822018-02-15 13:06:53 -07003377 notifyObbStateChange(UNMOUNTED);
3378 } catch (Exception e) {
3379 throw new ObbException(ERROR_COULD_NOT_UNMOUNT, e);
Kenny Roota02b8b02010-08-05 16:14:17 -07003380 }
3381 }
3382
Jason parks5af0b912010-11-29 09:05:25 -06003383 @Override
Kenny Roota02b8b02010-08-05 16:14:17 -07003384 public String toString() {
3385 StringBuilder sb = new StringBuilder();
3386 sb.append("UnmountObbAction{");
Jeff Sharkey4fbbda42012-09-24 18:34:07 -07003387 sb.append(mObbState);
Kenny Roota02b8b02010-08-05 16:14:17 -07003388 sb.append(",force=");
3389 sb.append(mForceUnmount);
Kenny Roota02b8b02010-08-05 16:14:17 -07003390 sb.append('}');
3391 return sb.toString();
3392 }
Kenny Root02c87302010-07-01 08:10:18 -07003393 }
Kenny Root38cf8862010-09-26 14:18:51 -07003394
Jeff Sharkey7e19f532017-11-06 13:54:11 -07003395 private void dispatchOnStatus(IVoldTaskListener listener, int status,
3396 PersistableBundle extras) {
3397 if (listener != null) {
3398 try {
3399 listener.onStatus(status, extras);
3400 } catch (RemoteException ignored) {
3401 }
3402 }
3403 }
3404
3405 private void dispatchOnFinished(IVoldTaskListener listener, int status,
3406 PersistableBundle extras) {
3407 if (listener != null) {
3408 try {
3409 listener.onFinished(status, extras);
3410 } catch (RemoteException ignored) {
3411 }
3412 }
3413 }
3414
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003415 private static class Callbacks extends Handler {
3416 private static final int MSG_STORAGE_STATE_CHANGED = 1;
3417 private static final int MSG_VOLUME_STATE_CHANGED = 2;
Jeff Sharkey50a05452015-04-29 11:24:52 -07003418 private static final int MSG_VOLUME_RECORD_CHANGED = 3;
3419 private static final int MSG_VOLUME_FORGOTTEN = 4;
3420 private static final int MSG_DISK_SCANNED = 5;
Makoto Onuki9dc575d2015-06-12 16:10:25 -07003421 private static final int MSG_DISK_DESTROYED = 6;
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003422
Sudheer Shanka2250d562016-11-07 15:41:02 -08003423 private final RemoteCallbackList<IStorageEventListener>
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003424 mCallbacks = new RemoteCallbackList<>();
3425
3426 public Callbacks(Looper looper) {
3427 super(looper);
3428 }
3429
Sudheer Shanka2250d562016-11-07 15:41:02 -08003430 public void register(IStorageEventListener callback) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003431 mCallbacks.register(callback);
3432 }
3433
Sudheer Shanka2250d562016-11-07 15:41:02 -08003434 public void unregister(IStorageEventListener callback) {
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003435 mCallbacks.unregister(callback);
3436 }
3437
3438 @Override
3439 public void handleMessage(Message msg) {
3440 final SomeArgs args = (SomeArgs) msg.obj;
3441 final int n = mCallbacks.beginBroadcast();
3442 for (int i = 0; i < n; i++) {
Sudheer Shanka2250d562016-11-07 15:41:02 -08003443 final IStorageEventListener callback = mCallbacks.getBroadcastItem(i);
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003444 try {
3445 invokeCallback(callback, msg.what, args);
3446 } catch (RemoteException ignored) {
3447 }
3448 }
3449 mCallbacks.finishBroadcast();
3450 args.recycle();
3451 }
3452
Sudheer Shanka2250d562016-11-07 15:41:02 -08003453 private void invokeCallback(IStorageEventListener callback, int what, SomeArgs args)
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003454 throws RemoteException {
3455 switch (what) {
3456 case MSG_STORAGE_STATE_CHANGED: {
3457 callback.onStorageStateChanged((String) args.arg1, (String) args.arg2,
3458 (String) args.arg3);
3459 break;
3460 }
3461 case MSG_VOLUME_STATE_CHANGED: {
3462 callback.onVolumeStateChanged((VolumeInfo) args.arg1, args.argi2, args.argi3);
3463 break;
3464 }
Jeff Sharkey50a05452015-04-29 11:24:52 -07003465 case MSG_VOLUME_RECORD_CHANGED: {
3466 callback.onVolumeRecordChanged((VolumeRecord) args.arg1);
3467 break;
3468 }
3469 case MSG_VOLUME_FORGOTTEN: {
3470 callback.onVolumeForgotten((String) args.arg1);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07003471 break;
3472 }
Jeff Sharkey620b32b2015-04-23 19:36:02 -07003473 case MSG_DISK_SCANNED: {
3474 callback.onDiskScanned((DiskInfo) args.arg1, args.argi2);
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07003475 break;
3476 }
Makoto Onuki9dc575d2015-06-12 16:10:25 -07003477 case MSG_DISK_DESTROYED: {
3478 callback.onDiskDestroyed((DiskInfo) args.arg1);
3479 break;
3480 }
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003481 }
3482 }
3483
3484 private void notifyStorageStateChanged(String path, String oldState, String newState) {
3485 final SomeArgs args = SomeArgs.obtain();
3486 args.arg1 = path;
3487 args.arg2 = oldState;
3488 args.arg3 = newState;
3489 obtainMessage(MSG_STORAGE_STATE_CHANGED, args).sendToTarget();
3490 }
3491
3492 private void notifyVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
3493 final SomeArgs args = SomeArgs.obtain();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07003494 args.arg1 = vol.clone();
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003495 args.argi2 = oldState;
3496 args.argi3 = newState;
3497 obtainMessage(MSG_VOLUME_STATE_CHANGED, args).sendToTarget();
3498 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07003499
Jeff Sharkey50a05452015-04-29 11:24:52 -07003500 private void notifyVolumeRecordChanged(VolumeRecord rec) {
3501 final SomeArgs args = SomeArgs.obtain();
3502 args.arg1 = rec.clone();
3503 obtainMessage(MSG_VOLUME_RECORD_CHANGED, args).sendToTarget();
3504 }
3505
3506 private void notifyVolumeForgotten(String fsUuid) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07003507 final SomeArgs args = SomeArgs.obtain();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07003508 args.arg1 = fsUuid;
Jeff Sharkey50a05452015-04-29 11:24:52 -07003509 obtainMessage(MSG_VOLUME_FORGOTTEN, args).sendToTarget();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -07003510 }
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07003511
Jeff Sharkey620b32b2015-04-23 19:36:02 -07003512 private void notifyDiskScanned(DiskInfo disk, int volumeCount) {
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07003513 final SomeArgs args = SomeArgs.obtain();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07003514 args.arg1 = disk.clone();
Jeff Sharkey620b32b2015-04-23 19:36:02 -07003515 args.argi2 = volumeCount;
3516 obtainMessage(MSG_DISK_SCANNED, args).sendToTarget();
Jeff Sharkey7e92ef32015-04-17 17:35:07 -07003517 }
Makoto Onuki9dc575d2015-06-12 16:10:25 -07003518
3519 private void notifyDiskDestroyed(DiskInfo disk) {
3520 final SomeArgs args = SomeArgs.obtain();
3521 args.arg1 = disk.clone();
3522 obtainMessage(MSG_DISK_DESTROYED, args).sendToTarget();
3523 }
Jeff Sharkey7151a9a2015-04-04 15:22:37 -07003524 }
3525
Kenny Root38cf8862010-09-26 14:18:51 -07003526 @Override
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003527 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06003528 if (!DumpUtils.checkDumpPermission(mContext, TAG, writer)) return;
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003529
3530 final IndentingPrintWriter pw = new IndentingPrintWriter(writer, " ", 160);
Jeff Sharkey27de30d2015-04-18 16:20:27 -07003531 synchronized (mLock) {
3532 pw.println("Disks:");
3533 pw.increaseIndent();
3534 for (int i = 0; i < mDisks.size(); i++) {
3535 final DiskInfo disk = mDisks.valueAt(i);
3536 disk.dump(pw);
3537 }
3538 pw.decreaseIndent();
3539
3540 pw.println();
3541 pw.println("Volumes:");
3542 pw.increaseIndent();
3543 for (int i = 0; i < mVolumes.size(); i++) {
3544 final VolumeInfo vol = mVolumes.valueAt(i);
3545 if (VolumeInfo.ID_PRIVATE_INTERNAL.equals(vol.id)) continue;
3546 vol.dump(pw);
3547 }
3548 pw.decreaseIndent();
3549
3550 pw.println();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07003551 pw.println("Records:");
Jeff Sharkey27de30d2015-04-18 16:20:27 -07003552 pw.increaseIndent();
Jeff Sharkeyb36586a2015-04-27 08:42:28 -07003553 for (int i = 0; i < mRecords.size(); i++) {
3554 final VolumeRecord note = mRecords.valueAt(i);
3555 note.dump(pw);
Jeff Sharkey27de30d2015-04-18 16:20:27 -07003556 }
3557 pw.decreaseIndent();
Jeff Sharkey275e3e42015-04-24 16:10:32 -07003558
3559 pw.println();
3560 pw.println("Primary storage UUID: " + mPrimaryStorageUuid);
Felipe Leme281389a2016-10-10 17:12:20 -07003561 final Pair<String, Long> pair = StorageManager.getPrimaryStoragePathAndSize();
3562 if (pair == null) {
3563 pw.println("Internal storage total size: N/A");
3564 } else {
3565 pw.print("Internal storage (");
3566 pw.print(pair.first);
3567 pw.print(") total size: ");
3568 pw.print(pair.second);
3569 pw.print(" (");
Jeff Sharkey9f2dc052018-01-07 16:47:31 -07003570 pw.print(DataUnit.MEBIBYTES.toBytes(pair.second));
3571 pw.println(" MiB)");
Felipe Leme281389a2016-10-10 17:12:20 -07003572 }
Jeff Sharkeyce14cd02015-12-07 15:35:42 -07003573 pw.println("Local unlocked users: " + Arrays.toString(mLocalUnlockedUsers));
3574 pw.println("System unlocked users: " + Arrays.toString(mSystemUnlockedUsers));
Jeff Sharkey27de30d2015-04-18 16:20:27 -07003575 }
Kenny Root38cf8862010-09-26 14:18:51 -07003576
Kenny Root38cf8862010-09-26 14:18:51 -07003577 synchronized (mObbMounts) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -07003578 pw.println();
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003579 pw.println("mObbMounts:");
3580 pw.increaseIndent();
3581 final Iterator<Entry<IBinder, List<ObbState>>> binders = mObbMounts.entrySet()
3582 .iterator();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003583 while (binders.hasNext()) {
3584 Entry<IBinder, List<ObbState>> e = binders.next();
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003585 pw.println(e.getKey() + ":");
3586 pw.increaseIndent();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003587 final List<ObbState> obbStates = e.getValue();
Kenny Root38cf8862010-09-26 14:18:51 -07003588 for (final ObbState obbState : obbStates) {
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003589 pw.println(obbState);
Kenny Root38cf8862010-09-26 14:18:51 -07003590 }
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003591 pw.decreaseIndent();
Kenny Root38cf8862010-09-26 14:18:51 -07003592 }
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003593 pw.decreaseIndent();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003594
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003595 pw.println();
3596 pw.println("mObbPathToStateMap:");
3597 pw.increaseIndent();
Kenny Rootaf9d6672010-10-08 09:21:39 -07003598 final Iterator<Entry<String, ObbState>> maps = mObbPathToStateMap.entrySet().iterator();
3599 while (maps.hasNext()) {
3600 final Entry<String, ObbState> e = maps.next();
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003601 pw.print(e.getKey());
3602 pw.print(" -> ");
3603 pw.println(e.getValue());
Kenny Rootaf9d6672010-10-08 09:21:39 -07003604 }
Jeff Sharkey5aca2b82013-10-16 16:21:54 -07003605 pw.decreaseIndent();
Kenny Root38cf8862010-09-26 14:18:51 -07003606 }
Kenny Root4161f9b2011-07-13 09:48:33 -07003607
Robert Greenwalt470fd722012-01-18 12:51:15 -08003608 pw.println();
Christopher Tate7265abe2014-11-21 13:54:45 -08003609 pw.print("Last maintenance: ");
Jeff Sharkeye8a4b662015-06-27 15:43:45 -07003610 pw.println(TimeUtils.formatForLogging(mLastMaintenance));
Kenny Root38cf8862010-09-26 14:18:51 -07003611 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003612
Jeff Sharkeyfa23c5a2011-08-09 21:44:24 -07003613 /** {@inheritDoc} */
Jeff Sharkey48877892015-03-18 11:27:19 -07003614 @Override
Jeff Sharkeyfa23c5a2011-08-09 21:44:24 -07003615 public void monitor() {
Jeff Sharkey54402792017-09-15 16:05:19 -06003616 try {
3617 mVold.monitor();
3618 } catch (Exception e) {
3619 Slog.wtf(TAG, e);
Paul Lawrence1c62cbb2015-06-03 14:14:52 -07003620 }
Jeff Sharkeyfa23c5a2011-08-09 21:44:24 -07003621 }
Svet Ganov6ee871e2015-07-10 14:29:33 -07003622
Sudheer Shanka2250d562016-11-07 15:41:02 -08003623 private final class StorageManagerInternalImpl extends StorageManagerInternal {
Svet Ganov6ee871e2015-07-10 14:29:33 -07003624 // Not guarded by a lock.
3625 private final CopyOnWriteArrayList<ExternalStorageMountPolicy> mPolicies =
3626 new CopyOnWriteArrayList<>();
3627
3628 @Override
3629 public void addExternalStoragePolicy(ExternalStorageMountPolicy policy) {
3630 // No locking - CopyOnWriteArrayList
3631 mPolicies.add(policy);
3632 }
3633
3634 @Override
3635 public void onExternalStoragePolicyChanged(int uid, String packageName) {
3636 final int mountMode = getExternalStorageMountMode(uid, packageName);
3637 remountUidExternalStorage(uid, mountMode);
3638 }
3639
3640 @Override
3641 public int getExternalStorageMountMode(int uid, String packageName) {
3642 // No locking - CopyOnWriteArrayList
3643 int mountMode = Integer.MAX_VALUE;
3644 for (ExternalStorageMountPolicy policy : mPolicies) {
3645 final int policyMode = policy.getMountMode(uid, packageName);
3646 if (policyMode == Zygote.MOUNT_EXTERNAL_NONE) {
3647 return Zygote.MOUNT_EXTERNAL_NONE;
3648 }
3649 mountMode = Math.min(mountMode, policyMode);
3650 }
3651 if (mountMode == Integer.MAX_VALUE) {
3652 return Zygote.MOUNT_EXTERNAL_NONE;
3653 }
3654 return mountMode;
3655 }
3656
3657 public boolean hasExternalStorage(int uid, String packageName) {
Amith Yamasani2bd5cff2015-07-22 14:42:31 -07003658 // No need to check for system uid. This avoids a deadlock between
3659 // PackageManagerService and AppOpsService.
3660 if (uid == Process.SYSTEM_UID) {
3661 return true;
3662 }
Svet Ganov6ee871e2015-07-10 14:29:33 -07003663 // No locking - CopyOnWriteArrayList
3664 for (ExternalStorageMountPolicy policy : mPolicies) {
3665 final boolean policyHasStorage = policy.hasExternalStorage(uid, packageName);
3666 if (!policyHasStorage) {
3667 return false;
3668 }
3669 }
3670 return true;
3671 }
3672 }
Jeff Sharkeyfa23c5a2011-08-09 21:44:24 -07003673}