Installer.java revision fcf1e55821b694df3b8434f40aa3b6d3c3e7ea50
1/*
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
17package com.android.server.pm;
18
19import android.annotation.Nullable;
20import android.content.Context;
21import android.content.pm.PackageStats;
22import android.os.Build;
23import android.util.Slog;
24
25import com.android.internal.os.InstallerConnection;
26import com.android.internal.os.InstallerConnection.InstallerException;
27import com.android.server.SystemService;
28
29import dalvik.system.VMRuntime;
30
31import java.util.Arrays;
32
33public final class Installer extends SystemService {
34    private static final String TAG = "Installer";
35
36    /* ***************************************************************************
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 */
41    public static final int DEXOPT_PUBLIC         = 1 << 1;
42    /** Application wants to run in VM safe mode */
43    public static final int DEXOPT_SAFEMODE       = 1 << 2;
44    /** Application wants to allow debugging of its code */
45    public static final int DEXOPT_DEBUGGABLE     = 1 << 3;
46    /** The system boot has finished */
47    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;
50    /** This is an OTA update dexopt */
51    public static final int DEXOPT_OTA            = 1 << 6;
52
53    // 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;
56
57    private final InstallerConnection mInstaller;
58
59    public Installer(Context context) {
60        super(context);
61        mInstaller = new InstallerConnection();
62    }
63
64    /**
65     * Yell loudly if someone tries making future calls while holding a lock on
66     * the given object.
67     */
68    public void setWarnIfHeld(Object warnIfHeld) {
69        mInstaller.setWarnIfHeld(warnIfHeld);
70    }
71
72    @Override
73    public void onStart() {
74        Slog.i(TAG, "Waiting for installd to be ready.");
75        mInstaller.waitForConnection();
76    }
77
78    public void createAppData(String uuid, String pkgname, int userid, int flags, int appid,
79            String seinfo, int targetSdkVersion) throws InstallerException {
80        mInstaller.execute("create_app_data", uuid, pkgname, userid, flags, appid, seinfo,
81            targetSdkVersion);
82    }
83
84    public void restoreconAppData(String uuid, String pkgname, int userid, int flags, int appid,
85            String seinfo) throws InstallerException {
86        mInstaller.execute("restorecon_app_data", uuid, pkgname, userid, flags, appid,
87                seinfo);
88    }
89
90    public void migrateAppData(String uuid, String pkgname, int userid, int flags)
91            throws InstallerException {
92        mInstaller.execute("migrate_app_data", uuid, pkgname, userid, flags);
93    }
94
95    public void clearAppData(String uuid, String pkgname, int userid, int flags, long ceDataInode)
96            throws InstallerException {
97        mInstaller.execute("clear_app_data", uuid, pkgname, userid, flags, ceDataInode);
98    }
99
100    public void destroyAppData(String uuid, String pkgname, int userid, int flags, long ceDataInode)
101            throws InstallerException {
102        mInstaller.execute("destroy_app_data", uuid, pkgname, userid, flags, ceDataInode);
103    }
104
105    public void moveCompleteApp(String from_uuid, String to_uuid, String package_name,
106            String data_app_name, int appid, String seinfo, int targetSdkVersion)
107            throws InstallerException {
108        mInstaller.execute("move_complete_app", from_uuid, to_uuid, package_name,
109                data_app_name, appid, seinfo, targetSdkVersion);
110    }
111
112    public void getAppSize(String uuid, String pkgname, int userid, int flags, long ceDataInode,
113            String codePath, PackageStats stats) throws InstallerException {
114        final String[] res = mInstaller.execute("get_app_size", uuid, pkgname, userid, flags,
115                ceDataInode, codePath);
116        try {
117            stats.codeSize += Long.parseLong(res[1]);
118            stats.dataSize += Long.parseLong(res[2]);
119            stats.cacheSize += Long.parseLong(res[3]);
120        } catch (ArrayIndexOutOfBoundsException | NumberFormatException e) {
121            throw new InstallerException("Invalid size result: " + Arrays.toString(res));
122        }
123    }
124
125    public long getAppDataInode(String uuid, String pkgname, int userid, int flags)
126            throws InstallerException {
127        final String[] res = mInstaller.execute("get_app_data_inode", uuid, pkgname, userid, flags);
128        try {
129            return Long.parseLong(res[1]);
130        } catch (ArrayIndexOutOfBoundsException | NumberFormatException e) {
131            throw new InstallerException("Invalid inode result: " + Arrays.toString(res));
132        }
133    }
134
135    public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded,
136            int dexFlags, String compilerFilter, String volumeUuid) throws InstallerException {
137        assertValidInstructionSet(instructionSet);
138        mInstaller.dexopt(apkPath, uid, instructionSet, dexoptNeeded, dexFlags,
139                compilerFilter, volumeUuid);
140    }
141
142    public void dexopt(String apkPath, int uid, String pkgName, String instructionSet,
143            int dexoptNeeded, @Nullable String outputPath, int dexFlags,
144            String compilerFilter, String volumeUuid)
145                    throws InstallerException {
146        assertValidInstructionSet(instructionSet);
147        mInstaller.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded,
148                outputPath, dexFlags, compilerFilter, volumeUuid);
149    }
150
151    public boolean mergeProfiles(int uid, String pkgName) throws InstallerException {
152        return mInstaller.mergeProfiles(uid, pkgName);
153    }
154
155    public void idmap(String targetApkPath, String overlayApkPath, int uid)
156            throws InstallerException {
157        mInstaller.execute("idmap", targetApkPath, overlayApkPath, uid);
158    }
159
160    public void rmdex(String codePath, String instructionSet) throws InstallerException {
161        assertValidInstructionSet(instructionSet);
162        mInstaller.execute("rmdex", codePath, instructionSet);
163    }
164
165    public void rmPackageDir(String packageDir) throws InstallerException {
166        mInstaller.execute("rmpackagedir", packageDir);
167    }
168
169    public void clearAppProfiles(String pkgName) throws InstallerException {
170        mInstaller.execute("clear_app_profiles", pkgName);
171    }
172
173    public void destroyAppProfiles(String pkgName) throws InstallerException {
174        mInstaller.execute("destroy_app_profiles", pkgName);
175    }
176
177    public void createUserData(String uuid, int userId, int userSerial, int flags)
178            throws InstallerException {
179        mInstaller.execute("create_user_data", uuid, userId, userSerial, flags);
180    }
181
182    public void destroyUserData(String uuid, int userId, int flags) throws InstallerException {
183        mInstaller.execute("destroy_user_data", uuid, userId, flags);
184    }
185
186    public void markBootComplete(String instructionSet) throws InstallerException {
187        assertValidInstructionSet(instructionSet);
188        mInstaller.execute("markbootcomplete", instructionSet);
189    }
190
191    public void freeCache(String uuid, long freeStorageSize) throws InstallerException {
192        mInstaller.execute("freecache", uuid, freeStorageSize);
193    }
194
195    /**
196     * Links the 32 bit native library directory in an application's data
197     * directory to the real location for backward compatibility. Note that no
198     * such symlink is created for 64 bit shared libraries.
199     */
200    public void linkNativeLibraryDirectory(String uuid, String dataPath, String nativeLibPath32,
201            int userId) throws InstallerException {
202        mInstaller.execute("linklib", uuid, dataPath, nativeLibPath32, userId);
203    }
204
205    public void createOatDir(String oatDir, String dexInstructionSet)
206            throws InstallerException {
207        mInstaller.execute("createoatdir", oatDir, dexInstructionSet);
208    }
209
210    public void linkFile(String relativePath, String fromBase, String toBase)
211            throws InstallerException {
212        mInstaller.execute("linkfile", relativePath, fromBase, toBase);
213    }
214
215    public void moveAb(String apkPath, String instructionSet, String outputPath)
216            throws InstallerException {
217        mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
218    }
219
220    private static void assertValidInstructionSet(String instructionSet)
221            throws InstallerException {
222        for (String abi : Build.SUPPORTED_ABIS) {
223            if (VMRuntime.getInstructionSet(abi).equals(instructionSet)) {
224                return;
225            }
226        }
227        throw new InstallerException("Invalid instruction set: " + instructionSet);
228    }
229}
230