blob: 2e18b1c417fee394c5fe7ca09f3a385cc33a138e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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
Kenny Rootcf0b38c2011-03-22 14:17:59 -070017package com.android.server.pm;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080019import android.annotation.Nullable;
Jeff Brownb880d882014-02-10 19:47:07 -080020import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.pm.PackageStats;
Narayan Kamath29564cd2014-08-07 10:57:40 +010022import android.os.Build;
Joe Onorato8a9b2202010-02-26 18:56:32 -080023import android.util.Slog;
Jeff Sharkey790a4ec2015-04-09 13:18:44 -070024
Narayan Kamath29564cd2014-08-07 10:57:40 +010025import com.android.internal.os.InstallerConnection;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070026import com.android.internal.os.InstallerConnection.InstallerException;
Narayan Kamath29564cd2014-08-07 10:57:40 +010027import com.android.server.SystemService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070029import dalvik.system.VMRuntime;
30
Jeff Sharkey42884192016-04-09 16:12:01 -060031import java.util.Arrays;
32
Jeff Brown6f357d32014-01-15 20:40:55 -080033public final class Installer extends SystemService {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034 private static final String TAG = "Installer";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Todd Kennedyfa54ab72015-09-25 07:46:12 -070036 /* ***************************************************************************
37 * IMPORTANT: These values are passed to native code. Keep them in sync with
38 * frameworks/native/cmds/installd/installd.h
39 * **************************************************************************/
40 /** Application should be visible to everyone */
Andreas Gampebdd30d82016-03-20 11:32:11 -070041 public static final int DEXOPT_PUBLIC = 1 << 1;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070042 /** Application wants to run in VM safe mode */
Andreas Gampebdd30d82016-03-20 11:32:11 -070043 public static final int DEXOPT_SAFEMODE = 1 << 2;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070044 /** Application wants to allow debugging of its code */
Andreas Gampebdd30d82016-03-20 11:32:11 -070045 public static final int DEXOPT_DEBUGGABLE = 1 << 3;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070046 /** The system boot has finished */
Andreas Gampebdd30d82016-03-20 11:32:11 -070047 public static final int DEXOPT_BOOTCOMPLETE = 1 << 4;
48 /** Hint that the dexopt type is profile-guided. */
49 public static final int DEXOPT_PROFILE_GUIDED = 1 << 5;
Andreas Gampea8908752015-11-10 08:58:14 -080050 /** This is an OTA update dexopt */
Andreas Gampebdd30d82016-03-20 11:32:11 -070051 public static final int DEXOPT_OTA = 1 << 6;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070052
Jeff Sharkey47f71082016-02-01 17:03:54 -070053 // NOTE: keep in sync with installd
54 public static final int FLAG_CLEAR_CACHE_ONLY = 1 << 8;
55 public static final int FLAG_CLEAR_CODE_CACHE_ONLY = 1 << 9;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070056
Narayan Kamath29564cd2014-08-07 10:57:40 +010057 private final InstallerConnection mInstaller;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058
Jeff Brownb880d882014-02-10 19:47:07 -080059 public Installer(Context context) {
60 super(context);
Narayan Kamath29564cd2014-08-07 10:57:40 +010061 mInstaller = new InstallerConnection();
Jeff Brownb880d882014-02-10 19:47:07 -080062 }
63
Andreas Gampecc241a52016-06-23 20:27:12 -070064 // Package-private installer that accepts a custom InstallerConnection. Used for
65 // OtaDexoptService.
66 Installer(Context context, InstallerConnection connection) {
67 super(context);
68 mInstaller = connection;
69 }
70
Jeff Sharkey8948c012015-11-03 12:33:54 -080071 /**
72 * Yell loudly if someone tries making future calls while holding a lock on
73 * the given object.
74 */
75 public void setWarnIfHeld(Object warnIfHeld) {
76 mInstaller.setWarnIfHeld(warnIfHeld);
77 }
78
Jeff Brown6f357d32014-01-15 20:40:55 -080079 @Override
80 public void onStart() {
81 Slog.i(TAG, "Waiting for installd to be ready.");
Makoto Onukic8a2cfe2015-06-23 16:33:48 -070082 mInstaller.waitForConnection();
Jeff Brown6f357d32014-01-15 20:40:55 -080083 }
84
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070085 public void createAppData(String uuid, String pkgname, int userid, int flags, int appid,
Janis Danisevskisf3409742016-01-12 14:46:33 +000086 String seinfo, int targetSdkVersion) throws InstallerException {
87 mInstaller.execute("create_app_data", uuid, pkgname, userid, flags, appid, seinfo,
88 targetSdkVersion);
Jeff Sharkey790a4ec2015-04-09 13:18:44 -070089 }
90
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070091 public void restoreconAppData(String uuid, String pkgname, int userid, int flags, int appid,
92 String seinfo) throws InstallerException {
93 mInstaller.execute("restorecon_app_data", uuid, pkgname, userid, flags, appid,
94 seinfo);
Jeff Sharkey790a4ec2015-04-09 13:18:44 -070095 }
96
Jeff Sharkeye4697132016-02-06 19:46:15 -070097 public void migrateAppData(String uuid, String pkgname, int userid, int flags)
98 throws InstallerException {
99 mInstaller.execute("migrate_app_data", uuid, pkgname, userid, flags);
100 }
101
Jeff Sharkey42884192016-04-09 16:12:01 -0600102 public void clearAppData(String uuid, String pkgname, int userid, int flags, long ceDataInode)
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700103 throws InstallerException {
Jeff Sharkey42884192016-04-09 16:12:01 -0600104 mInstaller.execute("clear_app_data", uuid, pkgname, userid, flags, ceDataInode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 }
106
Jeff Sharkey42884192016-04-09 16:12:01 -0600107 public void destroyAppData(String uuid, String pkgname, int userid, int flags, long ceDataInode)
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700108 throws InstallerException {
Jeff Sharkey42884192016-04-09 16:12:01 -0600109 mInstaller.execute("destroy_app_data", uuid, pkgname, userid, flags, ceDataInode);
Dave Allison0efbd9a2014-01-30 14:19:51 -0800110 }
111
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700112 public void moveCompleteApp(String from_uuid, String to_uuid, String package_name,
Janis Danisevskisf3409742016-01-12 14:46:33 +0000113 String data_app_name, int appid, String seinfo, int targetSdkVersion)
114 throws InstallerException {
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700115 mInstaller.execute("move_complete_app", from_uuid, to_uuid, package_name,
Janis Danisevskisf3409742016-01-12 14:46:33 +0000116 data_app_name, appid, seinfo, targetSdkVersion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 }
118
Jeff Sharkey42884192016-04-09 16:12:01 -0600119 public void getAppSize(String uuid, String pkgname, int userid, int flags, long ceDataInode,
120 String codePath, PackageStats stats) throws InstallerException {
121 final String[] res = mInstaller.execute("get_app_size", uuid, pkgname, userid, flags,
122 ceDataInode, codePath);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 try {
Jeff Sharkey42884192016-04-09 16:12:01 -0600124 stats.codeSize += Long.parseLong(res[1]);
125 stats.dataSize += Long.parseLong(res[2]);
126 stats.cacheSize += Long.parseLong(res[3]);
127 } catch (ArrayIndexOutOfBoundsException | NumberFormatException e) {
128 throw new InstallerException("Invalid size result: " + Arrays.toString(res));
129 }
130 }
131
132 public long getAppDataInode(String uuid, String pkgname, int userid, int flags)
133 throws InstallerException {
134 final String[] res = mInstaller.execute("get_app_data_inode", uuid, pkgname, userid, flags);
135 try {
136 return Long.parseLong(res[1]);
137 } catch (ArrayIndexOutOfBoundsException | NumberFormatException e) {
138 throw new InstallerException("Invalid inode result: " + Arrays.toString(res));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 }
Kenny Rootcf0b38c2011-03-22 14:17:59 -0700140 }
Dianne Hackbornb858dfd2010-02-02 10:49:14 -0800141
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700142 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded,
Jeff Haoc7b94822016-03-16 15:56:07 -0700143 int dexFlags, String compilerFilter, String volumeUuid, String sharedLibraries)
144 throws InstallerException {
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700145 assertValidInstructionSet(instructionSet);
Calin Juravledb4a79a2015-12-23 18:55:08 +0200146 mInstaller.dexopt(apkPath, uid, instructionSet, dexoptNeeded, dexFlags,
Jeff Haoc7b94822016-03-16 15:56:07 -0700147 compilerFilter, volumeUuid, sharedLibraries);
Dianne Hackbornb858dfd2010-02-02 10:49:14 -0800148 }
Kenny Root6a6b0072010-10-07 16:46:10 -0700149
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700150 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet,
Calin Juravledb4a79a2015-12-23 18:55:08 +0200151 int dexoptNeeded, @Nullable String outputPath, int dexFlags,
Jeff Haoc7b94822016-03-16 15:56:07 -0700152 String compilerFilter, String volumeUuid, String sharedLibraries)
153 throws InstallerException {
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700154 assertValidInstructionSet(instructionSet);
155 mInstaller.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded,
Jeff Haoc7b94822016-03-16 15:56:07 -0700156 outputPath, dexFlags, compilerFilter, volumeUuid, sharedLibraries);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700157 }
158
159 public boolean mergeProfiles(int uid, String pkgName) throws InstallerException {
160 return mInstaller.mergeProfiles(uid, pkgName);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700161 }
162
David Sehra8777082016-05-24 15:25:23 -0700163 public boolean dumpProfiles(String gid, String packageName, String codePaths)
164 throws InstallerException {
165 return mInstaller.dumpProfiles(gid, packageName, codePaths);
166 }
167
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700168 public void idmap(String targetApkPath, String overlayApkPath, int uid)
169 throws InstallerException {
170 mInstaller.execute("idmap", targetApkPath, overlayApkPath, uid);
171 }
172
173 public void rmdex(String codePath, String instructionSet) throws InstallerException {
174 assertValidInstructionSet(instructionSet);
175 mInstaller.execute("rmdex", codePath, instructionSet);
176 }
177
178 public void rmPackageDir(String packageDir) throws InstallerException {
179 mInstaller.execute("rmpackagedir", packageDir);
180 }
181
Calin Juravled6d27e32016-03-23 13:59:18 +0000182 public void clearAppProfiles(String pkgName) throws InstallerException {
183 mInstaller.execute("clear_app_profiles", pkgName);
184 }
185
186 public void destroyAppProfiles(String pkgName) throws InstallerException {
187 mInstaller.execute("destroy_app_profiles", pkgName);
David Brazdil9aa6db02016-03-08 12:57:12 +0000188 }
189
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -0600190 public void createUserData(String uuid, int userId, int userSerial, int flags)
191 throws InstallerException {
192 mInstaller.execute("create_user_data", uuid, userId, userSerial, flags);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700193 }
194
Jeff Sharkeyfcf1e552016-04-14 20:44:58 -0600195 public void destroyUserData(String uuid, int userId, int flags) throws InstallerException {
196 mInstaller.execute("destroy_user_data", uuid, userId, flags);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700197 }
198
199 public void markBootComplete(String instructionSet) throws InstallerException {
200 assertValidInstructionSet(instructionSet);
201 mInstaller.execute("markbootcomplete", instructionSet);
202 }
203
204 public void freeCache(String uuid, long freeStorageSize) throws InstallerException {
205 mInstaller.execute("freecache", uuid, freeStorageSize);
206 }
207
Kenny Rootddbe50d2012-09-06 13:18:37 -0700208 /**
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700209 * Links the 32 bit native library directory in an application's data
210 * directory to the real location for backward compatibility. Note that no
211 * such symlink is created for 64 bit shared libraries.
Kenny Rootddbe50d2012-09-06 13:18:37 -0700212 */
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700213 public void linkNativeLibraryDirectory(String uuid, String dataPath, String nativeLibPath32,
214 int userId) throws InstallerException {
215 mInstaller.execute("linklib", uuid, dataPath, nativeLibPath32, userId);
Kenny Root6a6b0072010-10-07 16:46:10 -0700216 }
Robert Craig43853432014-03-04 11:57:23 -0500217
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700218 public void createOatDir(String oatDir, String dexInstructionSet)
219 throws InstallerException {
220 mInstaller.execute("createoatdir", oatDir, dexInstructionSet);
Jeff Sharkey790a4ec2015-04-09 13:18:44 -0700221 }
222
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700223 public void linkFile(String relativePath, String fromBase, String toBase)
224 throws InstallerException {
225 mInstaller.execute("linkfile", relativePath, fromBase, toBase);
Robert Craig43853432014-03-04 11:57:23 -0500226 }
Narayan Kamath6c4b9de2014-08-08 12:44:12 +0100227
Andreas Gampeabcbe2f2016-02-26 11:25:36 -0800228 public void moveAb(String apkPath, String instructionSet, String outputPath)
229 throws InstallerException {
230 mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
231 }
232
Andreas Gampee5fedb92016-09-09 17:08:53 -0700233 public void deleteOdex(String apkPath, String instructionSet, String outputPath)
234 throws InstallerException {
235 mInstaller.execute("delete_odex", apkPath, instructionSet, outputPath);
236 }
237
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700238 private static void assertValidInstructionSet(String instructionSet)
239 throws InstallerException {
Narayan Kamath6c4b9de2014-08-08 12:44:12 +0100240 for (String abi : Build.SUPPORTED_ABIS) {
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700241 if (VMRuntime.getInstructionSet(abi).equals(instructionSet)) {
242 return;
Narayan Kamath6c4b9de2014-08-08 12:44:12 +0100243 }
244 }
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700245 throw new InstallerException("Invalid instruction set: " + instructionSet);
Narayan Kamath6c4b9de2014-08-08 12:44:12 +0100246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247}