blob: f4528d93807c5d88a139d55f5d0d858a5d7d3d8a [file] [log] [blame]
Jeff Sharkey068c6be2017-09-06 13:47:40 -06001/*
2 * Copyright (C) 2017 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 android.os;
18
Jeff Sharkey814e9d32017-09-13 11:49:44 -060019import android.os.IVoldListener;
Zim5048b4b2019-11-19 09:16:03 +000020import android.os.IVoldMountCallback;
Jeff Sharkey52f7a912017-09-15 12:57:44 -060021import android.os.IVoldTaskListener;
Jeff Sharkey814e9d32017-09-13 11:49:44 -060022
Jeff Sharkey068c6be2017-09-06 13:47:40 -060023/** {@hide} */
24interface IVold {
Jeff Sharkey814e9d32017-09-13 11:49:44 -060025 void setListener(IVoldListener listener);
26
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -060027 void monitor();
Jeff Sharkey068c6be2017-09-06 13:47:40 -060028 void reset();
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060029 void shutdown();
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060030
31 void onUserAdded(int userId, int userSerial);
32 void onUserRemoved(int userId);
Sudheer Shanka5fceb482019-04-29 10:46:35 -070033 void onUserStarted(int userId);
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060034 void onUserStopped(int userId);
35
Sudheer Shankad484aa92018-07-31 10:07:34 -070036 void addAppIds(in @utf8InCpp String[] packageNames, in int[] appIds);
37 void addSandboxIds(in int[] appIds, in @utf8InCpp String[] sandboxIds);
38
Jeff Sharkey401b2602017-12-14 22:15:20 -070039 void onSecureKeyguardStateChanged(boolean isShowing);
40
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060041 void partition(@utf8InCpp String diskId, int partitionType, int ratio);
Jeff Sharkey3ce18252017-10-24 11:08:45 -060042 void forgetPartition(@utf8InCpp String partGuid, @utf8InCpp String fsUuid);
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060043
Zim5048b4b2019-11-19 09:16:03 +000044 void mount(@utf8InCpp String volId, int mountFlags, int mountUserId,
Zim9d1425c2019-11-27 18:15:14 +000045 @nullable IVoldMountCallback callback);
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060046 void unmount(@utf8InCpp String volId);
47 void format(@utf8InCpp String volId, @utf8InCpp String fsType);
Jeff Sharkey52f7a912017-09-15 12:57:44 -060048 void benchmark(@utf8InCpp String volId, IVoldTaskListener listener);
Jeff Sharkey2048a282017-06-15 09:59:43 -060049 void checkEncryption(@utf8InCpp String volId);
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060050
Jeff Sharkey52f7a912017-09-15 12:57:44 -060051 void moveStorage(@utf8InCpp String fromVolId, @utf8InCpp String toVolId,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070052 IVoldTaskListener listener);
Jeff Sharkey9462bdd2017-09-07 15:27:28 -060053
54 void remountUid(int uid, int remountMode);
55
56 void mkdirs(@utf8InCpp String path);
57
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070058 @utf8InCpp String createObb(@utf8InCpp String sourcePath, @utf8InCpp String sourceKey,
59 int ownerGid);
Jeff Sharkey11c2d382017-09-11 10:32:01 -060060 void destroyObb(@utf8InCpp String volId);
61
Jeff Sharkey52f7a912017-09-15 12:57:44 -060062 void fstrim(int fstrimFlags, IVoldTaskListener listener);
Jin Qiana370c142017-10-17 15:41:45 -070063 void runIdleMaint(IVoldTaskListener listener);
64 void abortIdleMaint(IVoldTaskListener listener);
Jeff Sharkey11c2d382017-09-11 10:32:01 -060065
Risan8f6198d2018-10-26 20:56:45 -060066 FileDescriptor mountAppFuse(int uid, int mountId);
67 void unmountAppFuse(int uid, int mountId);
Jeff Sharkey11c2d382017-09-11 10:32:01 -060068
Jeff Sharkey83b559c2017-09-12 16:30:52 -060069 void fdeCheckPassword(@utf8InCpp String password);
70 void fdeRestart();
71 int fdeComplete();
72 void fdeEnable(int passwordType, @utf8InCpp String password, int encryptionFlags);
73 void fdeChangePassword(int passwordType, @utf8InCpp String password);
74 void fdeVerifyPassword(@utf8InCpp String password);
75 @utf8InCpp String fdeGetField(@utf8InCpp String key);
76 void fdeSetField(@utf8InCpp String key, @utf8InCpp String value);
77 int fdeGetPasswordType();
78 @utf8InCpp String fdeGetPassword();
79 void fdeClearPassword();
80
81 void fbeEnable();
82
83 void mountDefaultEncrypted();
84 void initUser0();
85 boolean isConvertibleToFbe();
Paul Lawrence236e5e82019-06-25 14:44:33 -070086 void mountFstab(@utf8InCpp String blkDevice, @utf8InCpp String mountPoint);
87 void encryptFstab(@utf8InCpp String blkDevice, @utf8InCpp String mountPoint);
Jeff Sharkey83b559c2017-09-12 16:30:52 -060088
89 void createUserKey(int userId, int userSerial, boolean ephemeral);
90 void destroyUserKey(int userId);
91
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070092 void addUserKeyAuth(int userId, int userSerial, @utf8InCpp String token,
93 @utf8InCpp String secret);
Jeff Sharkey83b559c2017-09-12 16:30:52 -060094 void fixateNewestUserKeyAuth(int userId);
95
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070096 void unlockUserKey(int userId, int userSerial, @utf8InCpp String token,
97 @utf8InCpp String secret);
Jeff Sharkey83b559c2017-09-12 16:30:52 -060098 void lockUserKey(int userId);
99
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700100 void prepareUserStorage(@nullable @utf8InCpp String uuid, int userId, int userSerial,
101 int storageFlags);
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600102 void destroyUserStorage(@nullable @utf8InCpp String uuid, int userId, int storageFlags);
103
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700104 void prepareSandboxForApp(in @utf8InCpp String packageName, int appId,
105 in @utf8InCpp String sandboxId, int userId);
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700106 void destroySandboxForApp(in @utf8InCpp String packageName,
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700107 in @utf8InCpp String sandboxId, int userId);
Sudheer Shankac7562092018-08-24 10:20:56 -0700108
Daniel Rosenberge334aab2018-10-10 18:52:04 -0700109 void startCheckpoint(int retry);
Daniel Rosenberg4f684712018-08-28 01:58:49 -0700110 boolean needsCheckpoint();
Daniel Rosenbergd3992492018-10-02 17:40:44 -0700111 boolean needsRollback();
Daniel Rosenberga59e4392019-03-20 17:02:47 -0700112 void abortChanges(in @utf8InCpp String device, boolean retry);
Daniel Rosenberge334aab2018-10-10 18:52:04 -0700113 void commitChanges();
114 void prepareCheckpoint();
115 void restoreCheckpoint(@utf8InCpp String device);
Daniel Rosenbergdda59812019-03-06 17:45:17 -0800116 void restoreCheckpointPart(@utf8InCpp String device, int count);
Daniel Rosenberge334aab2018-10-10 18:52:04 -0700117 void markBootAttempt();
Daniel Rosenberg9b667fb2019-01-22 17:27:25 -0800118 boolean supportsCheckpoint();
Paul Lawrencec5c79c52019-03-18 13:36:40 -0700119 boolean supportsBlockCheckpoint();
120 boolean supportsFileCheckpoint();
Nikita Ioffea5798fc2019-10-11 16:38:21 +0100121 void resetCheckpoint();
Daniel Rosenberg4f684712018-08-28 01:58:49 -0700122
Risan8c9f3322018-10-29 08:52:56 +0900123 @utf8InCpp String createStubVolume(@utf8InCpp String sourcePath,
124 @utf8InCpp String mountPath, @utf8InCpp String fsType,
125 @utf8InCpp String fsUuid, @utf8InCpp String fsLabel);
126 void destroyStubVolume(@utf8InCpp String volId);
127
Risan8f6198d2018-10-26 20:56:45 -0600128 FileDescriptor openAppFuseFile(int uid, int mountId, int fileId, int flags);
129
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600130 const int ENCRYPTION_FLAG_NO_UI = 4;
131
132 const int ENCRYPTION_STATE_NONE = 1;
133 const int ENCRYPTION_STATE_OK = 0;
134 const int ENCRYPTION_STATE_ERROR_UNKNOWN = -1;
135 const int ENCRYPTION_STATE_ERROR_INCOMPLETE = -2;
136 const int ENCRYPTION_STATE_ERROR_INCONSISTENT = -3;
137 const int ENCRYPTION_STATE_ERROR_CORRUPT = -4;
138
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600139 const int FSTRIM_FLAG_DEEP_TRIM = 1;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600140
Jeff Sharkey9462bdd2017-09-07 15:27:28 -0600141 const int MOUNT_FLAG_PRIMARY = 1;
142 const int MOUNT_FLAG_VISIBLE = 2;
143
144 const int PARTITION_TYPE_PUBLIC = 0;
145 const int PARTITION_TYPE_PRIVATE = 1;
146 const int PARTITION_TYPE_MIXED = 2;
147
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600148 const int PASSWORD_TYPE_PASSWORD = 0;
149 const int PASSWORD_TYPE_DEFAULT = 1;
Paul Crowleyca08c0a2018-07-03 11:49:00 -0700150 const int PASSWORD_TYPE_PATTERN = 2;
151 const int PASSWORD_TYPE_PIN = 3;
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600152
153 const int STORAGE_FLAG_DE = 1;
154 const int STORAGE_FLAG_CE = 2;
155
Jeff Sharkey9462bdd2017-09-07 15:27:28 -0600156 const int REMOUNT_MODE_NONE = 0;
157 const int REMOUNT_MODE_DEFAULT = 1;
158 const int REMOUNT_MODE_READ = 2;
159 const int REMOUNT_MODE_WRITE = 3;
Sudheer Shanka55049012019-01-09 12:15:15 -0800160 const int REMOUNT_MODE_LEGACY = 4;
161 const int REMOUNT_MODE_INSTALLER = 5;
162 const int REMOUNT_MODE_FULL = 6;
Zim981222f2019-09-09 10:24:44 +0100163 const int REMOUNT_MODE_PASS_THROUGH = 7;
Jeff Sharkey9462bdd2017-09-07 15:27:28 -0600164
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600165 const int VOLUME_STATE_UNMOUNTED = 0;
166 const int VOLUME_STATE_CHECKING = 1;
167 const int VOLUME_STATE_MOUNTED = 2;
168 const int VOLUME_STATE_MOUNTED_READ_ONLY = 3;
169 const int VOLUME_STATE_FORMATTING = 4;
170 const int VOLUME_STATE_EJECTING = 5;
171 const int VOLUME_STATE_UNMOUNTABLE = 6;
172 const int VOLUME_STATE_REMOVED = 7;
173 const int VOLUME_STATE_BAD_REMOVAL = 8;
Jeff Sharkey9462bdd2017-09-07 15:27:28 -0600174
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600175 const int VOLUME_TYPE_PUBLIC = 0;
176 const int VOLUME_TYPE_PRIVATE = 1;
177 const int VOLUME_TYPE_EMULATED = 2;
178 const int VOLUME_TYPE_ASEC = 3;
179 const int VOLUME_TYPE_OBB = 4;
Risan8c9f3322018-10-29 08:52:56 +0900180 const int VOLUME_TYPE_STUB = 5;
Jeff Sharkey068c6be2017-09-06 13:47:40 -0600181}