blob: cd8167ae46533aac799d10b3c89a8d32f90c0aeb [file] [log] [blame]
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001/*
2 * Copyright (C) 2012 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
Svet Ganov8455ba22019-01-02 13:05:56 -080017package com.android.server.appop;
Dianne Hackborna06de0f2012-12-11 16:34:47 -080018
Svet Ganovaf189e32019-02-15 18:45:29 -080019import static android.app.AppOpsManager.MAX_PRIORITY_UID_STATE;
20import static android.app.AppOpsManager.MIN_PRIORITY_UID_STATE;
21import static android.app.AppOpsManager.OP_FLAGS_ALL;
Svet Ganov8455ba22019-01-02 13:05:56 -080022import static android.app.AppOpsManager.OP_NONE;
Philip P. Moltmanndde07852019-01-25 16:42:36 -080023import static android.app.AppOpsManager.OP_PLAY_AUDIO;
Hai Zhang2b98fb32018-09-21 15:18:46 -070024import static android.app.AppOpsManager.UID_STATE_BACKGROUND;
25import static android.app.AppOpsManager.UID_STATE_CACHED;
26import static android.app.AppOpsManager.UID_STATE_FOREGROUND;
27import static android.app.AppOpsManager.UID_STATE_FOREGROUND_SERVICE;
Amith Yamasania0a30a12019-01-22 11:38:06 -080028import static android.app.AppOpsManager.UID_STATE_FOREGROUND_SERVICE_LOCATION;
Svet Ganovaf189e32019-02-15 18:45:29 -080029import static android.app.AppOpsManager.UID_STATE_MAX_LAST_NON_RESTRICTED;
Hai Zhang2b98fb32018-09-21 15:18:46 -070030import static android.app.AppOpsManager.UID_STATE_PERSISTENT;
31import static android.app.AppOpsManager.UID_STATE_TOP;
Eugene Suslae4ee2c22018-11-05 12:23:30 -080032import static android.app.AppOpsManager.modeToName;
33import static android.app.AppOpsManager.opToName;
Svet Ganovaf189e32019-02-15 18:45:29 -080034import static android.app.AppOpsManager.resolveFirstUnrestrictedUidState;
Hai Zhang2b98fb32018-09-21 15:18:46 -070035
Philip P. Moltmanne683f192017-06-23 14:05:04 -070036import android.Manifest;
Svet Ganovad0a49b2018-10-29 10:07:08 -070037import android.annotation.NonNull;
38import android.annotation.Nullable;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070039import android.app.ActivityManager;
40import android.app.ActivityThread;
41import android.app.AppGlobals;
42import android.app.AppOpsManager;
Svet Ganov8455ba22019-01-02 13:05:56 -080043import android.app.AppOpsManager.HistoricalOps;
Svet Ganov23c88db2019-01-22 20:38:11 -080044import android.app.AppOpsManager.HistoricalOpsRequest;
Svet Ganovaf189e32019-02-15 18:45:29 -080045import android.app.AppOpsManager.Mode;
46import android.app.AppOpsManager.OpEntry;
47import android.app.AppOpsManager.OpFlags;
Dianne Hackbornd5254412018-05-11 18:02:58 -070048import android.app.AppOpsManagerInternal;
Svet Ganovd873ae62018-06-25 16:39:23 -070049import android.app.AppOpsManagerInternal.CheckOpsDelegate;
Suprabh Shukla3017fe42018-11-08 19:00:01 -080050import android.content.BroadcastReceiver;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070051import android.content.ContentResolver;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070052import android.content.Context;
Suprabh Shukla3017fe42018-11-08 19:00:01 -080053import android.content.Intent;
54import android.content.IntentFilter;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070055import android.content.pm.ApplicationInfo;
56import android.content.pm.IPackageManager;
57import android.content.pm.PackageManager;
58import android.content.pm.PackageManagerInternal;
59import android.content.pm.UserInfo;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070060import android.database.ContentObserver;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070061import android.media.AudioAttributes;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070062import android.net.Uri;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070063import android.os.AsyncTask;
64import android.os.Binder;
65import android.os.Bundle;
66import android.os.Handler;
67import android.os.IBinder;
68import android.os.Process;
Svet Ganov8455ba22019-01-02 13:05:56 -080069import android.os.RemoteCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070070import android.os.RemoteException;
71import android.os.ResultReceiver;
72import android.os.ServiceManager;
73import android.os.ShellCallback;
74import android.os.ShellCommand;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -070075import android.os.SystemClock;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070076import android.os.UserHandle;
77import android.os.UserManager;
Sudheer Shanka98cb3f02018-08-17 16:10:29 -070078import android.os.storage.StorageManager;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070079import android.os.storage.StorageManagerInternal;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070080import android.provider.Settings;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070081import android.util.ArrayMap;
82import android.util.ArraySet;
83import android.util.AtomicFile;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070084import android.util.KeyValueListParser;
Svet Ganovaf189e32019-02-15 18:45:29 -080085import android.util.LongSparseArray;
86import android.util.LongSparseLongArray;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070087import android.util.Slog;
88import android.util.SparseArray;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -070089import android.util.SparseBooleanArray;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070090import android.util.SparseIntArray;
91import android.util.TimeUtils;
92import android.util.Xml;
93
Todd Kennedy556efba2018-11-15 07:43:55 -080094import com.android.internal.annotations.GuardedBy;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -070095import com.android.internal.annotations.VisibleForTesting;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -080096import com.android.internal.app.IAppOpsActiveCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070097import com.android.internal.app.IAppOpsCallback;
Svet Ganovb3d2ae22018-12-17 22:06:15 -080098import com.android.internal.app.IAppOpsNotedCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070099import com.android.internal.app.IAppOpsService;
100import com.android.internal.os.Zygote;
101import com.android.internal.util.ArrayUtils;
102import com.android.internal.util.DumpUtils;
103import com.android.internal.util.FastXmlSerializer;
104import com.android.internal.util.Preconditions;
105import com.android.internal.util.XmlUtils;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800106import com.android.internal.util.function.pooled.PooledLambda;
Svet Ganov8455ba22019-01-02 13:05:56 -0800107import com.android.server.LocalServices;
108import com.android.server.LockGuard;
Philip P. Moltmanndde07852019-01-25 16:42:36 -0800109
Philip P. Moltmanne683f192017-06-23 14:05:04 -0700110import libcore.util.EmptyArray;
111
112import org.xmlpull.v1.XmlPullParser;
113import org.xmlpull.v1.XmlPullParserException;
114import org.xmlpull.v1.XmlSerializer;
115
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800116import java.io.File;
117import java.io.FileDescriptor;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800118import java.io.FileInputStream;
119import java.io.FileNotFoundException;
120import java.io.FileOutputStream;
121import java.io.IOException;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800122import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100123import java.nio.charset.StandardCharsets;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700124import java.text.SimpleDateFormat;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800125import java.util.ArrayList;
Svetoslav Ganova8bbd762016-05-13 17:08:16 -0700126import java.util.Arrays;
Svetoslav215b44a2015-08-04 19:03:40 -0700127import java.util.Collections;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700128import java.util.Date;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800129import java.util.HashMap;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800130import java.util.Iterator;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800131import java.util.List;
Dianne Hackborn607b4142013-08-02 18:10:10 -0700132import java.util.Map;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800133
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800134public class AppOpsService extends IAppOpsService.Stub {
135 static final String TAG = "AppOps";
Dianne Hackborn35654b62013-01-14 17:38:02 -0800136 static final boolean DEBUG = false;
137
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700138 private static final int NO_VERSION = -1;
139 /** Increment by one every time and add the corresponding upgrade logic in
140 * {@link #upgradeLocked(int)} below. The first version was 1 */
141 private static final int CURRENT_VERSION = 1;
142
Dianne Hackborn35654b62013-01-14 17:38:02 -0800143 // Write at most every 30 minutes.
144 static final long WRITE_DELAY = DEBUG ? 1000 : 30*60*1000;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800145
Svet Ganov3a95f832018-03-23 17:44:30 -0700146 // Constant meaning that any UID should be matched when dispatching callbacks
147 private static final int UID_ANY = -2;
148
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700149 // Map from process states to the uid states we track.
150 private static final int[] PROCESS_STATE_TO_UID_STATE = new int[] {
151 UID_STATE_PERSISTENT, // ActivityManager.PROCESS_STATE_PERSISTENT
152 UID_STATE_PERSISTENT, // ActivityManager.PROCESS_STATE_PERSISTENT_UI
153 UID_STATE_TOP, // ActivityManager.PROCESS_STATE_TOP
Amith Yamasania0a30a12019-01-22 11:38:06 -0800154 UID_STATE_FOREGROUND_SERVICE_LOCATION,
155 // ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE_LOCATION
Amith Yamasanif235d0b2019-03-20 22:49:43 -0700156 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_BOUND_TOP
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700157 UID_STATE_FOREGROUND_SERVICE, // ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE
158 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_BOUND_FOREGROUND_SERVICE
159 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND
160 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_IMPORTANT_BACKGROUND
161 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_TRANSIENT_BACKGROUND
162 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_BACKUP
163 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_SERVICE
164 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_RECEIVER
165 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_TOP_SLEEPING
166 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_HEAVY_WEIGHT
167 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_HOME
168 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_LAST_ACTIVITY
169 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_ACTIVITY
170 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_ACTIVITY_CLIENT
171 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_RECENT
172 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_EMPTY
173 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_NONEXISTENT
174 };
175
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800176 Context mContext;
177 final AtomicFile mFile;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800178 final Handler mHandler;
179
Dianne Hackbornd5254412018-05-11 18:02:58 -0700180 private final AppOpsManagerInternalImpl mAppOpsManagerInternal
181 = new AppOpsManagerInternalImpl();
182
Dianne Hackborn35654b62013-01-14 17:38:02 -0800183 boolean mWriteScheduled;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800184 boolean mFastWriteScheduled;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800185 final Runnable mWriteRunner = new Runnable() {
186 public void run() {
187 synchronized (AppOpsService.this) {
188 mWriteScheduled = false;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800189 mFastWriteScheduled = false;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800190 AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
191 @Override protected Void doInBackground(Void... params) {
192 writeState();
193 return null;
194 }
195 };
196 task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[])null);
197 }
198 }
199 };
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800200
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700201 @VisibleForTesting
202 final SparseArray<UidState> mUidStates = new SparseArray<>();
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800203
Svet Ganov8455ba22019-01-02 13:05:56 -0800204 private final HistoricalRegistry mHistoricalRegistry = new HistoricalRegistry(this);
205
Dianne Hackborn9fb93502018-06-18 12:29:44 -0700206 long mLastRealtime;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700207
Ruben Brunk29931bc2016-03-11 00:24:26 -0800208 /*
209 * These are app op restrictions imposed per user from various parties.
Ruben Brunk29931bc2016-03-11 00:24:26 -0800210 */
Svetoslav Ganova8bbd762016-05-13 17:08:16 -0700211 private final ArrayMap<IBinder, ClientRestrictionState> mOpUserRestrictions = new ArrayMap<>();
Jason Monk62062992014-05-06 09:55:28 -0400212
Dianne Hackbornd5254412018-05-11 18:02:58 -0700213 SparseIntArray mProfileOwners;
214
Todd Kennedy556efba2018-11-15 07:43:55 -0800215 @GuardedBy("this")
Svet Ganovd873ae62018-06-25 16:39:23 -0700216 private CheckOpsDelegate mCheckOpsDelegate;
217
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700218 /**
219 * All times are in milliseconds. These constants are kept synchronized with the system
220 * global Settings. Any access to this class or its fields should be done while
221 * holding the AppOpsService lock.
222 */
Amith Yamasani23d4cd72019-04-10 17:57:00 -0700223 @VisibleForTesting
224 final class Constants extends ContentObserver {
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700225 // Key names stored in the settings value.
Dianne Hackborne93ab412018-05-14 17:52:30 -0700226 private static final String KEY_TOP_STATE_SETTLE_TIME = "top_state_settle_time";
227 private static final String KEY_FG_SERVICE_STATE_SETTLE_TIME
228 = "fg_service_state_settle_time";
229 private static final String KEY_BG_STATE_SETTLE_TIME = "bg_state_settle_time";
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700230
231 /**
Dianne Hackborne93ab412018-05-14 17:52:30 -0700232 * How long we want for a drop in uid state from top to settle before applying it.
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700233 * @see Settings.Global#APP_OPS_CONSTANTS
Dianne Hackborne93ab412018-05-14 17:52:30 -0700234 * @see #KEY_TOP_STATE_SETTLE_TIME
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700235 */
Dianne Hackborne93ab412018-05-14 17:52:30 -0700236 public long TOP_STATE_SETTLE_TIME;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700237
Dianne Hackborne93ab412018-05-14 17:52:30 -0700238 /**
239 * How long we want for a drop in uid state from foreground to settle before applying it.
240 * @see Settings.Global#APP_OPS_CONSTANTS
241 * @see #KEY_FG_SERVICE_STATE_SETTLE_TIME
242 */
243 public long FG_SERVICE_STATE_SETTLE_TIME;
244
245 /**
246 * How long we want for a drop in uid state from background to settle before applying it.
247 * @see Settings.Global#APP_OPS_CONSTANTS
248 * @see #KEY_BG_STATE_SETTLE_TIME
249 */
250 public long BG_STATE_SETTLE_TIME;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700251
252 private final KeyValueListParser mParser = new KeyValueListParser(',');
253 private ContentResolver mResolver;
254
255 public Constants(Handler handler) {
256 super(handler);
257 updateConstants();
258 }
259
260 public void startMonitoring(ContentResolver resolver) {
261 mResolver = resolver;
262 mResolver.registerContentObserver(
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700263 Settings.Global.getUriFor(Settings.Global.APP_OPS_CONSTANTS),
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700264 false, this);
265 updateConstants();
266 }
267
268 @Override
269 public void onChange(boolean selfChange, Uri uri) {
270 updateConstants();
271 }
272
273 private void updateConstants() {
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700274 String value = mResolver != null ? Settings.Global.getString(mResolver,
275 Settings.Global.APP_OPS_CONSTANTS) : "";
276
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700277 synchronized (AppOpsService.this) {
278 try {
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700279 mParser.setString(value);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700280 } catch (IllegalArgumentException e) {
281 // Failed to parse the settings string, log this and move on
282 // with defaults.
283 Slog.e(TAG, "Bad app ops settings", e);
284 }
Dianne Hackborne93ab412018-05-14 17:52:30 -0700285 TOP_STATE_SETTLE_TIME = mParser.getDurationMillis(
286 KEY_TOP_STATE_SETTLE_TIME, 30 * 1000L);
287 FG_SERVICE_STATE_SETTLE_TIME = mParser.getDurationMillis(
288 KEY_FG_SERVICE_STATE_SETTLE_TIME, 10 * 1000L);
289 BG_STATE_SETTLE_TIME = mParser.getDurationMillis(
290 KEY_BG_STATE_SETTLE_TIME, 1 * 1000L);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700291 }
292 }
293
294 void dump(PrintWriter pw) {
295 pw.println(" Settings:");
296
Dianne Hackborne93ab412018-05-14 17:52:30 -0700297 pw.print(" "); pw.print(KEY_TOP_STATE_SETTLE_TIME); pw.print("=");
298 TimeUtils.formatDuration(TOP_STATE_SETTLE_TIME, pw);
Dianne Hackbornb94d82f2018-05-16 17:03:01 -0700299 pw.println();
Dianne Hackborne93ab412018-05-14 17:52:30 -0700300 pw.print(" "); pw.print(KEY_FG_SERVICE_STATE_SETTLE_TIME); pw.print("=");
301 TimeUtils.formatDuration(FG_SERVICE_STATE_SETTLE_TIME, pw);
Dianne Hackbornb94d82f2018-05-16 17:03:01 -0700302 pw.println();
Dianne Hackborne93ab412018-05-14 17:52:30 -0700303 pw.print(" "); pw.print(KEY_BG_STATE_SETTLE_TIME); pw.print("=");
304 TimeUtils.formatDuration(BG_STATE_SETTLE_TIME, pw);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700305 pw.println();
306 }
307 }
308
Amith Yamasani23d4cd72019-04-10 17:57:00 -0700309 @VisibleForTesting
310 final Constants mConstants;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700311
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700312 @VisibleForTesting
313 static final class UidState {
Svet Ganov2af57082015-07-30 08:44:20 -0700314 public final int uid;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700315
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700316 public int state = UID_STATE_CACHED;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700317 public int pendingState = UID_STATE_CACHED;
318 public long pendingStateCommitTime;
319
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700320 public int startNesting;
Svet Ganov2af57082015-07-30 08:44:20 -0700321 public ArrayMap<String, Ops> pkgOps;
322 public SparseIntArray opModes;
323
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700324 // true indicates there is an interested observer, false there isn't but it has such an op
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700325 public SparseBooleanArray foregroundOps;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700326 public boolean hasForegroundWatchers;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700327
Svet Ganov2af57082015-07-30 08:44:20 -0700328 public UidState(int uid) {
329 this.uid = uid;
330 }
331
332 public void clear() {
333 pkgOps = null;
334 opModes = null;
335 }
336
337 public boolean isDefault() {
338 return (pkgOps == null || pkgOps.isEmpty())
Svet Ganovaf189e32019-02-15 18:45:29 -0800339 && (opModes == null || opModes.size() <= 0)
340 && (state == UID_STATE_CACHED
341 && (pendingState == UID_STATE_CACHED));
Svet Ganov2af57082015-07-30 08:44:20 -0700342 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700343
Svet Ganovaf189e32019-02-15 18:45:29 -0800344 int evalMode(int op, int mode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700345 if (mode == AppOpsManager.MODE_FOREGROUND) {
Svet Ganovaf189e32019-02-15 18:45:29 -0800346 return state <= AppOpsManager.resolveLastRestrictedUidState(op)
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700347 ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED;
348 }
349 return mode;
350 }
351
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700352 private void evalForegroundWatchers(int op, SparseArray<ArraySet<ModeCallback>> watchers,
353 SparseBooleanArray which) {
354 boolean curValue = which.get(op, false);
355 ArraySet<ModeCallback> callbacks = watchers.get(op);
356 if (callbacks != null) {
357 for (int cbi = callbacks.size() - 1; !curValue && cbi >= 0; cbi--) {
358 if ((callbacks.valueAt(cbi).mFlags
359 & AppOpsManager.WATCH_FOREGROUND_CHANGES) != 0) {
360 hasForegroundWatchers = true;
361 curValue = true;
362 }
363 }
364 }
365 which.put(op, curValue);
366 }
367
368 public void evalForegroundOps(SparseArray<ArraySet<ModeCallback>> watchers) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700369 SparseBooleanArray which = null;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700370 hasForegroundWatchers = false;
371 if (opModes != null) {
372 for (int i = opModes.size() - 1; i >= 0; i--) {
373 if (opModes.valueAt(i) == AppOpsManager.MODE_FOREGROUND) {
374 if (which == null) {
375 which = new SparseBooleanArray();
376 }
377 evalForegroundWatchers(opModes.keyAt(i), watchers, which);
378 }
379 }
380 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700381 if (pkgOps != null) {
382 for (int i = pkgOps.size() - 1; i >= 0; i--) {
383 Ops ops = pkgOps.valueAt(i);
384 for (int j = ops.size() - 1; j >= 0; j--) {
385 if (ops.valueAt(j).mode == AppOpsManager.MODE_FOREGROUND) {
386 if (which == null) {
387 which = new SparseBooleanArray();
388 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700389 evalForegroundWatchers(ops.keyAt(j), watchers, which);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700390 }
391 }
392 }
393 }
394 foregroundOps = which;
395 }
Svet Ganov2af57082015-07-30 08:44:20 -0700396 }
397
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700398 final static class Ops extends SparseArray<Op> {
399 final String packageName;
400 final UidState uidState;
401 final boolean isPrivileged;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800402
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700403 Ops(String _packageName, UidState _uidState, boolean _isPrivileged) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800404 packageName = _packageName;
Svet Ganov2af57082015-07-30 08:44:20 -0700405 uidState = _uidState;
Jason Monk1c7c3192014-06-26 12:52:18 -0400406 isPrivileged = _isPrivileged;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800407 }
408 }
409
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700410 final static class Op {
Svet Ganovaf189e32019-02-15 18:45:29 -0800411 int op;
412 boolean running;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700413 final UidState uidState;
Svet Ganovaf189e32019-02-15 18:45:29 -0800414 final @NonNull String packageName;
415
416 private @Mode int mode;
417 private @Nullable LongSparseLongArray mAccessTimes;
418 private @Nullable LongSparseLongArray mRejectTimes;
419 private @Nullable LongSparseLongArray mDurations;
420 private @Nullable LongSparseLongArray mProxyUids;
421 private @Nullable LongSparseArray<String> mProxyPackageNames;
422
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700423 int startNesting;
424 long startRealtime;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800425
Svet Ganovaf189e32019-02-15 18:45:29 -0800426 Op(UidState uidState, String packageName, int op) {
427 this.op = op;
428 this.uidState = uidState;
429 this.packageName = packageName;
430 this.mode = AppOpsManager.opToDefaultMode(op);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700431 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700432
433 int getMode() {
Svet Ganovaf189e32019-02-15 18:45:29 -0800434 return mode;
435 }
436
437 int evalMode() {
438 return uidState.evalMode(op, mode);
439 }
440
441 /** @hide */
442 public void accessed(long time, int proxyUid, @Nullable String proxyPackageName,
443 @AppOpsManager.UidState int uidState, @OpFlags int flags) {
444 final long key = AppOpsManager.makeKey(uidState, flags);
445 if (mAccessTimes == null) {
446 mAccessTimes = new LongSparseLongArray();
447 }
448 mAccessTimes.put(key, time);
449 updateProxyState(key, proxyUid, proxyPackageName);
450 if (mDurations != null) {
451 mDurations.delete(key);
452 }
453 }
454
455 /** @hide */
456 public void rejected(long time, int proxyUid, @Nullable String proxyPackageName,
457 @AppOpsManager.UidState int uidState, @OpFlags int flags) {
458 final long key = AppOpsManager.makeKey(uidState, flags);
459 if (mRejectTimes == null) {
460 mRejectTimes = new LongSparseLongArray();
461 }
462 mRejectTimes.put(key, time);
463 updateProxyState(key, proxyUid, proxyPackageName);
464 if (mDurations != null) {
465 mDurations.delete(key);
466 }
467 }
468
469 /** @hide */
470 public void started(long time, @AppOpsManager.UidState int uidState, @OpFlags int flags) {
471 updateAccessTimeAndDuration(time, -1 /*duration*/, uidState, flags);
472 running = true;
473 }
474
475 /** @hide */
476 public void finished(long time, long duration, @AppOpsManager.UidState int uidState,
477 @OpFlags int flags) {
478 updateAccessTimeAndDuration(time, duration, uidState, flags);
479 running = false;
480 }
481
482 /** @hide */
483 public void running(long time, long duration, @AppOpsManager.UidState int uidState,
484 @OpFlags int flags) {
485 updateAccessTimeAndDuration(time, duration, uidState, flags);
486 }
487
488 /** @hide */
489 public void continuing(long duration, @AppOpsManager.UidState int uidState,
490 @OpFlags int flags) {
491 final long key = AppOpsManager.makeKey(uidState, flags);
492 if (mDurations == null) {
493 mDurations = new LongSparseLongArray();
494 }
495 mDurations.put(key, duration);
496 }
497
498 private void updateAccessTimeAndDuration(long time, long duration,
499 @AppOpsManager.UidState int uidState, @OpFlags int flags) {
500 final long key = AppOpsManager.makeKey(uidState, flags);
501 if (mAccessTimes == null) {
502 mAccessTimes = new LongSparseLongArray();
503 }
504 mAccessTimes.put(key, time);
505 if (mDurations == null) {
506 mDurations = new LongSparseLongArray();
507 }
508 mDurations.put(key, duration);
509 }
510
511 private void updateProxyState(long key, int proxyUid,
512 @Nullable String proxyPackageName) {
513 if (mProxyUids == null) {
514 mProxyUids = new LongSparseLongArray();
515 }
516 mProxyUids.put(key, proxyUid);
517 if (mProxyPackageNames == null) {
518 mProxyPackageNames = new LongSparseArray<>();
519 }
520 mProxyPackageNames.put(key, proxyPackageName);
521 }
522
523 boolean hasAnyTime() {
524 return (mAccessTimes != null && mAccessTimes.size() > 0)
525 || (mRejectTimes != null && mRejectTimes.size() > 0);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700526 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800527 }
528
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800529 final SparseArray<ArraySet<ModeCallback>> mOpModeWatchers = new SparseArray<>();
530 final ArrayMap<String, ArraySet<ModeCallback>> mPackageModeWatchers = new ArrayMap<>();
531 final ArrayMap<IBinder, ModeCallback> mModeWatchers = new ArrayMap<>();
532 final ArrayMap<IBinder, SparseArray<ActiveCallback>> mActiveWatchers = new ArrayMap<>();
Svet Ganovb3d2ae22018-12-17 22:06:15 -0800533 final ArrayMap<IBinder, SparseArray<NotedCallback>> mNotedWatchers = new ArrayMap<>();
Dianne Hackborn68d76552017-02-27 15:32:03 -0800534 final SparseArray<SparseArray<Restriction>> mAudioRestrictions = new SparseArray<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -0800535
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700536 final class ModeCallback implements DeathRecipient {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800537 final IAppOpsCallback mCallback;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700538 final int mWatchingUid;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700539 final int mFlags;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700540 final int mCallingUid;
541 final int mCallingPid;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800542
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700543 ModeCallback(IAppOpsCallback callback, int watchingUid, int flags, int callingUid,
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700544 int callingPid) {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800545 mCallback = callback;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700546 mWatchingUid = watchingUid;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700547 mFlags = flags;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700548 mCallingUid = callingUid;
549 mCallingPid = callingPid;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800550 try {
551 mCallback.asBinder().linkToDeath(this, 0);
552 } catch (RemoteException e) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -0800553 /*ignored*/
Dianne Hackbornc2293022013-02-06 23:14:49 -0800554 }
555 }
556
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700557 public boolean isWatchingUid(int uid) {
558 return uid == UID_ANY || mWatchingUid < 0 || mWatchingUid == uid;
559 }
560
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700561 @Override
562 public String toString() {
563 StringBuilder sb = new StringBuilder(128);
564 sb.append("ModeCallback{");
565 sb.append(Integer.toHexString(System.identityHashCode(this)));
566 sb.append(" watchinguid=");
567 UserHandle.formatUid(sb, mWatchingUid);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700568 sb.append(" flags=0x");
569 sb.append(Integer.toHexString(mFlags));
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700570 sb.append(" from uid=");
571 UserHandle.formatUid(sb, mCallingUid);
572 sb.append(" pid=");
573 sb.append(mCallingPid);
574 sb.append('}');
575 return sb.toString();
576 }
577
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700578 void unlinkToDeath() {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800579 mCallback.asBinder().unlinkToDeath(this, 0);
580 }
581
582 @Override
583 public void binderDied() {
584 stopWatchingMode(mCallback);
585 }
586 }
587
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700588 final class ActiveCallback implements DeathRecipient {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800589 final IAppOpsActiveCallback mCallback;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700590 final int mWatchingUid;
591 final int mCallingUid;
592 final int mCallingPid;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800593
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700594 ActiveCallback(IAppOpsActiveCallback callback, int watchingUid, int callingUid,
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700595 int callingPid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800596 mCallback = callback;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700597 mWatchingUid = watchingUid;
598 mCallingUid = callingUid;
599 mCallingPid = callingPid;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800600 try {
601 mCallback.asBinder().linkToDeath(this, 0);
602 } catch (RemoteException e) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -0800603 /*ignored*/
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800604 }
605 }
606
Dianne Hackborn3b563fc2018-04-16 17:17:14 -0700607 @Override
608 public String toString() {
609 StringBuilder sb = new StringBuilder(128);
610 sb.append("ActiveCallback{");
611 sb.append(Integer.toHexString(System.identityHashCode(this)));
612 sb.append(" watchinguid=");
613 UserHandle.formatUid(sb, mWatchingUid);
614 sb.append(" from uid=");
615 UserHandle.formatUid(sb, mCallingUid);
616 sb.append(" pid=");
617 sb.append(mCallingPid);
618 sb.append('}');
619 return sb.toString();
620 }
621
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700622 void destroy() {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800623 mCallback.asBinder().unlinkToDeath(this, 0);
624 }
625
626 @Override
627 public void binderDied() {
628 stopWatchingActive(mCallback);
629 }
630 }
631
Svet Ganovb3d2ae22018-12-17 22:06:15 -0800632 final class NotedCallback implements DeathRecipient {
633 final IAppOpsNotedCallback mCallback;
634 final int mWatchingUid;
635 final int mCallingUid;
636 final int mCallingPid;
637
638 NotedCallback(IAppOpsNotedCallback callback, int watchingUid, int callingUid,
639 int callingPid) {
640 mCallback = callback;
641 mWatchingUid = watchingUid;
642 mCallingUid = callingUid;
643 mCallingPid = callingPid;
644 try {
645 mCallback.asBinder().linkToDeath(this, 0);
646 } catch (RemoteException e) {
647 /*ignored*/
648 }
649 }
650
651 @Override
652 public String toString() {
653 StringBuilder sb = new StringBuilder(128);
654 sb.append("NotedCallback{");
655 sb.append(Integer.toHexString(System.identityHashCode(this)));
656 sb.append(" watchinguid=");
657 UserHandle.formatUid(sb, mWatchingUid);
658 sb.append(" from uid=");
659 UserHandle.formatUid(sb, mCallingUid);
660 sb.append(" pid=");
661 sb.append(mCallingPid);
662 sb.append('}');
663 return sb.toString();
664 }
665
666 void destroy() {
667 mCallback.asBinder().unlinkToDeath(this, 0);
668 }
669
670 @Override
671 public void binderDied() {
672 stopWatchingNoted(mCallback);
673 }
674 }
675
Svet Ganova7a0db62018-02-27 20:08:01 -0800676 final ArrayMap<IBinder, ClientState> mClients = new ArrayMap<>();
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700677
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700678 final class ClientState extends Binder implements DeathRecipient {
Svet Ganovf7b47252018-02-26 11:11:27 -0800679 final ArrayList<Op> mStartedOps = new ArrayList<>();
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700680 final IBinder mAppToken;
681 final int mPid;
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700682
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700683 ClientState(IBinder appToken) {
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700684 mAppToken = appToken;
685 mPid = Binder.getCallingPid();
Svet Ganovf7b47252018-02-26 11:11:27 -0800686 // Watch only for remote processes dying
687 if (!(appToken instanceof Binder)) {
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700688 try {
689 mAppToken.linkToDeath(this, 0);
690 } catch (RemoteException e) {
Svet Ganovf7b47252018-02-26 11:11:27 -0800691 /* do nothing */
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700692 }
693 }
694 }
695
696 @Override
697 public String toString() {
698 return "ClientState{" +
699 "mAppToken=" + mAppToken +
Svet Ganovf7b47252018-02-26 11:11:27 -0800700 ", " + "pid=" + mPid +
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700701 '}';
702 }
703
704 @Override
705 public void binderDied() {
706 synchronized (AppOpsService.this) {
707 for (int i=mStartedOps.size()-1; i>=0; i--) {
Svet Ganova7a0db62018-02-27 20:08:01 -0800708 finishOperationLocked(mStartedOps.get(i), /*finishNested*/ true);
Dianne Hackborne98f5db2013-07-17 17:23:25 -0700709 }
710 mClients.remove(mAppToken);
711 }
712 }
713 }
714
Jeff Brown6f357d32014-01-15 20:40:55 -0800715 public AppOpsService(File storagePath, Handler handler) {
Jeff Sharkey5f3e9342017-03-13 14:53:11 -0600716 LockGuard.installLock(this, LockGuard.INDEX_APP_OPS);
Dianne Hackborne17b4452018-01-10 13:15:40 -0800717 mFile = new AtomicFile(storagePath, "appops");
Jeff Brown6f357d32014-01-15 20:40:55 -0800718 mHandler = handler;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700719 mConstants = new Constants(mHandler);
Dianne Hackborn35654b62013-01-14 17:38:02 -0800720 readState();
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800721 }
David Braunf5d83192013-09-16 13:43:51 -0700722
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800723 public void publish(Context context) {
724 mContext = context;
725 ServiceManager.addService(Context.APP_OPS_SERVICE, asBinder());
Dianne Hackbornd5254412018-05-11 18:02:58 -0700726 LocalServices.addService(AppOpsManagerInternal.class, mAppOpsManagerInternal);
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800727 }
728
Dianne Hackborn514074f2013-02-11 10:52:46 -0800729 public void systemReady() {
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700730 mConstants.startMonitoring(mContext.getContentResolver());
Svet Ganov8455ba22019-01-02 13:05:56 -0800731 mHistoricalRegistry.systemReady(mContext.getContentResolver());
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700732
Dianne Hackborn514074f2013-02-11 10:52:46 -0800733 synchronized (this) {
734 boolean changed = false;
Svet Ganov2af57082015-07-30 08:44:20 -0700735 for (int i = mUidStates.size() - 1; i >= 0; i--) {
736 UidState uidState = mUidStates.valueAt(i);
737
738 String[] packageNames = getPackagesForUid(uidState.uid);
739 if (ArrayUtils.isEmpty(packageNames)) {
740 uidState.clear();
741 mUidStates.removeAt(i);
742 changed = true;
743 continue;
744 }
745
746 ArrayMap<String, Ops> pkgs = uidState.pkgOps;
747 if (pkgs == null) {
748 continue;
749 }
750
Dianne Hackborn514074f2013-02-11 10:52:46 -0800751 Iterator<Ops> it = pkgs.values().iterator();
752 while (it.hasNext()) {
753 Ops ops = it.next();
Jeff Sharkeye2ed23e2015-10-29 19:00:44 -0700754 int curUid = -1;
Dianne Hackborn514074f2013-02-11 10:52:46 -0800755 try {
Jeff Sharkeycd654482016-01-08 17:42:11 -0700756 curUid = AppGlobals.getPackageManager().getPackageUid(ops.packageName,
757 PackageManager.MATCH_UNINSTALLED_PACKAGES,
Svet Ganov2af57082015-07-30 08:44:20 -0700758 UserHandle.getUserId(ops.uidState.uid));
Jeff Sharkeye2ed23e2015-10-29 19:00:44 -0700759 } catch (RemoteException ignored) {
Dianne Hackborn514074f2013-02-11 10:52:46 -0800760 }
Svet Ganov2af57082015-07-30 08:44:20 -0700761 if (curUid != ops.uidState.uid) {
Dianne Hackborn514074f2013-02-11 10:52:46 -0800762 Slog.i(TAG, "Pruning old package " + ops.packageName
Svet Ganov2af57082015-07-30 08:44:20 -0700763 + "/" + ops.uidState + ": new uid=" + curUid);
Dianne Hackborn514074f2013-02-11 10:52:46 -0800764 it.remove();
765 changed = true;
766 }
767 }
Svet Ganov2af57082015-07-30 08:44:20 -0700768
769 if (uidState.isDefault()) {
770 mUidStates.removeAt(i);
Dianne Hackborn514074f2013-02-11 10:52:46 -0800771 }
772 }
773 if (changed) {
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800774 scheduleFastWriteLocked();
Dianne Hackborn514074f2013-02-11 10:52:46 -0800775 }
776 }
Svet Ganov6ee871e2015-07-10 14:29:33 -0700777
Suprabh Shukla3017fe42018-11-08 19:00:01 -0800778 final IntentFilter packageSuspendFilter = new IntentFilter();
779 packageSuspendFilter.addAction(Intent.ACTION_PACKAGES_UNSUSPENDED);
780 packageSuspendFilter.addAction(Intent.ACTION_PACKAGES_SUSPENDED);
781 mContext.registerReceiver(new BroadcastReceiver() {
782 @Override
783 public void onReceive(Context context, Intent intent) {
784 final int[] changedUids = intent.getIntArrayExtra(Intent.EXTRA_CHANGED_UID_LIST);
785 final String[] changedPkgs = intent.getStringArrayExtra(
786 Intent.EXTRA_CHANGED_PACKAGE_LIST);
Dianne Hackbornb298b352019-04-04 11:01:41 -0700787 ArraySet<ModeCallback> callbacks;
788 synchronized (AppOpsService.this) {
789 callbacks = mOpModeWatchers.get(OP_PLAY_AUDIO);
790 if (callbacks == null) {
791 return;
792 }
793 callbacks = new ArraySet<>(callbacks);
794 }
Suprabh Shukla3017fe42018-11-08 19:00:01 -0800795 for (int i = 0; i < changedUids.length; i++) {
796 final int changedUid = changedUids[i];
797 final String changedPkg = changedPkgs[i];
Dianne Hackbornb298b352019-04-04 11:01:41 -0700798 // We trust packagemanager to insert matching uid and packageNames in the
799 // extras
800 notifyOpChanged(callbacks, OP_PLAY_AUDIO, changedUid, changedPkg);
Suprabh Shukla3017fe42018-11-08 19:00:01 -0800801 }
802 }
803 }, packageSuspendFilter);
804
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800805 PackageManagerInternal packageManagerInternal = LocalServices.getService(
806 PackageManagerInternal.class);
807 packageManagerInternal.setExternalSourcesPolicy(
808 new PackageManagerInternal.ExternalSourcesPolicy() {
809 @Override
810 public int getPackageTrustedToInstallApps(String packageName, int uid) {
811 int appOpMode = checkOperation(AppOpsManager.OP_REQUEST_INSTALL_PACKAGES,
812 uid, packageName);
813 switch (appOpMode) {
814 case AppOpsManager.MODE_ALLOWED:
815 return PackageManagerInternal.ExternalSourcesPolicy.USER_TRUSTED;
816 case AppOpsManager.MODE_ERRORED:
817 return PackageManagerInternal.ExternalSourcesPolicy.USER_BLOCKED;
818 default:
819 return PackageManagerInternal.ExternalSourcesPolicy.USER_DEFAULT;
820 }
821 }
822 });
823
Jeff Sharkey10ec9d82018-11-28 14:52:45 -0700824 if (!StorageManager.hasIsolatedStorage()) {
Sudheer Shanka98cb3f02018-08-17 16:10:29 -0700825 StorageManagerInternal storageManagerInternal = LocalServices.getService(
826 StorageManagerInternal.class);
827 storageManagerInternal.addExternalStoragePolicy(
828 new StorageManagerInternal.ExternalStorageMountPolicy() {
829 @Override
830 public int getMountMode(int uid, String packageName) {
831 if (Process.isIsolated(uid)) {
832 return Zygote.MOUNT_EXTERNAL_NONE;
833 }
834 if (noteOperation(AppOpsManager.OP_READ_EXTERNAL_STORAGE, uid,
835 packageName) != AppOpsManager.MODE_ALLOWED) {
836 return Zygote.MOUNT_EXTERNAL_NONE;
837 }
838 if (noteOperation(AppOpsManager.OP_WRITE_EXTERNAL_STORAGE, uid,
839 packageName) != AppOpsManager.MODE_ALLOWED) {
840 return Zygote.MOUNT_EXTERNAL_READ;
841 }
842 return Zygote.MOUNT_EXTERNAL_WRITE;
Svet Ganov6ee871e2015-07-10 14:29:33 -0700843 }
Svet Ganov6ee871e2015-07-10 14:29:33 -0700844
Sudheer Shanka98cb3f02018-08-17 16:10:29 -0700845 @Override
846 public boolean hasExternalStorage(int uid, String packageName) {
847 final int mountMode = getMountMode(uid, packageName);
848 return mountMode == Zygote.MOUNT_EXTERNAL_READ
849 || mountMode == Zygote.MOUNT_EXTERNAL_WRITE;
850 }
851 });
852 }
Dianne Hackborn514074f2013-02-11 10:52:46 -0800853 }
854
855 public void packageRemoved(int uid, String packageName) {
856 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -0700857 UidState uidState = mUidStates.get(uid);
858 if (uidState == null) {
859 return;
860 }
861
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800862 Ops ops = null;
Svet Ganov2af57082015-07-30 08:44:20 -0700863
864 // Remove any package state if such.
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800865 if (uidState.pkgOps != null) {
866 ops = uidState.pkgOps.remove(packageName);
Svet Ganov2af57082015-07-30 08:44:20 -0700867 }
868
869 // If we just nuked the last package state check if the UID is valid.
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800870 if (ops != null && uidState.pkgOps.isEmpty()
Svet Ganov2af57082015-07-30 08:44:20 -0700871 && getPackagesForUid(uid).length <= 0) {
872 mUidStates.remove(uid);
873 }
874
Svet Ganova7a0db62018-02-27 20:08:01 -0800875 // Finish ops other packages started on behalf of the package.
876 final int clientCount = mClients.size();
877 for (int i = 0; i < clientCount; i++) {
878 final ClientState client = mClients.valueAt(i);
879 if (client.mStartedOps == null) {
880 continue;
881 }
882 final int opCount = client.mStartedOps.size();
883 for (int j = opCount - 1; j >= 0; j--) {
884 final Op op = client.mStartedOps.get(j);
Svet Ganovaf189e32019-02-15 18:45:29 -0800885 if (uid == op.uidState.uid && packageName.equals(op.packageName)) {
Svet Ganova7a0db62018-02-27 20:08:01 -0800886 finishOperationLocked(op, /*finishNested*/ true);
887 client.mStartedOps.remove(j);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700888 if (op.startNesting <= 0) {
Svet Ganova7a0db62018-02-27 20:08:01 -0800889 scheduleOpActiveChangedIfNeededLocked(op.op,
890 uid, packageName, false);
891 }
892 }
893 }
894 }
895
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800896 if (ops != null) {
Svet Ganov2af57082015-07-30 08:44:20 -0700897 scheduleFastWriteLocked();
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800898
899 final int opCount = ops.size();
900 for (int i = 0; i < opCount; i++) {
901 final Op op = ops.valueAt(i);
Svet Ganovaf189e32019-02-15 18:45:29 -0800902 if (op.running) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800903 scheduleOpActiveChangedIfNeededLocked(
Svet Ganovaf189e32019-02-15 18:45:29 -0800904 op.op, op.uidState.uid, op.packageName, false);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800905 }
906 }
Dianne Hackborn514074f2013-02-11 10:52:46 -0800907 }
908 }
909 }
910
911 public void uidRemoved(int uid) {
912 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -0700913 if (mUidStates.indexOfKey(uid) >= 0) {
914 mUidStates.remove(uid);
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800915 scheduleFastWriteLocked();
Dianne Hackborn514074f2013-02-11 10:52:46 -0800916 }
917 }
918 }
919
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700920 public void updateUidProcState(int uid, int procState) {
921 synchronized (this) {
922 final UidState uidState = getUidStateLocked(uid, true);
Amith Yamasania0a30a12019-01-22 11:38:06 -0800923 int newState = PROCESS_STATE_TO_UID_STATE[procState];
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700924 if (uidState != null && uidState.pendingState != newState) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700925 final int oldPendingState = uidState.pendingState;
926 uidState.pendingState = newState;
Svet Ganovaf189e32019-02-15 18:45:29 -0800927 if (newState < uidState.state || newState <= UID_STATE_MAX_LAST_NON_RESTRICTED) {
Dianne Hackborne93ab412018-05-14 17:52:30 -0700928 // We are moving to a more important state, or the new state is in the
929 // foreground, then always do it immediately.
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700930 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700931 } else if (uidState.pendingStateCommitTime == 0) {
932 // We are moving to a less important state for the first time,
933 // delay the application for a bit.
Dianne Hackborne93ab412018-05-14 17:52:30 -0700934 final long settleTime;
935 if (uidState.state <= UID_STATE_TOP) {
936 settleTime = mConstants.TOP_STATE_SETTLE_TIME;
937 } else if (uidState.state <= UID_STATE_FOREGROUND_SERVICE) {
938 settleTime = mConstants.FG_SERVICE_STATE_SETTLE_TIME;
939 } else {
940 settleTime = mConstants.BG_STATE_SETTLE_TIME;
941 }
Dianne Hackborn9fb93502018-06-18 12:29:44 -0700942 uidState.pendingStateCommitTime = SystemClock.elapsedRealtime() + settleTime;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700943 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700944 if (uidState.startNesting != 0) {
945 // There is some actively running operation... need to find it
946 // and appropriately update its state.
947 final long now = System.currentTimeMillis();
948 for (int i = uidState.pkgOps.size() - 1; i >= 0; i--) {
949 final Ops ops = uidState.pkgOps.valueAt(i);
950 for (int j = ops.size() - 1; j >= 0; j--) {
951 final Op op = ops.valueAt(j);
952 if (op.startNesting > 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -0800953 final long duration = SystemClock.elapsedRealtime()
954 - op.startRealtime;
955 // We don't support proxy long running ops (start/stop)
956 mHistoricalRegistry.increaseOpAccessDuration(op.op,
957 op.uidState.uid, op.packageName, oldPendingState,
958 AppOpsManager.OP_FLAG_SELF, duration);
959 // Finish the op in the old state
960 op.finished(now, duration, oldPendingState,
961 AppOpsManager.OP_FLAG_SELF);
962 // Start the op in the new state
963 op.startRealtime = now;
964 op.started(now, newState, AppOpsManager.OP_FLAG_SELF);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700965 }
966 }
967 }
968 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700969 }
970 }
971 }
972
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800973 public void shutdown() {
974 Slog.w(TAG, "Writing app ops before shutdown...");
Dianne Hackborn35654b62013-01-14 17:38:02 -0800975 boolean doWrite = false;
976 synchronized (this) {
977 if (mWriteScheduled) {
978 mWriteScheduled = false;
979 doWrite = true;
980 }
981 }
982 if (doWrite) {
983 writeState();
984 }
985 }
986
Dianne Hackborn72e39832013-01-18 18:36:09 -0800987 private ArrayList<AppOpsManager.OpEntry> collectOps(Ops pkgOps, int[] ops) {
988 ArrayList<AppOpsManager.OpEntry> resOps = null;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700989 final long elapsedNow = SystemClock.elapsedRealtime();
Dianne Hackborn72e39832013-01-18 18:36:09 -0800990 if (ops == null) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700991 resOps = new ArrayList<>();
Dianne Hackborn72e39832013-01-18 18:36:09 -0800992 for (int j=0; j<pkgOps.size(); j++) {
993 Op curOp = pkgOps.valueAt(j);
Svet Ganovaf189e32019-02-15 18:45:29 -0800994 resOps.add(getOpEntryForResult(curOp, elapsedNow));
Dianne Hackborn72e39832013-01-18 18:36:09 -0800995 }
996 } else {
997 for (int j=0; j<ops.length; j++) {
998 Op curOp = pkgOps.get(ops[j]);
999 if (curOp != null) {
1000 if (resOps == null) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001001 resOps = new ArrayList<>();
Dianne Hackborn72e39832013-01-18 18:36:09 -08001002 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001003 resOps.add(getOpEntryForResult(curOp, elapsedNow));
Dianne Hackborn72e39832013-01-18 18:36:09 -08001004 }
1005 }
1006 }
1007 return resOps;
1008 }
1009
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001010 private ArrayList<AppOpsManager.OpEntry> collectOps(SparseIntArray uidOps, int[] ops) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08001011 if (uidOps == null) {
1012 return null;
1013 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001014 ArrayList<AppOpsManager.OpEntry> resOps = null;
1015 if (ops == null) {
1016 resOps = new ArrayList<>();
1017 for (int j=0; j<uidOps.size(); j++) {
Svet Ganovaf189e32019-02-15 18:45:29 -08001018 resOps.add(new OpEntry(uidOps.keyAt(j), uidOps.valueAt(j)));
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001019 }
1020 } else {
1021 for (int j=0; j<ops.length; j++) {
1022 int index = uidOps.indexOfKey(ops[j]);
1023 if (index >= 0) {
1024 if (resOps == null) {
1025 resOps = new ArrayList<>();
1026 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001027 resOps.add(new OpEntry(uidOps.keyAt(j), uidOps.valueAt(j)));
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001028 }
1029 }
1030 }
1031 return resOps;
1032 }
1033
Svet Ganovaf189e32019-02-15 18:45:29 -08001034 private static @NonNull OpEntry getOpEntryForResult(@NonNull Op op, long elapsedNow) {
1035 if (op.running) {
1036 op.continuing(elapsedNow - op.startRealtime,
1037 op.uidState.state, AppOpsManager.OP_FLAG_SELF);
1038 }
1039 final OpEntry entry = new OpEntry(op.op, op.running, op.mode,
1040 op.mAccessTimes != null ? op.mAccessTimes.clone() : null,
1041 op.mRejectTimes != null ? op.mRejectTimes.clone() : null,
1042 op.mDurations != null ? op.mDurations.clone() : null,
1043 op.mProxyUids != null ? op.mProxyUids.clone() : null,
1044 op.mProxyPackageNames != null ? op.mProxyPackageNames.clone() : null);
1045 return entry;
1046 }
1047
Dianne Hackborn35654b62013-01-14 17:38:02 -08001048 @Override
1049 public List<AppOpsManager.PackageOps> getPackagesForOps(int[] ops) {
1050 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1051 Binder.getCallingPid(), Binder.getCallingUid(), null);
1052 ArrayList<AppOpsManager.PackageOps> res = null;
1053 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001054 final int uidStateCount = mUidStates.size();
1055 for (int i = 0; i < uidStateCount; i++) {
1056 UidState uidState = mUidStates.valueAt(i);
1057 if (uidState.pkgOps == null || uidState.pkgOps.isEmpty()) {
1058 continue;
1059 }
1060 ArrayMap<String, Ops> packages = uidState.pkgOps;
1061 final int packageCount = packages.size();
1062 for (int j = 0; j < packageCount; j++) {
1063 Ops pkgOps = packages.valueAt(j);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001064 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(pkgOps, ops);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001065 if (resOps != null) {
1066 if (res == null) {
1067 res = new ArrayList<AppOpsManager.PackageOps>();
1068 }
1069 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
Svet Ganov2af57082015-07-30 08:44:20 -07001070 pkgOps.packageName, pkgOps.uidState.uid, resOps);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001071 res.add(resPackage);
1072 }
1073 }
1074 }
1075 }
1076 return res;
1077 }
1078
1079 @Override
Dianne Hackborn72e39832013-01-18 18:36:09 -08001080 public List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName,
1081 int[] ops) {
1082 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1083 Binder.getCallingPid(), Binder.getCallingUid(), null);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001084 String resolvedPackageName = resolvePackageName(uid, packageName);
1085 if (resolvedPackageName == null) {
1086 return Collections.emptyList();
1087 }
Dianne Hackborn72e39832013-01-18 18:36:09 -08001088 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001089 Ops pkgOps = getOpsRawLocked(uid, resolvedPackageName, false /* edit */,
1090 false /* uidMismatchExpected */);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001091 if (pkgOps == null) {
1092 return null;
1093 }
1094 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(pkgOps, ops);
1095 if (resOps == null) {
1096 return null;
1097 }
1098 ArrayList<AppOpsManager.PackageOps> res = new ArrayList<AppOpsManager.PackageOps>();
1099 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
Svet Ganov2af57082015-07-30 08:44:20 -07001100 pkgOps.packageName, pkgOps.uidState.uid, resOps);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001101 res.add(resPackage);
1102 return res;
1103 }
1104 }
1105
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001106 @Override
Svet Ganov8455ba22019-01-02 13:05:56 -08001107 public void getHistoricalOps(int uid, @NonNull String packageName,
Svet Ganov23c88db2019-01-22 20:38:11 -08001108 @Nullable List<String> opNames, long beginTimeMillis, long endTimeMillis,
Svet Ganovaf189e32019-02-15 18:45:29 -08001109 @OpFlags int flags, @NonNull RemoteCallback callback) {
Svet Ganov23c88db2019-01-22 20:38:11 -08001110 // Use the builder to validate arguments.
Svet Ganovaf189e32019-02-15 18:45:29 -08001111 new HistoricalOpsRequest.Builder(
Svet Ganov23c88db2019-01-22 20:38:11 -08001112 beginTimeMillis, endTimeMillis)
1113 .setUid(uid)
1114 .setPackageName(packageName)
1115 .setOpNames(opNames)
Svet Ganovaf189e32019-02-15 18:45:29 -08001116 .setFlags(flags)
Svet Ganov23c88db2019-01-22 20:38:11 -08001117 .build();
Svet Ganov8455ba22019-01-02 13:05:56 -08001118 Preconditions.checkNotNull(callback, "callback cannot be null");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001119
1120 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
Svet Ganov8455ba22019-01-02 13:05:56 -08001121 Binder.getCallingPid(), Binder.getCallingUid(), "getHistoricalOps");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001122
Svet Ganov23c88db2019-01-22 20:38:11 -08001123 final String[] opNamesArray = (opNames != null)
1124 ? opNames.toArray(new String[opNames.size()]) : null;
Svet Ganovad0a49b2018-10-29 10:07:08 -07001125
Svet Ganovaf189e32019-02-15 18:45:29 -08001126 // Must not hold the appops lock
1127 mHistoricalRegistry.getHistoricalOps(uid, packageName, opNamesArray,
1128 beginTimeMillis, endTimeMillis, flags, callback);
Svet Ganovad0a49b2018-10-29 10:07:08 -07001129 }
1130
1131 @Override
Svet Ganov8455ba22019-01-02 13:05:56 -08001132 public void getHistoricalOpsFromDiskRaw(int uid, @NonNull String packageName,
Svet Ganov23c88db2019-01-22 20:38:11 -08001133 @Nullable List<String> opNames, long beginTimeMillis, long endTimeMillis,
Svet Ganovaf189e32019-02-15 18:45:29 -08001134 @OpFlags int flags, @NonNull RemoteCallback callback) {
Svet Ganov23c88db2019-01-22 20:38:11 -08001135 // Use the builder to validate arguments.
Svet Ganovaf189e32019-02-15 18:45:29 -08001136 new HistoricalOpsRequest.Builder(
Svet Ganov23c88db2019-01-22 20:38:11 -08001137 beginTimeMillis, endTimeMillis)
1138 .setUid(uid)
1139 .setPackageName(packageName)
1140 .setOpNames(opNames)
Svet Ganovaf189e32019-02-15 18:45:29 -08001141 .setFlags(flags)
Svet Ganov23c88db2019-01-22 20:38:11 -08001142 .build();
Svet Ganov8455ba22019-01-02 13:05:56 -08001143 Preconditions.checkNotNull(callback, "callback cannot be null");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001144
Svet Ganov8e5bf962019-03-19 23:59:03 -07001145 mContext.enforcePermission(Manifest.permission.MANAGE_APPOPS,
Svet Ganov8455ba22019-01-02 13:05:56 -08001146 Binder.getCallingPid(), Binder.getCallingUid(), "getHistoricalOps");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001147
Svet Ganov23c88db2019-01-22 20:38:11 -08001148 final String[] opNamesArray = (opNames != null)
1149 ? opNames.toArray(new String[opNames.size()]) : null;
1150
Svet Ganov8455ba22019-01-02 13:05:56 -08001151 // Must not hold the appops lock
Svet Ganov23c88db2019-01-22 20:38:11 -08001152 mHistoricalRegistry.getHistoricalOpsFromDiskRaw(uid, packageName, opNamesArray,
Svet Ganovaf189e32019-02-15 18:45:29 -08001153 beginTimeMillis, endTimeMillis, flags, callback);
Svet Ganovad0a49b2018-10-29 10:07:08 -07001154 }
1155
1156 @Override
Svet Ganov8e5bf962019-03-19 23:59:03 -07001157 public void reloadNonHistoricalState() {
1158 mContext.enforcePermission(Manifest.permission.MANAGE_APPOPS,
1159 Binder.getCallingPid(), Binder.getCallingUid(), "reloadNonHistoricalState");
1160 writeState();
1161 readState();
1162 }
1163
1164 @Override
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001165 public List<AppOpsManager.PackageOps> getUidOps(int uid, int[] ops) {
1166 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1167 Binder.getCallingPid(), Binder.getCallingUid(), null);
1168 synchronized (this) {
1169 UidState uidState = getUidStateLocked(uid, false);
1170 if (uidState == null) {
1171 return null;
1172 }
1173 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(uidState.opModes, ops);
1174 if (resOps == null) {
1175 return null;
1176 }
1177 ArrayList<AppOpsManager.PackageOps> res = new ArrayList<AppOpsManager.PackageOps>();
1178 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
1179 null, uidState.uid, resOps);
1180 res.add(resPackage);
1181 return res;
1182 }
1183 }
1184
Dianne Hackborn607b4142013-08-02 18:10:10 -07001185 private void pruneOp(Op op, int uid, String packageName) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001186 if (!op.hasAnyTime()) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001187 Ops ops = getOpsRawLocked(uid, packageName, false /* edit */,
1188 false /* uidMismatchExpected */);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001189 if (ops != null) {
1190 ops.remove(op.op);
1191 if (ops.size() <= 0) {
Svet Ganov2af57082015-07-30 08:44:20 -07001192 UidState uidState = ops.uidState;
1193 ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
Dianne Hackborn607b4142013-08-02 18:10:10 -07001194 if (pkgOps != null) {
1195 pkgOps.remove(ops.packageName);
Svet Ganov2af57082015-07-30 08:44:20 -07001196 if (pkgOps.isEmpty()) {
1197 uidState.pkgOps = null;
1198 }
1199 if (uidState.isDefault()) {
1200 mUidStates.remove(uid);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001201 }
1202 }
1203 }
1204 }
1205 }
1206 }
1207
Svet Ganovaf189e32019-02-15 18:45:29 -08001208 private void enforceManageAppOpsModes(int callingPid, int callingUid, int targetUid) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001209 if (callingPid == Process.myPid()) {
1210 return;
1211 }
1212 final int callingUser = UserHandle.getUserId(callingUid);
1213 synchronized (this) {
1214 if (mProfileOwners != null && mProfileOwners.get(callingUser, -1) == callingUid) {
1215 if (targetUid >= 0 && callingUser == UserHandle.getUserId(targetUid)) {
1216 // Profile owners are allowed to change modes but only for apps
1217 // within their user.
1218 return;
1219 }
1220 }
1221 }
1222 mContext.enforcePermission(android.Manifest.permission.MANAGE_APP_OPS_MODES,
1223 Binder.getCallingPid(), Binder.getCallingUid(), null);
1224 }
1225
Dianne Hackborn72e39832013-01-18 18:36:09 -08001226 @Override
Svet Ganov2af57082015-07-30 08:44:20 -07001227 public void setUidMode(int code, int uid, int mode) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08001228 if (DEBUG) {
1229 Slog.i(TAG, "uid " + uid + " OP_" + opToName(code) + " := " + modeToName(mode)
1230 + " by uid " + Binder.getCallingUid());
1231 }
1232
Dianne Hackbornd5254412018-05-11 18:02:58 -07001233 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
Svet Ganov2af57082015-07-30 08:44:20 -07001234 verifyIncomingOp(code);
1235 code = AppOpsManager.opToSwitch(code);
1236
1237 synchronized (this) {
1238 final int defaultMode = AppOpsManager.opToDefaultMode(code);
1239
1240 UidState uidState = getUidStateLocked(uid, false);
1241 if (uidState == null) {
1242 if (mode == defaultMode) {
1243 return;
1244 }
1245 uidState = new UidState(uid);
1246 uidState.opModes = new SparseIntArray();
1247 uidState.opModes.put(code, mode);
1248 mUidStates.put(uid, uidState);
1249 scheduleWriteLocked();
1250 } else if (uidState.opModes == null) {
1251 if (mode != defaultMode) {
1252 uidState.opModes = new SparseIntArray();
1253 uidState.opModes.put(code, mode);
1254 scheduleWriteLocked();
1255 }
1256 } else {
Hai Zhang2b98fb32018-09-21 15:18:46 -07001257 if (uidState.opModes.indexOfKey(code) >= 0 && uidState.opModes.get(code) == mode) {
Svet Ganov2af57082015-07-30 08:44:20 -07001258 return;
1259 }
1260 if (mode == defaultMode) {
1261 uidState.opModes.delete(code);
1262 if (uidState.opModes.size() <= 0) {
1263 uidState.opModes = null;
1264 }
1265 } else {
1266 uidState.opModes.put(code, mode);
1267 }
1268 scheduleWriteLocked();
1269 }
Wei Wang711eb662019-03-21 18:24:17 -07001270 uidState.evalForegroundOps(mOpModeWatchers);
Svet Ganov2af57082015-07-30 08:44:20 -07001271 }
1272
Svetoslav215b44a2015-08-04 19:03:40 -07001273 String[] uidPackageNames = getPackagesForUid(uid);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001274 ArrayMap<ModeCallback, ArraySet<String>> callbackSpecs = null;
Svet Ganov2af57082015-07-30 08:44:20 -07001275
riddle_hsu40b300f2015-11-23 13:22:03 +08001276 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001277 ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
Svet Ganov2af57082015-07-30 08:44:20 -07001278 if (callbacks != null) {
Svet Ganov2af57082015-07-30 08:44:20 -07001279 final int callbackCount = callbacks.size();
1280 for (int i = 0; i < callbackCount; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001281 ModeCallback callback = callbacks.valueAt(i);
riddle_hsu40b300f2015-11-23 13:22:03 +08001282 ArraySet<String> changedPackages = new ArraySet<>();
1283 Collections.addAll(changedPackages, uidPackageNames);
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001284 if (callbackSpecs == null) {
1285 callbackSpecs = new ArrayMap<>();
1286 }
riddle_hsu40b300f2015-11-23 13:22:03 +08001287 callbackSpecs.put(callback, changedPackages);
1288 }
1289 }
1290
1291 for (String uidPackageName : uidPackageNames) {
1292 callbacks = mPackageModeWatchers.get(uidPackageName);
1293 if (callbacks != null) {
1294 if (callbackSpecs == null) {
1295 callbackSpecs = new ArrayMap<>();
Svet Ganov2af57082015-07-30 08:44:20 -07001296 }
riddle_hsu40b300f2015-11-23 13:22:03 +08001297 final int callbackCount = callbacks.size();
1298 for (int i = 0; i < callbackCount; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001299 ModeCallback callback = callbacks.valueAt(i);
riddle_hsu40b300f2015-11-23 13:22:03 +08001300 ArraySet<String> changedPackages = callbackSpecs.get(callback);
1301 if (changedPackages == null) {
1302 changedPackages = new ArraySet<>();
1303 callbackSpecs.put(callback, changedPackages);
1304 }
1305 changedPackages.add(uidPackageName);
1306 }
Svet Ganov2af57082015-07-30 08:44:20 -07001307 }
1308 }
1309 }
1310
1311 if (callbackSpecs == null) {
1312 return;
1313 }
1314
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001315 for (int i = 0; i < callbackSpecs.size(); i++) {
1316 final ModeCallback callback = callbackSpecs.keyAt(i);
1317 final ArraySet<String> reportedPackageNames = callbackSpecs.valueAt(i);
1318 if (reportedPackageNames == null) {
1319 mHandler.sendMessage(PooledLambda.obtainMessage(
1320 AppOpsService::notifyOpChanged,
1321 this, callback, code, uid, (String) null));
1322
1323 } else {
1324 final int reportedPackageCount = reportedPackageNames.size();
1325 for (int j = 0; j < reportedPackageCount; j++) {
1326 final String reportedPackageName = reportedPackageNames.valueAt(j);
1327 mHandler.sendMessage(PooledLambda.obtainMessage(
1328 AppOpsService::notifyOpChanged,
1329 this, callback, code, uid, reportedPackageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001330 }
1331 }
Svet Ganov2af57082015-07-30 08:44:20 -07001332 }
1333 }
1334
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001335 /**
1336 * Set all {@link #setMode (package) modes} for this uid to the default value.
1337 *
1338 * @param code The app-op
1339 * @param uid The uid
1340 */
1341 private void setAllPkgModesToDefault(int code, int uid) {
1342 synchronized (this) {
1343 UidState uidState = getUidStateLocked(uid, false);
1344 if (uidState == null) {
1345 return;
1346 }
1347
1348 ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
1349 if (pkgOps == null) {
1350 return;
1351 }
1352
Svet Ganovaf189e32019-02-15 18:45:29 -08001353 boolean scheduleWrite = false;
1354
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001355 int numPkgs = pkgOps.size();
1356 for (int pkgNum = 0; pkgNum < numPkgs; pkgNum++) {
1357 Ops ops = pkgOps.valueAt(pkgNum);
1358
1359 Op op = ops.get(code);
1360 if (op == null) {
1361 continue;
1362 }
1363
1364 int defaultMode = AppOpsManager.opToDefaultMode(code);
1365 if (op.mode != defaultMode) {
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001366 op.mode = defaultMode;
Svet Ganovaf189e32019-02-15 18:45:29 -08001367 scheduleWrite = true;
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001368 }
1369 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001370
1371 if (scheduleWrite) {
1372 scheduleWriteLocked();
1373 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001374 }
1375 }
1376
Svet Ganov2af57082015-07-30 08:44:20 -07001377 @Override
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001378 public void setMode(int code, int uid, String packageName, int mode) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001379 setMode(code, uid, packageName, mode, true, false);
1380 }
1381
1382 /**
1383 * Sets the mode for a certain op and uid.
1384 *
1385 * @param code The op code to set
1386 * @param uid The UID for which to set
1387 * @param packageName The package for which to set
1388 * @param mode The new mode to set
1389 * @param verifyUid Iff {@code true}, check that the package name belongs to the uid
1390 * @param isPrivileged Whether the package is privileged. (Only used if {@code verifyUid ==
1391 * false})
1392 */
1393 private void setMode(int code, int uid, @NonNull String packageName, int mode,
1394 boolean verifyUid, boolean isPrivileged) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001395 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001396 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001397 ArraySet<ModeCallback> repCbs = null;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001398 code = AppOpsManager.opToSwitch(code);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001399 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001400 UidState uidState = getUidStateLocked(uid, false);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001401 Op op = getOpLocked(code, uid, packageName, true, verifyUid, isPrivileged);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001402 if (op != null) {
1403 if (op.mode != mode) {
1404 op.mode = mode;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001405 if (uidState != null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001406 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001407 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001408 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(code);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001409 if (cbs != null) {
1410 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001411 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001412 }
1413 repCbs.addAll(cbs);
1414 }
1415 cbs = mPackageModeWatchers.get(packageName);
1416 if (cbs != null) {
1417 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001418 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001419 }
1420 repCbs.addAll(cbs);
1421 }
David Braunf5d83192013-09-16 13:43:51 -07001422 if (mode == AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborn514074f2013-02-11 10:52:46 -08001423 // If going into the default mode, prune this op
1424 // if there is nothing else interesting in it.
Dianne Hackborn607b4142013-08-02 18:10:10 -07001425 pruneOp(op, uid, packageName);
Dianne Hackborn514074f2013-02-11 10:52:46 -08001426 }
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001427 scheduleFastWriteLocked();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001428 }
1429 }
1430 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001431 if (repCbs != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001432 mHandler.sendMessage(PooledLambda.obtainMessage(
1433 AppOpsService::notifyOpChanged,
1434 this, repCbs, code, uid, packageName));
Dianne Hackbornc2293022013-02-06 23:14:49 -08001435 }
1436 }
1437
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001438 private void notifyOpChanged(ArraySet<ModeCallback> callbacks, int code,
1439 int uid, String packageName) {
1440 for (int i = 0; i < callbacks.size(); i++) {
1441 final ModeCallback callback = callbacks.valueAt(i);
1442 notifyOpChanged(callback, code, uid, packageName);
1443 }
1444 }
1445
1446 private void notifyOpChanged(ModeCallback callback, int code,
1447 int uid, String packageName) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001448 if (uid != UID_ANY && callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001449 return;
1450 }
1451 // There are components watching for mode changes such as window manager
1452 // and location manager which are in our process. The callbacks in these
1453 // components may require permissions our remote caller does not have.
1454 final long identity = Binder.clearCallingIdentity();
1455 try {
1456 callback.mCallback.opChanged(code, uid, packageName);
1457 } catch (RemoteException e) {
1458 /* ignore */
1459 } finally {
1460 Binder.restoreCallingIdentity(identity);
1461 }
1462 }
1463
1464 private static HashMap<ModeCallback, ArrayList<ChangeRec>> addCallbacks(
1465 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks,
1466 int op, int uid, String packageName, ArraySet<ModeCallback> cbs) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001467 if (cbs == null) {
1468 return callbacks;
1469 }
1470 if (callbacks == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001471 callbacks = new HashMap<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001472 }
Svet Ganov2af57082015-07-30 08:44:20 -07001473 boolean duplicate = false;
Dianne Hackborn68d76552017-02-27 15:32:03 -08001474 final int N = cbs.size();
1475 for (int i=0; i<N; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001476 ModeCallback cb = cbs.valueAt(i);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001477 ArrayList<ChangeRec> reports = callbacks.get(cb);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001478 if (reports == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001479 reports = new ArrayList<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001480 callbacks.put(cb, reports);
Svet Ganov2af57082015-07-30 08:44:20 -07001481 } else {
1482 final int reportCount = reports.size();
1483 for (int j = 0; j < reportCount; j++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001484 ChangeRec report = reports.get(j);
1485 if (report.op == op && report.pkg.equals(packageName)) {
Svet Ganov2af57082015-07-30 08:44:20 -07001486 duplicate = true;
1487 break;
1488 }
1489 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001490 }
Svet Ganov2af57082015-07-30 08:44:20 -07001491 if (!duplicate) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001492 reports.add(new ChangeRec(op, uid, packageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001493 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001494 }
1495 return callbacks;
1496 }
1497
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001498 static final class ChangeRec {
1499 final int op;
1500 final int uid;
1501 final String pkg;
1502
1503 ChangeRec(int _op, int _uid, String _pkg) {
1504 op = _op;
1505 uid = _uid;
1506 pkg = _pkg;
1507 }
1508 }
1509
Dianne Hackborn607b4142013-08-02 18:10:10 -07001510 @Override
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001511 public void resetAllModes(int reqUserId, String reqPackageName) {
1512 final int callingPid = Binder.getCallingPid();
1513 final int callingUid = Binder.getCallingUid();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001514 reqUserId = ActivityManager.handleIncomingUser(callingPid, callingUid, reqUserId,
1515 true, true, "resetAllModes", null);
Svet Ganov2af57082015-07-30 08:44:20 -07001516
1517 int reqUid = -1;
1518 if (reqPackageName != null) {
1519 try {
1520 reqUid = AppGlobals.getPackageManager().getPackageUid(
Jeff Sharkeycd654482016-01-08 17:42:11 -07001521 reqPackageName, PackageManager.MATCH_UNINSTALLED_PACKAGES, reqUserId);
Svet Ganov2af57082015-07-30 08:44:20 -07001522 } catch (RemoteException e) {
1523 /* ignore - local call */
1524 }
1525 }
1526
Dianne Hackbornd5254412018-05-11 18:02:58 -07001527 enforceManageAppOpsModes(callingPid, callingUid, reqUid);
1528
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001529 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks = null;
Dianne Hackborn607b4142013-08-02 18:10:10 -07001530 synchronized (this) {
1531 boolean changed = false;
Svet Ganov2af57082015-07-30 08:44:20 -07001532 for (int i = mUidStates.size() - 1; i >= 0; i--) {
1533 UidState uidState = mUidStates.valueAt(i);
1534
1535 SparseIntArray opModes = uidState.opModes;
1536 if (opModes != null && (uidState.uid == reqUid || reqUid == -1)) {
1537 final int uidOpCount = opModes.size();
1538 for (int j = uidOpCount - 1; j >= 0; j--) {
1539 final int code = opModes.keyAt(j);
1540 if (AppOpsManager.opAllowsReset(code)) {
1541 opModes.removeAt(j);
1542 if (opModes.size() <= 0) {
1543 uidState.opModes = null;
1544 }
1545 for (String packageName : getPackagesForUid(uidState.uid)) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001546 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001547 mOpModeWatchers.get(code));
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001548 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001549 mPackageModeWatchers.get(packageName));
1550 }
1551 }
1552 }
1553 }
1554
1555 if (uidState.pkgOps == null) {
1556 continue;
1557 }
1558
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001559 if (reqUserId != UserHandle.USER_ALL
Svet Ganov2af57082015-07-30 08:44:20 -07001560 && reqUserId != UserHandle.getUserId(uidState.uid)) {
Alexandra Gherghinad6a98972014-08-04 17:05:34 +01001561 // Skip any ops for a different user
1562 continue;
1563 }
Svet Ganov2af57082015-07-30 08:44:20 -07001564
1565 Map<String, Ops> packages = uidState.pkgOps;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001566 Iterator<Map.Entry<String, Ops>> it = packages.entrySet().iterator();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001567 boolean uidChanged = false;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001568 while (it.hasNext()) {
1569 Map.Entry<String, Ops> ent = it.next();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001570 String packageName = ent.getKey();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001571 if (reqPackageName != null && !reqPackageName.equals(packageName)) {
1572 // Skip any ops for a different package
1573 continue;
1574 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001575 Ops pkgOps = ent.getValue();
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001576 for (int j=pkgOps.size()-1; j>=0; j--) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001577 Op curOp = pkgOps.valueAt(j);
Dianne Hackborn8828d3a2013-09-25 16:47:10 -07001578 if (AppOpsManager.opAllowsReset(curOp.op)
1579 && curOp.mode != AppOpsManager.opToDefaultMode(curOp.op)) {
David Braunf5d83192013-09-16 13:43:51 -07001580 curOp.mode = AppOpsManager.opToDefaultMode(curOp.op);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001581 changed = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001582 uidChanged = true;
Svet Ganovaf189e32019-02-15 18:45:29 -08001583 final int uid = curOp.uidState.uid;
1584 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001585 mOpModeWatchers.get(curOp.op));
Svet Ganovaf189e32019-02-15 18:45:29 -08001586 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001587 mPackageModeWatchers.get(packageName));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001588 if (!curOp.hasAnyTime()) {
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001589 pkgOps.removeAt(j);
1590 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001591 }
1592 }
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001593 if (pkgOps.size() == 0) {
1594 it.remove();
1595 }
1596 }
Svet Ganov2af57082015-07-30 08:44:20 -07001597 if (uidState.isDefault()) {
1598 mUidStates.remove(uidState.uid);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001599 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001600 if (uidChanged) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001601 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001602 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001603 }
Svet Ganov2af57082015-07-30 08:44:20 -07001604
Dianne Hackborn607b4142013-08-02 18:10:10 -07001605 if (changed) {
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001606 scheduleFastWriteLocked();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001607 }
1608 }
1609 if (callbacks != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001610 for (Map.Entry<ModeCallback, ArrayList<ChangeRec>> ent : callbacks.entrySet()) {
1611 ModeCallback cb = ent.getKey();
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001612 ArrayList<ChangeRec> reports = ent.getValue();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001613 for (int i=0; i<reports.size(); i++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001614 ChangeRec rep = reports.get(i);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001615 mHandler.sendMessage(PooledLambda.obtainMessage(
1616 AppOpsService::notifyOpChanged,
1617 this, cb, rep.op, rep.uid, rep.pkg));
Dianne Hackborn607b4142013-08-02 18:10:10 -07001618 }
1619 }
1620 }
1621 }
1622
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001623 private void evalAllForegroundOpsLocked() {
1624 for (int uidi = mUidStates.size() - 1; uidi >= 0; uidi--) {
1625 final UidState uidState = mUidStates.valueAt(uidi);
1626 if (uidState.foregroundOps != null) {
1627 uidState.evalForegroundOps(mOpModeWatchers);
1628 }
1629 }
1630 }
1631
Dianne Hackbornc2293022013-02-06 23:14:49 -08001632 @Override
1633 public void startWatchingMode(int op, String packageName, IAppOpsCallback callback) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001634 startWatchingModeWithFlags(op, packageName, 0, callback);
1635 }
1636
1637 @Override
1638 public void startWatchingModeWithFlags(int op, String packageName, int flags,
1639 IAppOpsCallback callback) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001640 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001641 final int callingUid = Binder.getCallingUid();
1642 final int callingPid = Binder.getCallingPid();
Dianne Hackborn5376edd2018-06-05 13:21:16 -07001643 // TODO: should have a privileged permission to protect this.
1644 // Also, if the caller has requested WATCH_FOREGROUND_CHANGES, should we require
1645 // the USAGE_STATS permission since this can provide information about when an
1646 // app is in the foreground?
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001647 Preconditions.checkArgumentInRange(op, AppOpsManager.OP_NONE,
1648 AppOpsManager._NUM_OP - 1, "Invalid op code: " + op);
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001649 if (callback == null) {
1650 return;
1651 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001652 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001653 op = (op != AppOpsManager.OP_NONE) ? AppOpsManager.opToSwitch(op) : op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001654 ModeCallback cb = mModeWatchers.get(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001655 if (cb == null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001656 cb = new ModeCallback(callback, watchedUid, flags, callingUid, callingPid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001657 mModeWatchers.put(callback.asBinder(), cb);
1658 }
1659 if (op != AppOpsManager.OP_NONE) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001660 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(op);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001661 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001662 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001663 mOpModeWatchers.put(op, cbs);
1664 }
1665 cbs.add(cb);
1666 }
1667 if (packageName != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001668 ArraySet<ModeCallback> cbs = mPackageModeWatchers.get(packageName);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001669 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001670 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001671 mPackageModeWatchers.put(packageName, cbs);
1672 }
1673 cbs.add(cb);
1674 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001675 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001676 }
1677 }
1678
1679 @Override
1680 public void stopWatchingMode(IAppOpsCallback callback) {
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001681 if (callback == null) {
1682 return;
1683 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001684 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001685 ModeCallback cb = mModeWatchers.remove(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001686 if (cb != null) {
1687 cb.unlinkToDeath();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001688 for (int i=mOpModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001689 ArraySet<ModeCallback> cbs = mOpModeWatchers.valueAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001690 cbs.remove(cb);
1691 if (cbs.size() <= 0) {
1692 mOpModeWatchers.removeAt(i);
1693 }
1694 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001695 for (int i=mPackageModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001696 ArraySet<ModeCallback> cbs = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001697 cbs.remove(cb);
1698 if (cbs.size() <= 0) {
1699 mPackageModeWatchers.removeAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001700 }
1701 }
1702 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001703 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001704 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001705 }
1706
1707 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001708 public IBinder getToken(IBinder clientToken) {
1709 synchronized (this) {
1710 ClientState cs = mClients.get(clientToken);
1711 if (cs == null) {
1712 cs = new ClientState(clientToken);
1713 mClients.put(clientToken, cs);
1714 }
1715 return cs;
1716 }
1717 }
1718
Svet Ganovd873ae62018-06-25 16:39:23 -07001719 public CheckOpsDelegate getAppOpsServiceDelegate() {
1720 synchronized (this) {
1721 return mCheckOpsDelegate;
1722 }
1723 }
1724
1725 public void setAppOpsServiceDelegate(CheckOpsDelegate delegate) {
1726 synchronized (this) {
1727 mCheckOpsDelegate = delegate;
1728 }
1729 }
1730
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001731 @Override
Svet Ganov9d528a12018-12-19 17:23:11 -08001732 public int checkOperationRaw(int code, int uid, String packageName) {
1733 return checkOperationInternal(code, uid, packageName, true /*raw*/);
1734 }
1735
1736 @Override
Dianne Hackborn35654b62013-01-14 17:38:02 -08001737 public int checkOperation(int code, int uid, String packageName) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001738 return checkOperationInternal(code, uid, packageName, false /*raw*/);
1739 }
1740
1741 private int checkOperationInternal(int code, int uid, String packageName, boolean raw) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001742 final CheckOpsDelegate delegate;
Dianne Hackborn35654b62013-01-14 17:38:02 -08001743 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001744 delegate = mCheckOpsDelegate;
1745 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001746 if (delegate == null) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001747 return checkOperationImpl(code, uid, packageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001748 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001749 return delegate.checkOperation(code, uid, packageName, raw,
Svet Ganovd873ae62018-06-25 16:39:23 -07001750 AppOpsService.this::checkOperationImpl);
1751 }
1752
Svet Ganov9d528a12018-12-19 17:23:11 -08001753 private int checkOperationImpl(int code, int uid, String packageName,
1754 boolean raw) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001755 verifyIncomingUid(uid);
1756 verifyIncomingOp(code);
1757 String resolvedPackageName = resolvePackageName(uid, packageName);
1758 if (resolvedPackageName == null) {
1759 return AppOpsManager.MODE_IGNORED;
1760 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001761 return checkOperationUnchecked(code, uid, resolvedPackageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001762 }
1763
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001764 /**
1765 * @see #checkOperationUnchecked(int, int, String, boolean, boolean)
1766 */
1767 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1768 boolean raw) {
1769 return checkOperationUnchecked(code, uid, packageName, raw, true);
1770 }
1771
1772 /**
1773 * Get the mode of an app-op.
1774 *
1775 * @param code The code of the op
1776 * @param uid The uid of the package the op belongs to
1777 * @param packageName The package the op belongs to
1778 * @param raw If the raw state of eval-ed state should be checked.
1779 * @param verify If the code should check the package belongs to the uid
1780 *
1781 * @return The mode of the op
1782 */
1783 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1784 boolean raw, boolean verify) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001785 synchronized (this) {
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001786 if (verify) {
1787 checkPackage(uid, packageName);
1788 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001789 if (isOpRestrictedLocked(uid, code, packageName)) {
Jason Monk62062992014-05-06 09:55:28 -04001790 return AppOpsManager.MODE_IGNORED;
1791 }
Svet Ganov2af57082015-07-30 08:44:20 -07001792 code = AppOpsManager.opToSwitch(code);
1793 UidState uidState = getUidStateLocked(uid, false);
Svet Ganovee438d42017-01-19 18:04:38 -08001794 if (uidState != null && uidState.opModes != null
1795 && uidState.opModes.indexOfKey(code) >= 0) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001796 final int rawMode = uidState.opModes.get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001797 return raw ? rawMode : uidState.evalMode(code, rawMode);
Svet Ganov2af57082015-07-30 08:44:20 -07001798 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001799 Op op = getOpLocked(code, uid, packageName, false, verify, false);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001800 if (op == null) {
David Braunf5d83192013-09-16 13:43:51 -07001801 return AppOpsManager.opToDefaultMode(code);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001802 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001803 return raw ? op.mode : op.evalMode();
Dianne Hackborn35654b62013-01-14 17:38:02 -08001804 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001805 }
1806
1807 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001808 public int checkAudioOperation(int code, int usage, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001809 final CheckOpsDelegate delegate;
John Spurlock1af30c72014-03-10 08:33:35 -04001810 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001811 delegate = mCheckOpsDelegate;
1812 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001813 if (delegate == null) {
1814 return checkAudioOperationImpl(code, usage, uid, packageName);
1815 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001816 return delegate.checkAudioOperation(code, usage, uid, packageName,
1817 AppOpsService.this::checkAudioOperationImpl);
1818 }
1819
1820 private int checkAudioOperationImpl(int code, int usage, int uid, String packageName) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001821 boolean suspended;
1822 try {
1823 suspended = isPackageSuspendedForUser(packageName, uid);
1824 } catch (IllegalArgumentException ex) {
1825 // Package not found.
1826 suspended = false;
1827 }
1828
1829 if (suspended) {
1830 Slog.i(TAG, "Audio disabled for suspended package=" + packageName
1831 + " for uid=" + uid);
1832 return AppOpsManager.MODE_IGNORED;
1833 }
1834
Svet Ganovd873ae62018-06-25 16:39:23 -07001835 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001836 final int mode = checkRestrictionLocked(code, usage, uid, packageName);
John Spurlock1af30c72014-03-10 08:33:35 -04001837 if (mode != AppOpsManager.MODE_ALLOWED) {
1838 return mode;
1839 }
1840 }
1841 return checkOperation(code, uid, packageName);
1842 }
1843
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001844 private boolean isPackageSuspendedForUser(String pkg, int uid) {
Svet Ganov8d123f42019-04-09 17:11:12 -07001845 final long identity = Binder.clearCallingIdentity();
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001846 try {
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001847 return AppGlobals.getPackageManager().isPackageSuspendedForUser(
1848 pkg, UserHandle.getUserId(uid));
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001849 } catch (RemoteException re) {
1850 throw new SecurityException("Could not talk to package manager service");
Svet Ganov8d123f42019-04-09 17:11:12 -07001851 } finally {
1852 Binder.restoreCallingIdentity(identity);
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001853 }
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001854 }
1855
John Spurlock7b414672014-07-18 13:02:39 -04001856 private int checkRestrictionLocked(int code, int usage, int uid, String packageName) {
1857 final SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1858 if (usageRestrictions != null) {
1859 final Restriction r = usageRestrictions.get(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001860 if (r != null && !r.exceptionPackages.contains(packageName)) {
1861 return r.mode;
1862 }
1863 }
1864 return AppOpsManager.MODE_ALLOWED;
1865 }
1866
1867 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001868 public void setAudioRestriction(int code, int usage, int uid, int mode,
John Spurlock1af30c72014-03-10 08:33:35 -04001869 String[] exceptionPackages) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001870 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
John Spurlock1af30c72014-03-10 08:33:35 -04001871 verifyIncomingUid(uid);
1872 verifyIncomingOp(code);
1873 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001874 SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1875 if (usageRestrictions == null) {
1876 usageRestrictions = new SparseArray<Restriction>();
1877 mAudioRestrictions.put(code, usageRestrictions);
John Spurlock1af30c72014-03-10 08:33:35 -04001878 }
John Spurlock7b414672014-07-18 13:02:39 -04001879 usageRestrictions.remove(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001880 if (mode != AppOpsManager.MODE_ALLOWED) {
1881 final Restriction r = new Restriction();
1882 r.mode = mode;
1883 if (exceptionPackages != null) {
1884 final int N = exceptionPackages.length;
1885 r.exceptionPackages = new ArraySet<String>(N);
1886 for (int i = 0; i < N; i++) {
1887 final String pkg = exceptionPackages[i];
1888 if (pkg != null) {
1889 r.exceptionPackages.add(pkg.trim());
1890 }
1891 }
1892 }
John Spurlock7b414672014-07-18 13:02:39 -04001893 usageRestrictions.put(usage, r);
John Spurlock1af30c72014-03-10 08:33:35 -04001894 }
1895 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001896
1897 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07001898 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
John Spurlock1af30c72014-03-10 08:33:35 -04001899 }
1900
1901 @Override
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001902 public int checkPackage(int uid, String packageName) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001903 Preconditions.checkNotNull(packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001904 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001905 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
1906 true /* uidMismatchExpected */);
1907 if (ops != null) {
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001908 return AppOpsManager.MODE_ALLOWED;
1909 } else {
1910 return AppOpsManager.MODE_ERRORED;
1911 }
1912 }
1913 }
1914
1915 @Override
Svet Ganovd873ae62018-06-25 16:39:23 -07001916 public int noteProxyOperation(int code, int proxyUid,
1917 String proxyPackageName, int proxiedUid, String proxiedPackageName) {
1918 verifyIncomingUid(proxyUid);
Svet Ganov99b60432015-06-27 13:15:22 -07001919 verifyIncomingOp(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001920
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001921 String resolveProxyPackageName = resolvePackageName(proxyUid, proxyPackageName);
1922 if (resolveProxyPackageName == null) {
1923 return AppOpsManager.MODE_IGNORED;
1924 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001925
1926 final boolean isProxyTrusted = mContext.checkPermission(
1927 Manifest.permission.UPDATE_APP_OPS_STATS, -1, proxyUid)
1928 == PackageManager.PERMISSION_GRANTED;
1929
1930 final int proxyFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXY
1931 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXY;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001932 final int proxyMode = noteOperationUnchecked(code, proxyUid,
Svet Ganovaf189e32019-02-15 18:45:29 -08001933 resolveProxyPackageName, Process.INVALID_UID, null, proxyFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001934 if (proxyMode != AppOpsManager.MODE_ALLOWED || Binder.getCallingUid() == proxiedUid) {
1935 return proxyMode;
1936 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001937
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001938 String resolveProxiedPackageName = resolvePackageName(proxiedUid, proxiedPackageName);
1939 if (resolveProxiedPackageName == null) {
1940 return AppOpsManager.MODE_IGNORED;
1941 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001942 final int proxiedFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXIED
1943 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXIED;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001944 return noteOperationUnchecked(code, proxiedUid, resolveProxiedPackageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001945 proxyUid, resolveProxyPackageName, proxiedFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001946 }
1947
1948 @Override
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001949 public int noteOperation(int code, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001950 final CheckOpsDelegate delegate;
1951 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001952 delegate = mCheckOpsDelegate;
1953 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001954 if (delegate == null) {
1955 return noteOperationImpl(code, uid, packageName);
1956 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001957 return delegate.noteOperation(code, uid, packageName,
1958 AppOpsService.this::noteOperationImpl);
1959 }
1960
1961 private int noteOperationImpl(int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001962 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001963 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001964 String resolvedPackageName = resolvePackageName(uid, packageName);
1965 if (resolvedPackageName == null) {
1966 return AppOpsManager.MODE_IGNORED;
1967 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001968 return noteOperationUnchecked(code, uid, resolvedPackageName, Process.INVALID_UID, null,
1969 AppOpsManager.OP_FLAG_SELF);
Svet Ganov99b60432015-06-27 13:15:22 -07001970 }
1971
1972 private int noteOperationUnchecked(int code, int uid, String packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001973 int proxyUid, String proxyPackageName, @OpFlags int flags) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001974 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001975 final Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07001976 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001977 if (ops == null) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08001978 scheduleOpNotedIfNeededLocked(code, uid, packageName,
1979 AppOpsManager.MODE_IGNORED);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001980 if (DEBUG) Slog.d(TAG, "noteOperation: no op for code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001981 + " package " + packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001982 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001983 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001984 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07001985 if (isOpRestrictedLocked(uid, code, packageName)) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08001986 scheduleOpNotedIfNeededLocked(code, uid, packageName,
1987 AppOpsManager.MODE_IGNORED);
Jason Monk62062992014-05-06 09:55:28 -04001988 return AppOpsManager.MODE_IGNORED;
1989 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001990 final UidState uidState = ops.uidState;
Svet Ganovaf189e32019-02-15 18:45:29 -08001991 if (op.running) {
1992 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
1993 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001994 Slog.w(TAG, "Noting op not finished: uid " + uid + " pkg " + packageName
Svet Ganovaf189e32019-02-15 18:45:29 -08001995 + " code " + code + " time=" + entry.getLastAccessTime(uidState.state,
1996 uidState.state, flags) + " duration=" + entry.getLastDuration(
1997 uidState.state, uidState.state, flags));
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001998 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001999
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002000 final int switchCode = AppOpsManager.opToSwitch(code);
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002001 // If there is a non-default per UID policy (we set UID op mode only if
2002 // non-default) it takes over, otherwise use the per package policy.
2003 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002004 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganov2af57082015-07-30 08:44:20 -07002005 if (uidMode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002006 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002007 + switchCode + " (" + code + ") uid " + uid + " package "
2008 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002009 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2010 uidState.state, flags);
2011 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2012 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002013 scheduleOpNotedIfNeededLocked(code, uid, packageName, uidMode);
Svet Ganov2af57082015-07-30 08:44:20 -07002014 return uidMode;
2015 }
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002016 } else {
2017 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002018 final int mode = switchOp.evalMode();
2019 if (switchOp.mode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002020 if (DEBUG) Slog.d(TAG, "noteOperation: reject #" + mode + " for code "
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002021 + switchCode + " (" + code + ") uid " + uid + " package "
2022 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002023 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2024 uidState.state, flags);
2025 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2026 uidState.state, flags);
2027 scheduleOpNotedIfNeededLocked(code, uid, packageName, mode);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002028 return mode;
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002029 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002030 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002031 if (DEBUG) Slog.d(TAG, "noteOperation: allowing code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002032 + " package " + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002033 op.accessed(System.currentTimeMillis(), proxyUid, proxyPackageName,
2034 uidState.state, flags);
Svet Ganov8455ba22019-01-02 13:05:56 -08002035 mHistoricalRegistry.incrementOpAccessedCount(op.op, uid, packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002036 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002037 scheduleOpNotedIfNeededLocked(code, uid, packageName,
2038 AppOpsManager.MODE_ALLOWED);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002039 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002040 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002041 }
2042
2043 @Override
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002044 public void startWatchingActive(int[] ops, IAppOpsActiveCallback callback) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002045 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002046 final int callingUid = Binder.getCallingUid();
2047 final int callingPid = Binder.getCallingPid();
Svet Ganovf7b47252018-02-26 11:11:27 -08002048 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2049 != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002050 watchedUid = callingUid;
Svet Ganovf7b47252018-02-26 11:11:27 -08002051 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002052 if (ops != null) {
2053 Preconditions.checkArrayElementsInRange(ops, 0,
2054 AppOpsManager._NUM_OP - 1, "Invalid op code in: " + Arrays.toString(ops));
2055 }
2056 if (callback == null) {
2057 return;
2058 }
2059 synchronized (this) {
2060 SparseArray<ActiveCallback> callbacks = mActiveWatchers.get(callback.asBinder());
2061 if (callbacks == null) {
2062 callbacks = new SparseArray<>();
2063 mActiveWatchers.put(callback.asBinder(), callbacks);
2064 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002065 final ActiveCallback activeCallback = new ActiveCallback(callback, watchedUid,
2066 callingUid, callingPid);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002067 for (int op : ops) {
2068 callbacks.put(op, activeCallback);
2069 }
2070 }
2071 }
2072
2073 @Override
2074 public void stopWatchingActive(IAppOpsActiveCallback callback) {
2075 if (callback == null) {
2076 return;
2077 }
2078 synchronized (this) {
2079 final SparseArray<ActiveCallback> activeCallbacks =
2080 mActiveWatchers.remove(callback.asBinder());
2081 if (activeCallbacks == null) {
2082 return;
2083 }
2084 final int callbackCount = activeCallbacks.size();
2085 for (int i = 0; i < callbackCount; i++) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002086 activeCallbacks.valueAt(i).destroy();
2087 }
2088 }
2089 }
2090
2091 @Override
2092 public void startWatchingNoted(@NonNull int[] ops, @NonNull IAppOpsNotedCallback callback) {
2093 int watchedUid = Process.INVALID_UID;
2094 final int callingUid = Binder.getCallingUid();
2095 final int callingPid = Binder.getCallingPid();
2096 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2097 != PackageManager.PERMISSION_GRANTED) {
2098 watchedUid = callingUid;
2099 }
2100 Preconditions.checkArgument(!ArrayUtils.isEmpty(ops), "Ops cannot be null or empty");
2101 Preconditions.checkArrayElementsInRange(ops, 0, AppOpsManager._NUM_OP - 1,
2102 "Invalid op code in: " + Arrays.toString(ops));
2103 Preconditions.checkNotNull(callback, "Callback cannot be null");
2104 synchronized (this) {
2105 SparseArray<NotedCallback> callbacks = mNotedWatchers.get(callback.asBinder());
2106 if (callbacks == null) {
2107 callbacks = new SparseArray<>();
2108 mNotedWatchers.put(callback.asBinder(), callbacks);
2109 }
2110 final NotedCallback notedCallback = new NotedCallback(callback, watchedUid,
2111 callingUid, callingPid);
2112 for (int op : ops) {
2113 callbacks.put(op, notedCallback);
2114 }
2115 }
2116 }
2117
2118 @Override
2119 public void stopWatchingNoted(IAppOpsNotedCallback callback) {
2120 Preconditions.checkNotNull(callback, "Callback cannot be null");
2121 synchronized (this) {
2122 final SparseArray<NotedCallback> notedCallbacks =
2123 mNotedWatchers.remove(callback.asBinder());
2124 if (notedCallbacks == null) {
2125 return;
2126 }
2127 final int callbackCount = notedCallbacks.size();
2128 for (int i = 0; i < callbackCount; i++) {
2129 notedCallbacks.valueAt(i).destroy();
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002130 }
2131 }
2132 }
2133
2134 @Override
Svet Ganovf7b47252018-02-26 11:11:27 -08002135 public int startOperation(IBinder token, int code, int uid, String packageName,
2136 boolean startIfModeDefault) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002137 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002138 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002139 String resolvedPackageName = resolvePackageName(uid, packageName);
2140 if (resolvedPackageName == null) {
2141 return AppOpsManager.MODE_IGNORED;
2142 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002143 ClientState client = (ClientState)token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002144 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002145 final Ops ops = getOpsRawLocked(uid, resolvedPackageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07002146 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002147 if (ops == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002148 if (DEBUG) Slog.d(TAG, "startOperation: no op for code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002149 + " package " + resolvedPackageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07002150 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002151 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002152 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07002153 if (isOpRestrictedLocked(uid, code, resolvedPackageName)) {
Jason Monk62062992014-05-06 09:55:28 -04002154 return AppOpsManager.MODE_IGNORED;
2155 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002156 final int switchCode = AppOpsManager.opToSwitch(code);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002157 final UidState uidState = ops.uidState;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002158 // If there is a non-default per UID policy (we set UID op mode only if
2159 // non-default) it takes over, otherwise use the per package policy.
Svet Ganovaf189e32019-02-15 18:45:29 -08002160 final int opCode = op.op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002161 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002162 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganovf7b47252018-02-26 11:11:27 -08002163 if (uidMode != AppOpsManager.MODE_ALLOWED
2164 && (!startIfModeDefault || uidMode != AppOpsManager.MODE_DEFAULT)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002165 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002166 + switchCode + " (" + code + ") uid " + uid + " package "
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002167 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002168 // We don't support proxy long running ops (start/stop)
2169 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2170 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2171 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2172 uidState.state, AppOpsManager.OP_FLAG_SELF);
Svet Ganov2af57082015-07-30 08:44:20 -07002173 return uidMode;
2174 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002175 } else {
2176 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002177 final int mode = switchOp.evalMode();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002178 if (mode != AppOpsManager.MODE_ALLOWED
2179 && (!startIfModeDefault || mode != AppOpsManager.MODE_DEFAULT)) {
2180 if (DEBUG) Slog.d(TAG, "startOperation: reject #" + mode + " for code "
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002181 + switchCode + " (" + code + ") uid " + uid + " package "
2182 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002183 // We don't support proxy long running ops (start/stop)
2184 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2185 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2186 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2187 uidState.state, AppOpsManager.OP_FLAG_SELF);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002188 return mode;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002189 }
Svet Ganov2af57082015-07-30 08:44:20 -07002190 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002191 if (DEBUG) Slog.d(TAG, "startOperation: allowing code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002192 + " package " + resolvedPackageName);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002193 if (op.startNesting == 0) {
2194 op.startRealtime = SystemClock.elapsedRealtime();
Svet Ganovaf189e32019-02-15 18:45:29 -08002195 // We don't support proxy long running ops (start/stop)
2196 op.started(System.currentTimeMillis(), uidState.state,
2197 AppOpsManager.OP_FLAG_SELF);
2198 mHistoricalRegistry.incrementOpAccessedCount(opCode, uid, packageName,
2199 uidState.state, AppOpsManager.OP_FLAG_SELF);
2200
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002201 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, true);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002202 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002203 op.startNesting++;
2204 uidState.startNesting++;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002205 if (client.mStartedOps != null) {
2206 client.mStartedOps.add(op);
2207 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002208 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002209
2210 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002211 }
2212
2213 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002214 public void finishOperation(IBinder token, int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002215 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002216 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002217 String resolvedPackageName = resolvePackageName(uid, packageName);
2218 if (resolvedPackageName == null) {
2219 return;
2220 }
2221 if (!(token instanceof ClientState)) {
2222 return;
2223 }
2224 ClientState client = (ClientState) token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002225 synchronized (this) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002226 Op op = getOpLocked(code, uid, resolvedPackageName, true, true, false);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002227 if (op == null) {
2228 return;
2229 }
Svet Ganovf7b47252018-02-26 11:11:27 -08002230 if (!client.mStartedOps.remove(op)) {
Svet Ganovf5d5af12018-03-18 11:51:17 -07002231 // We finish ops when packages get removed to guarantee no dangling
2232 // started ops. However, some part of the system may asynchronously
2233 // finish ops for an already gone package. Hence, finishing an op
2234 // for a non existing package is fine and we don't log as a wtf.
2235 final long identity = Binder.clearCallingIdentity();
2236 try {
2237 if (LocalServices.getService(PackageManagerInternal.class).getPackageUid(
2238 resolvedPackageName, 0, UserHandle.getUserId(uid)) < 0) {
2239 Slog.i(TAG, "Finishing op=" + AppOpsManager.opToName(code)
2240 + " for non-existing package=" + resolvedPackageName
2241 + " in uid=" + uid);
2242 return;
2243 }
2244 } finally {
2245 Binder.restoreCallingIdentity(identity);
2246 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002247 Slog.wtf(TAG, "Operation not started: uid=" + op.uidState.uid + " pkg="
Svet Ganovf5d5af12018-03-18 11:51:17 -07002248 + op.packageName + " op=" + AppOpsManager.opToName(op.op));
Svet Ganov31d83ae2018-03-15 10:45:56 -07002249 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002250 }
Svet Ganova7a0db62018-02-27 20:08:01 -08002251 finishOperationLocked(op, /*finishNested*/ false);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002252 if (op.startNesting <= 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002253 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, false);
2254 }
2255 }
2256 }
2257
2258 private void scheduleOpActiveChangedIfNeededLocked(int code, int uid, String packageName,
2259 boolean active) {
2260 ArraySet<ActiveCallback> dispatchedCallbacks = null;
2261 final int callbackListCount = mActiveWatchers.size();
2262 for (int i = 0; i < callbackListCount; i++) {
2263 final SparseArray<ActiveCallback> callbacks = mActiveWatchers.valueAt(i);
2264 ActiveCallback callback = callbacks.get(code);
2265 if (callback != null) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002266 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002267 continue;
2268 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002269 if (dispatchedCallbacks == null) {
2270 dispatchedCallbacks = new ArraySet<>();
2271 }
2272 dispatchedCallbacks.add(callback);
2273 }
2274 }
2275 if (dispatchedCallbacks == null) {
2276 return;
2277 }
2278 mHandler.sendMessage(PooledLambda.obtainMessage(
2279 AppOpsService::notifyOpActiveChanged,
2280 this, dispatchedCallbacks, code, uid, packageName, active));
2281 }
2282
2283 private void notifyOpActiveChanged(ArraySet<ActiveCallback> callbacks,
2284 int code, int uid, String packageName, boolean active) {
2285 // There are components watching for mode changes such as window manager
2286 // and location manager which are in our process. The callbacks in these
2287 // components may require permissions our remote caller does not have.
2288 final long identity = Binder.clearCallingIdentity();
2289 try {
2290 final int callbackCount = callbacks.size();
2291 for (int i = 0; i < callbackCount; i++) {
2292 final ActiveCallback callback = callbacks.valueAt(i);
2293 try {
2294 callback.mCallback.opActiveChanged(code, uid, packageName, active);
2295 } catch (RemoteException e) {
2296 /* do nothing */
2297 }
2298 }
2299 } finally {
2300 Binder.restoreCallingIdentity(identity);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002301 }
2302 }
2303
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002304 private void scheduleOpNotedIfNeededLocked(int code, int uid, String packageName,
2305 int result) {
2306 ArraySet<NotedCallback> dispatchedCallbacks = null;
2307 final int callbackListCount = mNotedWatchers.size();
2308 for (int i = 0; i < callbackListCount; i++) {
2309 final SparseArray<NotedCallback> callbacks = mNotedWatchers.valueAt(i);
2310 final NotedCallback callback = callbacks.get(code);
2311 if (callback != null) {
2312 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
2313 continue;
2314 }
2315 if (dispatchedCallbacks == null) {
2316 dispatchedCallbacks = new ArraySet<>();
2317 }
2318 dispatchedCallbacks.add(callback);
2319 }
2320 }
2321 if (dispatchedCallbacks == null) {
2322 return;
2323 }
2324 mHandler.sendMessage(PooledLambda.obtainMessage(
2325 AppOpsService::notifyOpChecked,
2326 this, dispatchedCallbacks, code, uid, packageName, result));
2327 }
2328
2329 private void notifyOpChecked(ArraySet<NotedCallback> callbacks,
2330 int code, int uid, String packageName, int result) {
2331 // There are components watching for checks in our process. The callbacks in
2332 // these components may require permissions our remote caller does not have.
2333 final long identity = Binder.clearCallingIdentity();
2334 try {
2335 final int callbackCount = callbacks.size();
2336 for (int i = 0; i < callbackCount; i++) {
2337 final NotedCallback callback = callbacks.valueAt(i);
2338 try {
2339 callback.mCallback.opNoted(code, uid, packageName, result);
2340 } catch (RemoteException e) {
2341 /* do nothing */
2342 }
2343 }
2344 } finally {
2345 Binder.restoreCallingIdentity(identity);
2346 }
2347 }
2348
Svet Ganovb9d71a62015-04-30 10:38:13 -07002349 @Override
2350 public int permissionToOpCode(String permission) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002351 if (permission == null) {
2352 return AppOpsManager.OP_NONE;
2353 }
Svet Ganovb9d71a62015-04-30 10:38:13 -07002354 return AppOpsManager.permissionToOpCode(permission);
2355 }
2356
Svet Ganova7a0db62018-02-27 20:08:01 -08002357 void finishOperationLocked(Op op, boolean finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002358 final int opCode = op.op;
2359 final int uid = op.uidState.uid;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002360 if (op.startNesting <= 1 || finishNested) {
2361 if (op.startNesting == 1 || finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002362 // We don't support proxy long running ops (start/stop)
2363 final long duration = SystemClock.elapsedRealtime() - op.startRealtime;
2364 op.finished(System.currentTimeMillis(), duration, op.uidState.state,
2365 AppOpsManager.OP_FLAG_SELF);
2366 mHistoricalRegistry.increaseOpAccessDuration(opCode, uid, op.packageName,
2367 op.uidState.state, AppOpsManager.OP_FLAG_SELF, duration);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002368 } else {
Svet Ganovaf189e32019-02-15 18:45:29 -08002369 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
2370 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
2371 Slog.w(TAG, "Finishing op nesting under-run: uid " + uid + " pkg "
2372 + op.packageName + " code " + opCode + " time="
2373 + entry.getLastAccessTime(OP_FLAGS_ALL)
2374 + " duration=" + entry.getLastDuration(MAX_PRIORITY_UID_STATE,
2375 MIN_PRIORITY_UID_STATE, OP_FLAGS_ALL) + " nesting=" + op.startNesting);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002376 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002377 if (op.startNesting >= 1) {
2378 op.uidState.startNesting -= op.startNesting;
2379 }
2380 op.startNesting = 0;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002381 } else {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002382 op.startNesting--;
2383 op.uidState.startNesting--;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002384 }
2385 }
2386
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002387 private void verifyIncomingUid(int uid) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002388 if (uid == Binder.getCallingUid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002389 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002390 }
2391 if (Binder.getCallingPid() == Process.myPid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002392 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002393 }
2394 mContext.enforcePermission(android.Manifest.permission.UPDATE_APP_OPS_STATS,
2395 Binder.getCallingPid(), Binder.getCallingUid(), null);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002396 }
2397
Dianne Hackborn961321f2013-02-05 17:22:41 -08002398 private void verifyIncomingOp(int op) {
2399 if (op >= 0 && op < AppOpsManager._NUM_OP) {
2400 return;
2401 }
2402 throw new IllegalArgumentException("Bad operation #" + op);
2403 }
2404
Philip P. Moltmann724150d2019-03-11 17:01:05 -07002405 private @Nullable UidState getUidStateLocked(int uid, boolean edit) {
Svet Ganov2af57082015-07-30 08:44:20 -07002406 UidState uidState = mUidStates.get(uid);
2407 if (uidState == null) {
2408 if (!edit) {
2409 return null;
2410 }
2411 uidState = new UidState(uid);
2412 mUidStates.put(uid, uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002413 } else {
2414 if (uidState.pendingStateCommitTime != 0) {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002415 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002416 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002417 } else {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002418 mLastRealtime = SystemClock.elapsedRealtime();
2419 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002420 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002421 }
2422 }
2423 }
Svet Ganov2af57082015-07-30 08:44:20 -07002424 }
2425 return uidState;
2426 }
2427
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002428 private void commitUidPendingStateLocked(UidState uidState) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002429 final boolean lastForeground = uidState.state <= UID_STATE_MAX_LAST_NON_RESTRICTED;
2430 final boolean nowForeground = uidState.pendingState <= UID_STATE_MAX_LAST_NON_RESTRICTED;
Dianne Hackborne93ab412018-05-14 17:52:30 -07002431 if (uidState.hasForegroundWatchers && lastForeground != nowForeground) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002432 for (int fgi = uidState.foregroundOps.size() - 1; fgi >= 0; fgi--) {
2433 if (!uidState.foregroundOps.valueAt(fgi)) {
2434 continue;
2435 }
2436 final int code = uidState.foregroundOps.keyAt(fgi);
Svet Ganovaf189e32019-02-15 18:45:29 -08002437 // For location ops we consider fg state only if the fg service
2438 // is of location type, for all other ops any fg service will do.
Wei Wang711eb662019-03-21 18:24:17 -07002439 final long firstUnrestrictedUidState = resolveFirstUnrestrictedUidState(code);
2440 final boolean resolvedLastFg = uidState.state <= firstUnrestrictedUidState;
2441 final boolean resolvedNowFg = uidState.pendingState <= firstUnrestrictedUidState;
2442 if (resolvedLastFg == resolvedNowFg) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002443 continue;
2444 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002445 final ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
2446 if (callbacks != null) {
2447 for (int cbi = callbacks.size() - 1; cbi >= 0; cbi--) {
2448 final ModeCallback callback = callbacks.valueAt(cbi);
2449 if ((callback.mFlags & AppOpsManager.WATCH_FOREGROUND_CHANGES) == 0
2450 || !callback.isWatchingUid(uidState.uid)) {
2451 continue;
2452 }
2453 boolean doAllPackages = uidState.opModes != null
Hai Zhang2b98fb32018-09-21 15:18:46 -07002454 && uidState.opModes.indexOfKey(code) >= 0
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002455 && uidState.opModes.get(code) == AppOpsManager.MODE_FOREGROUND;
2456 if (uidState.pkgOps != null) {
2457 for (int pkgi = uidState.pkgOps.size() - 1; pkgi >= 0; pkgi--) {
2458 final Op op = uidState.pkgOps.valueAt(pkgi).get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08002459 if (op == null) {
2460 continue;
2461 }
2462 if (doAllPackages || op.mode == AppOpsManager.MODE_FOREGROUND) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002463 mHandler.sendMessage(PooledLambda.obtainMessage(
2464 AppOpsService::notifyOpChanged,
2465 this, callback, code, uidState.uid,
2466 uidState.pkgOps.keyAt(pkgi)));
2467 }
2468 }
2469 }
2470 }
2471 }
2472 }
2473 }
Wei Wang711eb662019-03-21 18:24:17 -07002474 uidState.state = uidState.pendingState;
2475 uidState.pendingStateCommitTime = 0;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002476 }
2477
Yohei Yukawaa965d652017-10-12 15:02:26 -07002478 private Ops getOpsRawLocked(int uid, String packageName, boolean edit,
2479 boolean uidMismatchExpected) {
Svet Ganov2af57082015-07-30 08:44:20 -07002480 UidState uidState = getUidStateLocked(uid, edit);
2481 if (uidState == null) {
2482 return null;
2483 }
2484
2485 if (uidState.pkgOps == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002486 if (!edit) {
2487 return null;
2488 }
Svet Ganov2af57082015-07-30 08:44:20 -07002489 uidState.pkgOps = new ArrayMap<>();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002490 }
Svet Ganov2af57082015-07-30 08:44:20 -07002491
2492 Ops ops = uidState.pkgOps.get(packageName);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002493 if (ops == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002494 if (!edit) {
2495 return null;
2496 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002497 boolean isPrivileged = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002498 // This is the first time we have seen this package name under this uid,
2499 // so let's make sure it is valid.
Dianne Hackborn514074f2013-02-11 10:52:46 -08002500 if (uid != 0) {
2501 final long ident = Binder.clearCallingIdentity();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002502 try {
Dianne Hackborn514074f2013-02-11 10:52:46 -08002503 int pkgUid = -1;
2504 try {
Jason Monk1c7c3192014-06-26 12:52:18 -04002505 ApplicationInfo appInfo = ActivityThread.getPackageManager()
Jeff Sharkeycd654482016-01-08 17:42:11 -07002506 .getApplicationInfo(packageName,
Svet Ganovad0a49b2018-10-29 10:07:08 -07002507 PackageManager.MATCH_DIRECT_BOOT_AWARE
Svet Ganov8455ba22019-01-02 13:05:56 -08002508 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
Jeff Sharkeycd654482016-01-08 17:42:11 -07002509 UserHandle.getUserId(uid));
Jason Monk1c7c3192014-06-26 12:52:18 -04002510 if (appInfo != null) {
2511 pkgUid = appInfo.uid;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002512 isPrivileged = (appInfo.privateFlags
2513 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002514 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08002515 pkgUid = resolveUid(packageName);
2516 if (pkgUid >= 0) {
Chien-Yu Chen75cade02016-01-11 10:56:21 -08002517 isPrivileged = false;
Jason Monk1c7c3192014-06-26 12:52:18 -04002518 }
Dianne Hackborn713df152013-05-17 11:27:57 -07002519 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002520 } catch (RemoteException e) {
2521 Slog.w(TAG, "Could not contact PackageManager", e);
Dianne Hackborn514074f2013-02-11 10:52:46 -08002522 }
2523 if (pkgUid != uid) {
2524 // Oops! The package name is not valid for the uid they are calling
2525 // under. Abort.
Yohei Yukawaa965d652017-10-12 15:02:26 -07002526 if (!uidMismatchExpected) {
2527 RuntimeException ex = new RuntimeException("here");
2528 ex.fillInStackTrace();
2529 Slog.w(TAG, "Bad call: specified package " + packageName
2530 + " under uid " + uid + " but it is really " + pkgUid, ex);
2531 }
Dianne Hackborn514074f2013-02-11 10:52:46 -08002532 return null;
2533 }
2534 } finally {
2535 Binder.restoreCallingIdentity(ident);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002536 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002537 }
Svet Ganov2af57082015-07-30 08:44:20 -07002538 ops = new Ops(packageName, uidState, isPrivileged);
2539 uidState.pkgOps.put(packageName, ops);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002540 }
Dianne Hackborn72e39832013-01-18 18:36:09 -08002541 return ops;
2542 }
2543
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002544 /**
2545 * Get the state of all ops for a package, <b>don't verify that package belongs to uid</b>.
2546 *
2547 * <p>Usually callers should use {@link #getOpLocked} and not call this directly.
2548 *
2549 * @param uid The uid the of the package
2550 * @param packageName The package name for which to get the state for
2551 * @param edit Iff {@code true} create the {@link Ops} object if not yet created
2552 * @param isPrivileged Whether the package is privileged or not
2553 *
2554 * @return The {@link Ops state} of all ops for the package
2555 */
2556 private @Nullable Ops getOpsRawNoVerifyLocked(int uid, @NonNull String packageName,
2557 boolean edit, boolean isPrivileged) {
2558 UidState uidState = getUidStateLocked(uid, edit);
2559 if (uidState == null) {
2560 return null;
2561 }
2562
2563 if (uidState.pkgOps == null) {
2564 if (!edit) {
2565 return null;
2566 }
2567 uidState.pkgOps = new ArrayMap<>();
2568 }
2569
2570 Ops ops = uidState.pkgOps.get(packageName);
2571 if (ops == null) {
2572 if (!edit) {
2573 return null;
2574 }
2575 ops = new Ops(packageName, uidState, isPrivileged);
2576 uidState.pkgOps.put(packageName, ops);
2577 }
2578 return ops;
2579 }
2580
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002581 private void scheduleWriteLocked() {
2582 if (!mWriteScheduled) {
2583 mWriteScheduled = true;
2584 mHandler.postDelayed(mWriteRunner, WRITE_DELAY);
2585 }
2586 }
2587
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002588 private void scheduleFastWriteLocked() {
2589 if (!mFastWriteScheduled) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002590 mWriteScheduled = true;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002591 mFastWriteScheduled = true;
2592 mHandler.removeCallbacks(mWriteRunner);
2593 mHandler.postDelayed(mWriteRunner, 10*1000);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002594 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002595 }
2596
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002597 /**
2598 * Get the state of an op for a uid.
2599 *
2600 * @param code The code of the op
2601 * @param uid The uid the of the package
2602 * @param packageName The package name for which to get the state for
2603 * @param edit Iff {@code true} create the {@link Op} object if not yet created
2604 * @param verifyUid Iff {@code true} check that the package belongs to the uid
2605 * @param isPrivileged Whether the package is privileged or not (only used if {@code verifyUid
2606 * == false})
2607 *
2608 * @return The {@link Op state} of the op
2609 */
2610 private @Nullable Op getOpLocked(int code, int uid, @NonNull String packageName, boolean edit,
2611 boolean verifyUid, boolean isPrivileged) {
2612 Ops ops;
2613
2614 if (verifyUid) {
2615 ops = getOpsRawLocked(uid, packageName, edit, false /* uidMismatchExpected */);
2616 } else {
2617 ops = getOpsRawNoVerifyLocked(uid, packageName, edit, isPrivileged);
2618 }
2619
Dianne Hackborn72e39832013-01-18 18:36:09 -08002620 if (ops == null) {
2621 return null;
2622 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002623 return getOpLocked(ops, code, edit);
2624 }
2625
2626 private Op getOpLocked(Ops ops, int code, boolean edit) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002627 Op op = ops.get(code);
2628 if (op == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002629 if (!edit) {
2630 return null;
2631 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002632 op = new Op(ops.uidState, ops.packageName, code);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002633 ops.put(code, op);
2634 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002635 if (edit) {
2636 scheduleWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002637 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002638 return op;
2639 }
2640
Svet Ganov442ed572016-08-17 17:29:43 -07002641 private boolean isOpRestrictedLocked(int uid, int code, String packageName) {
Jason Monk62062992014-05-06 09:55:28 -04002642 int userHandle = UserHandle.getUserId(uid);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002643 final int restrictionSetCount = mOpUserRestrictions.size();
Ruben Brunk29931bc2016-03-11 00:24:26 -08002644
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002645 for (int i = 0; i < restrictionSetCount; i++) {
Ruben Brunk29931bc2016-03-11 00:24:26 -08002646 // For each client, check that the given op is not restricted, or that the given
2647 // package is exempt from the restriction.
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07002648 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002649 if (restrictionState.hasRestriction(code, packageName, userHandle)) {
2650 if (AppOpsManager.opAllowSystemBypassRestriction(code)) {
2651 // If we are the system, bypass user restrictions for certain codes
2652 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07002653 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
2654 false /* uidMismatchExpected */);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002655 if ((ops != null) && ops.isPrivileged) {
2656 return false;
2657 }
Ruben Brunk32f0fa42016-03-11 19:07:07 -08002658 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08002659 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002660 return true;
Jason Monk1c7c3192014-06-26 12:52:18 -04002661 }
Jason Monk62062992014-05-06 09:55:28 -04002662 }
2663 return false;
2664 }
2665
Dianne Hackborn35654b62013-01-14 17:38:02 -08002666 void readState() {
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002667 int oldVersion = NO_VERSION;
Dianne Hackborn35654b62013-01-14 17:38:02 -08002668 synchronized (mFile) {
2669 synchronized (this) {
2670 FileInputStream stream;
2671 try {
2672 stream = mFile.openRead();
2673 } catch (FileNotFoundException e) {
2674 Slog.i(TAG, "No existing app ops " + mFile.getBaseFile() + "; starting empty");
2675 return;
2676 }
2677 boolean success = false;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002678 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002679 try {
2680 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002681 parser.setInput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002682 int type;
2683 while ((type = parser.next()) != XmlPullParser.START_TAG
2684 && type != XmlPullParser.END_DOCUMENT) {
2685 ;
2686 }
2687
2688 if (type != XmlPullParser.START_TAG) {
2689 throw new IllegalStateException("no start tag found");
2690 }
2691
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002692 final String versionString = parser.getAttributeValue(null, "v");
2693 if (versionString != null) {
2694 oldVersion = Integer.parseInt(versionString);
2695 }
2696
Dianne Hackborn35654b62013-01-14 17:38:02 -08002697 int outerDepth = parser.getDepth();
2698 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2699 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2700 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2701 continue;
2702 }
2703
2704 String tagName = parser.getName();
2705 if (tagName.equals("pkg")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002706 readPackage(parser);
Svetoslav215b44a2015-08-04 19:03:40 -07002707 } else if (tagName.equals("uid")) {
Svet Ganov2af57082015-07-30 08:44:20 -07002708 readUidOps(parser);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002709 } else {
2710 Slog.w(TAG, "Unknown element under <app-ops>: "
2711 + parser.getName());
2712 XmlUtils.skipCurrentTag(parser);
2713 }
2714 }
2715 success = true;
2716 } catch (IllegalStateException e) {
2717 Slog.w(TAG, "Failed parsing " + e);
2718 } catch (NullPointerException e) {
2719 Slog.w(TAG, "Failed parsing " + e);
2720 } catch (NumberFormatException e) {
2721 Slog.w(TAG, "Failed parsing " + e);
2722 } catch (XmlPullParserException e) {
2723 Slog.w(TAG, "Failed parsing " + e);
2724 } catch (IOException e) {
2725 Slog.w(TAG, "Failed parsing " + e);
2726 } catch (IndexOutOfBoundsException e) {
2727 Slog.w(TAG, "Failed parsing " + e);
2728 } finally {
2729 if (!success) {
Svet Ganov2af57082015-07-30 08:44:20 -07002730 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002731 }
2732 try {
2733 stream.close();
2734 } catch (IOException e) {
2735 }
2736 }
2737 }
2738 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002739 synchronized (this) {
2740 upgradeLocked(oldVersion);
2741 }
2742 }
2743
2744 private void upgradeRunAnyInBackgroundLocked() {
2745 for (int i = 0; i < mUidStates.size(); i++) {
2746 final UidState uidState = mUidStates.valueAt(i);
2747 if (uidState == null) {
2748 continue;
2749 }
2750 if (uidState.opModes != null) {
2751 final int idx = uidState.opModes.indexOfKey(AppOpsManager.OP_RUN_IN_BACKGROUND);
2752 if (idx >= 0) {
2753 uidState.opModes.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND,
Svet Ganovaf189e32019-02-15 18:45:29 -08002754 uidState.opModes.valueAt(idx));
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002755 }
2756 }
2757 if (uidState.pkgOps == null) {
2758 continue;
2759 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002760 boolean changed = false;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002761 for (int j = 0; j < uidState.pkgOps.size(); j++) {
2762 Ops ops = uidState.pkgOps.valueAt(j);
2763 if (ops != null) {
2764 final Op op = ops.get(AppOpsManager.OP_RUN_IN_BACKGROUND);
2765 if (op != null && op.mode != AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002766 final Op copy = new Op(op.uidState, op.packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002767 AppOpsManager.OP_RUN_ANY_IN_BACKGROUND);
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002768 copy.mode = op.mode;
2769 ops.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND, copy);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002770 changed = true;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002771 }
2772 }
2773 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002774 if (changed) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002775 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002776 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002777 }
2778 }
2779
2780 private void upgradeLocked(int oldVersion) {
2781 if (oldVersion >= CURRENT_VERSION) {
2782 return;
2783 }
2784 Slog.d(TAG, "Upgrading app-ops xml from version " + oldVersion + " to " + CURRENT_VERSION);
2785 switch (oldVersion) {
2786 case NO_VERSION:
2787 upgradeRunAnyInBackgroundLocked();
2788 // fall through
2789 case 1:
2790 // for future upgrades
2791 }
2792 scheduleFastWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002793 }
2794
Svet Ganovaf189e32019-02-15 18:45:29 -08002795 private void readUidOps(XmlPullParser parser) throws NumberFormatException,
Svet Ganov2af57082015-07-30 08:44:20 -07002796 XmlPullParserException, IOException {
2797 final int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
2798 int outerDepth = parser.getDepth();
2799 int type;
2800 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2801 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2802 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2803 continue;
2804 }
2805
2806 String tagName = parser.getName();
2807 if (tagName.equals("op")) {
2808 final int code = Integer.parseInt(parser.getAttributeValue(null, "n"));
2809 final int mode = Integer.parseInt(parser.getAttributeValue(null, "m"));
2810 UidState uidState = getUidStateLocked(uid, true);
2811 if (uidState.opModes == null) {
2812 uidState.opModes = new SparseIntArray();
2813 }
2814 uidState.opModes.put(code, mode);
2815 } else {
2816 Slog.w(TAG, "Unknown element under <uid-ops>: "
2817 + parser.getName());
2818 XmlUtils.skipCurrentTag(parser);
2819 }
2820 }
2821 }
2822
Svet Ganovaf189e32019-02-15 18:45:29 -08002823 private void readPackage(XmlPullParser parser)
2824 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002825 String pkgName = parser.getAttributeValue(null, "n");
2826 int outerDepth = parser.getDepth();
2827 int type;
2828 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2829 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2830 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2831 continue;
2832 }
2833
2834 String tagName = parser.getName();
2835 if (tagName.equals("uid")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002836 readUid(parser, pkgName);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002837 } else {
2838 Slog.w(TAG, "Unknown element under <pkg>: "
2839 + parser.getName());
2840 XmlUtils.skipCurrentTag(parser);
2841 }
2842 }
2843 }
2844
Svet Ganovaf189e32019-02-15 18:45:29 -08002845 private void readUid(XmlPullParser parser, String pkgName)
2846 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002847 int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
Svet Ganovaf189e32019-02-15 18:45:29 -08002848 final UidState uidState = getUidStateLocked(uid, true);
Jason Monk1c7c3192014-06-26 12:52:18 -04002849 String isPrivilegedString = parser.getAttributeValue(null, "p");
2850 boolean isPrivileged = false;
2851 if (isPrivilegedString == null) {
2852 try {
2853 IPackageManager packageManager = ActivityThread.getPackageManager();
2854 if (packageManager != null) {
2855 ApplicationInfo appInfo = ActivityThread.getPackageManager()
2856 .getApplicationInfo(pkgName, 0, UserHandle.getUserId(uid));
2857 if (appInfo != null) {
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002858 isPrivileged = (appInfo.privateFlags
2859 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002860 }
2861 } else {
2862 // Could not load data, don't add to cache so it will be loaded later.
2863 return;
2864 }
2865 } catch (RemoteException e) {
2866 Slog.w(TAG, "Could not contact PackageManager", e);
2867 }
2868 } else {
2869 isPrivileged = Boolean.parseBoolean(isPrivilegedString);
2870 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002871 int outerDepth = parser.getDepth();
2872 int type;
2873 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2874 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2875 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2876 continue;
2877 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002878 String tagName = parser.getName();
2879 if (tagName.equals("op")) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002880 readOp(parser, uidState, pkgName, isPrivileged);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002881 } else {
2882 Slog.w(TAG, "Unknown element under <pkg>: "
2883 + parser.getName());
2884 XmlUtils.skipCurrentTag(parser);
2885 }
2886 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002887 uidState.evalForegroundOps(mOpModeWatchers);
2888 }
2889
2890 private void readOp(XmlPullParser parser, @NonNull UidState uidState,
2891 @NonNull String pkgName, boolean isPrivileged) throws NumberFormatException,
2892 XmlPullParserException, IOException {
2893 Op op = new Op(uidState, pkgName,
2894 Integer.parseInt(parser.getAttributeValue(null, "n")));
2895
2896 final int mode = XmlUtils.readIntAttribute(parser, "m",
2897 AppOpsManager.opToDefaultMode(op.op));
2898 op.mode = mode;
2899
2900 int outerDepth = parser.getDepth();
2901 int type;
2902 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2903 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2904 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2905 continue;
2906 }
2907 String tagName = parser.getName();
2908 if (tagName.equals("st")) {
2909 final long key = XmlUtils.readLongAttribute(parser, "n");
2910
2911 final int flags = AppOpsManager.extractFlagsFromKey(key);
2912 final int state = AppOpsManager.extractUidStateFromKey(key);
2913
2914 final long accessTime = XmlUtils.readLongAttribute(parser, "t", 0);
2915 final long rejectTime = XmlUtils.readLongAttribute(parser, "r", 0);
2916 final long accessDuration = XmlUtils.readLongAttribute(parser, "d", 0);
2917 final String proxyPkg = XmlUtils.readStringAttribute(parser, "pp");
2918 final int proxyUid = XmlUtils.readIntAttribute(parser, "pu", 0);
2919
2920 if (accessTime > 0) {
2921 op.accessed(accessTime, proxyUid, proxyPkg, state, flags);
2922 }
2923 if (rejectTime > 0) {
2924 op.rejected(rejectTime, proxyUid, proxyPkg, state, flags);
2925 }
2926 if (accessDuration > 0) {
2927 op.running(accessTime, accessDuration, state, flags);
2928 }
2929 } else {
2930 Slog.w(TAG, "Unknown element under <op>: "
2931 + parser.getName());
2932 XmlUtils.skipCurrentTag(parser);
2933 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002934 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002935
2936 if (uidState.pkgOps == null) {
2937 uidState.pkgOps = new ArrayMap<>();
2938 }
2939 Ops ops = uidState.pkgOps.get(pkgName);
2940 if (ops == null) {
2941 ops = new Ops(pkgName, uidState, isPrivileged);
2942 uidState.pkgOps.put(pkgName, ops);
2943 }
2944 ops.put(op.op, op);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002945 }
2946
2947 void writeState() {
2948 synchronized (mFile) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002949 FileOutputStream stream;
2950 try {
2951 stream = mFile.startWrite();
2952 } catch (IOException e) {
2953 Slog.w(TAG, "Failed to write state: " + e);
2954 return;
2955 }
2956
Dianne Hackborne17b4452018-01-10 13:15:40 -08002957 List<AppOpsManager.PackageOps> allOps = getPackagesForOps(null);
2958
Dianne Hackborn35654b62013-01-14 17:38:02 -08002959 try {
2960 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002961 out.setOutput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002962 out.startDocument(null, true);
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002963 out.startTag(null, "app-ops");
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002964 out.attribute(null, "v", String.valueOf(CURRENT_VERSION));
Svet Ganov2af57082015-07-30 08:44:20 -07002965
2966 final int uidStateCount = mUidStates.size();
2967 for (int i = 0; i < uidStateCount; i++) {
2968 UidState uidState = mUidStates.valueAt(i);
2969 if (uidState.opModes != null && uidState.opModes.size() > 0) {
2970 out.startTag(null, "uid");
2971 out.attribute(null, "n", Integer.toString(uidState.uid));
2972 SparseIntArray uidOpModes = uidState.opModes;
2973 final int opCount = uidOpModes.size();
2974 for (int j = 0; j < opCount; j++) {
2975 final int op = uidOpModes.keyAt(j);
2976 final int mode = uidOpModes.valueAt(j);
2977 out.startTag(null, "op");
2978 out.attribute(null, "n", Integer.toString(op));
2979 out.attribute(null, "m", Integer.toString(mode));
2980 out.endTag(null, "op");
2981 }
2982 out.endTag(null, "uid");
2983 }
2984 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002985
2986 if (allOps != null) {
2987 String lastPkg = null;
2988 for (int i=0; i<allOps.size(); i++) {
2989 AppOpsManager.PackageOps pkg = allOps.get(i);
2990 if (!pkg.getPackageName().equals(lastPkg)) {
2991 if (lastPkg != null) {
2992 out.endTag(null, "pkg");
2993 }
2994 lastPkg = pkg.getPackageName();
2995 out.startTag(null, "pkg");
2996 out.attribute(null, "n", lastPkg);
2997 }
2998 out.startTag(null, "uid");
2999 out.attribute(null, "n", Integer.toString(pkg.getUid()));
Jason Monk1c7c3192014-06-26 12:52:18 -04003000 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07003001 Ops ops = getOpsRawLocked(pkg.getUid(), pkg.getPackageName(),
3002 false /* edit */, false /* uidMismatchExpected */);
Jason Monk1c7c3192014-06-26 12:52:18 -04003003 // Should always be present as the list of PackageOps is generated
3004 // from Ops.
3005 if (ops != null) {
3006 out.attribute(null, "p", Boolean.toString(ops.isPrivileged));
3007 } else {
3008 out.attribute(null, "p", Boolean.toString(false));
3009 }
3010 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08003011 List<AppOpsManager.OpEntry> ops = pkg.getOps();
3012 for (int j=0; j<ops.size(); j++) {
3013 AppOpsManager.OpEntry op = ops.get(j);
3014 out.startTag(null, "op");
3015 out.attribute(null, "n", Integer.toString(op.getOp()));
David Braunf5d83192013-09-16 13:43:51 -07003016 if (op.getMode() != AppOpsManager.opToDefaultMode(op.getOp())) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003017 out.attribute(null, "m", Integer.toString(op.getMode()));
3018 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003019
3020 final LongSparseArray keys = op.collectKeys();
3021 if (keys == null || keys.size() <= 0) {
Svet Ganov8e5bf962019-03-19 23:59:03 -07003022 out.endTag(null, "op");
Svet Ganovaf189e32019-02-15 18:45:29 -08003023 continue;
3024 }
3025
3026 final int keyCount = keys.size();
3027 for (int k = 0; k < keyCount; k++) {
3028 final long key = keys.keyAt(k);
3029
3030 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3031 final int flags = AppOpsManager.extractFlagsFromKey(key);
3032
3033 final long accessTime = op.getLastAccessTime(
3034 uidState, uidState, flags);
3035 final long rejectTime = op.getLastRejectTime(
3036 uidState, uidState, flags);
3037 final long accessDuration = op.getLastDuration(
3038 uidState, uidState, flags);
3039 final String proxyPkg = op.getProxyPackageName(uidState, flags);
3040 final int proxyUid = op.getProxyUid(uidState, flags);
3041
3042 if (accessTime <= 0 && rejectTime <= 0 && accessDuration <= 0
3043 && proxyPkg == null && proxyUid < 0) {
3044 continue;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003045 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003046
3047 out.startTag(null, "st");
3048 out.attribute(null, "n", Long.toString(key));
3049 if (accessTime > 0) {
3050 out.attribute(null, "t", Long.toString(accessTime));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003051 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003052 if (rejectTime > 0) {
3053 out.attribute(null, "r", Long.toString(rejectTime));
3054 }
3055 if (accessDuration > 0) {
3056 out.attribute(null, "d", Long.toString(accessDuration));
3057 }
3058 if (proxyPkg != null) {
3059 out.attribute(null, "pp", proxyPkg);
3060 }
3061 if (proxyUid >= 0) {
3062 out.attribute(null, "pu", Integer.toString(proxyUid));
3063 }
3064 out.endTag(null, "st");
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003065 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003066
Dianne Hackborn35654b62013-01-14 17:38:02 -08003067 out.endTag(null, "op");
3068 }
3069 out.endTag(null, "uid");
3070 }
3071 if (lastPkg != null) {
3072 out.endTag(null, "pkg");
3073 }
3074 }
3075
3076 out.endTag(null, "app-ops");
3077 out.endDocument();
3078 mFile.finishWrite(stream);
3079 } catch (IOException e) {
3080 Slog.w(TAG, "Failed to write state, restoring backup.", e);
3081 mFile.failWrite(stream);
3082 }
3083 }
3084 }
3085
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003086 static class Shell extends ShellCommand {
3087 final IAppOpsService mInterface;
3088 final AppOpsService mInternal;
3089
3090 int userId = UserHandle.USER_SYSTEM;
3091 String packageName;
3092 String opStr;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003093 String modeStr;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003094 int op;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003095 int mode;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003096 int packageUid;
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003097 int nonpackageUid;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003098 final static Binder sBinder = new Binder();
3099 IBinder mToken;
Svet Ganovd563e932019-04-14 13:07:41 -07003100 boolean targetsUid;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003101
3102 Shell(IAppOpsService iface, AppOpsService internal) {
3103 mInterface = iface;
3104 mInternal = internal;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003105 try {
3106 mToken = mInterface.getToken(sBinder);
3107 } catch (RemoteException e) {
3108 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003109 }
3110
3111 @Override
3112 public int onCommand(String cmd) {
3113 return onShellCommand(this, cmd);
3114 }
3115
3116 @Override
3117 public void onHelp() {
3118 PrintWriter pw = getOutPrintWriter();
3119 dumpCommandHelp(pw);
3120 }
3121
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003122 static private int strOpToOp(String op, PrintWriter err) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003123 try {
3124 return AppOpsManager.strOpToOp(op);
3125 } catch (IllegalArgumentException e) {
3126 }
3127 try {
3128 return Integer.parseInt(op);
3129 } catch (NumberFormatException e) {
3130 }
3131 try {
3132 return AppOpsManager.strDebugOpToOp(op);
3133 } catch (IllegalArgumentException e) {
3134 err.println("Error: " + e.getMessage());
3135 return -1;
3136 }
3137 }
3138
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003139 static int strModeToMode(String modeStr, PrintWriter err) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003140 for (int i = AppOpsManager.MODE_NAMES.length - 1; i >= 0; i--) {
3141 if (AppOpsManager.MODE_NAMES[i].equals(modeStr)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003142 return i;
3143 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003144 }
3145 try {
3146 return Integer.parseInt(modeStr);
3147 } catch (NumberFormatException e) {
3148 }
3149 err.println("Error: Mode " + modeStr + " is not valid");
3150 return -1;
3151 }
3152
3153 int parseUserOpMode(int defMode, PrintWriter err) throws RemoteException {
3154 userId = UserHandle.USER_CURRENT;
3155 opStr = null;
3156 modeStr = null;
3157 for (String argument; (argument = getNextArg()) != null;) {
3158 if ("--user".equals(argument)) {
3159 userId = UserHandle.parseUserArg(getNextArgRequired());
3160 } else {
3161 if (opStr == null) {
3162 opStr = argument;
3163 } else if (modeStr == null) {
3164 modeStr = argument;
3165 break;
3166 }
3167 }
3168 }
3169 if (opStr == null) {
3170 err.println("Error: Operation not specified.");
3171 return -1;
3172 }
3173 op = strOpToOp(opStr, err);
3174 if (op < 0) {
3175 return -1;
3176 }
3177 if (modeStr != null) {
3178 if ((mode=strModeToMode(modeStr, err)) < 0) {
3179 return -1;
3180 }
3181 } else {
3182 mode = defMode;
3183 }
3184 return 0;
3185 }
3186
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003187 int parseUserPackageOp(boolean reqOp, PrintWriter err) throws RemoteException {
3188 userId = UserHandle.USER_CURRENT;
3189 packageName = null;
3190 opStr = null;
3191 for (String argument; (argument = getNextArg()) != null;) {
3192 if ("--user".equals(argument)) {
3193 userId = UserHandle.parseUserArg(getNextArgRequired());
Svet Ganovd563e932019-04-14 13:07:41 -07003194 } else if ("--uid".equals(argument)) {
3195 targetsUid = true;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003196 } else {
3197 if (packageName == null) {
3198 packageName = argument;
3199 } else if (opStr == null) {
3200 opStr = argument;
3201 break;
3202 }
3203 }
3204 }
3205 if (packageName == null) {
3206 err.println("Error: Package name not specified.");
3207 return -1;
3208 } else if (opStr == null && reqOp) {
3209 err.println("Error: Operation not specified.");
3210 return -1;
3211 }
3212 if (opStr != null) {
3213 op = strOpToOp(opStr, err);
3214 if (op < 0) {
3215 return -1;
3216 }
3217 } else {
3218 op = AppOpsManager.OP_NONE;
3219 }
3220 if (userId == UserHandle.USER_CURRENT) {
3221 userId = ActivityManager.getCurrentUser();
3222 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003223 nonpackageUid = -1;
3224 try {
3225 nonpackageUid = Integer.parseInt(packageName);
3226 } catch (NumberFormatException e) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003227 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003228 if (nonpackageUid == -1 && packageName.length() > 1 && packageName.charAt(0) == 'u'
3229 && packageName.indexOf('.') < 0) {
3230 int i = 1;
3231 while (i < packageName.length() && packageName.charAt(i) >= '0'
3232 && packageName.charAt(i) <= '9') {
3233 i++;
3234 }
3235 if (i > 1 && i < packageName.length()) {
3236 String userStr = packageName.substring(1, i);
3237 try {
3238 int user = Integer.parseInt(userStr);
3239 char type = packageName.charAt(i);
3240 i++;
3241 int startTypeVal = i;
3242 while (i < packageName.length() && packageName.charAt(i) >= '0'
3243 && packageName.charAt(i) <= '9') {
3244 i++;
3245 }
3246 if (i > startTypeVal) {
3247 String typeValStr = packageName.substring(startTypeVal, i);
3248 try {
3249 int typeVal = Integer.parseInt(typeValStr);
3250 if (type == 'a') {
3251 nonpackageUid = UserHandle.getUid(user,
3252 typeVal + Process.FIRST_APPLICATION_UID);
3253 } else if (type == 's') {
3254 nonpackageUid = UserHandle.getUid(user, typeVal);
3255 }
3256 } catch (NumberFormatException e) {
3257 }
3258 }
3259 } catch (NumberFormatException e) {
3260 }
3261 }
3262 }
3263 if (nonpackageUid != -1) {
3264 packageName = null;
3265 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08003266 packageUid = resolveUid(packageName);
3267 if (packageUid < 0) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003268 packageUid = AppGlobals.getPackageManager().getPackageUid(packageName,
3269 PackageManager.MATCH_UNINSTALLED_PACKAGES, userId);
3270 }
3271 if (packageUid < 0) {
3272 err.println("Error: No UID for " + packageName + " in user " + userId);
3273 return -1;
3274 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003275 }
3276 return 0;
3277 }
3278 }
3279
3280 @Override public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003281 FileDescriptor err, String[] args, ShellCallback callback,
3282 ResultReceiver resultReceiver) {
3283 (new Shell(this, this)).exec(this, in, out, err, args, callback, resultReceiver);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003284 }
3285
3286 static void dumpCommandHelp(PrintWriter pw) {
3287 pw.println("AppOps service (appops) commands:");
3288 pw.println(" help");
3289 pw.println(" Print this help text.");
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003290 pw.println(" start [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3291 pw.println(" Starts a given operation for a particular application.");
3292 pw.println(" stop [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3293 pw.println(" Stops a given operation for a particular application.");
Svet Ganovd563e932019-04-14 13:07:41 -07003294 pw.println(" set [--user <USER_ID>] <--uid PACKAGE | PACKAGE | UID> <OP> <MODE>");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003295 pw.println(" Set the mode for a particular application and operation.");
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003296 pw.println(" get [--user <USER_ID>] <PACKAGE | UID> [<OP>]");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003297 pw.println(" Return the mode for a particular application and optional operation.");
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003298 pw.println(" query-op [--user <USER_ID>] <OP> [<MODE>]");
3299 pw.println(" Print all packages that currently have the given op in the given mode.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003300 pw.println(" reset [--user <USER_ID>] [<PACKAGE>]");
3301 pw.println(" Reset the given application or all applications to default modes.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003302 pw.println(" write-settings");
3303 pw.println(" Immediately write pending changes to storage.");
3304 pw.println(" read-settings");
3305 pw.println(" Read the last written settings, replacing current state in RAM.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003306 pw.println(" options:");
3307 pw.println(" <PACKAGE> an Android package name.");
3308 pw.println(" <OP> an AppOps operation.");
3309 pw.println(" <MODE> one of allow, ignore, deny, or default");
3310 pw.println(" <USER_ID> the user id under which the package is installed. If --user is not");
3311 pw.println(" specified, the current user is assumed.");
Svet Ganovd563e932019-04-14 13:07:41 -07003312 pw.println(" --uid PACKAGE refer to the UID of the package");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003313 }
3314
3315 static int onShellCommand(Shell shell, String cmd) {
3316 if (cmd == null) {
3317 return shell.handleDefaultCommands(cmd);
3318 }
3319 PrintWriter pw = shell.getOutPrintWriter();
3320 PrintWriter err = shell.getErrPrintWriter();
3321 try {
3322 switch (cmd) {
3323 case "set": {
3324 int res = shell.parseUserPackageOp(true, err);
3325 if (res < 0) {
3326 return res;
3327 }
3328 String modeStr = shell.getNextArg();
3329 if (modeStr == null) {
3330 err.println("Error: Mode not specified.");
3331 return -1;
3332 }
3333
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003334 final int mode = shell.strModeToMode(modeStr, err);
3335 if (mode < 0) {
3336 return -1;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003337 }
3338
Svet Ganovd563e932019-04-14 13:07:41 -07003339 if (!shell.targetsUid && shell.packageName != null) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003340 shell.mInterface.setMode(shell.op, shell.packageUid, shell.packageName,
3341 mode);
Svet Ganovd563e932019-04-14 13:07:41 -07003342 } else if (shell.targetsUid && shell.packageName != null) {
3343 try {
3344 final int uid = shell.mInternal.mContext.getPackageManager()
3345 .getPackageUid(shell.packageName, shell.userId);
3346 shell.mInterface.setUidMode(shell.op, uid, mode);
3347 } catch (PackageManager.NameNotFoundException e) {
3348 return -1;
3349 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003350 } else {
3351 shell.mInterface.setUidMode(shell.op, shell.nonpackageUid, mode);
3352 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003353 return 0;
3354 }
3355 case "get": {
3356 int res = shell.parseUserPackageOp(false, err);
3357 if (res < 0) {
3358 return res;
3359 }
3360
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003361 List<AppOpsManager.PackageOps> ops = new ArrayList<>();
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003362 if (shell.packageName != null) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003363 // Uid mode overrides package mode, so make sure it's also reported
3364 List<AppOpsManager.PackageOps> r = shell.mInterface.getUidOps(
3365 shell.packageUid,
3366 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3367 if (r != null) {
3368 ops.addAll(r);
3369 }
3370 r = shell.mInterface.getOpsForPackage(
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003371 shell.packageUid, shell.packageName,
3372 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003373 if (r != null) {
3374 ops.addAll(r);
3375 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003376 } else {
3377 ops = shell.mInterface.getUidOps(
3378 shell.nonpackageUid,
3379 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3380 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003381 if (ops == null || ops.size() <= 0) {
3382 pw.println("No operations.");
Svet Ganov82f09bc2018-01-12 22:08:40 -08003383 if (shell.op > AppOpsManager.OP_NONE && shell.op < AppOpsManager._NUM_OP) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003384 pw.println("Default mode: " + AppOpsManager.modeToName(
Svet Ganov82f09bc2018-01-12 22:08:40 -08003385 AppOpsManager.opToDefaultMode(shell.op)));
3386 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003387 return 0;
3388 }
3389 final long now = System.currentTimeMillis();
3390 for (int i=0; i<ops.size(); i++) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003391 AppOpsManager.PackageOps packageOps = ops.get(i);
3392 if (packageOps.getPackageName() == null) {
3393 pw.print("Uid mode: ");
3394 }
3395 List<AppOpsManager.OpEntry> entries = packageOps.getOps();
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003396 for (int j=0; j<entries.size(); j++) {
3397 AppOpsManager.OpEntry ent = entries.get(j);
3398 pw.print(AppOpsManager.opToName(ent.getOp()));
3399 pw.print(": ");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003400 pw.print(AppOpsManager.modeToName(ent.getMode()));
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003401 if (ent.getTime() != 0) {
3402 pw.print("; time=");
3403 TimeUtils.formatDuration(now - ent.getTime(), pw);
3404 pw.print(" ago");
3405 }
3406 if (ent.getRejectTime() != 0) {
3407 pw.print("; rejectTime=");
3408 TimeUtils.formatDuration(now - ent.getRejectTime(), pw);
3409 pw.print(" ago");
3410 }
3411 if (ent.getDuration() == -1) {
3412 pw.print(" (running)");
3413 } else if (ent.getDuration() != 0) {
3414 pw.print("; duration=");
3415 TimeUtils.formatDuration(ent.getDuration(), pw);
3416 }
3417 pw.println();
3418 }
3419 }
3420 return 0;
3421 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003422 case "query-op": {
3423 int res = shell.parseUserOpMode(AppOpsManager.MODE_IGNORED, err);
3424 if (res < 0) {
3425 return res;
3426 }
3427 List<AppOpsManager.PackageOps> ops = shell.mInterface.getPackagesForOps(
3428 new int[] {shell.op});
3429 if (ops == null || ops.size() <= 0) {
3430 pw.println("No operations.");
3431 return 0;
3432 }
3433 for (int i=0; i<ops.size(); i++) {
3434 final AppOpsManager.PackageOps pkg = ops.get(i);
3435 boolean hasMatch = false;
3436 final List<AppOpsManager.OpEntry> entries = ops.get(i).getOps();
3437 for (int j=0; j<entries.size(); j++) {
3438 AppOpsManager.OpEntry ent = entries.get(j);
3439 if (ent.getOp() == shell.op && ent.getMode() == shell.mode) {
3440 hasMatch = true;
3441 break;
3442 }
3443 }
3444 if (hasMatch) {
3445 pw.println(pkg.getPackageName());
3446 }
3447 }
3448 return 0;
3449 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003450 case "reset": {
3451 String packageName = null;
3452 int userId = UserHandle.USER_CURRENT;
3453 for (String argument; (argument = shell.getNextArg()) != null;) {
3454 if ("--user".equals(argument)) {
3455 String userStr = shell.getNextArgRequired();
3456 userId = UserHandle.parseUserArg(userStr);
3457 } else {
3458 if (packageName == null) {
3459 packageName = argument;
3460 } else {
3461 err.println("Error: Unsupported argument: " + argument);
3462 return -1;
3463 }
3464 }
3465 }
3466
3467 if (userId == UserHandle.USER_CURRENT) {
3468 userId = ActivityManager.getCurrentUser();
3469 }
3470
3471 shell.mInterface.resetAllModes(userId, packageName);
3472 pw.print("Reset all modes for: ");
3473 if (userId == UserHandle.USER_ALL) {
3474 pw.print("all users");
3475 } else {
3476 pw.print("user "); pw.print(userId);
3477 }
3478 pw.print(", ");
3479 if (packageName == null) {
3480 pw.println("all packages");
3481 } else {
3482 pw.print("package "); pw.println(packageName);
3483 }
3484 return 0;
3485 }
3486 case "write-settings": {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003487 shell.mInternal.enforceManageAppOpsModes(Binder.getCallingPid(),
3488 Binder.getCallingUid(), -1);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003489 long token = Binder.clearCallingIdentity();
3490 try {
3491 synchronized (shell.mInternal) {
3492 shell.mInternal.mHandler.removeCallbacks(shell.mInternal.mWriteRunner);
3493 }
3494 shell.mInternal.writeState();
3495 pw.println("Current settings written.");
3496 } finally {
3497 Binder.restoreCallingIdentity(token);
3498 }
3499 return 0;
3500 }
3501 case "read-settings": {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003502 shell.mInternal.enforceManageAppOpsModes(Binder.getCallingPid(),
3503 Binder.getCallingUid(), -1);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003504 long token = Binder.clearCallingIdentity();
3505 try {
3506 shell.mInternal.readState();
3507 pw.println("Last settings read.");
3508 } finally {
3509 Binder.restoreCallingIdentity(token);
3510 }
3511 return 0;
3512 }
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003513 case "start": {
3514 int res = shell.parseUserPackageOp(true, err);
3515 if (res < 0) {
3516 return res;
3517 }
3518
3519 if (shell.packageName != null) {
3520 shell.mInterface.startOperation(shell.mToken,
3521 shell.op, shell.packageUid, shell.packageName, true);
3522 } else {
3523 return -1;
3524 }
3525 return 0;
3526 }
3527 case "stop": {
3528 int res = shell.parseUserPackageOp(true, err);
3529 if (res < 0) {
3530 return res;
3531 }
3532
3533 if (shell.packageName != null) {
3534 shell.mInterface.finishOperation(shell.mToken,
3535 shell.op, shell.packageUid, shell.packageName);
3536 } else {
3537 return -1;
3538 }
3539 return 0;
3540 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003541 default:
3542 return shell.handleDefaultCommands(cmd);
3543 }
3544 } catch (RemoteException e) {
3545 pw.println("Remote exception: " + e);
3546 }
3547 return -1;
3548 }
3549
3550 private void dumpHelp(PrintWriter pw) {
3551 pw.println("AppOps service (appops) dump options:");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003552 pw.println(" -h");
3553 pw.println(" Print this help text.");
3554 pw.println(" --op [OP]");
3555 pw.println(" Limit output to data associated with the given app op code.");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003556 pw.println(" --mode [MODE]");
3557 pw.println(" Limit output to data associated with the given app op mode.");
3558 pw.println(" --package [PACKAGE]");
3559 pw.println(" Limit output to data associated with the given package name.");
Dianne Hackborn125dc532019-01-09 13:31:48 -08003560 pw.println(" --watchers");
3561 pw.println(" Only output the watcher sections.");
Svet Ganovaf189e32019-02-15 18:45:29 -08003562 pw.println(" --history");
3563 pw.println(" Output the historical data.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003564 }
3565
Svet Ganovaf189e32019-02-15 18:45:29 -08003566 private void dumpStatesLocked(@NonNull PrintWriter pw, @NonNull Op op,
3567 long now, @NonNull SimpleDateFormat sdf, @NonNull Date date, @NonNull String prefix) {
3568
3569 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
3570 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
3571
3572 final LongSparseArray keys = entry.collectKeys();
3573 if (keys == null || keys.size() <= 0) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003574 return;
3575 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003576
3577 final int keyCount = keys.size();
3578 for (int k = 0; k < keyCount; k++) {
3579 final long key = keys.keyAt(k);
3580
3581 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3582 final int flags = AppOpsManager.extractFlagsFromKey(key);
3583
3584 final long accessTime = entry.getLastAccessTime(
3585 uidState, uidState, flags);
3586 final long rejectTime = entry.getLastRejectTime(
3587 uidState, uidState, flags);
3588 final long accessDuration = entry.getLastDuration(
3589 uidState, uidState, flags);
3590 final String proxyPkg = entry.getProxyPackageName(uidState, flags);
3591 final int proxyUid = entry.getProxyUid(uidState, flags);
3592
3593 if (accessTime > 0) {
3594 pw.print(prefix);
3595 pw.print("Access: ");
3596 pw.print(AppOpsManager.keyToString(key));
3597 pw.print(" ");
3598 date.setTime(accessTime);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003599 pw.print(sdf.format(date));
3600 pw.print(" (");
Svet Ganovaf189e32019-02-15 18:45:29 -08003601 TimeUtils.formatDuration(accessTime - now, pw);
3602 pw.print(")");
3603 if (accessDuration > 0) {
3604 pw.print(" duration=");
3605 TimeUtils.formatDuration(accessDuration, pw);
3606 }
3607 if (proxyUid >= 0) {
3608 pw.print(" proxy[");
3609 pw.print("uid=");
3610 pw.print(proxyUid);
3611 pw.print(", pkg=");
3612 pw.print(proxyPkg);
3613 pw.print("]");
3614 }
3615 pw.println();
3616 }
3617
3618 if (rejectTime > 0) {
3619 pw.print(prefix);
3620 pw.print("Reject: ");
3621 pw.print(AppOpsManager.keyToString(key));
3622 date.setTime(rejectTime);
3623 pw.print(sdf.format(date));
3624 pw.print(" (");
3625 TimeUtils.formatDuration(rejectTime - now, pw);
3626 pw.print(")");
3627 if (proxyUid >= 0) {
3628 pw.print(" proxy[");
3629 pw.print("uid=");
3630 pw.print(proxyUid);
3631 pw.print(", pkg=");
3632 pw.print(proxyPkg);
3633 pw.print("]");
3634 }
3635 pw.println();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003636 }
3637 }
3638 }
3639
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003640 @Override
3641 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkey6df866a2017-03-31 14:08:23 -06003642 if (!DumpUtils.checkDumpAndUsageStatsPermission(mContext, TAG, pw)) return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003643
Svet Ganov8455ba22019-01-02 13:05:56 -08003644 int dumpOp = OP_NONE;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003645 String dumpPackage = null;
Svet Ganov8455ba22019-01-02 13:05:56 -08003646 int dumpUid = Process.INVALID_UID;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003647 int dumpMode = -1;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003648 boolean dumpWatchers = false;
Svet Ganovaf189e32019-02-15 18:45:29 -08003649 boolean dumpHistory = false;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003650
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003651 if (args != null) {
3652 for (int i=0; i<args.length; i++) {
3653 String arg = args[i];
3654 if ("-h".equals(arg)) {
3655 dumpHelp(pw);
3656 return;
Tim Kilbourn8f1ea832015-08-26 15:07:37 -07003657 } else if ("-a".equals(arg)) {
3658 // dump all data
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003659 } else if ("--op".equals(arg)) {
3660 i++;
3661 if (i >= args.length) {
3662 pw.println("No argument for --op option");
3663 return;
3664 }
3665 dumpOp = Shell.strOpToOp(args[i], pw);
3666 if (dumpOp < 0) {
3667 return;
3668 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003669 } else if ("--package".equals(arg)) {
3670 i++;
3671 if (i >= args.length) {
3672 pw.println("No argument for --package option");
3673 return;
3674 }
3675 dumpPackage = args[i];
3676 try {
3677 dumpUid = AppGlobals.getPackageManager().getPackageUid(dumpPackage,
3678 PackageManager.MATCH_KNOWN_PACKAGES | PackageManager.MATCH_INSTANT,
3679 0);
3680 } catch (RemoteException e) {
3681 }
3682 if (dumpUid < 0) {
3683 pw.println("Unknown package: " + dumpPackage);
3684 return;
3685 }
3686 dumpUid = UserHandle.getAppId(dumpUid);
3687 } else if ("--mode".equals(arg)) {
3688 i++;
3689 if (i >= args.length) {
3690 pw.println("No argument for --mode option");
3691 return;
3692 }
3693 dumpMode = Shell.strModeToMode(args[i], pw);
3694 if (dumpMode < 0) {
3695 return;
3696 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003697 } else if ("--watchers".equals(arg)) {
3698 dumpWatchers = true;
Svet Ganovaf189e32019-02-15 18:45:29 -08003699 } else if ("--history".equals(arg)) {
3700 dumpHistory = true;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003701 } else if (arg.length() > 0 && arg.charAt(0) == '-'){
3702 pw.println("Unknown option: " + arg);
3703 return;
3704 } else {
3705 pw.println("Unknown command: " + arg);
3706 return;
3707 }
3708 }
3709 }
3710
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003711 synchronized (this) {
3712 pw.println("Current AppOps Service state:");
Svet Ganovaf189e32019-02-15 18:45:29 -08003713 if (!dumpHistory && !dumpWatchers) {
3714 mConstants.dump(pw);
3715 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003716 pw.println();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003717 final long now = System.currentTimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003718 final long nowElapsed = SystemClock.elapsedRealtime();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003719 final long nowUptime = SystemClock.uptimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003720 final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
3721 final Date date = new Date();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003722 boolean needSep = false;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003723 if (dumpOp < 0 && dumpMode < 0 && dumpPackage == null && mProfileOwners != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003724 && !dumpWatchers && !dumpHistory) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003725 pw.println(" Profile owners:");
3726 for (int poi = 0; poi < mProfileOwners.size(); poi++) {
3727 pw.print(" User #");
3728 pw.print(mProfileOwners.keyAt(poi));
3729 pw.print(": ");
3730 UserHandle.formatUid(pw, mProfileOwners.valueAt(poi));
3731 pw.println();
3732 }
3733 pw.println();
3734 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003735 if (mOpModeWatchers.size() > 0 && !dumpHistory) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003736 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003737 for (int i=0; i<mOpModeWatchers.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003738 if (dumpOp >= 0 && dumpOp != mOpModeWatchers.keyAt(i)) {
3739 continue;
3740 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003741 boolean printedOpHeader = false;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003742 ArraySet<ModeCallback> callbacks = mOpModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003743 for (int j=0; j<callbacks.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003744 final ModeCallback cb = callbacks.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003745 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003746 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3747 continue;
3748 }
3749 needSep = true;
3750 if (!printedHeader) {
3751 pw.println(" Op mode watchers:");
3752 printedHeader = true;
3753 }
3754 if (!printedOpHeader) {
3755 pw.print(" Op ");
3756 pw.print(AppOpsManager.opToName(mOpModeWatchers.keyAt(i)));
3757 pw.println(":");
3758 printedOpHeader = true;
3759 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003760 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003761 pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003762 }
3763 }
3764 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003765 if (mPackageModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003766 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003767 for (int i=0; i<mPackageModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003768 if (dumpPackage != null && !dumpPackage.equals(mPackageModeWatchers.keyAt(i))) {
3769 continue;
3770 }
3771 needSep = true;
3772 if (!printedHeader) {
3773 pw.println(" Package mode watchers:");
3774 printedHeader = true;
3775 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003776 pw.print(" Pkg "); pw.print(mPackageModeWatchers.keyAt(i));
3777 pw.println(":");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003778 ArraySet<ModeCallback> callbacks = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003779 for (int j=0; j<callbacks.size(); j++) {
3780 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn68d76552017-02-27 15:32:03 -08003781 pw.println(callbacks.valueAt(j));
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003782 }
3783 }
3784 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003785 if (mModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003786 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003787 for (int i=0; i<mModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003788 final ModeCallback cb = mModeWatchers.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003789 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003790 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3791 continue;
3792 }
3793 needSep = true;
3794 if (!printedHeader) {
3795 pw.println(" All op mode watchers:");
3796 printedHeader = true;
3797 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003798 pw.print(" ");
3799 pw.print(Integer.toHexString(System.identityHashCode(mModeWatchers.keyAt(i))));
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003800 pw.print(": "); pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003801 }
3802 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003803 if (mActiveWatchers.size() > 0 && dumpMode < 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003804 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003805 boolean printedHeader = false;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003806 for (int i = 0; i < mActiveWatchers.size(); i++) {
3807 final SparseArray<ActiveCallback> activeWatchers = mActiveWatchers.valueAt(i);
3808 if (activeWatchers.size() <= 0) {
3809 continue;
3810 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003811 final ActiveCallback cb = activeWatchers.valueAt(0);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003812 if (dumpOp >= 0 && activeWatchers.indexOfKey(dumpOp) < 0) {
3813 continue;
3814 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003815 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003816 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3817 continue;
3818 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003819 if (!printedHeader) {
3820 pw.println(" All op active watchers:");
3821 printedHeader = true;
3822 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003823 pw.print(" ");
3824 pw.print(Integer.toHexString(System.identityHashCode(
3825 mActiveWatchers.keyAt(i))));
3826 pw.println(" ->");
3827 pw.print(" [");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003828 final int opCount = activeWatchers.size();
3829 for (i = 0; i < opCount; i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003830 if (i > 0) {
3831 pw.print(' ');
3832 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003833 pw.print(AppOpsManager.opToName(activeWatchers.keyAt(i)));
3834 if (i < opCount - 1) {
3835 pw.print(',');
3836 }
3837 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003838 pw.println("]");
3839 pw.print(" ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003840 pw.println(cb);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003841 }
3842 }
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003843 if (mNotedWatchers.size() > 0 && dumpMode < 0) {
3844 needSep = true;
3845 boolean printedHeader = false;
3846 for (int i = 0; i < mNotedWatchers.size(); i++) {
3847 final SparseArray<NotedCallback> notedWatchers = mNotedWatchers.valueAt(i);
3848 if (notedWatchers.size() <= 0) {
3849 continue;
3850 }
3851 final NotedCallback cb = notedWatchers.valueAt(0);
3852 if (dumpOp >= 0 && notedWatchers.indexOfKey(dumpOp) < 0) {
3853 continue;
3854 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003855 if (dumpPackage != null
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003856 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3857 continue;
3858 }
3859 if (!printedHeader) {
3860 pw.println(" All op noted watchers:");
3861 printedHeader = true;
3862 }
3863 pw.print(" ");
3864 pw.print(Integer.toHexString(System.identityHashCode(
3865 mNotedWatchers.keyAt(i))));
3866 pw.println(" ->");
3867 pw.print(" [");
3868 final int opCount = notedWatchers.size();
3869 for (i = 0; i < opCount; i++) {
3870 if (i > 0) {
3871 pw.print(' ');
3872 }
3873 pw.print(AppOpsManager.opToName(notedWatchers.keyAt(i)));
3874 if (i < opCount - 1) {
3875 pw.print(',');
3876 }
3877 }
3878 pw.println("]");
3879 pw.print(" ");
3880 pw.println(cb);
3881 }
3882 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003883 if (mClients.size() > 0 && dumpMode < 0 && !dumpWatchers && !dumpHistory) {
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003884 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003885 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003886 for (int i=0; i<mClients.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003887 boolean printedClient = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003888 ClientState cs = mClients.valueAt(i);
Svet Ganovf7b47252018-02-26 11:11:27 -08003889 if (cs.mStartedOps.size() > 0) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003890 boolean printedStarted = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003891 for (int j=0; j<cs.mStartedOps.size(); j++) {
3892 Op op = cs.mStartedOps.get(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003893 if (dumpOp >= 0 && op.op != dumpOp) {
3894 continue;
3895 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003896 if (dumpPackage != null && !dumpPackage.equals(op.packageName)) {
3897 continue;
3898 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003899 if (!printedHeader) {
3900 pw.println(" Clients:");
3901 printedHeader = true;
3902 }
3903 if (!printedClient) {
3904 pw.print(" "); pw.print(mClients.keyAt(i)); pw.println(":");
3905 pw.print(" "); pw.println(cs);
3906 printedClient = true;
3907 }
3908 if (!printedStarted) {
3909 pw.println(" Started ops:");
3910 printedStarted = true;
3911 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003912 pw.print(" "); pw.print("uid="); pw.print(op.uidState.uid);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003913 pw.print(" pkg="); pw.print(op.packageName);
3914 pw.print(" op="); pw.println(AppOpsManager.opToName(op.op));
3915 }
3916 }
3917 }
3918 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003919 if (mAudioRestrictions.size() > 0 && dumpOp < 0 && dumpPackage != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003920 && dumpMode < 0 && !dumpWatchers && !dumpWatchers) {
John Spurlock1af30c72014-03-10 08:33:35 -04003921 boolean printedHeader = false;
3922 for (int o=0; o<mAudioRestrictions.size(); o++) {
3923 final String op = AppOpsManager.opToName(mAudioRestrictions.keyAt(o));
3924 final SparseArray<Restriction> restrictions = mAudioRestrictions.valueAt(o);
3925 for (int i=0; i<restrictions.size(); i++) {
3926 if (!printedHeader){
3927 pw.println(" Audio Restrictions:");
3928 printedHeader = true;
3929 needSep = true;
3930 }
John Spurlock7b414672014-07-18 13:02:39 -04003931 final int usage = restrictions.keyAt(i);
John Spurlock1af30c72014-03-10 08:33:35 -04003932 pw.print(" "); pw.print(op);
John Spurlock7b414672014-07-18 13:02:39 -04003933 pw.print(" usage="); pw.print(AudioAttributes.usageToString(usage));
John Spurlock1af30c72014-03-10 08:33:35 -04003934 Restriction r = restrictions.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003935 pw.print(": mode="); pw.println(AppOpsManager.modeToName(r.mode));
John Spurlock1af30c72014-03-10 08:33:35 -04003936 if (!r.exceptionPackages.isEmpty()) {
3937 pw.println(" Exceptions:");
3938 for (int j=0; j<r.exceptionPackages.size(); j++) {
3939 pw.print(" "); pw.println(r.exceptionPackages.valueAt(j));
3940 }
3941 }
3942 }
3943 }
3944 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003945 if (needSep) {
3946 pw.println();
3947 }
Svet Ganov2af57082015-07-30 08:44:20 -07003948 for (int i=0; i<mUidStates.size(); i++) {
3949 UidState uidState = mUidStates.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003950 final SparseIntArray opModes = uidState.opModes;
3951 final ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
3952
Svet Ganovaf189e32019-02-15 18:45:29 -08003953 if (dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08003954 continue;
3955 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003956 if (dumpOp >= 0 || dumpPackage != null || dumpMode >= 0) {
3957 boolean hasOp = dumpOp < 0 || (uidState.opModes != null
3958 && uidState.opModes.indexOfKey(dumpOp) >= 0);
3959 boolean hasPackage = dumpPackage == null;
3960 boolean hasMode = dumpMode < 0;
3961 if (!hasMode && opModes != null) {
3962 for (int opi = 0; !hasMode && opi < opModes.size(); opi++) {
3963 if (opModes.valueAt(opi) == dumpMode) {
3964 hasMode = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003965 }
3966 }
3967 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003968 if (pkgOps != null) {
3969 for (int pkgi = 0;
Svet Ganov8455ba22019-01-02 13:05:56 -08003970 (!hasOp || !hasPackage || !hasMode) && pkgi < pkgOps.size();
3971 pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003972 Ops ops = pkgOps.valueAt(pkgi);
3973 if (!hasOp && ops != null && ops.indexOfKey(dumpOp) >= 0) {
3974 hasOp = true;
3975 }
3976 if (!hasMode) {
3977 for (int opi = 0; !hasMode && opi < ops.size(); opi++) {
3978 if (ops.valueAt(opi).mode == dumpMode) {
3979 hasMode = true;
3980 }
3981 }
3982 }
3983 if (!hasPackage && dumpPackage.equals(ops.packageName)) {
3984 hasPackage = true;
3985 }
3986 }
3987 }
3988 if (uidState.foregroundOps != null && !hasOp) {
3989 if (uidState.foregroundOps.indexOfKey(dumpOp) > 0) {
3990 hasOp = true;
3991 }
3992 }
3993 if (!hasOp || !hasPackage || !hasMode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003994 continue;
3995 }
3996 }
Svet Ganov2af57082015-07-30 08:44:20 -07003997
3998 pw.print(" Uid "); UserHandle.formatUid(pw, uidState.uid); pw.println(":");
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003999 pw.print(" state=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004000 pw.println(AppOpsManager.getUidStateName(uidState.state));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004001 if (uidState.state != uidState.pendingState) {
4002 pw.print(" pendingState=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004003 pw.println(AppOpsManager.getUidStateName(uidState.pendingState));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004004 }
4005 if (uidState.pendingStateCommitTime != 0) {
4006 pw.print(" pendingStateCommitTime=");
Dianne Hackborn9fb93502018-06-18 12:29:44 -07004007 TimeUtils.formatDuration(uidState.pendingStateCommitTime, nowElapsed, pw);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004008 pw.println();
4009 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004010 if (uidState.startNesting != 0) {
4011 pw.print(" startNesting=");
4012 pw.println(uidState.startNesting);
4013 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004014 if (uidState.foregroundOps != null && (dumpMode < 0
4015 || dumpMode == AppOpsManager.MODE_FOREGROUND)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004016 pw.println(" foregroundOps:");
4017 for (int j = 0; j < uidState.foregroundOps.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004018 if (dumpOp >= 0 && dumpOp != uidState.foregroundOps.keyAt(j)) {
4019 continue;
4020 }
4021 pw.print(" ");
4022 pw.print(AppOpsManager.opToName(uidState.foregroundOps.keyAt(j)));
4023 pw.print(": ");
4024 pw.println(uidState.foregroundOps.valueAt(j) ? "WATCHER" : "SILENT");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004025 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004026 pw.print(" hasForegroundWatchers=");
4027 pw.println(uidState.hasForegroundWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004028 }
Svet Ganovee438d42017-01-19 18:04:38 -08004029 needSep = true;
Svet Ganov2af57082015-07-30 08:44:20 -07004030
Svet Ganov2af57082015-07-30 08:44:20 -07004031 if (opModes != null) {
4032 final int opModeCount = opModes.size();
4033 for (int j = 0; j < opModeCount; j++) {
4034 final int code = opModes.keyAt(j);
4035 final int mode = opModes.valueAt(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004036 if (dumpOp >= 0 && dumpOp != code) {
4037 continue;
4038 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004039 if (dumpMode >= 0 && dumpMode != mode) {
4040 continue;
4041 }
Svet Ganov2af57082015-07-30 08:44:20 -07004042 pw.print(" "); pw.print(AppOpsManager.opToName(code));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004043 pw.print(": mode="); pw.println(AppOpsManager.modeToName(mode));
Svet Ganov2af57082015-07-30 08:44:20 -07004044 }
4045 }
4046
Svet Ganov2af57082015-07-30 08:44:20 -07004047 if (pkgOps == null) {
4048 continue;
4049 }
4050
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004051 for (int pkgi = 0; pkgi < pkgOps.size(); pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004052 final Ops ops = pkgOps.valueAt(pkgi);
4053 if (dumpPackage != null && !dumpPackage.equals(ops.packageName)) {
4054 continue;
4055 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004056 boolean printedPackage = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004057 for (int j=0; j<ops.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004058 final Op op = ops.valueAt(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004059 final int opCode = op.op;
4060 if (dumpOp >= 0 && dumpOp != opCode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004061 continue;
4062 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004063 if (dumpMode >= 0 && dumpMode != op.mode) {
4064 continue;
4065 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004066 if (!printedPackage) {
4067 pw.print(" Package "); pw.print(ops.packageName); pw.println(":");
4068 printedPackage = true;
4069 }
Svet Ganovaf189e32019-02-15 18:45:29 -08004070 pw.print(" "); pw.print(AppOpsManager.opToName(opCode));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004071 pw.print(" ("); pw.print(AppOpsManager.modeToName(op.mode));
Svet Ganovaf189e32019-02-15 18:45:29 -08004072 final int switchOp = AppOpsManager.opToSwitch(opCode);
4073 if (switchOp != opCode) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004074 pw.print(" / switch ");
4075 pw.print(AppOpsManager.opToName(switchOp));
4076 final Op switchObj = ops.get(switchOp);
Svet Ganovaf189e32019-02-15 18:45:29 -08004077 int mode = switchObj != null ? switchObj.mode
4078 : AppOpsManager.opToDefaultMode(switchOp);
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004079 pw.print("="); pw.print(AppOpsManager.modeToName(mode));
4080 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004081 pw.println("): ");
Svet Ganovaf189e32019-02-15 18:45:29 -08004082 dumpStatesLocked(pw, op, now, sdf, date, " ");
4083 if (op.running) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004084 pw.print(" Running start at: ");
4085 TimeUtils.formatDuration(nowElapsed-op.startRealtime, pw);
4086 pw.println();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004087 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004088 if (op.startNesting != 0) {
4089 pw.print(" startNesting=");
4090 pw.println(op.startNesting);
4091 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004092 }
4093 }
4094 }
Svet Ganovee438d42017-01-19 18:04:38 -08004095 if (needSep) {
4096 pw.println();
4097 }
4098
4099 final int userRestrictionCount = mOpUserRestrictions.size();
4100 for (int i = 0; i < userRestrictionCount; i++) {
4101 IBinder token = mOpUserRestrictions.keyAt(i);
4102 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004103 boolean printedTokenHeader = false;
4104
Svet Ganovaf189e32019-02-15 18:45:29 -08004105 if (dumpMode >= 0 || dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08004106 continue;
4107 }
Svet Ganovee438d42017-01-19 18:04:38 -08004108
4109 final int restrictionCount = restrictionState.perUserRestrictions != null
4110 ? restrictionState.perUserRestrictions.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004111 if (restrictionCount > 0 && dumpPackage == null) {
4112 boolean printedOpsHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004113 for (int j = 0; j < restrictionCount; j++) {
4114 int userId = restrictionState.perUserRestrictions.keyAt(j);
4115 boolean[] restrictedOps = restrictionState.perUserRestrictions.valueAt(j);
4116 if (restrictedOps == null) {
4117 continue;
4118 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08004119 if (dumpOp >= 0 && (dumpOp >= restrictedOps.length
4120 || !restrictedOps[dumpOp])) {
4121 continue;
4122 }
4123 if (!printedTokenHeader) {
4124 pw.println(" User restrictions for token " + token + ":");
4125 printedTokenHeader = true;
4126 }
4127 if (!printedOpsHeader) {
4128 pw.println(" Restricted ops:");
4129 printedOpsHeader = true;
4130 }
Svet Ganovee438d42017-01-19 18:04:38 -08004131 StringBuilder restrictedOpsValue = new StringBuilder();
4132 restrictedOpsValue.append("[");
4133 final int restrictedOpCount = restrictedOps.length;
4134 for (int k = 0; k < restrictedOpCount; k++) {
4135 if (restrictedOps[k]) {
4136 if (restrictedOpsValue.length() > 1) {
4137 restrictedOpsValue.append(", ");
4138 }
4139 restrictedOpsValue.append(AppOpsManager.opToName(k));
4140 }
4141 }
4142 restrictedOpsValue.append("]");
4143 pw.print(" "); pw.print("user: "); pw.print(userId);
4144 pw.print(" restricted ops: "); pw.println(restrictedOpsValue);
4145 }
4146 }
4147
4148 final int excludedPackageCount = restrictionState.perUserExcludedPackages != null
4149 ? restrictionState.perUserExcludedPackages.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004150 if (excludedPackageCount > 0 && dumpOp < 0) {
4151 boolean printedPackagesHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004152 for (int j = 0; j < excludedPackageCount; j++) {
4153 int userId = restrictionState.perUserExcludedPackages.keyAt(j);
4154 String[] packageNames = restrictionState.perUserExcludedPackages.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004155 if (packageNames == null) {
4156 continue;
4157 }
4158 boolean hasPackage;
4159 if (dumpPackage != null) {
4160 hasPackage = false;
4161 for (String pkg : packageNames) {
4162 if (dumpPackage.equals(pkg)) {
4163 hasPackage = true;
4164 break;
4165 }
4166 }
4167 } else {
4168 hasPackage = true;
4169 }
4170 if (!hasPackage) {
4171 continue;
4172 }
4173 if (!printedTokenHeader) {
4174 pw.println(" User restrictions for token " + token + ":");
4175 printedTokenHeader = true;
4176 }
4177 if (!printedPackagesHeader) {
4178 pw.println(" Excluded packages:");
4179 printedPackagesHeader = true;
4180 }
Svet Ganovee438d42017-01-19 18:04:38 -08004181 pw.print(" "); pw.print("user: "); pw.print(userId);
4182 pw.print(" packages: "); pw.println(Arrays.toString(packageNames));
4183 }
4184 }
4185 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004186 }
Svet Ganov8455ba22019-01-02 13:05:56 -08004187
4188 // Must not hold the appops lock
Svet Ganovaf189e32019-02-15 18:45:29 -08004189 if (dumpHistory && !dumpWatchers) {
4190 mHistoricalRegistry.dump(" ", pw, dumpUid, dumpPackage, dumpOp);
4191 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004192 }
John Spurlock1af30c72014-03-10 08:33:35 -04004193
4194 private static final class Restriction {
4195 private static final ArraySet<String> NO_EXCEPTIONS = new ArraySet<String>();
4196 int mode;
4197 ArraySet<String> exceptionPackages = NO_EXCEPTIONS;
4198 }
Jason Monk62062992014-05-06 09:55:28 -04004199
4200 @Override
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004201 public void setUserRestrictions(Bundle restrictions, IBinder token, int userHandle) {
Jason Monk62062992014-05-06 09:55:28 -04004202 checkSystemUid("setUserRestrictions");
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004203 Preconditions.checkNotNull(restrictions);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004204 Preconditions.checkNotNull(token);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004205 for (int i = 0; i < AppOpsManager._NUM_OP; i++) {
Jason Monk62062992014-05-06 09:55:28 -04004206 String restriction = AppOpsManager.opToRestriction(i);
Suprabh Shukla64e0dcb2016-05-24 16:23:11 -07004207 if (restriction != null) {
4208 setUserRestrictionNoCheck(i, restrictions.getBoolean(restriction, false), token,
4209 userHandle, null);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004210 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004211 }
4212 }
4213
4214 @Override
Ruben Brunk29931bc2016-03-11 00:24:26 -08004215 public void setUserRestriction(int code, boolean restricted, IBinder token, int userHandle,
4216 String[] exceptionPackages) {
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004217 if (Binder.getCallingPid() != Process.myPid()) {
4218 mContext.enforcePermission(Manifest.permission.MANAGE_APP_OPS_RESTRICTIONS,
4219 Binder.getCallingPid(), Binder.getCallingUid(), null);
4220 }
4221 if (userHandle != UserHandle.getCallingUserId()) {
4222 if (mContext.checkCallingOrSelfPermission(Manifest.permission
4223 .INTERACT_ACROSS_USERS_FULL) != PackageManager.PERMISSION_GRANTED
4224 && mContext.checkCallingOrSelfPermission(Manifest.permission
4225 .INTERACT_ACROSS_USERS) != PackageManager.PERMISSION_GRANTED) {
4226 throw new SecurityException("Need INTERACT_ACROSS_USERS_FULL or"
4227 + " INTERACT_ACROSS_USERS to interact cross user ");
Jason Monk62062992014-05-06 09:55:28 -04004228 }
4229 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004230 verifyIncomingOp(code);
4231 Preconditions.checkNotNull(token);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004232 setUserRestrictionNoCheck(code, restricted, token, userHandle, exceptionPackages);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004233 }
4234
4235 private void setUserRestrictionNoCheck(int code, boolean restricted, IBinder token,
Ruben Brunk29931bc2016-03-11 00:24:26 -08004236 int userHandle, String[] exceptionPackages) {
Svet Ganov442ed572016-08-17 17:29:43 -07004237 synchronized (AppOpsService.this) {
4238 ClientRestrictionState restrictionState = mOpUserRestrictions.get(token);
4239
4240 if (restrictionState == null) {
4241 try {
4242 restrictionState = new ClientRestrictionState(token);
4243 } catch (RemoteException e) {
4244 return;
4245 }
4246 mOpUserRestrictions.put(token, restrictionState);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004247 }
Svet Ganov442ed572016-08-17 17:29:43 -07004248
4249 if (restrictionState.setRestriction(code, restricted, exceptionPackages, userHandle)) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004250 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07004251 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
Svet Ganov442ed572016-08-17 17:29:43 -07004252 }
4253
4254 if (restrictionState.isDefault()) {
4255 mOpUserRestrictions.remove(token);
4256 restrictionState.destroy();
4257 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08004258 }
Julia Reynoldsbb21c252016-04-05 16:01:49 -04004259 }
4260
Svet Ganov3a95f832018-03-23 17:44:30 -07004261 private void notifyWatchersOfChange(int code, int uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004262 final ArraySet<ModeCallback> clonedCallbacks;
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004263 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004264 ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004265 if (callbacks == null) {
4266 return;
4267 }
Dianne Hackborn68d76552017-02-27 15:32:03 -08004268 clonedCallbacks = new ArraySet<>(callbacks);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004269 }
4270
Svet Ganov3a95f832018-03-23 17:44:30 -07004271 notifyOpChanged(clonedCallbacks, code, uid, null);
Jason Monk62062992014-05-06 09:55:28 -04004272 }
4273
4274 @Override
4275 public void removeUser(int userHandle) throws RemoteException {
4276 checkSystemUid("removeUser");
Svet Ganov442ed572016-08-17 17:29:43 -07004277 synchronized (AppOpsService.this) {
4278 final int tokenCount = mOpUserRestrictions.size();
4279 for (int i = tokenCount - 1; i >= 0; i--) {
4280 ClientRestrictionState opRestrictions = mOpUserRestrictions.valueAt(i);
4281 opRestrictions.removeUser(userHandle);
4282 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004283 removeUidsForUserLocked(userHandle);
4284 }
4285 }
4286
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004287 @Override
4288 public boolean isOperationActive(int code, int uid, String packageName) {
Svet Ganovf7b47252018-02-26 11:11:27 -08004289 if (Binder.getCallingUid() != uid) {
4290 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
4291 != PackageManager.PERMISSION_GRANTED) {
4292 return false;
4293 }
4294 }
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004295 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004296 final String resolvedPackageName = resolvePackageName(uid, packageName);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004297 if (resolvedPackageName == null) {
4298 return false;
4299 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004300 synchronized (AppOpsService.this) {
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004301 for (int i = mClients.size() - 1; i >= 0; i--) {
4302 final ClientState client = mClients.valueAt(i);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004303 for (int j = client.mStartedOps.size() - 1; j >= 0; j--) {
4304 final Op op = client.mStartedOps.get(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004305 if (op.op == code && op.uidState.uid == uid) return true;
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004306 }
4307 }
4308 }
4309 return false;
4310 }
4311
Svet Ganov8455ba22019-01-02 13:05:56 -08004312 @Override
4313 public void setHistoryParameters(@AppOpsManager.HistoricalMode int mode,
4314 long baseSnapshotInterval, int compressionStep) {
4315 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4316 "setHistoryParameters");
4317 // Must not hold the appops lock
4318 mHistoricalRegistry.setHistoryParameters(mode, baseSnapshotInterval, compressionStep);
4319 }
4320
4321 @Override
4322 public void offsetHistory(long offsetMillis) {
4323 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4324 "offsetHistory");
4325 // Must not hold the appops lock
4326 mHistoricalRegistry.offsetHistory(offsetMillis);
4327 }
4328
4329 @Override
4330 public void addHistoricalOps(HistoricalOps ops) {
4331 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4332 "addHistoricalOps");
4333 // Must not hold the appops lock
4334 mHistoricalRegistry.addHistoricalOps(ops);
4335 }
4336
4337 @Override
4338 public void resetHistoryParameters() {
4339 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4340 "resetHistoryParameters");
4341 // Must not hold the appops lock
4342 mHistoricalRegistry.resetHistoryParameters();
4343 }
4344
4345 @Override
4346 public void clearHistory() {
4347 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4348 "clearHistory");
4349 // Must not hold the appops lock
4350 mHistoricalRegistry.clearHistory();
4351 }
4352
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004353 private void removeUidsForUserLocked(int userHandle) {
4354 for (int i = mUidStates.size() - 1; i >= 0; --i) {
4355 final int uid = mUidStates.keyAt(i);
4356 if (UserHandle.getUserId(uid) == userHandle) {
4357 mUidStates.removeAt(i);
4358 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004359 }
4360 }
4361
Jason Monk62062992014-05-06 09:55:28 -04004362 private void checkSystemUid(String function) {
4363 int uid = Binder.getCallingUid();
4364 if (uid != Process.SYSTEM_UID) {
4365 throw new SecurityException(function + " must by called by the system");
4366 }
4367 }
4368
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004369 private static String resolvePackageName(int uid, String packageName) {
Svet Ganov82f09bc2018-01-12 22:08:40 -08004370 if (uid == Process.ROOT_UID) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004371 return "root";
4372 } else if (uid == Process.SHELL_UID) {
4373 return "com.android.shell";
Svet Ganov82f09bc2018-01-12 22:08:40 -08004374 } else if (uid == Process.MEDIA_UID) {
4375 return "media";
4376 } else if (uid == Process.AUDIOSERVER_UID) {
4377 return "audioserver";
4378 } else if (uid == Process.CAMERASERVER_UID) {
4379 return "cameraserver";
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004380 } else if (uid == Process.SYSTEM_UID && packageName == null) {
4381 return "android";
4382 }
4383 return packageName;
4384 }
4385
Svet Ganov82f09bc2018-01-12 22:08:40 -08004386 private static int resolveUid(String packageName) {
4387 if (packageName == null) {
4388 return -1;
4389 }
4390 switch (packageName) {
4391 case "root":
4392 return Process.ROOT_UID;
4393 case "shell":
4394 return Process.SHELL_UID;
4395 case "media":
4396 return Process.MEDIA_UID;
4397 case "audioserver":
4398 return Process.AUDIOSERVER_UID;
4399 case "cameraserver":
4400 return Process.CAMERASERVER_UID;
4401 }
4402 return -1;
4403 }
4404
Svet Ganov2af57082015-07-30 08:44:20 -07004405 private static String[] getPackagesForUid(int uid) {
Svet Ganovf3807aa2015-08-02 10:09:56 -07004406 String[] packageNames = null;
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004407
4408 // Very early during boot the package manager is not yet or not yet fully started. At this
4409 // time there are no packages yet.
4410 if (AppGlobals.getPackageManager() != null) {
4411 try {
4412 packageNames = AppGlobals.getPackageManager().getPackagesForUid(uid);
4413 } catch (RemoteException e) {
4414 /* ignore - local call */
4415 }
Svet Ganov2af57082015-07-30 08:44:20 -07004416 }
Svet Ganovf3807aa2015-08-02 10:09:56 -07004417 if (packageNames == null) {
4418 return EmptyArray.STRING;
4419 }
4420 return packageNames;
Svet Ganov2af57082015-07-30 08:44:20 -07004421 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004422
4423 private final class ClientRestrictionState implements DeathRecipient {
4424 private final IBinder token;
4425 SparseArray<boolean[]> perUserRestrictions;
4426 SparseArray<String[]> perUserExcludedPackages;
4427
4428 public ClientRestrictionState(IBinder token)
4429 throws RemoteException {
4430 token.linkToDeath(this, 0);
4431 this.token = token;
4432 }
4433
4434 public boolean setRestriction(int code, boolean restricted,
4435 String[] excludedPackages, int userId) {
4436 boolean changed = false;
4437
4438 if (perUserRestrictions == null && restricted) {
4439 perUserRestrictions = new SparseArray<>();
4440 }
4441
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004442 int[] users;
4443 if (userId == UserHandle.USER_ALL) {
4444 List<UserInfo> liveUsers = UserManager.get(mContext).getUsers(false);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004445
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004446 users = new int[liveUsers.size()];
4447 for (int i = 0; i < liveUsers.size(); i++) {
4448 users[i] = liveUsers.get(i).id;
4449 }
4450 } else {
4451 users = new int[]{userId};
4452 }
4453
4454 if (perUserRestrictions != null) {
4455 int numUsers = users.length;
4456
4457 for (int i = 0; i < numUsers; i++) {
4458 int thisUserId = users[i];
4459
4460 boolean[] userRestrictions = perUserRestrictions.get(thisUserId);
4461 if (userRestrictions == null && restricted) {
4462 userRestrictions = new boolean[AppOpsManager._NUM_OP];
4463 perUserRestrictions.put(thisUserId, userRestrictions);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004464 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004465 if (userRestrictions != null && userRestrictions[code] != restricted) {
4466 userRestrictions[code] = restricted;
4467 if (!restricted && isDefault(userRestrictions)) {
4468 perUserRestrictions.remove(thisUserId);
4469 userRestrictions = null;
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004470 }
4471 changed = true;
4472 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004473
4474 if (userRestrictions != null) {
4475 final boolean noExcludedPackages = ArrayUtils.isEmpty(excludedPackages);
4476 if (perUserExcludedPackages == null && !noExcludedPackages) {
4477 perUserExcludedPackages = new SparseArray<>();
4478 }
4479 if (perUserExcludedPackages != null && !Arrays.equals(excludedPackages,
4480 perUserExcludedPackages.get(thisUserId))) {
4481 if (noExcludedPackages) {
4482 perUserExcludedPackages.remove(thisUserId);
4483 if (perUserExcludedPackages.size() <= 0) {
4484 perUserExcludedPackages = null;
4485 }
4486 } else {
4487 perUserExcludedPackages.put(thisUserId, excludedPackages);
4488 }
4489 changed = true;
4490 }
4491 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004492 }
4493 }
4494
4495 return changed;
4496 }
4497
4498 public boolean hasRestriction(int restriction, String packageName, int userId) {
4499 if (perUserRestrictions == null) {
4500 return false;
4501 }
4502 boolean[] restrictions = perUserRestrictions.get(userId);
4503 if (restrictions == null) {
4504 return false;
4505 }
4506 if (!restrictions[restriction]) {
4507 return false;
4508 }
4509 if (perUserExcludedPackages == null) {
4510 return true;
4511 }
4512 String[] perUserExclusions = perUserExcludedPackages.get(userId);
4513 if (perUserExclusions == null) {
4514 return true;
4515 }
4516 return !ArrayUtils.contains(perUserExclusions, packageName);
4517 }
4518
4519 public void removeUser(int userId) {
4520 if (perUserExcludedPackages != null) {
4521 perUserExcludedPackages.remove(userId);
4522 if (perUserExcludedPackages.size() <= 0) {
4523 perUserExcludedPackages = null;
4524 }
4525 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004526 if (perUserRestrictions != null) {
4527 perUserRestrictions.remove(userId);
4528 if (perUserRestrictions.size() <= 0) {
4529 perUserRestrictions = null;
4530 }
4531 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004532 }
4533
4534 public boolean isDefault() {
4535 return perUserRestrictions == null || perUserRestrictions.size() <= 0;
4536 }
4537
4538 @Override
4539 public void binderDied() {
4540 synchronized (AppOpsService.this) {
4541 mOpUserRestrictions.remove(token);
4542 if (perUserRestrictions == null) {
4543 return;
4544 }
4545 final int userCount = perUserRestrictions.size();
4546 for (int i = 0; i < userCount; i++) {
4547 final boolean[] restrictions = perUserRestrictions.valueAt(i);
4548 final int restrictionCount = restrictions.length;
4549 for (int j = 0; j < restrictionCount; j++) {
4550 if (restrictions[j]) {
4551 final int changedCode = j;
Svet Ganov3a95f832018-03-23 17:44:30 -07004552 mHandler.post(() -> notifyWatchersOfChange(changedCode, UID_ANY));
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004553 }
4554 }
4555 }
4556 destroy();
4557 }
4558 }
4559
4560 public void destroy() {
4561 token.unlinkToDeath(this, 0);
4562 }
4563
4564 private boolean isDefault(boolean[] array) {
4565 if (ArrayUtils.isEmpty(array)) {
4566 return true;
4567 }
4568 for (boolean value : array) {
4569 if (value) {
4570 return false;
4571 }
4572 }
4573 return true;
4574 }
4575 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004576
4577 private final class AppOpsManagerInternalImpl extends AppOpsManagerInternal {
4578 @Override public void setDeviceAndProfileOwners(SparseIntArray owners) {
4579 synchronized (AppOpsService.this) {
4580 mProfileOwners = owners;
4581 }
4582 }
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004583
4584 @Override
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004585 public void setUidMode(int code, int uid, int mode) {
4586 AppOpsService.this.setUidMode(code, uid, mode);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004587 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08004588
4589 @Override
4590 public void setAllPkgModesToDefault(int code, int uid) {
4591 AppOpsService.this.setAllPkgModesToDefault(code, uid);
4592 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07004593
4594 @Override
4595 public @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName) {
4596 return AppOpsService.this.checkOperationUnchecked(code, uid, packageName, true, false);
4597 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004598 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004599}