PackageSetting.java revision c29b11a5f65829dc87b5f234c4d3c1fff7ef5a36
1/*
2 * Copyright (C) 2011 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.content.pm.ApplicationInfo;
20import android.content.pm.PackageManager;
21import android.content.pm.PackageParser;
22import android.content.pm.UserInfo;
23import android.service.pm.PackageProto;
24import android.util.proto.ProtoOutputStream;
25
26import com.android.server.pm.permission.PermissionsState;
27
28import java.io.File;
29import java.util.List;
30
31/**
32 * Settings data for a particular package we know about.
33 */
34public final class PackageSetting extends PackageSettingBase {
35    int appId;
36    PackageParser.Package pkg;
37    /**
38     * WARNING. The object reference is important. We perform integer equality and NOT
39     * object equality to check whether shared user settings are the same.
40     */
41    SharedUserSetting sharedUser;
42    /**
43     * Temporary holding space for the shared user ID. While parsing package settings, the
44     * shared users tag may come after the packages. In this case, we must delay linking the
45     * shared user setting with the package setting. The shared user ID lets us link the
46     * two objects.
47     */
48    private int sharedUserId;
49
50    PackageSetting(String name, String realName, File codePath, File resourcePath,
51            String legacyNativeLibraryPathString, String primaryCpuAbiString,
52            String secondaryCpuAbiString, String cpuAbiOverrideString,
53            int pVersionCode, int pkgFlags, int privateFlags, String parentPackageName,
54            List<String> childPackageNames, int sharedUserId, String[] usesStaticLibraries,
55            int[] usesStaticLibrariesVersions) {
56        super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
57                primaryCpuAbiString, secondaryCpuAbiString, cpuAbiOverrideString,
58                pVersionCode, pkgFlags, privateFlags, parentPackageName, childPackageNames,
59                usesStaticLibraries, usesStaticLibrariesVersions);
60        this.sharedUserId = sharedUserId;
61    }
62
63    /**
64     * New instance of PackageSetting replicating the original settings.
65     * Note that it keeps the same PackageParser.Package instance.
66     */
67    PackageSetting(PackageSetting orig) {
68        super(orig, orig.realName);
69        doCopy(orig);
70    }
71
72    /**
73     * New instance of PackageSetting replicating the original settings, but, allows specifying
74     * a real package name.
75     * Note that it keeps the same PackageParser.Package instance.
76     */
77    PackageSetting(PackageSetting orig, String realPkgName) {
78        super(orig, realPkgName);
79        doCopy(orig);
80    }
81
82    public int getSharedUserId() {
83        if (sharedUser != null) {
84            return sharedUser.userId;
85        }
86        return sharedUserId;
87    }
88
89    public SharedUserSetting getSharedUser() {
90        return sharedUser;
91    }
92
93    @Override
94    public String toString() {
95        return "PackageSetting{"
96            + Integer.toHexString(System.identityHashCode(this))
97            + " " + name + "/" + appId + "}";
98    }
99
100    public void copyFrom(PackageSetting orig) {
101        super.copyFrom(orig);
102        doCopy(orig);
103    }
104
105    private void doCopy(PackageSetting orig) {
106        appId = orig.appId;
107        pkg = orig.pkg;
108        sharedUser = orig.sharedUser;
109        sharedUserId = orig.sharedUserId;
110    }
111
112    @Override
113    public PermissionsState getPermissionsState() {
114        return (sharedUser != null)
115                ? sharedUser.getPermissionsState()
116                : super.getPermissionsState();
117    }
118
119    public PackageParser.Package getPackage() {
120        return pkg;
121    }
122
123    public int getAppId() {
124        return appId;
125    }
126
127    public void setInstallPermissionsFixed(boolean fixed) {
128        installPermissionsFixed = fixed;
129    }
130
131    public boolean areInstallPermissionsFixed() {
132        return installPermissionsFixed;
133    }
134
135    public boolean isPrivileged() {
136        return (pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
137    }
138
139    public boolean isOem() {
140        return (pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_OEM) != 0;
141    }
142
143    public boolean isForwardLocked() {
144        return (pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
145    }
146
147    public boolean isSystem() {
148        return (pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
149    }
150
151    public boolean isUpdatedSystem() {
152        return (pkgFlags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
153    }
154
155    @Override
156    public boolean isSharedUser() {
157        return sharedUser != null;
158    }
159
160    public boolean isMatch(int flags) {
161        if ((flags & PackageManager.MATCH_SYSTEM_ONLY) != 0) {
162            return isSystem();
163        }
164        return true;
165    }
166
167    public boolean hasChildPackages() {
168        return childPackageNames != null && !childPackageNames.isEmpty();
169    }
170
171    public void writeToProto(ProtoOutputStream proto, long fieldId, List<UserInfo> users) {
172        final long packageToken = proto.start(fieldId);
173        proto.write(PackageProto.NAME, (realName != null ? realName : name));
174        proto.write(PackageProto.UID, appId);
175        proto.write(PackageProto.VERSION_CODE, versionCode);
176        proto.write(PackageProto.VERSION_STRING, pkg.mVersionName);
177        proto.write(PackageProto.INSTALL_TIME_MS, firstInstallTime);
178        proto.write(PackageProto.UPDATE_TIME_MS, lastUpdateTime);
179        proto.write(PackageProto.INSTALLER_NAME, installerPackageName);
180
181        if (pkg != null) {
182            long splitToken = proto.start(PackageProto.SPLITS);
183            proto.write(PackageProto.SplitProto.NAME, "base");
184            proto.write(PackageProto.SplitProto.REVISION_CODE, pkg.baseRevisionCode);
185            proto.end(splitToken);
186            if (pkg.splitNames != null) {
187                for (int i = 0; i < pkg.splitNames.length; i++) {
188                    splitToken = proto.start(PackageProto.SPLITS);
189                    proto.write(PackageProto.SplitProto.NAME, pkg.splitNames[i]);
190                    proto.write(PackageProto.SplitProto.REVISION_CODE, pkg.splitRevisionCodes[i]);
191                    proto.end(splitToken);
192                }
193            }
194        }
195        writeUsersInfoToProto(proto, PackageProto.USERS);
196        proto.end(packageToken);
197    }
198}
199