blob: 7569363a7134c3f0a068469eae1da704f5b9ea1a [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 Ganovdc0f4432019-06-04 14:16:51 -0700204 final HistoricalRegistry mHistoricalRegistry = new HistoricalRegistry(this);
Svet Ganov8455ba22019-01-02 13:05:56 -0800205
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) {
Wei Wange1f864e2019-03-28 18:12:18 -0700346 return state <= AppOpsManager.resolveFirstUnrestrictedUidState(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 }
Winson4e3b4352019-05-07 16:29:59 -0700908
909 mHistoricalRegistry.clearHistory(uid, packageName);
Dianne Hackborn514074f2013-02-11 10:52:46 -0800910 }
911 }
912
913 public void uidRemoved(int uid) {
914 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -0700915 if (mUidStates.indexOfKey(uid) >= 0) {
916 mUidStates.remove(uid);
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800917 scheduleFastWriteLocked();
Dianne Hackborn514074f2013-02-11 10:52:46 -0800918 }
919 }
920 }
921
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700922 public void updateUidProcState(int uid, int procState) {
923 synchronized (this) {
924 final UidState uidState = getUidStateLocked(uid, true);
Amith Yamasania0a30a12019-01-22 11:38:06 -0800925 int newState = PROCESS_STATE_TO_UID_STATE[procState];
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700926 if (uidState != null && uidState.pendingState != newState) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700927 final int oldPendingState = uidState.pendingState;
928 uidState.pendingState = newState;
Wei Wange1f864e2019-03-28 18:12:18 -0700929 if (newState < uidState.state
930 || (newState <= UID_STATE_MAX_LAST_NON_RESTRICTED
931 && uidState.state > UID_STATE_MAX_LAST_NON_RESTRICTED)) {
932 // We are moving to a more important state, or the new state may be in the
933 // foreground and the old state is in the background, then always do it
934 // immediately.
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700935 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700936 } else if (uidState.pendingStateCommitTime == 0) {
937 // We are moving to a less important state for the first time,
938 // delay the application for a bit.
Dianne Hackborne93ab412018-05-14 17:52:30 -0700939 final long settleTime;
940 if (uidState.state <= UID_STATE_TOP) {
941 settleTime = mConstants.TOP_STATE_SETTLE_TIME;
942 } else if (uidState.state <= UID_STATE_FOREGROUND_SERVICE) {
943 settleTime = mConstants.FG_SERVICE_STATE_SETTLE_TIME;
944 } else {
945 settleTime = mConstants.BG_STATE_SETTLE_TIME;
946 }
Dianne Hackborn9fb93502018-06-18 12:29:44 -0700947 uidState.pendingStateCommitTime = SystemClock.elapsedRealtime() + settleTime;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700948 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700949 if (uidState.startNesting != 0) {
950 // There is some actively running operation... need to find it
951 // and appropriately update its state.
952 final long now = System.currentTimeMillis();
953 for (int i = uidState.pkgOps.size() - 1; i >= 0; i--) {
954 final Ops ops = uidState.pkgOps.valueAt(i);
955 for (int j = ops.size() - 1; j >= 0; j--) {
956 final Op op = ops.valueAt(j);
957 if (op.startNesting > 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -0800958 final long duration = SystemClock.elapsedRealtime()
959 - op.startRealtime;
960 // We don't support proxy long running ops (start/stop)
961 mHistoricalRegistry.increaseOpAccessDuration(op.op,
962 op.uidState.uid, op.packageName, oldPendingState,
963 AppOpsManager.OP_FLAG_SELF, duration);
964 // Finish the op in the old state
965 op.finished(now, duration, oldPendingState,
966 AppOpsManager.OP_FLAG_SELF);
967 // Start the op in the new state
968 op.startRealtime = now;
969 op.started(now, newState, AppOpsManager.OP_FLAG_SELF);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700970 }
971 }
972 }
973 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700974 }
975 }
976 }
977
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800978 public void shutdown() {
979 Slog.w(TAG, "Writing app ops before shutdown...");
Dianne Hackborn35654b62013-01-14 17:38:02 -0800980 boolean doWrite = false;
981 synchronized (this) {
982 if (mWriteScheduled) {
983 mWriteScheduled = false;
984 doWrite = true;
985 }
986 }
987 if (doWrite) {
988 writeState();
989 }
990 }
991
Dianne Hackborn72e39832013-01-18 18:36:09 -0800992 private ArrayList<AppOpsManager.OpEntry> collectOps(Ops pkgOps, int[] ops) {
993 ArrayList<AppOpsManager.OpEntry> resOps = null;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700994 final long elapsedNow = SystemClock.elapsedRealtime();
Dianne Hackborn72e39832013-01-18 18:36:09 -0800995 if (ops == null) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700996 resOps = new ArrayList<>();
Dianne Hackborn72e39832013-01-18 18:36:09 -0800997 for (int j=0; j<pkgOps.size(); j++) {
998 Op curOp = pkgOps.valueAt(j);
Svet Ganovaf189e32019-02-15 18:45:29 -0800999 resOps.add(getOpEntryForResult(curOp, elapsedNow));
Dianne Hackborn72e39832013-01-18 18:36:09 -08001000 }
1001 } else {
1002 for (int j=0; j<ops.length; j++) {
1003 Op curOp = pkgOps.get(ops[j]);
1004 if (curOp != null) {
1005 if (resOps == null) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001006 resOps = new ArrayList<>();
Dianne Hackborn72e39832013-01-18 18:36:09 -08001007 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001008 resOps.add(getOpEntryForResult(curOp, elapsedNow));
Dianne Hackborn72e39832013-01-18 18:36:09 -08001009 }
1010 }
1011 }
1012 return resOps;
1013 }
1014
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001015 private ArrayList<AppOpsManager.OpEntry> collectOps(SparseIntArray uidOps, int[] ops) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08001016 if (uidOps == null) {
1017 return null;
1018 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001019 ArrayList<AppOpsManager.OpEntry> resOps = null;
1020 if (ops == null) {
1021 resOps = new ArrayList<>();
1022 for (int j=0; j<uidOps.size(); j++) {
Svet Ganovaf189e32019-02-15 18:45:29 -08001023 resOps.add(new OpEntry(uidOps.keyAt(j), uidOps.valueAt(j)));
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001024 }
1025 } else {
1026 for (int j=0; j<ops.length; j++) {
1027 int index = uidOps.indexOfKey(ops[j]);
1028 if (index >= 0) {
1029 if (resOps == null) {
1030 resOps = new ArrayList<>();
1031 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001032 resOps.add(new OpEntry(uidOps.keyAt(j), uidOps.valueAt(j)));
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001033 }
1034 }
1035 }
1036 return resOps;
1037 }
1038
Svet Ganovaf189e32019-02-15 18:45:29 -08001039 private static @NonNull OpEntry getOpEntryForResult(@NonNull Op op, long elapsedNow) {
1040 if (op.running) {
1041 op.continuing(elapsedNow - op.startRealtime,
1042 op.uidState.state, AppOpsManager.OP_FLAG_SELF);
1043 }
1044 final OpEntry entry = new OpEntry(op.op, op.running, op.mode,
1045 op.mAccessTimes != null ? op.mAccessTimes.clone() : null,
1046 op.mRejectTimes != null ? op.mRejectTimes.clone() : null,
1047 op.mDurations != null ? op.mDurations.clone() : null,
1048 op.mProxyUids != null ? op.mProxyUids.clone() : null,
1049 op.mProxyPackageNames != null ? op.mProxyPackageNames.clone() : null);
1050 return entry;
1051 }
1052
Dianne Hackborn35654b62013-01-14 17:38:02 -08001053 @Override
1054 public List<AppOpsManager.PackageOps> getPackagesForOps(int[] ops) {
1055 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1056 Binder.getCallingPid(), Binder.getCallingUid(), null);
1057 ArrayList<AppOpsManager.PackageOps> res = null;
1058 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001059 final int uidStateCount = mUidStates.size();
1060 for (int i = 0; i < uidStateCount; i++) {
1061 UidState uidState = mUidStates.valueAt(i);
1062 if (uidState.pkgOps == null || uidState.pkgOps.isEmpty()) {
1063 continue;
1064 }
1065 ArrayMap<String, Ops> packages = uidState.pkgOps;
1066 final int packageCount = packages.size();
1067 for (int j = 0; j < packageCount; j++) {
1068 Ops pkgOps = packages.valueAt(j);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001069 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(pkgOps, ops);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001070 if (resOps != null) {
1071 if (res == null) {
1072 res = new ArrayList<AppOpsManager.PackageOps>();
1073 }
1074 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
Svet Ganov2af57082015-07-30 08:44:20 -07001075 pkgOps.packageName, pkgOps.uidState.uid, resOps);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001076 res.add(resPackage);
1077 }
1078 }
1079 }
1080 }
1081 return res;
1082 }
1083
1084 @Override
Dianne Hackborn72e39832013-01-18 18:36:09 -08001085 public List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName,
1086 int[] ops) {
1087 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1088 Binder.getCallingPid(), Binder.getCallingUid(), null);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001089 String resolvedPackageName = resolvePackageName(uid, packageName);
1090 if (resolvedPackageName == null) {
1091 return Collections.emptyList();
1092 }
Dianne Hackborn72e39832013-01-18 18:36:09 -08001093 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001094 Ops pkgOps = getOpsRawLocked(uid, resolvedPackageName, false /* edit */,
1095 false /* uidMismatchExpected */);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001096 if (pkgOps == null) {
1097 return null;
1098 }
1099 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(pkgOps, ops);
1100 if (resOps == null) {
1101 return null;
1102 }
1103 ArrayList<AppOpsManager.PackageOps> res = new ArrayList<AppOpsManager.PackageOps>();
1104 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
Svet Ganov2af57082015-07-30 08:44:20 -07001105 pkgOps.packageName, pkgOps.uidState.uid, resOps);
Dianne Hackborn72e39832013-01-18 18:36:09 -08001106 res.add(resPackage);
1107 return res;
1108 }
1109 }
1110
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001111 @Override
Svet Ganov8455ba22019-01-02 13:05:56 -08001112 public void getHistoricalOps(int uid, @NonNull String packageName,
Svet Ganov23c88db2019-01-22 20:38:11 -08001113 @Nullable List<String> opNames, long beginTimeMillis, long endTimeMillis,
Svet Ganovaf189e32019-02-15 18:45:29 -08001114 @OpFlags int flags, @NonNull RemoteCallback callback) {
Svet Ganov23c88db2019-01-22 20:38:11 -08001115 // Use the builder to validate arguments.
Svet Ganovaf189e32019-02-15 18:45:29 -08001116 new HistoricalOpsRequest.Builder(
Svet Ganov23c88db2019-01-22 20:38:11 -08001117 beginTimeMillis, endTimeMillis)
1118 .setUid(uid)
1119 .setPackageName(packageName)
1120 .setOpNames(opNames)
Svet Ganovaf189e32019-02-15 18:45:29 -08001121 .setFlags(flags)
Svet Ganov23c88db2019-01-22 20:38:11 -08001122 .build();
Svet Ganov8455ba22019-01-02 13:05:56 -08001123 Preconditions.checkNotNull(callback, "callback cannot be null");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001124
1125 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
Svet Ganov8455ba22019-01-02 13:05:56 -08001126 Binder.getCallingPid(), Binder.getCallingUid(), "getHistoricalOps");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001127
Svet Ganov23c88db2019-01-22 20:38:11 -08001128 final String[] opNamesArray = (opNames != null)
1129 ? opNames.toArray(new String[opNames.size()]) : null;
Svet Ganovad0a49b2018-10-29 10:07:08 -07001130
Svet Ganovaf189e32019-02-15 18:45:29 -08001131 // Must not hold the appops lock
1132 mHistoricalRegistry.getHistoricalOps(uid, packageName, opNamesArray,
1133 beginTimeMillis, endTimeMillis, flags, callback);
Svet Ganovad0a49b2018-10-29 10:07:08 -07001134 }
1135
1136 @Override
Svet Ganov8455ba22019-01-02 13:05:56 -08001137 public void getHistoricalOpsFromDiskRaw(int uid, @NonNull String packageName,
Svet Ganov23c88db2019-01-22 20:38:11 -08001138 @Nullable List<String> opNames, long beginTimeMillis, long endTimeMillis,
Svet Ganovaf189e32019-02-15 18:45:29 -08001139 @OpFlags int flags, @NonNull RemoteCallback callback) {
Svet Ganov23c88db2019-01-22 20:38:11 -08001140 // Use the builder to validate arguments.
Svet Ganovaf189e32019-02-15 18:45:29 -08001141 new HistoricalOpsRequest.Builder(
Svet Ganov23c88db2019-01-22 20:38:11 -08001142 beginTimeMillis, endTimeMillis)
1143 .setUid(uid)
1144 .setPackageName(packageName)
1145 .setOpNames(opNames)
Svet Ganovaf189e32019-02-15 18:45:29 -08001146 .setFlags(flags)
Svet Ganov23c88db2019-01-22 20:38:11 -08001147 .build();
Svet Ganov8455ba22019-01-02 13:05:56 -08001148 Preconditions.checkNotNull(callback, "callback cannot be null");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001149
Svet Ganov8e5bf962019-03-19 23:59:03 -07001150 mContext.enforcePermission(Manifest.permission.MANAGE_APPOPS,
Svet Ganov8455ba22019-01-02 13:05:56 -08001151 Binder.getCallingPid(), Binder.getCallingUid(), "getHistoricalOps");
Svet Ganovad0a49b2018-10-29 10:07:08 -07001152
Svet Ganov23c88db2019-01-22 20:38:11 -08001153 final String[] opNamesArray = (opNames != null)
1154 ? opNames.toArray(new String[opNames.size()]) : null;
1155
Svet Ganov8455ba22019-01-02 13:05:56 -08001156 // Must not hold the appops lock
Svet Ganov23c88db2019-01-22 20:38:11 -08001157 mHistoricalRegistry.getHistoricalOpsFromDiskRaw(uid, packageName, opNamesArray,
Svet Ganovaf189e32019-02-15 18:45:29 -08001158 beginTimeMillis, endTimeMillis, flags, callback);
Svet Ganovad0a49b2018-10-29 10:07:08 -07001159 }
1160
1161 @Override
Svet Ganov8e5bf962019-03-19 23:59:03 -07001162 public void reloadNonHistoricalState() {
1163 mContext.enforcePermission(Manifest.permission.MANAGE_APPOPS,
1164 Binder.getCallingPid(), Binder.getCallingUid(), "reloadNonHistoricalState");
1165 writeState();
1166 readState();
1167 }
1168
1169 @Override
Dianne Hackbornc7214a32017-04-11 13:32:47 -07001170 public List<AppOpsManager.PackageOps> getUidOps(int uid, int[] ops) {
1171 mContext.enforcePermission(android.Manifest.permission.GET_APP_OPS_STATS,
1172 Binder.getCallingPid(), Binder.getCallingUid(), null);
1173 synchronized (this) {
1174 UidState uidState = getUidStateLocked(uid, false);
1175 if (uidState == null) {
1176 return null;
1177 }
1178 ArrayList<AppOpsManager.OpEntry> resOps = collectOps(uidState.opModes, ops);
1179 if (resOps == null) {
1180 return null;
1181 }
1182 ArrayList<AppOpsManager.PackageOps> res = new ArrayList<AppOpsManager.PackageOps>();
1183 AppOpsManager.PackageOps resPackage = new AppOpsManager.PackageOps(
1184 null, uidState.uid, resOps);
1185 res.add(resPackage);
1186 return res;
1187 }
1188 }
1189
Dianne Hackborn607b4142013-08-02 18:10:10 -07001190 private void pruneOp(Op op, int uid, String packageName) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001191 if (!op.hasAnyTime()) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001192 Ops ops = getOpsRawLocked(uid, packageName, false /* edit */,
1193 false /* uidMismatchExpected */);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001194 if (ops != null) {
1195 ops.remove(op.op);
1196 if (ops.size() <= 0) {
Svet Ganov2af57082015-07-30 08:44:20 -07001197 UidState uidState = ops.uidState;
1198 ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
Dianne Hackborn607b4142013-08-02 18:10:10 -07001199 if (pkgOps != null) {
1200 pkgOps.remove(ops.packageName);
Svet Ganov2af57082015-07-30 08:44:20 -07001201 if (pkgOps.isEmpty()) {
1202 uidState.pkgOps = null;
1203 }
1204 if (uidState.isDefault()) {
1205 mUidStates.remove(uid);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001206 }
1207 }
1208 }
1209 }
1210 }
1211 }
1212
Svet Ganovaf189e32019-02-15 18:45:29 -08001213 private void enforceManageAppOpsModes(int callingPid, int callingUid, int targetUid) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001214 if (callingPid == Process.myPid()) {
1215 return;
1216 }
1217 final int callingUser = UserHandle.getUserId(callingUid);
1218 synchronized (this) {
1219 if (mProfileOwners != null && mProfileOwners.get(callingUser, -1) == callingUid) {
1220 if (targetUid >= 0 && callingUser == UserHandle.getUserId(targetUid)) {
1221 // Profile owners are allowed to change modes but only for apps
1222 // within their user.
1223 return;
1224 }
1225 }
1226 }
1227 mContext.enforcePermission(android.Manifest.permission.MANAGE_APP_OPS_MODES,
1228 Binder.getCallingPid(), Binder.getCallingUid(), null);
1229 }
1230
Dianne Hackborn72e39832013-01-18 18:36:09 -08001231 @Override
Svet Ganov2af57082015-07-30 08:44:20 -07001232 public void setUidMode(int code, int uid, int mode) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08001233 if (DEBUG) {
1234 Slog.i(TAG, "uid " + uid + " OP_" + opToName(code) + " := " + modeToName(mode)
1235 + " by uid " + Binder.getCallingUid());
1236 }
1237
Dianne Hackbornd5254412018-05-11 18:02:58 -07001238 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
Svet Ganov2af57082015-07-30 08:44:20 -07001239 verifyIncomingOp(code);
1240 code = AppOpsManager.opToSwitch(code);
1241
1242 synchronized (this) {
1243 final int defaultMode = AppOpsManager.opToDefaultMode(code);
1244
1245 UidState uidState = getUidStateLocked(uid, false);
1246 if (uidState == null) {
1247 if (mode == defaultMode) {
1248 return;
1249 }
1250 uidState = new UidState(uid);
1251 uidState.opModes = new SparseIntArray();
1252 uidState.opModes.put(code, mode);
1253 mUidStates.put(uid, uidState);
1254 scheduleWriteLocked();
1255 } else if (uidState.opModes == null) {
1256 if (mode != defaultMode) {
1257 uidState.opModes = new SparseIntArray();
1258 uidState.opModes.put(code, mode);
1259 scheduleWriteLocked();
1260 }
1261 } else {
Hai Zhang2b98fb32018-09-21 15:18:46 -07001262 if (uidState.opModes.indexOfKey(code) >= 0 && uidState.opModes.get(code) == mode) {
Svet Ganov2af57082015-07-30 08:44:20 -07001263 return;
1264 }
1265 if (mode == defaultMode) {
1266 uidState.opModes.delete(code);
1267 if (uidState.opModes.size() <= 0) {
1268 uidState.opModes = null;
1269 }
1270 } else {
1271 uidState.opModes.put(code, mode);
1272 }
1273 scheduleWriteLocked();
1274 }
Wei Wang711eb662019-03-21 18:24:17 -07001275 uidState.evalForegroundOps(mOpModeWatchers);
Svet Ganov2af57082015-07-30 08:44:20 -07001276 }
1277
Svetoslav215b44a2015-08-04 19:03:40 -07001278 String[] uidPackageNames = getPackagesForUid(uid);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001279 ArrayMap<ModeCallback, ArraySet<String>> callbackSpecs = null;
Svet Ganov2af57082015-07-30 08:44:20 -07001280
riddle_hsu40b300f2015-11-23 13:22:03 +08001281 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001282 ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
Svet Ganov2af57082015-07-30 08:44:20 -07001283 if (callbacks != null) {
Svet Ganov2af57082015-07-30 08:44:20 -07001284 final int callbackCount = callbacks.size();
1285 for (int i = 0; i < callbackCount; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001286 ModeCallback callback = callbacks.valueAt(i);
riddle_hsu40b300f2015-11-23 13:22:03 +08001287 ArraySet<String> changedPackages = new ArraySet<>();
1288 Collections.addAll(changedPackages, uidPackageNames);
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001289 if (callbackSpecs == null) {
1290 callbackSpecs = new ArrayMap<>();
1291 }
riddle_hsu40b300f2015-11-23 13:22:03 +08001292 callbackSpecs.put(callback, changedPackages);
1293 }
1294 }
1295
1296 for (String uidPackageName : uidPackageNames) {
1297 callbacks = mPackageModeWatchers.get(uidPackageName);
1298 if (callbacks != null) {
1299 if (callbackSpecs == null) {
1300 callbackSpecs = new ArrayMap<>();
Svet Ganov2af57082015-07-30 08:44:20 -07001301 }
riddle_hsu40b300f2015-11-23 13:22:03 +08001302 final int callbackCount = callbacks.size();
1303 for (int i = 0; i < callbackCount; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001304 ModeCallback callback = callbacks.valueAt(i);
riddle_hsu40b300f2015-11-23 13:22:03 +08001305 ArraySet<String> changedPackages = callbackSpecs.get(callback);
1306 if (changedPackages == null) {
1307 changedPackages = new ArraySet<>();
1308 callbackSpecs.put(callback, changedPackages);
1309 }
1310 changedPackages.add(uidPackageName);
1311 }
Svet Ganov2af57082015-07-30 08:44:20 -07001312 }
1313 }
1314 }
1315
1316 if (callbackSpecs == null) {
Sudheer Shankab1613982019-05-16 16:55:50 -07001317 notifyOpChangedSync(code, uid, null, mode);
Svet Ganov2af57082015-07-30 08:44:20 -07001318 return;
1319 }
1320
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001321 for (int i = 0; i < callbackSpecs.size(); i++) {
1322 final ModeCallback callback = callbackSpecs.keyAt(i);
1323 final ArraySet<String> reportedPackageNames = callbackSpecs.valueAt(i);
1324 if (reportedPackageNames == null) {
1325 mHandler.sendMessage(PooledLambda.obtainMessage(
1326 AppOpsService::notifyOpChanged,
1327 this, callback, code, uid, (String) null));
1328
1329 } else {
1330 final int reportedPackageCount = reportedPackageNames.size();
1331 for (int j = 0; j < reportedPackageCount; j++) {
1332 final String reportedPackageName = reportedPackageNames.valueAt(j);
1333 mHandler.sendMessage(PooledLambda.obtainMessage(
1334 AppOpsService::notifyOpChanged,
1335 this, callback, code, uid, reportedPackageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001336 }
1337 }
Svet Ganov2af57082015-07-30 08:44:20 -07001338 }
Sudheer Shankab1613982019-05-16 16:55:50 -07001339
1340 notifyOpChangedSync(code, uid, null, mode);
1341 }
1342
1343 private void notifyOpChangedSync(int code, int uid, @NonNull String packageName, int mode) {
1344 final StorageManagerInternal storageManagerInternal =
1345 LocalServices.getService(StorageManagerInternal.class);
1346 if (storageManagerInternal != null) {
1347 storageManagerInternal.onAppOpsChanged(code, uid, packageName, mode);
1348 }
Svet Ganov2af57082015-07-30 08:44:20 -07001349 }
1350
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001351 /**
1352 * Set all {@link #setMode (package) modes} for this uid to the default value.
1353 *
1354 * @param code The app-op
1355 * @param uid The uid
1356 */
1357 private void setAllPkgModesToDefault(int code, int uid) {
1358 synchronized (this) {
1359 UidState uidState = getUidStateLocked(uid, false);
1360 if (uidState == null) {
1361 return;
1362 }
1363
1364 ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
1365 if (pkgOps == null) {
1366 return;
1367 }
1368
Svet Ganovaf189e32019-02-15 18:45:29 -08001369 boolean scheduleWrite = false;
1370
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001371 int numPkgs = pkgOps.size();
1372 for (int pkgNum = 0; pkgNum < numPkgs; pkgNum++) {
1373 Ops ops = pkgOps.valueAt(pkgNum);
1374
1375 Op op = ops.get(code);
1376 if (op == null) {
1377 continue;
1378 }
1379
1380 int defaultMode = AppOpsManager.opToDefaultMode(code);
1381 if (op.mode != defaultMode) {
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001382 op.mode = defaultMode;
Svet Ganovaf189e32019-02-15 18:45:29 -08001383 scheduleWrite = true;
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001384 }
1385 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001386
1387 if (scheduleWrite) {
1388 scheduleWriteLocked();
1389 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001390 }
1391 }
1392
Svet Ganov2af57082015-07-30 08:44:20 -07001393 @Override
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001394 public void setMode(int code, int uid, String packageName, int mode) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001395 setMode(code, uid, packageName, mode, true, false);
1396 }
1397
1398 /**
1399 * Sets the mode for a certain op and uid.
1400 *
1401 * @param code The op code to set
1402 * @param uid The UID for which to set
1403 * @param packageName The package for which to set
1404 * @param mode The new mode to set
1405 * @param verifyUid Iff {@code true}, check that the package name belongs to the uid
1406 * @param isPrivileged Whether the package is privileged. (Only used if {@code verifyUid ==
1407 * false})
1408 */
1409 private void setMode(int code, int uid, @NonNull String packageName, int mode,
1410 boolean verifyUid, boolean isPrivileged) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001411 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001412 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001413 ArraySet<ModeCallback> repCbs = null;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001414 code = AppOpsManager.opToSwitch(code);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001415 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001416 UidState uidState = getUidStateLocked(uid, false);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001417 Op op = getOpLocked(code, uid, packageName, true, verifyUid, isPrivileged);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001418 if (op != null) {
1419 if (op.mode != mode) {
1420 op.mode = mode;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001421 if (uidState != null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001422 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001423 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001424 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(code);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001425 if (cbs != null) {
1426 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001427 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001428 }
1429 repCbs.addAll(cbs);
1430 }
1431 cbs = mPackageModeWatchers.get(packageName);
1432 if (cbs != null) {
1433 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001434 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001435 }
1436 repCbs.addAll(cbs);
1437 }
David Braunf5d83192013-09-16 13:43:51 -07001438 if (mode == AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborn514074f2013-02-11 10:52:46 -08001439 // If going into the default mode, prune this op
1440 // if there is nothing else interesting in it.
Dianne Hackborn607b4142013-08-02 18:10:10 -07001441 pruneOp(op, uid, packageName);
Dianne Hackborn514074f2013-02-11 10:52:46 -08001442 }
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001443 scheduleFastWriteLocked();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001444 }
1445 }
1446 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001447 if (repCbs != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001448 mHandler.sendMessage(PooledLambda.obtainMessage(
1449 AppOpsService::notifyOpChanged,
1450 this, repCbs, code, uid, packageName));
Dianne Hackbornc2293022013-02-06 23:14:49 -08001451 }
Sudheer Shankab1613982019-05-16 16:55:50 -07001452
1453 notifyOpChangedSync(code, uid, packageName, mode);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001454 }
1455
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001456 private void notifyOpChanged(ArraySet<ModeCallback> callbacks, int code,
1457 int uid, String packageName) {
1458 for (int i = 0; i < callbacks.size(); i++) {
1459 final ModeCallback callback = callbacks.valueAt(i);
1460 notifyOpChanged(callback, code, uid, packageName);
1461 }
1462 }
1463
1464 private void notifyOpChanged(ModeCallback callback, int code,
1465 int uid, String packageName) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001466 if (uid != UID_ANY && callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001467 return;
1468 }
1469 // There are components watching for mode changes such as window manager
1470 // and location manager which are in our process. The callbacks in these
1471 // components may require permissions our remote caller does not have.
1472 final long identity = Binder.clearCallingIdentity();
1473 try {
1474 callback.mCallback.opChanged(code, uid, packageName);
1475 } catch (RemoteException e) {
1476 /* ignore */
1477 } finally {
1478 Binder.restoreCallingIdentity(identity);
1479 }
1480 }
1481
1482 private static HashMap<ModeCallback, ArrayList<ChangeRec>> addCallbacks(
1483 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks,
1484 int op, int uid, String packageName, ArraySet<ModeCallback> cbs) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001485 if (cbs == null) {
1486 return callbacks;
1487 }
1488 if (callbacks == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001489 callbacks = new HashMap<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001490 }
Svet Ganov2af57082015-07-30 08:44:20 -07001491 boolean duplicate = false;
Dianne Hackborn68d76552017-02-27 15:32:03 -08001492 final int N = cbs.size();
1493 for (int i=0; i<N; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001494 ModeCallback cb = cbs.valueAt(i);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001495 ArrayList<ChangeRec> reports = callbacks.get(cb);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001496 if (reports == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001497 reports = new ArrayList<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001498 callbacks.put(cb, reports);
Svet Ganov2af57082015-07-30 08:44:20 -07001499 } else {
1500 final int reportCount = reports.size();
1501 for (int j = 0; j < reportCount; j++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001502 ChangeRec report = reports.get(j);
1503 if (report.op == op && report.pkg.equals(packageName)) {
Svet Ganov2af57082015-07-30 08:44:20 -07001504 duplicate = true;
1505 break;
1506 }
1507 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001508 }
Svet Ganov2af57082015-07-30 08:44:20 -07001509 if (!duplicate) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001510 reports.add(new ChangeRec(op, uid, packageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001511 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001512 }
1513 return callbacks;
1514 }
1515
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001516 static final class ChangeRec {
1517 final int op;
1518 final int uid;
1519 final String pkg;
1520
1521 ChangeRec(int _op, int _uid, String _pkg) {
1522 op = _op;
1523 uid = _uid;
1524 pkg = _pkg;
1525 }
1526 }
1527
Dianne Hackborn607b4142013-08-02 18:10:10 -07001528 @Override
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001529 public void resetAllModes(int reqUserId, String reqPackageName) {
1530 final int callingPid = Binder.getCallingPid();
1531 final int callingUid = Binder.getCallingUid();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001532 reqUserId = ActivityManager.handleIncomingUser(callingPid, callingUid, reqUserId,
1533 true, true, "resetAllModes", null);
Svet Ganov2af57082015-07-30 08:44:20 -07001534
1535 int reqUid = -1;
1536 if (reqPackageName != null) {
1537 try {
1538 reqUid = AppGlobals.getPackageManager().getPackageUid(
Jeff Sharkeycd654482016-01-08 17:42:11 -07001539 reqPackageName, PackageManager.MATCH_UNINSTALLED_PACKAGES, reqUserId);
Svet Ganov2af57082015-07-30 08:44:20 -07001540 } catch (RemoteException e) {
1541 /* ignore - local call */
1542 }
1543 }
1544
Dianne Hackbornd5254412018-05-11 18:02:58 -07001545 enforceManageAppOpsModes(callingPid, callingUid, reqUid);
1546
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001547 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks = null;
Dianne Hackborn607b4142013-08-02 18:10:10 -07001548 synchronized (this) {
1549 boolean changed = false;
Svet Ganov2af57082015-07-30 08:44:20 -07001550 for (int i = mUidStates.size() - 1; i >= 0; i--) {
1551 UidState uidState = mUidStates.valueAt(i);
1552
1553 SparseIntArray opModes = uidState.opModes;
1554 if (opModes != null && (uidState.uid == reqUid || reqUid == -1)) {
1555 final int uidOpCount = opModes.size();
1556 for (int j = uidOpCount - 1; j >= 0; j--) {
1557 final int code = opModes.keyAt(j);
1558 if (AppOpsManager.opAllowsReset(code)) {
1559 opModes.removeAt(j);
1560 if (opModes.size() <= 0) {
1561 uidState.opModes = null;
1562 }
1563 for (String packageName : getPackagesForUid(uidState.uid)) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001564 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001565 mOpModeWatchers.get(code));
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001566 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001567 mPackageModeWatchers.get(packageName));
1568 }
1569 }
1570 }
1571 }
1572
1573 if (uidState.pkgOps == null) {
1574 continue;
1575 }
1576
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001577 if (reqUserId != UserHandle.USER_ALL
Svet Ganov2af57082015-07-30 08:44:20 -07001578 && reqUserId != UserHandle.getUserId(uidState.uid)) {
Alexandra Gherghinad6a98972014-08-04 17:05:34 +01001579 // Skip any ops for a different user
1580 continue;
1581 }
Svet Ganov2af57082015-07-30 08:44:20 -07001582
1583 Map<String, Ops> packages = uidState.pkgOps;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001584 Iterator<Map.Entry<String, Ops>> it = packages.entrySet().iterator();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001585 boolean uidChanged = false;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001586 while (it.hasNext()) {
1587 Map.Entry<String, Ops> ent = it.next();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001588 String packageName = ent.getKey();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001589 if (reqPackageName != null && !reqPackageName.equals(packageName)) {
1590 // Skip any ops for a different package
1591 continue;
1592 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001593 Ops pkgOps = ent.getValue();
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001594 for (int j=pkgOps.size()-1; j>=0; j--) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001595 Op curOp = pkgOps.valueAt(j);
Dianne Hackborn8828d3a2013-09-25 16:47:10 -07001596 if (AppOpsManager.opAllowsReset(curOp.op)
1597 && curOp.mode != AppOpsManager.opToDefaultMode(curOp.op)) {
David Braunf5d83192013-09-16 13:43:51 -07001598 curOp.mode = AppOpsManager.opToDefaultMode(curOp.op);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001599 changed = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001600 uidChanged = true;
Svet Ganovaf189e32019-02-15 18:45:29 -08001601 final int uid = curOp.uidState.uid;
1602 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001603 mOpModeWatchers.get(curOp.op));
Svet Ganovaf189e32019-02-15 18:45:29 -08001604 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001605 mPackageModeWatchers.get(packageName));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001606 if (!curOp.hasAnyTime()) {
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001607 pkgOps.removeAt(j);
1608 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001609 }
1610 }
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001611 if (pkgOps.size() == 0) {
1612 it.remove();
1613 }
1614 }
Svet Ganov2af57082015-07-30 08:44:20 -07001615 if (uidState.isDefault()) {
1616 mUidStates.remove(uidState.uid);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001617 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001618 if (uidChanged) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001619 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001620 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001621 }
Svet Ganov2af57082015-07-30 08:44:20 -07001622
Dianne Hackborn607b4142013-08-02 18:10:10 -07001623 if (changed) {
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001624 scheduleFastWriteLocked();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001625 }
1626 }
1627 if (callbacks != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001628 for (Map.Entry<ModeCallback, ArrayList<ChangeRec>> ent : callbacks.entrySet()) {
1629 ModeCallback cb = ent.getKey();
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001630 ArrayList<ChangeRec> reports = ent.getValue();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001631 for (int i=0; i<reports.size(); i++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001632 ChangeRec rep = reports.get(i);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001633 mHandler.sendMessage(PooledLambda.obtainMessage(
1634 AppOpsService::notifyOpChanged,
1635 this, cb, rep.op, rep.uid, rep.pkg));
Dianne Hackborn607b4142013-08-02 18:10:10 -07001636 }
1637 }
1638 }
1639 }
1640
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001641 private void evalAllForegroundOpsLocked() {
1642 for (int uidi = mUidStates.size() - 1; uidi >= 0; uidi--) {
1643 final UidState uidState = mUidStates.valueAt(uidi);
1644 if (uidState.foregroundOps != null) {
1645 uidState.evalForegroundOps(mOpModeWatchers);
1646 }
1647 }
1648 }
1649
Dianne Hackbornc2293022013-02-06 23:14:49 -08001650 @Override
1651 public void startWatchingMode(int op, String packageName, IAppOpsCallback callback) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001652 startWatchingModeWithFlags(op, packageName, 0, callback);
1653 }
1654
1655 @Override
1656 public void startWatchingModeWithFlags(int op, String packageName, int flags,
1657 IAppOpsCallback callback) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001658 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001659 final int callingUid = Binder.getCallingUid();
1660 final int callingPid = Binder.getCallingPid();
Dianne Hackborn5376edd2018-06-05 13:21:16 -07001661 // TODO: should have a privileged permission to protect this.
1662 // Also, if the caller has requested WATCH_FOREGROUND_CHANGES, should we require
1663 // the USAGE_STATS permission since this can provide information about when an
1664 // app is in the foreground?
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001665 Preconditions.checkArgumentInRange(op, AppOpsManager.OP_NONE,
1666 AppOpsManager._NUM_OP - 1, "Invalid op code: " + op);
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001667 if (callback == null) {
1668 return;
1669 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001670 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001671 op = (op != AppOpsManager.OP_NONE) ? AppOpsManager.opToSwitch(op) : op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001672 ModeCallback cb = mModeWatchers.get(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001673 if (cb == null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001674 cb = new ModeCallback(callback, watchedUid, flags, callingUid, callingPid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001675 mModeWatchers.put(callback.asBinder(), cb);
1676 }
1677 if (op != AppOpsManager.OP_NONE) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001678 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(op);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001679 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001680 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001681 mOpModeWatchers.put(op, cbs);
1682 }
1683 cbs.add(cb);
1684 }
1685 if (packageName != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001686 ArraySet<ModeCallback> cbs = mPackageModeWatchers.get(packageName);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001687 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001688 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001689 mPackageModeWatchers.put(packageName, cbs);
1690 }
1691 cbs.add(cb);
1692 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001693 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001694 }
1695 }
1696
1697 @Override
1698 public void stopWatchingMode(IAppOpsCallback callback) {
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001699 if (callback == null) {
1700 return;
1701 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001702 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001703 ModeCallback cb = mModeWatchers.remove(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001704 if (cb != null) {
1705 cb.unlinkToDeath();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001706 for (int i=mOpModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001707 ArraySet<ModeCallback> cbs = mOpModeWatchers.valueAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001708 cbs.remove(cb);
1709 if (cbs.size() <= 0) {
1710 mOpModeWatchers.removeAt(i);
1711 }
1712 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001713 for (int i=mPackageModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001714 ArraySet<ModeCallback> cbs = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001715 cbs.remove(cb);
1716 if (cbs.size() <= 0) {
1717 mPackageModeWatchers.removeAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001718 }
1719 }
1720 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001721 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001722 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001723 }
1724
1725 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001726 public IBinder getToken(IBinder clientToken) {
1727 synchronized (this) {
1728 ClientState cs = mClients.get(clientToken);
1729 if (cs == null) {
1730 cs = new ClientState(clientToken);
1731 mClients.put(clientToken, cs);
1732 }
1733 return cs;
1734 }
1735 }
1736
Svet Ganovd873ae62018-06-25 16:39:23 -07001737 public CheckOpsDelegate getAppOpsServiceDelegate() {
1738 synchronized (this) {
1739 return mCheckOpsDelegate;
1740 }
1741 }
1742
1743 public void setAppOpsServiceDelegate(CheckOpsDelegate delegate) {
1744 synchronized (this) {
1745 mCheckOpsDelegate = delegate;
1746 }
1747 }
1748
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001749 @Override
Svet Ganov9d528a12018-12-19 17:23:11 -08001750 public int checkOperationRaw(int code, int uid, String packageName) {
1751 return checkOperationInternal(code, uid, packageName, true /*raw*/);
1752 }
1753
1754 @Override
Dianne Hackborn35654b62013-01-14 17:38:02 -08001755 public int checkOperation(int code, int uid, String packageName) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001756 return checkOperationInternal(code, uid, packageName, false /*raw*/);
1757 }
1758
1759 private int checkOperationInternal(int code, int uid, String packageName, boolean raw) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001760 final CheckOpsDelegate delegate;
Dianne Hackborn35654b62013-01-14 17:38:02 -08001761 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001762 delegate = mCheckOpsDelegate;
1763 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001764 if (delegate == null) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001765 return checkOperationImpl(code, uid, packageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001766 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001767 return delegate.checkOperation(code, uid, packageName, raw,
Svet Ganovd873ae62018-06-25 16:39:23 -07001768 AppOpsService.this::checkOperationImpl);
1769 }
1770
Svet Ganov9d528a12018-12-19 17:23:11 -08001771 private int checkOperationImpl(int code, int uid, String packageName,
1772 boolean raw) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001773 verifyIncomingUid(uid);
1774 verifyIncomingOp(code);
1775 String resolvedPackageName = resolvePackageName(uid, packageName);
1776 if (resolvedPackageName == null) {
1777 return AppOpsManager.MODE_IGNORED;
1778 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001779 return checkOperationUnchecked(code, uid, resolvedPackageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001780 }
1781
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001782 /**
1783 * @see #checkOperationUnchecked(int, int, String, boolean, boolean)
1784 */
1785 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1786 boolean raw) {
1787 return checkOperationUnchecked(code, uid, packageName, raw, true);
1788 }
1789
1790 /**
1791 * Get the mode of an app-op.
1792 *
1793 * @param code The code of the op
1794 * @param uid The uid of the package the op belongs to
1795 * @param packageName The package the op belongs to
1796 * @param raw If the raw state of eval-ed state should be checked.
1797 * @param verify If the code should check the package belongs to the uid
1798 *
1799 * @return The mode of the op
1800 */
1801 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1802 boolean raw, boolean verify) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001803 synchronized (this) {
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001804 if (verify) {
1805 checkPackage(uid, packageName);
1806 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001807 if (isOpRestrictedLocked(uid, code, packageName)) {
Jason Monk62062992014-05-06 09:55:28 -04001808 return AppOpsManager.MODE_IGNORED;
1809 }
Svet Ganov2af57082015-07-30 08:44:20 -07001810 code = AppOpsManager.opToSwitch(code);
1811 UidState uidState = getUidStateLocked(uid, false);
Svet Ganovee438d42017-01-19 18:04:38 -08001812 if (uidState != null && uidState.opModes != null
1813 && uidState.opModes.indexOfKey(code) >= 0) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001814 final int rawMode = uidState.opModes.get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001815 return raw ? rawMode : uidState.evalMode(code, rawMode);
Svet Ganov2af57082015-07-30 08:44:20 -07001816 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001817 Op op = getOpLocked(code, uid, packageName, false, verify, false);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001818 if (op == null) {
David Braunf5d83192013-09-16 13:43:51 -07001819 return AppOpsManager.opToDefaultMode(code);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001820 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001821 return raw ? op.mode : op.evalMode();
Dianne Hackborn35654b62013-01-14 17:38:02 -08001822 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001823 }
1824
1825 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001826 public int checkAudioOperation(int code, int usage, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001827 final CheckOpsDelegate delegate;
John Spurlock1af30c72014-03-10 08:33:35 -04001828 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001829 delegate = mCheckOpsDelegate;
1830 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001831 if (delegate == null) {
1832 return checkAudioOperationImpl(code, usage, uid, packageName);
1833 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001834 return delegate.checkAudioOperation(code, usage, uid, packageName,
1835 AppOpsService.this::checkAudioOperationImpl);
1836 }
1837
1838 private int checkAudioOperationImpl(int code, int usage, int uid, String packageName) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001839 boolean suspended;
1840 try {
1841 suspended = isPackageSuspendedForUser(packageName, uid);
1842 } catch (IllegalArgumentException ex) {
1843 // Package not found.
1844 suspended = false;
1845 }
1846
1847 if (suspended) {
1848 Slog.i(TAG, "Audio disabled for suspended package=" + packageName
1849 + " for uid=" + uid);
1850 return AppOpsManager.MODE_IGNORED;
1851 }
1852
Svet Ganovd873ae62018-06-25 16:39:23 -07001853 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001854 final int mode = checkRestrictionLocked(code, usage, uid, packageName);
John Spurlock1af30c72014-03-10 08:33:35 -04001855 if (mode != AppOpsManager.MODE_ALLOWED) {
1856 return mode;
1857 }
1858 }
1859 return checkOperation(code, uid, packageName);
1860 }
1861
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001862 private boolean isPackageSuspendedForUser(String pkg, int uid) {
Svet Ganov8d123f42019-04-09 17:11:12 -07001863 final long identity = Binder.clearCallingIdentity();
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001864 try {
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001865 return AppGlobals.getPackageManager().isPackageSuspendedForUser(
1866 pkg, UserHandle.getUserId(uid));
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001867 } catch (RemoteException re) {
1868 throw new SecurityException("Could not talk to package manager service");
Svet Ganov8d123f42019-04-09 17:11:12 -07001869 } finally {
1870 Binder.restoreCallingIdentity(identity);
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001871 }
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001872 }
1873
John Spurlock7b414672014-07-18 13:02:39 -04001874 private int checkRestrictionLocked(int code, int usage, int uid, String packageName) {
1875 final SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1876 if (usageRestrictions != null) {
1877 final Restriction r = usageRestrictions.get(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001878 if (r != null && !r.exceptionPackages.contains(packageName)) {
1879 return r.mode;
1880 }
1881 }
1882 return AppOpsManager.MODE_ALLOWED;
1883 }
1884
1885 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001886 public void setAudioRestriction(int code, int usage, int uid, int mode,
John Spurlock1af30c72014-03-10 08:33:35 -04001887 String[] exceptionPackages) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001888 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
John Spurlock1af30c72014-03-10 08:33:35 -04001889 verifyIncomingUid(uid);
1890 verifyIncomingOp(code);
1891 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001892 SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1893 if (usageRestrictions == null) {
1894 usageRestrictions = new SparseArray<Restriction>();
1895 mAudioRestrictions.put(code, usageRestrictions);
John Spurlock1af30c72014-03-10 08:33:35 -04001896 }
John Spurlock7b414672014-07-18 13:02:39 -04001897 usageRestrictions.remove(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001898 if (mode != AppOpsManager.MODE_ALLOWED) {
1899 final Restriction r = new Restriction();
1900 r.mode = mode;
1901 if (exceptionPackages != null) {
1902 final int N = exceptionPackages.length;
1903 r.exceptionPackages = new ArraySet<String>(N);
1904 for (int i = 0; i < N; i++) {
1905 final String pkg = exceptionPackages[i];
1906 if (pkg != null) {
1907 r.exceptionPackages.add(pkg.trim());
1908 }
1909 }
1910 }
John Spurlock7b414672014-07-18 13:02:39 -04001911 usageRestrictions.put(usage, r);
John Spurlock1af30c72014-03-10 08:33:35 -04001912 }
1913 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001914
1915 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07001916 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
John Spurlock1af30c72014-03-10 08:33:35 -04001917 }
1918
1919 @Override
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001920 public int checkPackage(int uid, String packageName) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001921 Preconditions.checkNotNull(packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001922 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001923 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
1924 true /* uidMismatchExpected */);
1925 if (ops != null) {
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001926 return AppOpsManager.MODE_ALLOWED;
1927 } else {
1928 return AppOpsManager.MODE_ERRORED;
1929 }
1930 }
1931 }
1932
1933 @Override
Svet Ganovd873ae62018-06-25 16:39:23 -07001934 public int noteProxyOperation(int code, int proxyUid,
1935 String proxyPackageName, int proxiedUid, String proxiedPackageName) {
1936 verifyIncomingUid(proxyUid);
Svet Ganov99b60432015-06-27 13:15:22 -07001937 verifyIncomingOp(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001938
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001939 String resolveProxyPackageName = resolvePackageName(proxyUid, proxyPackageName);
1940 if (resolveProxyPackageName == null) {
1941 return AppOpsManager.MODE_IGNORED;
1942 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001943
1944 final boolean isProxyTrusted = mContext.checkPermission(
1945 Manifest.permission.UPDATE_APP_OPS_STATS, -1, proxyUid)
1946 == PackageManager.PERMISSION_GRANTED;
1947
1948 final int proxyFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXY
1949 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXY;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001950 final int proxyMode = noteOperationUnchecked(code, proxyUid,
Svet Ganovaf189e32019-02-15 18:45:29 -08001951 resolveProxyPackageName, Process.INVALID_UID, null, proxyFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001952 if (proxyMode != AppOpsManager.MODE_ALLOWED || Binder.getCallingUid() == proxiedUid) {
1953 return proxyMode;
1954 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001955
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001956 String resolveProxiedPackageName = resolvePackageName(proxiedUid, proxiedPackageName);
1957 if (resolveProxiedPackageName == null) {
1958 return AppOpsManager.MODE_IGNORED;
1959 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001960 final int proxiedFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXIED
1961 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXIED;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001962 return noteOperationUnchecked(code, proxiedUid, resolveProxiedPackageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001963 proxyUid, resolveProxyPackageName, proxiedFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001964 }
1965
1966 @Override
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001967 public int noteOperation(int code, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001968 final CheckOpsDelegate delegate;
1969 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001970 delegate = mCheckOpsDelegate;
1971 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001972 if (delegate == null) {
1973 return noteOperationImpl(code, uid, packageName);
1974 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001975 return delegate.noteOperation(code, uid, packageName,
1976 AppOpsService.this::noteOperationImpl);
1977 }
1978
1979 private int noteOperationImpl(int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001980 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001981 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001982 String resolvedPackageName = resolvePackageName(uid, packageName);
1983 if (resolvedPackageName == null) {
1984 return AppOpsManager.MODE_IGNORED;
1985 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001986 return noteOperationUnchecked(code, uid, resolvedPackageName, Process.INVALID_UID, null,
1987 AppOpsManager.OP_FLAG_SELF);
Svet Ganov99b60432015-06-27 13:15:22 -07001988 }
1989
1990 private int noteOperationUnchecked(int code, int uid, String packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001991 int proxyUid, String proxyPackageName, @OpFlags int flags) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001992 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001993 final Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07001994 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001995 if (ops == null) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08001996 scheduleOpNotedIfNeededLocked(code, uid, packageName,
1997 AppOpsManager.MODE_IGNORED);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001998 if (DEBUG) Slog.d(TAG, "noteOperation: no op for code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001999 + " package " + packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07002000 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002001 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002002 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07002003 if (isOpRestrictedLocked(uid, code, packageName)) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002004 scheduleOpNotedIfNeededLocked(code, uid, packageName,
2005 AppOpsManager.MODE_IGNORED);
Jason Monk62062992014-05-06 09:55:28 -04002006 return AppOpsManager.MODE_IGNORED;
2007 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002008 final UidState uidState = ops.uidState;
Svet Ganovaf189e32019-02-15 18:45:29 -08002009 if (op.running) {
2010 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
2011 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002012 Slog.w(TAG, "Noting op not finished: uid " + uid + " pkg " + packageName
Svet Ganovaf189e32019-02-15 18:45:29 -08002013 + " code " + code + " time=" + entry.getLastAccessTime(uidState.state,
2014 uidState.state, flags) + " duration=" + entry.getLastDuration(
2015 uidState.state, uidState.state, flags));
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002016 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002017
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002018 final int switchCode = AppOpsManager.opToSwitch(code);
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002019 // If there is a non-default per UID policy (we set UID op mode only if
2020 // non-default) it takes over, otherwise use the per package policy.
2021 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002022 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganov2af57082015-07-30 08:44:20 -07002023 if (uidMode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002024 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002025 + switchCode + " (" + code + ") uid " + uid + " package "
2026 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002027 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2028 uidState.state, flags);
2029 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2030 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002031 scheduleOpNotedIfNeededLocked(code, uid, packageName, uidMode);
Svet Ganov2af57082015-07-30 08:44:20 -07002032 return uidMode;
2033 }
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002034 } else {
2035 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002036 final int mode = switchOp.evalMode();
2037 if (switchOp.mode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002038 if (DEBUG) Slog.d(TAG, "noteOperation: reject #" + mode + " for code "
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002039 + switchCode + " (" + code + ") uid " + uid + " package "
2040 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002041 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2042 uidState.state, flags);
2043 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2044 uidState.state, flags);
2045 scheduleOpNotedIfNeededLocked(code, uid, packageName, mode);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002046 return mode;
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002047 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002048 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002049 if (DEBUG) Slog.d(TAG, "noteOperation: allowing code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002050 + " package " + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002051 op.accessed(System.currentTimeMillis(), proxyUid, proxyPackageName,
2052 uidState.state, flags);
Svet Ganov8455ba22019-01-02 13:05:56 -08002053 mHistoricalRegistry.incrementOpAccessedCount(op.op, uid, packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002054 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002055 scheduleOpNotedIfNeededLocked(code, uid, packageName,
2056 AppOpsManager.MODE_ALLOWED);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002057 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002058 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002059 }
2060
2061 @Override
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002062 public void startWatchingActive(int[] ops, IAppOpsActiveCallback callback) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002063 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002064 final int callingUid = Binder.getCallingUid();
2065 final int callingPid = Binder.getCallingPid();
Svet Ganovf7b47252018-02-26 11:11:27 -08002066 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2067 != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002068 watchedUid = callingUid;
Svet Ganovf7b47252018-02-26 11:11:27 -08002069 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002070 if (ops != null) {
2071 Preconditions.checkArrayElementsInRange(ops, 0,
2072 AppOpsManager._NUM_OP - 1, "Invalid op code in: " + Arrays.toString(ops));
2073 }
2074 if (callback == null) {
2075 return;
2076 }
2077 synchronized (this) {
2078 SparseArray<ActiveCallback> callbacks = mActiveWatchers.get(callback.asBinder());
2079 if (callbacks == null) {
2080 callbacks = new SparseArray<>();
2081 mActiveWatchers.put(callback.asBinder(), callbacks);
2082 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002083 final ActiveCallback activeCallback = new ActiveCallback(callback, watchedUid,
2084 callingUid, callingPid);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002085 for (int op : ops) {
2086 callbacks.put(op, activeCallback);
2087 }
2088 }
2089 }
2090
2091 @Override
2092 public void stopWatchingActive(IAppOpsActiveCallback callback) {
2093 if (callback == null) {
2094 return;
2095 }
2096 synchronized (this) {
2097 final SparseArray<ActiveCallback> activeCallbacks =
2098 mActiveWatchers.remove(callback.asBinder());
2099 if (activeCallbacks == null) {
2100 return;
2101 }
2102 final int callbackCount = activeCallbacks.size();
2103 for (int i = 0; i < callbackCount; i++) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002104 activeCallbacks.valueAt(i).destroy();
2105 }
2106 }
2107 }
2108
2109 @Override
2110 public void startWatchingNoted(@NonNull int[] ops, @NonNull IAppOpsNotedCallback callback) {
2111 int watchedUid = Process.INVALID_UID;
2112 final int callingUid = Binder.getCallingUid();
2113 final int callingPid = Binder.getCallingPid();
2114 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2115 != PackageManager.PERMISSION_GRANTED) {
2116 watchedUid = callingUid;
2117 }
2118 Preconditions.checkArgument(!ArrayUtils.isEmpty(ops), "Ops cannot be null or empty");
2119 Preconditions.checkArrayElementsInRange(ops, 0, AppOpsManager._NUM_OP - 1,
2120 "Invalid op code in: " + Arrays.toString(ops));
2121 Preconditions.checkNotNull(callback, "Callback cannot be null");
2122 synchronized (this) {
2123 SparseArray<NotedCallback> callbacks = mNotedWatchers.get(callback.asBinder());
2124 if (callbacks == null) {
2125 callbacks = new SparseArray<>();
2126 mNotedWatchers.put(callback.asBinder(), callbacks);
2127 }
2128 final NotedCallback notedCallback = new NotedCallback(callback, watchedUid,
2129 callingUid, callingPid);
2130 for (int op : ops) {
2131 callbacks.put(op, notedCallback);
2132 }
2133 }
2134 }
2135
2136 @Override
2137 public void stopWatchingNoted(IAppOpsNotedCallback callback) {
2138 Preconditions.checkNotNull(callback, "Callback cannot be null");
2139 synchronized (this) {
2140 final SparseArray<NotedCallback> notedCallbacks =
2141 mNotedWatchers.remove(callback.asBinder());
2142 if (notedCallbacks == null) {
2143 return;
2144 }
2145 final int callbackCount = notedCallbacks.size();
2146 for (int i = 0; i < callbackCount; i++) {
2147 notedCallbacks.valueAt(i).destroy();
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002148 }
2149 }
2150 }
2151
2152 @Override
Svet Ganovf7b47252018-02-26 11:11:27 -08002153 public int startOperation(IBinder token, int code, int uid, String packageName,
2154 boolean startIfModeDefault) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002155 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002156 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002157 String resolvedPackageName = resolvePackageName(uid, packageName);
2158 if (resolvedPackageName == null) {
2159 return AppOpsManager.MODE_IGNORED;
2160 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002161 ClientState client = (ClientState)token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002162 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002163 final Ops ops = getOpsRawLocked(uid, resolvedPackageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07002164 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002165 if (ops == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002166 if (DEBUG) Slog.d(TAG, "startOperation: no op for code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002167 + " package " + resolvedPackageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07002168 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002169 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002170 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07002171 if (isOpRestrictedLocked(uid, code, resolvedPackageName)) {
Jason Monk62062992014-05-06 09:55:28 -04002172 return AppOpsManager.MODE_IGNORED;
2173 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002174 final int switchCode = AppOpsManager.opToSwitch(code);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002175 final UidState uidState = ops.uidState;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002176 // If there is a non-default per UID policy (we set UID op mode only if
2177 // non-default) it takes over, otherwise use the per package policy.
Svet Ganovaf189e32019-02-15 18:45:29 -08002178 final int opCode = op.op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002179 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002180 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganovf7b47252018-02-26 11:11:27 -08002181 if (uidMode != AppOpsManager.MODE_ALLOWED
2182 && (!startIfModeDefault || uidMode != AppOpsManager.MODE_DEFAULT)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002183 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002184 + switchCode + " (" + code + ") uid " + uid + " package "
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002185 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002186 // We don't support proxy long running ops (start/stop)
2187 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2188 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2189 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2190 uidState.state, AppOpsManager.OP_FLAG_SELF);
Svet Ganov2af57082015-07-30 08:44:20 -07002191 return uidMode;
2192 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002193 } else {
2194 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002195 final int mode = switchOp.evalMode();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002196 if (mode != AppOpsManager.MODE_ALLOWED
2197 && (!startIfModeDefault || mode != AppOpsManager.MODE_DEFAULT)) {
2198 if (DEBUG) Slog.d(TAG, "startOperation: reject #" + mode + " for code "
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002199 + switchCode + " (" + code + ") uid " + uid + " package "
2200 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002201 // We don't support proxy long running ops (start/stop)
2202 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2203 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2204 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2205 uidState.state, AppOpsManager.OP_FLAG_SELF);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002206 return mode;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002207 }
Svet Ganov2af57082015-07-30 08:44:20 -07002208 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002209 if (DEBUG) Slog.d(TAG, "startOperation: allowing code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002210 + " package " + resolvedPackageName);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002211 if (op.startNesting == 0) {
2212 op.startRealtime = SystemClock.elapsedRealtime();
Svet Ganovaf189e32019-02-15 18:45:29 -08002213 // We don't support proxy long running ops (start/stop)
2214 op.started(System.currentTimeMillis(), uidState.state,
2215 AppOpsManager.OP_FLAG_SELF);
2216 mHistoricalRegistry.incrementOpAccessedCount(opCode, uid, packageName,
2217 uidState.state, AppOpsManager.OP_FLAG_SELF);
2218
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002219 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, true);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002220 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002221 op.startNesting++;
2222 uidState.startNesting++;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002223 if (client.mStartedOps != null) {
2224 client.mStartedOps.add(op);
2225 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002226 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002227
2228 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002229 }
2230
2231 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002232 public void finishOperation(IBinder token, int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002233 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002234 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002235 String resolvedPackageName = resolvePackageName(uid, packageName);
2236 if (resolvedPackageName == null) {
2237 return;
2238 }
2239 if (!(token instanceof ClientState)) {
2240 return;
2241 }
2242 ClientState client = (ClientState) token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002243 synchronized (this) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002244 Op op = getOpLocked(code, uid, resolvedPackageName, true, true, false);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002245 if (op == null) {
2246 return;
2247 }
Svet Ganovf7b47252018-02-26 11:11:27 -08002248 if (!client.mStartedOps.remove(op)) {
Svet Ganovf5d5af12018-03-18 11:51:17 -07002249 // We finish ops when packages get removed to guarantee no dangling
2250 // started ops. However, some part of the system may asynchronously
2251 // finish ops for an already gone package. Hence, finishing an op
2252 // for a non existing package is fine and we don't log as a wtf.
2253 final long identity = Binder.clearCallingIdentity();
2254 try {
2255 if (LocalServices.getService(PackageManagerInternal.class).getPackageUid(
2256 resolvedPackageName, 0, UserHandle.getUserId(uid)) < 0) {
2257 Slog.i(TAG, "Finishing op=" + AppOpsManager.opToName(code)
2258 + " for non-existing package=" + resolvedPackageName
2259 + " in uid=" + uid);
2260 return;
2261 }
2262 } finally {
2263 Binder.restoreCallingIdentity(identity);
2264 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002265 Slog.wtf(TAG, "Operation not started: uid=" + op.uidState.uid + " pkg="
Svet Ganovf5d5af12018-03-18 11:51:17 -07002266 + op.packageName + " op=" + AppOpsManager.opToName(op.op));
Svet Ganov31d83ae2018-03-15 10:45:56 -07002267 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002268 }
Svet Ganova7a0db62018-02-27 20:08:01 -08002269 finishOperationLocked(op, /*finishNested*/ false);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002270 if (op.startNesting <= 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002271 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, false);
2272 }
2273 }
2274 }
2275
2276 private void scheduleOpActiveChangedIfNeededLocked(int code, int uid, String packageName,
2277 boolean active) {
2278 ArraySet<ActiveCallback> dispatchedCallbacks = null;
2279 final int callbackListCount = mActiveWatchers.size();
2280 for (int i = 0; i < callbackListCount; i++) {
2281 final SparseArray<ActiveCallback> callbacks = mActiveWatchers.valueAt(i);
2282 ActiveCallback callback = callbacks.get(code);
2283 if (callback != null) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002284 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002285 continue;
2286 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002287 if (dispatchedCallbacks == null) {
2288 dispatchedCallbacks = new ArraySet<>();
2289 }
2290 dispatchedCallbacks.add(callback);
2291 }
2292 }
2293 if (dispatchedCallbacks == null) {
2294 return;
2295 }
2296 mHandler.sendMessage(PooledLambda.obtainMessage(
2297 AppOpsService::notifyOpActiveChanged,
2298 this, dispatchedCallbacks, code, uid, packageName, active));
2299 }
2300
2301 private void notifyOpActiveChanged(ArraySet<ActiveCallback> callbacks,
2302 int code, int uid, String packageName, boolean active) {
2303 // There are components watching for mode changes such as window manager
2304 // and location manager which are in our process. The callbacks in these
2305 // components may require permissions our remote caller does not have.
2306 final long identity = Binder.clearCallingIdentity();
2307 try {
2308 final int callbackCount = callbacks.size();
2309 for (int i = 0; i < callbackCount; i++) {
2310 final ActiveCallback callback = callbacks.valueAt(i);
2311 try {
2312 callback.mCallback.opActiveChanged(code, uid, packageName, active);
2313 } catch (RemoteException e) {
2314 /* do nothing */
2315 }
2316 }
2317 } finally {
2318 Binder.restoreCallingIdentity(identity);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002319 }
2320 }
2321
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002322 private void scheduleOpNotedIfNeededLocked(int code, int uid, String packageName,
2323 int result) {
2324 ArraySet<NotedCallback> dispatchedCallbacks = null;
2325 final int callbackListCount = mNotedWatchers.size();
2326 for (int i = 0; i < callbackListCount; i++) {
2327 final SparseArray<NotedCallback> callbacks = mNotedWatchers.valueAt(i);
2328 final NotedCallback callback = callbacks.get(code);
2329 if (callback != null) {
2330 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
2331 continue;
2332 }
2333 if (dispatchedCallbacks == null) {
2334 dispatchedCallbacks = new ArraySet<>();
2335 }
2336 dispatchedCallbacks.add(callback);
2337 }
2338 }
2339 if (dispatchedCallbacks == null) {
2340 return;
2341 }
2342 mHandler.sendMessage(PooledLambda.obtainMessage(
2343 AppOpsService::notifyOpChecked,
2344 this, dispatchedCallbacks, code, uid, packageName, result));
2345 }
2346
2347 private void notifyOpChecked(ArraySet<NotedCallback> callbacks,
2348 int code, int uid, String packageName, int result) {
2349 // There are components watching for checks in our process. The callbacks in
2350 // these components may require permissions our remote caller does not have.
2351 final long identity = Binder.clearCallingIdentity();
2352 try {
2353 final int callbackCount = callbacks.size();
2354 for (int i = 0; i < callbackCount; i++) {
2355 final NotedCallback callback = callbacks.valueAt(i);
2356 try {
2357 callback.mCallback.opNoted(code, uid, packageName, result);
2358 } catch (RemoteException e) {
2359 /* do nothing */
2360 }
2361 }
2362 } finally {
2363 Binder.restoreCallingIdentity(identity);
2364 }
2365 }
2366
Svet Ganovb9d71a62015-04-30 10:38:13 -07002367 @Override
2368 public int permissionToOpCode(String permission) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002369 if (permission == null) {
2370 return AppOpsManager.OP_NONE;
2371 }
Svet Ganovb9d71a62015-04-30 10:38:13 -07002372 return AppOpsManager.permissionToOpCode(permission);
2373 }
2374
Svet Ganova7a0db62018-02-27 20:08:01 -08002375 void finishOperationLocked(Op op, boolean finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002376 final int opCode = op.op;
2377 final int uid = op.uidState.uid;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002378 if (op.startNesting <= 1 || finishNested) {
2379 if (op.startNesting == 1 || finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002380 // We don't support proxy long running ops (start/stop)
2381 final long duration = SystemClock.elapsedRealtime() - op.startRealtime;
2382 op.finished(System.currentTimeMillis(), duration, op.uidState.state,
2383 AppOpsManager.OP_FLAG_SELF);
2384 mHistoricalRegistry.increaseOpAccessDuration(opCode, uid, op.packageName,
2385 op.uidState.state, AppOpsManager.OP_FLAG_SELF, duration);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002386 } else {
Svet Ganovaf189e32019-02-15 18:45:29 -08002387 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
2388 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
2389 Slog.w(TAG, "Finishing op nesting under-run: uid " + uid + " pkg "
2390 + op.packageName + " code " + opCode + " time="
2391 + entry.getLastAccessTime(OP_FLAGS_ALL)
2392 + " duration=" + entry.getLastDuration(MAX_PRIORITY_UID_STATE,
2393 MIN_PRIORITY_UID_STATE, OP_FLAGS_ALL) + " nesting=" + op.startNesting);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002394 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002395 if (op.startNesting >= 1) {
2396 op.uidState.startNesting -= op.startNesting;
2397 }
2398 op.startNesting = 0;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002399 } else {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002400 op.startNesting--;
2401 op.uidState.startNesting--;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002402 }
2403 }
2404
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002405 private void verifyIncomingUid(int uid) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002406 if (uid == Binder.getCallingUid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002407 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002408 }
2409 if (Binder.getCallingPid() == Process.myPid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002410 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002411 }
2412 mContext.enforcePermission(android.Manifest.permission.UPDATE_APP_OPS_STATS,
2413 Binder.getCallingPid(), Binder.getCallingUid(), null);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002414 }
2415
Dianne Hackborn961321f2013-02-05 17:22:41 -08002416 private void verifyIncomingOp(int op) {
2417 if (op >= 0 && op < AppOpsManager._NUM_OP) {
2418 return;
2419 }
2420 throw new IllegalArgumentException("Bad operation #" + op);
2421 }
2422
Philip P. Moltmann724150d2019-03-11 17:01:05 -07002423 private @Nullable UidState getUidStateLocked(int uid, boolean edit) {
Svet Ganov2af57082015-07-30 08:44:20 -07002424 UidState uidState = mUidStates.get(uid);
2425 if (uidState == null) {
2426 if (!edit) {
2427 return null;
2428 }
2429 uidState = new UidState(uid);
2430 mUidStates.put(uid, uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002431 } else {
2432 if (uidState.pendingStateCommitTime != 0) {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002433 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002434 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002435 } else {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002436 mLastRealtime = SystemClock.elapsedRealtime();
2437 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002438 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002439 }
2440 }
2441 }
Svet Ganov2af57082015-07-30 08:44:20 -07002442 }
2443 return uidState;
2444 }
2445
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002446 private void commitUidPendingStateLocked(UidState uidState) {
Wei Wange1f864e2019-03-28 18:12:18 -07002447 if (uidState.hasForegroundWatchers) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002448 for (int fgi = uidState.foregroundOps.size() - 1; fgi >= 0; fgi--) {
2449 if (!uidState.foregroundOps.valueAt(fgi)) {
2450 continue;
2451 }
2452 final int code = uidState.foregroundOps.keyAt(fgi);
Svet Ganovaf189e32019-02-15 18:45:29 -08002453 // For location ops we consider fg state only if the fg service
2454 // is of location type, for all other ops any fg service will do.
Wei Wang711eb662019-03-21 18:24:17 -07002455 final long firstUnrestrictedUidState = resolveFirstUnrestrictedUidState(code);
2456 final boolean resolvedLastFg = uidState.state <= firstUnrestrictedUidState;
2457 final boolean resolvedNowFg = uidState.pendingState <= firstUnrestrictedUidState;
2458 if (resolvedLastFg == resolvedNowFg) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002459 continue;
2460 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002461 final ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
2462 if (callbacks != null) {
2463 for (int cbi = callbacks.size() - 1; cbi >= 0; cbi--) {
2464 final ModeCallback callback = callbacks.valueAt(cbi);
2465 if ((callback.mFlags & AppOpsManager.WATCH_FOREGROUND_CHANGES) == 0
2466 || !callback.isWatchingUid(uidState.uid)) {
2467 continue;
2468 }
2469 boolean doAllPackages = uidState.opModes != null
Hai Zhang2b98fb32018-09-21 15:18:46 -07002470 && uidState.opModes.indexOfKey(code) >= 0
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002471 && uidState.opModes.get(code) == AppOpsManager.MODE_FOREGROUND;
2472 if (uidState.pkgOps != null) {
2473 for (int pkgi = uidState.pkgOps.size() - 1; pkgi >= 0; pkgi--) {
2474 final Op op = uidState.pkgOps.valueAt(pkgi).get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08002475 if (op == null) {
2476 continue;
2477 }
2478 if (doAllPackages || op.mode == AppOpsManager.MODE_FOREGROUND) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002479 mHandler.sendMessage(PooledLambda.obtainMessage(
2480 AppOpsService::notifyOpChanged,
2481 this, callback, code, uidState.uid,
2482 uidState.pkgOps.keyAt(pkgi)));
2483 }
2484 }
2485 }
2486 }
2487 }
2488 }
2489 }
Wei Wang711eb662019-03-21 18:24:17 -07002490 uidState.state = uidState.pendingState;
2491 uidState.pendingStateCommitTime = 0;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002492 }
2493
Yohei Yukawaa965d652017-10-12 15:02:26 -07002494 private Ops getOpsRawLocked(int uid, String packageName, boolean edit,
2495 boolean uidMismatchExpected) {
Svet Ganov2af57082015-07-30 08:44:20 -07002496 UidState uidState = getUidStateLocked(uid, edit);
2497 if (uidState == null) {
2498 return null;
2499 }
2500
2501 if (uidState.pkgOps == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002502 if (!edit) {
2503 return null;
2504 }
Svet Ganov2af57082015-07-30 08:44:20 -07002505 uidState.pkgOps = new ArrayMap<>();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002506 }
Svet Ganov2af57082015-07-30 08:44:20 -07002507
2508 Ops ops = uidState.pkgOps.get(packageName);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002509 if (ops == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002510 if (!edit) {
2511 return null;
2512 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002513 boolean isPrivileged = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002514 // This is the first time we have seen this package name under this uid,
2515 // so let's make sure it is valid.
Dianne Hackborn514074f2013-02-11 10:52:46 -08002516 if (uid != 0) {
2517 final long ident = Binder.clearCallingIdentity();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002518 try {
Dianne Hackborn514074f2013-02-11 10:52:46 -08002519 int pkgUid = -1;
2520 try {
Jason Monk1c7c3192014-06-26 12:52:18 -04002521 ApplicationInfo appInfo = ActivityThread.getPackageManager()
Jeff Sharkeycd654482016-01-08 17:42:11 -07002522 .getApplicationInfo(packageName,
Svet Ganovad0a49b2018-10-29 10:07:08 -07002523 PackageManager.MATCH_DIRECT_BOOT_AWARE
Svet Ganov8455ba22019-01-02 13:05:56 -08002524 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
Jeff Sharkeycd654482016-01-08 17:42:11 -07002525 UserHandle.getUserId(uid));
Jason Monk1c7c3192014-06-26 12:52:18 -04002526 if (appInfo != null) {
2527 pkgUid = appInfo.uid;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002528 isPrivileged = (appInfo.privateFlags
2529 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002530 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08002531 pkgUid = resolveUid(packageName);
2532 if (pkgUid >= 0) {
Chien-Yu Chen75cade02016-01-11 10:56:21 -08002533 isPrivileged = false;
Jason Monk1c7c3192014-06-26 12:52:18 -04002534 }
Dianne Hackborn713df152013-05-17 11:27:57 -07002535 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002536 } catch (RemoteException e) {
2537 Slog.w(TAG, "Could not contact PackageManager", e);
Dianne Hackborn514074f2013-02-11 10:52:46 -08002538 }
2539 if (pkgUid != uid) {
2540 // Oops! The package name is not valid for the uid they are calling
2541 // under. Abort.
Yohei Yukawaa965d652017-10-12 15:02:26 -07002542 if (!uidMismatchExpected) {
2543 RuntimeException ex = new RuntimeException("here");
2544 ex.fillInStackTrace();
2545 Slog.w(TAG, "Bad call: specified package " + packageName
2546 + " under uid " + uid + " but it is really " + pkgUid, ex);
2547 }
Dianne Hackborn514074f2013-02-11 10:52:46 -08002548 return null;
2549 }
2550 } finally {
2551 Binder.restoreCallingIdentity(ident);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002552 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002553 }
Svet Ganov2af57082015-07-30 08:44:20 -07002554 ops = new Ops(packageName, uidState, isPrivileged);
2555 uidState.pkgOps.put(packageName, ops);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002556 }
Dianne Hackborn72e39832013-01-18 18:36:09 -08002557 return ops;
2558 }
2559
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002560 /**
2561 * Get the state of all ops for a package, <b>don't verify that package belongs to uid</b>.
2562 *
2563 * <p>Usually callers should use {@link #getOpLocked} and not call this directly.
2564 *
2565 * @param uid The uid the of the package
2566 * @param packageName The package name for which to get the state for
2567 * @param edit Iff {@code true} create the {@link Ops} object if not yet created
2568 * @param isPrivileged Whether the package is privileged or not
2569 *
2570 * @return The {@link Ops state} of all ops for the package
2571 */
2572 private @Nullable Ops getOpsRawNoVerifyLocked(int uid, @NonNull String packageName,
2573 boolean edit, boolean isPrivileged) {
2574 UidState uidState = getUidStateLocked(uid, edit);
2575 if (uidState == null) {
2576 return null;
2577 }
2578
2579 if (uidState.pkgOps == null) {
2580 if (!edit) {
2581 return null;
2582 }
2583 uidState.pkgOps = new ArrayMap<>();
2584 }
2585
2586 Ops ops = uidState.pkgOps.get(packageName);
2587 if (ops == null) {
2588 if (!edit) {
2589 return null;
2590 }
2591 ops = new Ops(packageName, uidState, isPrivileged);
2592 uidState.pkgOps.put(packageName, ops);
2593 }
2594 return ops;
2595 }
2596
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002597 private void scheduleWriteLocked() {
2598 if (!mWriteScheduled) {
2599 mWriteScheduled = true;
2600 mHandler.postDelayed(mWriteRunner, WRITE_DELAY);
2601 }
2602 }
2603
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002604 private void scheduleFastWriteLocked() {
2605 if (!mFastWriteScheduled) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002606 mWriteScheduled = true;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002607 mFastWriteScheduled = true;
2608 mHandler.removeCallbacks(mWriteRunner);
2609 mHandler.postDelayed(mWriteRunner, 10*1000);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002610 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002611 }
2612
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002613 /**
2614 * Get the state of an op for a uid.
2615 *
2616 * @param code The code of the op
2617 * @param uid The uid the of the package
2618 * @param packageName The package name for which to get the state for
2619 * @param edit Iff {@code true} create the {@link Op} object if not yet created
2620 * @param verifyUid Iff {@code true} check that the package belongs to the uid
2621 * @param isPrivileged Whether the package is privileged or not (only used if {@code verifyUid
2622 * == false})
2623 *
2624 * @return The {@link Op state} of the op
2625 */
2626 private @Nullable Op getOpLocked(int code, int uid, @NonNull String packageName, boolean edit,
2627 boolean verifyUid, boolean isPrivileged) {
2628 Ops ops;
2629
2630 if (verifyUid) {
2631 ops = getOpsRawLocked(uid, packageName, edit, false /* uidMismatchExpected */);
2632 } else {
2633 ops = getOpsRawNoVerifyLocked(uid, packageName, edit, isPrivileged);
2634 }
2635
Dianne Hackborn72e39832013-01-18 18:36:09 -08002636 if (ops == null) {
2637 return null;
2638 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002639 return getOpLocked(ops, code, edit);
2640 }
2641
2642 private Op getOpLocked(Ops ops, int code, boolean edit) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002643 Op op = ops.get(code);
2644 if (op == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002645 if (!edit) {
2646 return null;
2647 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002648 op = new Op(ops.uidState, ops.packageName, code);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002649 ops.put(code, op);
2650 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002651 if (edit) {
2652 scheduleWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002653 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002654 return op;
2655 }
2656
Svet Ganov442ed572016-08-17 17:29:43 -07002657 private boolean isOpRestrictedLocked(int uid, int code, String packageName) {
Jason Monk62062992014-05-06 09:55:28 -04002658 int userHandle = UserHandle.getUserId(uid);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002659 final int restrictionSetCount = mOpUserRestrictions.size();
Ruben Brunk29931bc2016-03-11 00:24:26 -08002660
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002661 for (int i = 0; i < restrictionSetCount; i++) {
Ruben Brunk29931bc2016-03-11 00:24:26 -08002662 // For each client, check that the given op is not restricted, or that the given
2663 // package is exempt from the restriction.
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07002664 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002665 if (restrictionState.hasRestriction(code, packageName, userHandle)) {
2666 if (AppOpsManager.opAllowSystemBypassRestriction(code)) {
2667 // If we are the system, bypass user restrictions for certain codes
2668 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07002669 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
2670 false /* uidMismatchExpected */);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002671 if ((ops != null) && ops.isPrivileged) {
2672 return false;
2673 }
Ruben Brunk32f0fa42016-03-11 19:07:07 -08002674 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08002675 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002676 return true;
Jason Monk1c7c3192014-06-26 12:52:18 -04002677 }
Jason Monk62062992014-05-06 09:55:28 -04002678 }
2679 return false;
2680 }
2681
Dianne Hackborn35654b62013-01-14 17:38:02 -08002682 void readState() {
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002683 int oldVersion = NO_VERSION;
Dianne Hackborn35654b62013-01-14 17:38:02 -08002684 synchronized (mFile) {
2685 synchronized (this) {
2686 FileInputStream stream;
2687 try {
2688 stream = mFile.openRead();
2689 } catch (FileNotFoundException e) {
2690 Slog.i(TAG, "No existing app ops " + mFile.getBaseFile() + "; starting empty");
2691 return;
2692 }
2693 boolean success = false;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002694 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002695 try {
2696 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002697 parser.setInput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002698 int type;
2699 while ((type = parser.next()) != XmlPullParser.START_TAG
2700 && type != XmlPullParser.END_DOCUMENT) {
2701 ;
2702 }
2703
2704 if (type != XmlPullParser.START_TAG) {
2705 throw new IllegalStateException("no start tag found");
2706 }
2707
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002708 final String versionString = parser.getAttributeValue(null, "v");
2709 if (versionString != null) {
2710 oldVersion = Integer.parseInt(versionString);
2711 }
2712
Dianne Hackborn35654b62013-01-14 17:38:02 -08002713 int outerDepth = parser.getDepth();
2714 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2715 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2716 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2717 continue;
2718 }
2719
2720 String tagName = parser.getName();
2721 if (tagName.equals("pkg")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002722 readPackage(parser);
Svetoslav215b44a2015-08-04 19:03:40 -07002723 } else if (tagName.equals("uid")) {
Svet Ganov2af57082015-07-30 08:44:20 -07002724 readUidOps(parser);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002725 } else {
2726 Slog.w(TAG, "Unknown element under <app-ops>: "
2727 + parser.getName());
2728 XmlUtils.skipCurrentTag(parser);
2729 }
2730 }
2731 success = true;
2732 } catch (IllegalStateException e) {
2733 Slog.w(TAG, "Failed parsing " + e);
2734 } catch (NullPointerException e) {
2735 Slog.w(TAG, "Failed parsing " + e);
2736 } catch (NumberFormatException e) {
2737 Slog.w(TAG, "Failed parsing " + e);
2738 } catch (XmlPullParserException e) {
2739 Slog.w(TAG, "Failed parsing " + e);
2740 } catch (IOException e) {
2741 Slog.w(TAG, "Failed parsing " + e);
2742 } catch (IndexOutOfBoundsException e) {
2743 Slog.w(TAG, "Failed parsing " + e);
2744 } finally {
2745 if (!success) {
Svet Ganov2af57082015-07-30 08:44:20 -07002746 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002747 }
2748 try {
2749 stream.close();
2750 } catch (IOException e) {
2751 }
2752 }
2753 }
2754 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002755 synchronized (this) {
2756 upgradeLocked(oldVersion);
2757 }
2758 }
2759
2760 private void upgradeRunAnyInBackgroundLocked() {
2761 for (int i = 0; i < mUidStates.size(); i++) {
2762 final UidState uidState = mUidStates.valueAt(i);
2763 if (uidState == null) {
2764 continue;
2765 }
2766 if (uidState.opModes != null) {
2767 final int idx = uidState.opModes.indexOfKey(AppOpsManager.OP_RUN_IN_BACKGROUND);
2768 if (idx >= 0) {
2769 uidState.opModes.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND,
Svet Ganovaf189e32019-02-15 18:45:29 -08002770 uidState.opModes.valueAt(idx));
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002771 }
2772 }
2773 if (uidState.pkgOps == null) {
2774 continue;
2775 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002776 boolean changed = false;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002777 for (int j = 0; j < uidState.pkgOps.size(); j++) {
2778 Ops ops = uidState.pkgOps.valueAt(j);
2779 if (ops != null) {
2780 final Op op = ops.get(AppOpsManager.OP_RUN_IN_BACKGROUND);
2781 if (op != null && op.mode != AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002782 final Op copy = new Op(op.uidState, op.packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002783 AppOpsManager.OP_RUN_ANY_IN_BACKGROUND);
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002784 copy.mode = op.mode;
2785 ops.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND, copy);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002786 changed = true;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002787 }
2788 }
2789 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002790 if (changed) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002791 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002792 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002793 }
2794 }
2795
2796 private void upgradeLocked(int oldVersion) {
2797 if (oldVersion >= CURRENT_VERSION) {
2798 return;
2799 }
2800 Slog.d(TAG, "Upgrading app-ops xml from version " + oldVersion + " to " + CURRENT_VERSION);
2801 switch (oldVersion) {
2802 case NO_VERSION:
2803 upgradeRunAnyInBackgroundLocked();
2804 // fall through
2805 case 1:
2806 // for future upgrades
2807 }
2808 scheduleFastWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002809 }
2810
Svet Ganovaf189e32019-02-15 18:45:29 -08002811 private void readUidOps(XmlPullParser parser) throws NumberFormatException,
Svet Ganov2af57082015-07-30 08:44:20 -07002812 XmlPullParserException, IOException {
2813 final int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
2814 int outerDepth = parser.getDepth();
2815 int type;
2816 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2817 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2818 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2819 continue;
2820 }
2821
2822 String tagName = parser.getName();
2823 if (tagName.equals("op")) {
2824 final int code = Integer.parseInt(parser.getAttributeValue(null, "n"));
2825 final int mode = Integer.parseInt(parser.getAttributeValue(null, "m"));
2826 UidState uidState = getUidStateLocked(uid, true);
2827 if (uidState.opModes == null) {
2828 uidState.opModes = new SparseIntArray();
2829 }
2830 uidState.opModes.put(code, mode);
2831 } else {
2832 Slog.w(TAG, "Unknown element under <uid-ops>: "
2833 + parser.getName());
2834 XmlUtils.skipCurrentTag(parser);
2835 }
2836 }
2837 }
2838
Svet Ganovaf189e32019-02-15 18:45:29 -08002839 private void readPackage(XmlPullParser parser)
2840 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002841 String pkgName = parser.getAttributeValue(null, "n");
2842 int outerDepth = parser.getDepth();
2843 int type;
2844 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2845 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2846 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2847 continue;
2848 }
2849
2850 String tagName = parser.getName();
2851 if (tagName.equals("uid")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002852 readUid(parser, pkgName);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002853 } else {
2854 Slog.w(TAG, "Unknown element under <pkg>: "
2855 + parser.getName());
2856 XmlUtils.skipCurrentTag(parser);
2857 }
2858 }
2859 }
2860
Svet Ganovaf189e32019-02-15 18:45:29 -08002861 private void readUid(XmlPullParser parser, String pkgName)
2862 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002863 int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
Svet Ganovaf189e32019-02-15 18:45:29 -08002864 final UidState uidState = getUidStateLocked(uid, true);
Jason Monk1c7c3192014-06-26 12:52:18 -04002865 String isPrivilegedString = parser.getAttributeValue(null, "p");
2866 boolean isPrivileged = false;
2867 if (isPrivilegedString == null) {
2868 try {
2869 IPackageManager packageManager = ActivityThread.getPackageManager();
2870 if (packageManager != null) {
2871 ApplicationInfo appInfo = ActivityThread.getPackageManager()
2872 .getApplicationInfo(pkgName, 0, UserHandle.getUserId(uid));
2873 if (appInfo != null) {
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002874 isPrivileged = (appInfo.privateFlags
2875 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002876 }
2877 } else {
2878 // Could not load data, don't add to cache so it will be loaded later.
2879 return;
2880 }
2881 } catch (RemoteException e) {
2882 Slog.w(TAG, "Could not contact PackageManager", e);
2883 }
2884 } else {
2885 isPrivileged = Boolean.parseBoolean(isPrivilegedString);
2886 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002887 int outerDepth = parser.getDepth();
2888 int type;
2889 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2890 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2891 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2892 continue;
2893 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002894 String tagName = parser.getName();
2895 if (tagName.equals("op")) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002896 readOp(parser, uidState, pkgName, isPrivileged);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002897 } else {
2898 Slog.w(TAG, "Unknown element under <pkg>: "
2899 + parser.getName());
2900 XmlUtils.skipCurrentTag(parser);
2901 }
2902 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002903 uidState.evalForegroundOps(mOpModeWatchers);
2904 }
2905
2906 private void readOp(XmlPullParser parser, @NonNull UidState uidState,
2907 @NonNull String pkgName, boolean isPrivileged) throws NumberFormatException,
2908 XmlPullParserException, IOException {
2909 Op op = new Op(uidState, pkgName,
2910 Integer.parseInt(parser.getAttributeValue(null, "n")));
2911
2912 final int mode = XmlUtils.readIntAttribute(parser, "m",
2913 AppOpsManager.opToDefaultMode(op.op));
2914 op.mode = mode;
2915
2916 int outerDepth = parser.getDepth();
2917 int type;
2918 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2919 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2920 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2921 continue;
2922 }
2923 String tagName = parser.getName();
2924 if (tagName.equals("st")) {
2925 final long key = XmlUtils.readLongAttribute(parser, "n");
2926
2927 final int flags = AppOpsManager.extractFlagsFromKey(key);
2928 final int state = AppOpsManager.extractUidStateFromKey(key);
2929
2930 final long accessTime = XmlUtils.readLongAttribute(parser, "t", 0);
2931 final long rejectTime = XmlUtils.readLongAttribute(parser, "r", 0);
2932 final long accessDuration = XmlUtils.readLongAttribute(parser, "d", 0);
2933 final String proxyPkg = XmlUtils.readStringAttribute(parser, "pp");
2934 final int proxyUid = XmlUtils.readIntAttribute(parser, "pu", 0);
2935
2936 if (accessTime > 0) {
2937 op.accessed(accessTime, proxyUid, proxyPkg, state, flags);
2938 }
2939 if (rejectTime > 0) {
2940 op.rejected(rejectTime, proxyUid, proxyPkg, state, flags);
2941 }
2942 if (accessDuration > 0) {
2943 op.running(accessTime, accessDuration, state, flags);
2944 }
2945 } else {
2946 Slog.w(TAG, "Unknown element under <op>: "
2947 + parser.getName());
2948 XmlUtils.skipCurrentTag(parser);
2949 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002950 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002951
2952 if (uidState.pkgOps == null) {
2953 uidState.pkgOps = new ArrayMap<>();
2954 }
2955 Ops ops = uidState.pkgOps.get(pkgName);
2956 if (ops == null) {
2957 ops = new Ops(pkgName, uidState, isPrivileged);
2958 uidState.pkgOps.put(pkgName, ops);
2959 }
2960 ops.put(op.op, op);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002961 }
2962
2963 void writeState() {
2964 synchronized (mFile) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002965 FileOutputStream stream;
2966 try {
2967 stream = mFile.startWrite();
2968 } catch (IOException e) {
2969 Slog.w(TAG, "Failed to write state: " + e);
2970 return;
2971 }
2972
Dianne Hackborne17b4452018-01-10 13:15:40 -08002973 List<AppOpsManager.PackageOps> allOps = getPackagesForOps(null);
2974
Dianne Hackborn35654b62013-01-14 17:38:02 -08002975 try {
2976 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002977 out.setOutput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002978 out.startDocument(null, true);
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002979 out.startTag(null, "app-ops");
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002980 out.attribute(null, "v", String.valueOf(CURRENT_VERSION));
Svet Ganov2af57082015-07-30 08:44:20 -07002981
2982 final int uidStateCount = mUidStates.size();
2983 for (int i = 0; i < uidStateCount; i++) {
2984 UidState uidState = mUidStates.valueAt(i);
2985 if (uidState.opModes != null && uidState.opModes.size() > 0) {
2986 out.startTag(null, "uid");
2987 out.attribute(null, "n", Integer.toString(uidState.uid));
2988 SparseIntArray uidOpModes = uidState.opModes;
2989 final int opCount = uidOpModes.size();
2990 for (int j = 0; j < opCount; j++) {
2991 final int op = uidOpModes.keyAt(j);
2992 final int mode = uidOpModes.valueAt(j);
2993 out.startTag(null, "op");
2994 out.attribute(null, "n", Integer.toString(op));
2995 out.attribute(null, "m", Integer.toString(mode));
2996 out.endTag(null, "op");
2997 }
2998 out.endTag(null, "uid");
2999 }
3000 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08003001
3002 if (allOps != null) {
3003 String lastPkg = null;
3004 for (int i=0; i<allOps.size(); i++) {
3005 AppOpsManager.PackageOps pkg = allOps.get(i);
3006 if (!pkg.getPackageName().equals(lastPkg)) {
3007 if (lastPkg != null) {
3008 out.endTag(null, "pkg");
3009 }
3010 lastPkg = pkg.getPackageName();
3011 out.startTag(null, "pkg");
3012 out.attribute(null, "n", lastPkg);
3013 }
3014 out.startTag(null, "uid");
3015 out.attribute(null, "n", Integer.toString(pkg.getUid()));
Jason Monk1c7c3192014-06-26 12:52:18 -04003016 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07003017 Ops ops = getOpsRawLocked(pkg.getUid(), pkg.getPackageName(),
3018 false /* edit */, false /* uidMismatchExpected */);
Jason Monk1c7c3192014-06-26 12:52:18 -04003019 // Should always be present as the list of PackageOps is generated
3020 // from Ops.
3021 if (ops != null) {
3022 out.attribute(null, "p", Boolean.toString(ops.isPrivileged));
3023 } else {
3024 out.attribute(null, "p", Boolean.toString(false));
3025 }
3026 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08003027 List<AppOpsManager.OpEntry> ops = pkg.getOps();
3028 for (int j=0; j<ops.size(); j++) {
3029 AppOpsManager.OpEntry op = ops.get(j);
3030 out.startTag(null, "op");
3031 out.attribute(null, "n", Integer.toString(op.getOp()));
David Braunf5d83192013-09-16 13:43:51 -07003032 if (op.getMode() != AppOpsManager.opToDefaultMode(op.getOp())) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003033 out.attribute(null, "m", Integer.toString(op.getMode()));
3034 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003035
3036 final LongSparseArray keys = op.collectKeys();
3037 if (keys == null || keys.size() <= 0) {
Svet Ganov8e5bf962019-03-19 23:59:03 -07003038 out.endTag(null, "op");
Svet Ganovaf189e32019-02-15 18:45:29 -08003039 continue;
3040 }
3041
3042 final int keyCount = keys.size();
3043 for (int k = 0; k < keyCount; k++) {
3044 final long key = keys.keyAt(k);
3045
3046 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3047 final int flags = AppOpsManager.extractFlagsFromKey(key);
3048
3049 final long accessTime = op.getLastAccessTime(
3050 uidState, uidState, flags);
3051 final long rejectTime = op.getLastRejectTime(
3052 uidState, uidState, flags);
3053 final long accessDuration = op.getLastDuration(
3054 uidState, uidState, flags);
3055 final String proxyPkg = op.getProxyPackageName(uidState, flags);
3056 final int proxyUid = op.getProxyUid(uidState, flags);
3057
3058 if (accessTime <= 0 && rejectTime <= 0 && accessDuration <= 0
3059 && proxyPkg == null && proxyUid < 0) {
3060 continue;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003061 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003062
3063 out.startTag(null, "st");
3064 out.attribute(null, "n", Long.toString(key));
3065 if (accessTime > 0) {
3066 out.attribute(null, "t", Long.toString(accessTime));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003067 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003068 if (rejectTime > 0) {
3069 out.attribute(null, "r", Long.toString(rejectTime));
3070 }
3071 if (accessDuration > 0) {
3072 out.attribute(null, "d", Long.toString(accessDuration));
3073 }
3074 if (proxyPkg != null) {
3075 out.attribute(null, "pp", proxyPkg);
3076 }
3077 if (proxyUid >= 0) {
3078 out.attribute(null, "pu", Integer.toString(proxyUid));
3079 }
3080 out.endTag(null, "st");
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003081 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003082
Dianne Hackborn35654b62013-01-14 17:38:02 -08003083 out.endTag(null, "op");
3084 }
3085 out.endTag(null, "uid");
3086 }
3087 if (lastPkg != null) {
3088 out.endTag(null, "pkg");
3089 }
3090 }
3091
3092 out.endTag(null, "app-ops");
3093 out.endDocument();
3094 mFile.finishWrite(stream);
3095 } catch (IOException e) {
3096 Slog.w(TAG, "Failed to write state, restoring backup.", e);
3097 mFile.failWrite(stream);
3098 }
3099 }
3100 }
3101
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003102 static class Shell extends ShellCommand {
3103 final IAppOpsService mInterface;
3104 final AppOpsService mInternal;
3105
3106 int userId = UserHandle.USER_SYSTEM;
3107 String packageName;
3108 String opStr;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003109 String modeStr;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003110 int op;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003111 int mode;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003112 int packageUid;
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003113 int nonpackageUid;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003114 final static Binder sBinder = new Binder();
3115 IBinder mToken;
Svet Ganovd563e932019-04-14 13:07:41 -07003116 boolean targetsUid;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003117
3118 Shell(IAppOpsService iface, AppOpsService internal) {
3119 mInterface = iface;
3120 mInternal = internal;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003121 try {
3122 mToken = mInterface.getToken(sBinder);
3123 } catch (RemoteException e) {
3124 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003125 }
3126
3127 @Override
3128 public int onCommand(String cmd) {
3129 return onShellCommand(this, cmd);
3130 }
3131
3132 @Override
3133 public void onHelp() {
3134 PrintWriter pw = getOutPrintWriter();
3135 dumpCommandHelp(pw);
3136 }
3137
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003138 static private int strOpToOp(String op, PrintWriter err) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003139 try {
3140 return AppOpsManager.strOpToOp(op);
3141 } catch (IllegalArgumentException e) {
3142 }
3143 try {
3144 return Integer.parseInt(op);
3145 } catch (NumberFormatException e) {
3146 }
3147 try {
3148 return AppOpsManager.strDebugOpToOp(op);
3149 } catch (IllegalArgumentException e) {
3150 err.println("Error: " + e.getMessage());
3151 return -1;
3152 }
3153 }
3154
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003155 static int strModeToMode(String modeStr, PrintWriter err) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003156 for (int i = AppOpsManager.MODE_NAMES.length - 1; i >= 0; i--) {
3157 if (AppOpsManager.MODE_NAMES[i].equals(modeStr)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003158 return i;
3159 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003160 }
3161 try {
3162 return Integer.parseInt(modeStr);
3163 } catch (NumberFormatException e) {
3164 }
3165 err.println("Error: Mode " + modeStr + " is not valid");
3166 return -1;
3167 }
3168
3169 int parseUserOpMode(int defMode, PrintWriter err) throws RemoteException {
3170 userId = UserHandle.USER_CURRENT;
3171 opStr = null;
3172 modeStr = null;
3173 for (String argument; (argument = getNextArg()) != null;) {
3174 if ("--user".equals(argument)) {
3175 userId = UserHandle.parseUserArg(getNextArgRequired());
3176 } else {
3177 if (opStr == null) {
3178 opStr = argument;
3179 } else if (modeStr == null) {
3180 modeStr = argument;
3181 break;
3182 }
3183 }
3184 }
3185 if (opStr == null) {
3186 err.println("Error: Operation not specified.");
3187 return -1;
3188 }
3189 op = strOpToOp(opStr, err);
3190 if (op < 0) {
3191 return -1;
3192 }
3193 if (modeStr != null) {
3194 if ((mode=strModeToMode(modeStr, err)) < 0) {
3195 return -1;
3196 }
3197 } else {
3198 mode = defMode;
3199 }
3200 return 0;
3201 }
3202
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003203 int parseUserPackageOp(boolean reqOp, PrintWriter err) throws RemoteException {
3204 userId = UserHandle.USER_CURRENT;
3205 packageName = null;
3206 opStr = null;
3207 for (String argument; (argument = getNextArg()) != null;) {
3208 if ("--user".equals(argument)) {
3209 userId = UserHandle.parseUserArg(getNextArgRequired());
Svet Ganovd563e932019-04-14 13:07:41 -07003210 } else if ("--uid".equals(argument)) {
3211 targetsUid = true;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003212 } else {
3213 if (packageName == null) {
3214 packageName = argument;
3215 } else if (opStr == null) {
3216 opStr = argument;
3217 break;
3218 }
3219 }
3220 }
3221 if (packageName == null) {
3222 err.println("Error: Package name not specified.");
3223 return -1;
3224 } else if (opStr == null && reqOp) {
3225 err.println("Error: Operation not specified.");
3226 return -1;
3227 }
3228 if (opStr != null) {
3229 op = strOpToOp(opStr, err);
3230 if (op < 0) {
3231 return -1;
3232 }
3233 } else {
3234 op = AppOpsManager.OP_NONE;
3235 }
3236 if (userId == UserHandle.USER_CURRENT) {
3237 userId = ActivityManager.getCurrentUser();
3238 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003239 nonpackageUid = -1;
3240 try {
3241 nonpackageUid = Integer.parseInt(packageName);
3242 } catch (NumberFormatException e) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003243 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003244 if (nonpackageUid == -1 && packageName.length() > 1 && packageName.charAt(0) == 'u'
3245 && packageName.indexOf('.') < 0) {
3246 int i = 1;
3247 while (i < packageName.length() && packageName.charAt(i) >= '0'
3248 && packageName.charAt(i) <= '9') {
3249 i++;
3250 }
3251 if (i > 1 && i < packageName.length()) {
3252 String userStr = packageName.substring(1, i);
3253 try {
3254 int user = Integer.parseInt(userStr);
3255 char type = packageName.charAt(i);
3256 i++;
3257 int startTypeVal = i;
3258 while (i < packageName.length() && packageName.charAt(i) >= '0'
3259 && packageName.charAt(i) <= '9') {
3260 i++;
3261 }
3262 if (i > startTypeVal) {
3263 String typeValStr = packageName.substring(startTypeVal, i);
3264 try {
3265 int typeVal = Integer.parseInt(typeValStr);
3266 if (type == 'a') {
3267 nonpackageUid = UserHandle.getUid(user,
3268 typeVal + Process.FIRST_APPLICATION_UID);
3269 } else if (type == 's') {
3270 nonpackageUid = UserHandle.getUid(user, typeVal);
3271 }
3272 } catch (NumberFormatException e) {
3273 }
3274 }
3275 } catch (NumberFormatException e) {
3276 }
3277 }
3278 }
3279 if (nonpackageUid != -1) {
3280 packageName = null;
3281 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08003282 packageUid = resolveUid(packageName);
3283 if (packageUid < 0) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003284 packageUid = AppGlobals.getPackageManager().getPackageUid(packageName,
3285 PackageManager.MATCH_UNINSTALLED_PACKAGES, userId);
3286 }
3287 if (packageUid < 0) {
3288 err.println("Error: No UID for " + packageName + " in user " + userId);
3289 return -1;
3290 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003291 }
3292 return 0;
3293 }
3294 }
3295
3296 @Override public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003297 FileDescriptor err, String[] args, ShellCallback callback,
3298 ResultReceiver resultReceiver) {
3299 (new Shell(this, this)).exec(this, in, out, err, args, callback, resultReceiver);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003300 }
3301
3302 static void dumpCommandHelp(PrintWriter pw) {
3303 pw.println("AppOps service (appops) commands:");
3304 pw.println(" help");
3305 pw.println(" Print this help text.");
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003306 pw.println(" start [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3307 pw.println(" Starts a given operation for a particular application.");
3308 pw.println(" stop [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3309 pw.println(" Stops a given operation for a particular application.");
Svet Ganovb687fad2019-04-30 17:32:44 -07003310 pw.println(" set [--user <USER_ID>] <[--uid] PACKAGE | UID> <OP> <MODE>");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003311 pw.println(" Set the mode for a particular application and operation.");
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003312 pw.println(" get [--user <USER_ID>] <PACKAGE | UID> [<OP>]");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003313 pw.println(" Return the mode for a particular application and optional operation.");
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003314 pw.println(" query-op [--user <USER_ID>] <OP> [<MODE>]");
3315 pw.println(" Print all packages that currently have the given op in the given mode.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003316 pw.println(" reset [--user <USER_ID>] [<PACKAGE>]");
3317 pw.println(" Reset the given application or all applications to default modes.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003318 pw.println(" write-settings");
3319 pw.println(" Immediately write pending changes to storage.");
3320 pw.println(" read-settings");
3321 pw.println(" Read the last written settings, replacing current state in RAM.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003322 pw.println(" options:");
Svet Ganovb687fad2019-04-30 17:32:44 -07003323 pw.println(" <PACKAGE> an Android package name or its UID if prefixed by --uid");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003324 pw.println(" <OP> an AppOps operation.");
3325 pw.println(" <MODE> one of allow, ignore, deny, or default");
3326 pw.println(" <USER_ID> the user id under which the package is installed. If --user is not");
3327 pw.println(" specified, the current user is assumed.");
3328 }
3329
3330 static int onShellCommand(Shell shell, String cmd) {
3331 if (cmd == null) {
3332 return shell.handleDefaultCommands(cmd);
3333 }
3334 PrintWriter pw = shell.getOutPrintWriter();
3335 PrintWriter err = shell.getErrPrintWriter();
3336 try {
3337 switch (cmd) {
3338 case "set": {
3339 int res = shell.parseUserPackageOp(true, err);
3340 if (res < 0) {
3341 return res;
3342 }
3343 String modeStr = shell.getNextArg();
3344 if (modeStr == null) {
3345 err.println("Error: Mode not specified.");
3346 return -1;
3347 }
3348
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003349 final int mode = shell.strModeToMode(modeStr, err);
3350 if (mode < 0) {
3351 return -1;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003352 }
3353
Svet Ganovd563e932019-04-14 13:07:41 -07003354 if (!shell.targetsUid && shell.packageName != null) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003355 shell.mInterface.setMode(shell.op, shell.packageUid, shell.packageName,
3356 mode);
Svet Ganovd563e932019-04-14 13:07:41 -07003357 } else if (shell.targetsUid && shell.packageName != null) {
3358 try {
3359 final int uid = shell.mInternal.mContext.getPackageManager()
3360 .getPackageUid(shell.packageName, shell.userId);
3361 shell.mInterface.setUidMode(shell.op, uid, mode);
3362 } catch (PackageManager.NameNotFoundException e) {
3363 return -1;
3364 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003365 } else {
3366 shell.mInterface.setUidMode(shell.op, shell.nonpackageUid, mode);
3367 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003368 return 0;
3369 }
3370 case "get": {
3371 int res = shell.parseUserPackageOp(false, err);
3372 if (res < 0) {
3373 return res;
3374 }
3375
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003376 List<AppOpsManager.PackageOps> ops = new ArrayList<>();
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003377 if (shell.packageName != null) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003378 // Uid mode overrides package mode, so make sure it's also reported
3379 List<AppOpsManager.PackageOps> r = shell.mInterface.getUidOps(
3380 shell.packageUid,
3381 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3382 if (r != null) {
3383 ops.addAll(r);
3384 }
3385 r = shell.mInterface.getOpsForPackage(
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003386 shell.packageUid, shell.packageName,
3387 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003388 if (r != null) {
3389 ops.addAll(r);
3390 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003391 } else {
3392 ops = shell.mInterface.getUidOps(
3393 shell.nonpackageUid,
3394 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3395 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003396 if (ops == null || ops.size() <= 0) {
3397 pw.println("No operations.");
Svet Ganov82f09bc2018-01-12 22:08:40 -08003398 if (shell.op > AppOpsManager.OP_NONE && shell.op < AppOpsManager._NUM_OP) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003399 pw.println("Default mode: " + AppOpsManager.modeToName(
Svet Ganov82f09bc2018-01-12 22:08:40 -08003400 AppOpsManager.opToDefaultMode(shell.op)));
3401 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003402 return 0;
3403 }
3404 final long now = System.currentTimeMillis();
3405 for (int i=0; i<ops.size(); i++) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003406 AppOpsManager.PackageOps packageOps = ops.get(i);
3407 if (packageOps.getPackageName() == null) {
3408 pw.print("Uid mode: ");
3409 }
3410 List<AppOpsManager.OpEntry> entries = packageOps.getOps();
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003411 for (int j=0; j<entries.size(); j++) {
3412 AppOpsManager.OpEntry ent = entries.get(j);
3413 pw.print(AppOpsManager.opToName(ent.getOp()));
3414 pw.print(": ");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003415 pw.print(AppOpsManager.modeToName(ent.getMode()));
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003416 if (ent.getTime() != 0) {
3417 pw.print("; time=");
3418 TimeUtils.formatDuration(now - ent.getTime(), pw);
3419 pw.print(" ago");
3420 }
3421 if (ent.getRejectTime() != 0) {
3422 pw.print("; rejectTime=");
3423 TimeUtils.formatDuration(now - ent.getRejectTime(), pw);
3424 pw.print(" ago");
3425 }
3426 if (ent.getDuration() == -1) {
3427 pw.print(" (running)");
3428 } else if (ent.getDuration() != 0) {
3429 pw.print("; duration=");
3430 TimeUtils.formatDuration(ent.getDuration(), pw);
3431 }
3432 pw.println();
3433 }
3434 }
3435 return 0;
3436 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003437 case "query-op": {
3438 int res = shell.parseUserOpMode(AppOpsManager.MODE_IGNORED, err);
3439 if (res < 0) {
3440 return res;
3441 }
3442 List<AppOpsManager.PackageOps> ops = shell.mInterface.getPackagesForOps(
3443 new int[] {shell.op});
3444 if (ops == null || ops.size() <= 0) {
3445 pw.println("No operations.");
3446 return 0;
3447 }
3448 for (int i=0; i<ops.size(); i++) {
3449 final AppOpsManager.PackageOps pkg = ops.get(i);
3450 boolean hasMatch = false;
3451 final List<AppOpsManager.OpEntry> entries = ops.get(i).getOps();
3452 for (int j=0; j<entries.size(); j++) {
3453 AppOpsManager.OpEntry ent = entries.get(j);
3454 if (ent.getOp() == shell.op && ent.getMode() == shell.mode) {
3455 hasMatch = true;
3456 break;
3457 }
3458 }
3459 if (hasMatch) {
3460 pw.println(pkg.getPackageName());
3461 }
3462 }
3463 return 0;
3464 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003465 case "reset": {
3466 String packageName = null;
3467 int userId = UserHandle.USER_CURRENT;
3468 for (String argument; (argument = shell.getNextArg()) != null;) {
3469 if ("--user".equals(argument)) {
3470 String userStr = shell.getNextArgRequired();
3471 userId = UserHandle.parseUserArg(userStr);
3472 } else {
3473 if (packageName == null) {
3474 packageName = argument;
3475 } else {
3476 err.println("Error: Unsupported argument: " + argument);
3477 return -1;
3478 }
3479 }
3480 }
3481
3482 if (userId == UserHandle.USER_CURRENT) {
3483 userId = ActivityManager.getCurrentUser();
3484 }
3485
3486 shell.mInterface.resetAllModes(userId, packageName);
3487 pw.print("Reset all modes for: ");
3488 if (userId == UserHandle.USER_ALL) {
3489 pw.print("all users");
3490 } else {
3491 pw.print("user "); pw.print(userId);
3492 }
3493 pw.print(", ");
3494 if (packageName == null) {
3495 pw.println("all packages");
3496 } else {
3497 pw.print("package "); pw.println(packageName);
3498 }
3499 return 0;
3500 }
3501 case "write-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 synchronized (shell.mInternal) {
3507 shell.mInternal.mHandler.removeCallbacks(shell.mInternal.mWriteRunner);
3508 }
3509 shell.mInternal.writeState();
3510 pw.println("Current settings written.");
3511 } finally {
3512 Binder.restoreCallingIdentity(token);
3513 }
3514 return 0;
3515 }
3516 case "read-settings": {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003517 shell.mInternal.enforceManageAppOpsModes(Binder.getCallingPid(),
3518 Binder.getCallingUid(), -1);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003519 long token = Binder.clearCallingIdentity();
3520 try {
3521 shell.mInternal.readState();
3522 pw.println("Last settings read.");
3523 } finally {
3524 Binder.restoreCallingIdentity(token);
3525 }
3526 return 0;
3527 }
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003528 case "start": {
3529 int res = shell.parseUserPackageOp(true, err);
3530 if (res < 0) {
3531 return res;
3532 }
3533
3534 if (shell.packageName != null) {
3535 shell.mInterface.startOperation(shell.mToken,
3536 shell.op, shell.packageUid, shell.packageName, true);
3537 } else {
3538 return -1;
3539 }
3540 return 0;
3541 }
3542 case "stop": {
3543 int res = shell.parseUserPackageOp(true, err);
3544 if (res < 0) {
3545 return res;
3546 }
3547
3548 if (shell.packageName != null) {
3549 shell.mInterface.finishOperation(shell.mToken,
3550 shell.op, shell.packageUid, shell.packageName);
3551 } else {
3552 return -1;
3553 }
3554 return 0;
3555 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003556 default:
3557 return shell.handleDefaultCommands(cmd);
3558 }
3559 } catch (RemoteException e) {
3560 pw.println("Remote exception: " + e);
3561 }
3562 return -1;
3563 }
3564
3565 private void dumpHelp(PrintWriter pw) {
3566 pw.println("AppOps service (appops) dump options:");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003567 pw.println(" -h");
3568 pw.println(" Print this help text.");
3569 pw.println(" --op [OP]");
3570 pw.println(" Limit output to data associated with the given app op code.");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003571 pw.println(" --mode [MODE]");
3572 pw.println(" Limit output to data associated with the given app op mode.");
3573 pw.println(" --package [PACKAGE]");
3574 pw.println(" Limit output to data associated with the given package name.");
Dianne Hackborn125dc532019-01-09 13:31:48 -08003575 pw.println(" --watchers");
3576 pw.println(" Only output the watcher sections.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003577 }
3578
Svet Ganovaf189e32019-02-15 18:45:29 -08003579 private void dumpStatesLocked(@NonNull PrintWriter pw, @NonNull Op op,
3580 long now, @NonNull SimpleDateFormat sdf, @NonNull Date date, @NonNull String prefix) {
3581
3582 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
3583 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
3584
3585 final LongSparseArray keys = entry.collectKeys();
3586 if (keys == null || keys.size() <= 0) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003587 return;
3588 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003589
3590 final int keyCount = keys.size();
3591 for (int k = 0; k < keyCount; k++) {
3592 final long key = keys.keyAt(k);
3593
3594 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3595 final int flags = AppOpsManager.extractFlagsFromKey(key);
3596
3597 final long accessTime = entry.getLastAccessTime(
3598 uidState, uidState, flags);
3599 final long rejectTime = entry.getLastRejectTime(
3600 uidState, uidState, flags);
3601 final long accessDuration = entry.getLastDuration(
3602 uidState, uidState, flags);
3603 final String proxyPkg = entry.getProxyPackageName(uidState, flags);
3604 final int proxyUid = entry.getProxyUid(uidState, flags);
3605
3606 if (accessTime > 0) {
3607 pw.print(prefix);
3608 pw.print("Access: ");
3609 pw.print(AppOpsManager.keyToString(key));
3610 pw.print(" ");
3611 date.setTime(accessTime);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003612 pw.print(sdf.format(date));
3613 pw.print(" (");
Svet Ganovaf189e32019-02-15 18:45:29 -08003614 TimeUtils.formatDuration(accessTime - now, pw);
3615 pw.print(")");
3616 if (accessDuration > 0) {
3617 pw.print(" duration=");
3618 TimeUtils.formatDuration(accessDuration, pw);
3619 }
3620 if (proxyUid >= 0) {
3621 pw.print(" proxy[");
3622 pw.print("uid=");
3623 pw.print(proxyUid);
3624 pw.print(", pkg=");
3625 pw.print(proxyPkg);
3626 pw.print("]");
3627 }
3628 pw.println();
3629 }
3630
3631 if (rejectTime > 0) {
3632 pw.print(prefix);
3633 pw.print("Reject: ");
3634 pw.print(AppOpsManager.keyToString(key));
3635 date.setTime(rejectTime);
3636 pw.print(sdf.format(date));
3637 pw.print(" (");
3638 TimeUtils.formatDuration(rejectTime - now, pw);
3639 pw.print(")");
3640 if (proxyUid >= 0) {
3641 pw.print(" proxy[");
3642 pw.print("uid=");
3643 pw.print(proxyUid);
3644 pw.print(", pkg=");
3645 pw.print(proxyPkg);
3646 pw.print("]");
3647 }
3648 pw.println();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003649 }
3650 }
3651 }
3652
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003653 @Override
3654 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkey6df866a2017-03-31 14:08:23 -06003655 if (!DumpUtils.checkDumpAndUsageStatsPermission(mContext, TAG, pw)) return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003656
Svet Ganov8455ba22019-01-02 13:05:56 -08003657 int dumpOp = OP_NONE;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003658 String dumpPackage = null;
Svet Ganov8455ba22019-01-02 13:05:56 -08003659 int dumpUid = Process.INVALID_UID;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003660 int dumpMode = -1;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003661 boolean dumpWatchers = false;
Svet Ganovaf189e32019-02-15 18:45:29 -08003662 boolean dumpHistory = false;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003663
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003664 if (args != null) {
3665 for (int i=0; i<args.length; i++) {
3666 String arg = args[i];
3667 if ("-h".equals(arg)) {
3668 dumpHelp(pw);
3669 return;
Tim Kilbourn8f1ea832015-08-26 15:07:37 -07003670 } else if ("-a".equals(arg)) {
3671 // dump all data
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003672 } else if ("--op".equals(arg)) {
3673 i++;
3674 if (i >= args.length) {
3675 pw.println("No argument for --op option");
3676 return;
3677 }
3678 dumpOp = Shell.strOpToOp(args[i], pw);
3679 if (dumpOp < 0) {
3680 return;
3681 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003682 } else if ("--package".equals(arg)) {
3683 i++;
3684 if (i >= args.length) {
3685 pw.println("No argument for --package option");
3686 return;
3687 }
3688 dumpPackage = args[i];
3689 try {
3690 dumpUid = AppGlobals.getPackageManager().getPackageUid(dumpPackage,
3691 PackageManager.MATCH_KNOWN_PACKAGES | PackageManager.MATCH_INSTANT,
3692 0);
3693 } catch (RemoteException e) {
3694 }
3695 if (dumpUid < 0) {
3696 pw.println("Unknown package: " + dumpPackage);
3697 return;
3698 }
3699 dumpUid = UserHandle.getAppId(dumpUid);
3700 } else if ("--mode".equals(arg)) {
3701 i++;
3702 if (i >= args.length) {
3703 pw.println("No argument for --mode option");
3704 return;
3705 }
3706 dumpMode = Shell.strModeToMode(args[i], pw);
3707 if (dumpMode < 0) {
3708 return;
3709 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003710 } else if ("--watchers".equals(arg)) {
3711 dumpWatchers = true;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003712 } else if (arg.length() > 0 && arg.charAt(0) == '-'){
3713 pw.println("Unknown option: " + arg);
3714 return;
3715 } else {
3716 pw.println("Unknown command: " + arg);
3717 return;
3718 }
3719 }
3720 }
3721
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003722 synchronized (this) {
3723 pw.println("Current AppOps Service state:");
Svet Ganovaf189e32019-02-15 18:45:29 -08003724 if (!dumpHistory && !dumpWatchers) {
3725 mConstants.dump(pw);
3726 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003727 pw.println();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003728 final long now = System.currentTimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003729 final long nowElapsed = SystemClock.elapsedRealtime();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003730 final long nowUptime = SystemClock.uptimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003731 final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
3732 final Date date = new Date();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003733 boolean needSep = false;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003734 if (dumpOp < 0 && dumpMode < 0 && dumpPackage == null && mProfileOwners != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003735 && !dumpWatchers && !dumpHistory) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003736 pw.println(" Profile owners:");
3737 for (int poi = 0; poi < mProfileOwners.size(); poi++) {
3738 pw.print(" User #");
3739 pw.print(mProfileOwners.keyAt(poi));
3740 pw.print(": ");
3741 UserHandle.formatUid(pw, mProfileOwners.valueAt(poi));
3742 pw.println();
3743 }
3744 pw.println();
3745 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003746 if (mOpModeWatchers.size() > 0 && !dumpHistory) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003747 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003748 for (int i=0; i<mOpModeWatchers.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003749 if (dumpOp >= 0 && dumpOp != mOpModeWatchers.keyAt(i)) {
3750 continue;
3751 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003752 boolean printedOpHeader = false;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003753 ArraySet<ModeCallback> callbacks = mOpModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003754 for (int j=0; j<callbacks.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003755 final ModeCallback cb = callbacks.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003756 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003757 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3758 continue;
3759 }
3760 needSep = true;
3761 if (!printedHeader) {
3762 pw.println(" Op mode watchers:");
3763 printedHeader = true;
3764 }
3765 if (!printedOpHeader) {
3766 pw.print(" Op ");
3767 pw.print(AppOpsManager.opToName(mOpModeWatchers.keyAt(i)));
3768 pw.println(":");
3769 printedOpHeader = true;
3770 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003771 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003772 pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003773 }
3774 }
3775 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003776 if (mPackageModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003777 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003778 for (int i=0; i<mPackageModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003779 if (dumpPackage != null && !dumpPackage.equals(mPackageModeWatchers.keyAt(i))) {
3780 continue;
3781 }
3782 needSep = true;
3783 if (!printedHeader) {
3784 pw.println(" Package mode watchers:");
3785 printedHeader = true;
3786 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003787 pw.print(" Pkg "); pw.print(mPackageModeWatchers.keyAt(i));
3788 pw.println(":");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003789 ArraySet<ModeCallback> callbacks = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003790 for (int j=0; j<callbacks.size(); j++) {
3791 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn68d76552017-02-27 15:32:03 -08003792 pw.println(callbacks.valueAt(j));
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003793 }
3794 }
3795 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003796 if (mModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003797 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003798 for (int i=0; i<mModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003799 final ModeCallback cb = mModeWatchers.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003800 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003801 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3802 continue;
3803 }
3804 needSep = true;
3805 if (!printedHeader) {
3806 pw.println(" All op mode watchers:");
3807 printedHeader = true;
3808 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003809 pw.print(" ");
3810 pw.print(Integer.toHexString(System.identityHashCode(mModeWatchers.keyAt(i))));
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003811 pw.print(": "); pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003812 }
3813 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003814 if (mActiveWatchers.size() > 0 && dumpMode < 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003815 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003816 boolean printedHeader = false;
Philip P. Moltmannba136462019-05-21 10:20:38 -07003817 for (int watcherNum = 0; watcherNum < mActiveWatchers.size(); watcherNum++) {
3818 final SparseArray<ActiveCallback> activeWatchers =
3819 mActiveWatchers.valueAt(watcherNum);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003820 if (activeWatchers.size() <= 0) {
3821 continue;
3822 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003823 final ActiveCallback cb = activeWatchers.valueAt(0);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003824 if (dumpOp >= 0 && activeWatchers.indexOfKey(dumpOp) < 0) {
3825 continue;
3826 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003827 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003828 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3829 continue;
3830 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003831 if (!printedHeader) {
3832 pw.println(" All op active watchers:");
3833 printedHeader = true;
3834 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003835 pw.print(" ");
3836 pw.print(Integer.toHexString(System.identityHashCode(
Philip P. Moltmannba136462019-05-21 10:20:38 -07003837 mActiveWatchers.keyAt(watcherNum))));
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003838 pw.println(" ->");
3839 pw.print(" [");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003840 final int opCount = activeWatchers.size();
Philip P. Moltmannba136462019-05-21 10:20:38 -07003841 for (int opNum = 0; opNum < opCount; opNum++) {
3842 if (opNum > 0) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003843 pw.print(' ');
3844 }
Philip P. Moltmannba136462019-05-21 10:20:38 -07003845 pw.print(AppOpsManager.opToName(activeWatchers.keyAt(opNum)));
3846 if (opNum < opCount - 1) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003847 pw.print(',');
3848 }
3849 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003850 pw.println("]");
3851 pw.print(" ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003852 pw.println(cb);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003853 }
3854 }
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003855 if (mNotedWatchers.size() > 0 && dumpMode < 0) {
3856 needSep = true;
3857 boolean printedHeader = false;
3858 for (int i = 0; i < mNotedWatchers.size(); i++) {
3859 final SparseArray<NotedCallback> notedWatchers = mNotedWatchers.valueAt(i);
3860 if (notedWatchers.size() <= 0) {
3861 continue;
3862 }
3863 final NotedCallback cb = notedWatchers.valueAt(0);
3864 if (dumpOp >= 0 && notedWatchers.indexOfKey(dumpOp) < 0) {
3865 continue;
3866 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003867 if (dumpPackage != null
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003868 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3869 continue;
3870 }
3871 if (!printedHeader) {
3872 pw.println(" All op noted watchers:");
3873 printedHeader = true;
3874 }
3875 pw.print(" ");
3876 pw.print(Integer.toHexString(System.identityHashCode(
3877 mNotedWatchers.keyAt(i))));
3878 pw.println(" ->");
3879 pw.print(" [");
3880 final int opCount = notedWatchers.size();
3881 for (i = 0; i < opCount; i++) {
3882 if (i > 0) {
3883 pw.print(' ');
3884 }
3885 pw.print(AppOpsManager.opToName(notedWatchers.keyAt(i)));
3886 if (i < opCount - 1) {
3887 pw.print(',');
3888 }
3889 }
3890 pw.println("]");
3891 pw.print(" ");
3892 pw.println(cb);
3893 }
3894 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003895 if (mClients.size() > 0 && dumpMode < 0 && !dumpWatchers && !dumpHistory) {
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003896 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003897 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003898 for (int i=0; i<mClients.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003899 boolean printedClient = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003900 ClientState cs = mClients.valueAt(i);
Svet Ganovf7b47252018-02-26 11:11:27 -08003901 if (cs.mStartedOps.size() > 0) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003902 boolean printedStarted = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003903 for (int j=0; j<cs.mStartedOps.size(); j++) {
3904 Op op = cs.mStartedOps.get(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003905 if (dumpOp >= 0 && op.op != dumpOp) {
3906 continue;
3907 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003908 if (dumpPackage != null && !dumpPackage.equals(op.packageName)) {
3909 continue;
3910 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003911 if (!printedHeader) {
3912 pw.println(" Clients:");
3913 printedHeader = true;
3914 }
3915 if (!printedClient) {
3916 pw.print(" "); pw.print(mClients.keyAt(i)); pw.println(":");
3917 pw.print(" "); pw.println(cs);
3918 printedClient = true;
3919 }
3920 if (!printedStarted) {
3921 pw.println(" Started ops:");
3922 printedStarted = true;
3923 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003924 pw.print(" "); pw.print("uid="); pw.print(op.uidState.uid);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003925 pw.print(" pkg="); pw.print(op.packageName);
3926 pw.print(" op="); pw.println(AppOpsManager.opToName(op.op));
3927 }
3928 }
3929 }
3930 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003931 if (mAudioRestrictions.size() > 0 && dumpOp < 0 && dumpPackage != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003932 && dumpMode < 0 && !dumpWatchers && !dumpWatchers) {
John Spurlock1af30c72014-03-10 08:33:35 -04003933 boolean printedHeader = false;
3934 for (int o=0; o<mAudioRestrictions.size(); o++) {
3935 final String op = AppOpsManager.opToName(mAudioRestrictions.keyAt(o));
3936 final SparseArray<Restriction> restrictions = mAudioRestrictions.valueAt(o);
3937 for (int i=0; i<restrictions.size(); i++) {
3938 if (!printedHeader){
3939 pw.println(" Audio Restrictions:");
3940 printedHeader = true;
3941 needSep = true;
3942 }
John Spurlock7b414672014-07-18 13:02:39 -04003943 final int usage = restrictions.keyAt(i);
John Spurlock1af30c72014-03-10 08:33:35 -04003944 pw.print(" "); pw.print(op);
John Spurlock7b414672014-07-18 13:02:39 -04003945 pw.print(" usage="); pw.print(AudioAttributes.usageToString(usage));
John Spurlock1af30c72014-03-10 08:33:35 -04003946 Restriction r = restrictions.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003947 pw.print(": mode="); pw.println(AppOpsManager.modeToName(r.mode));
John Spurlock1af30c72014-03-10 08:33:35 -04003948 if (!r.exceptionPackages.isEmpty()) {
3949 pw.println(" Exceptions:");
3950 for (int j=0; j<r.exceptionPackages.size(); j++) {
3951 pw.print(" "); pw.println(r.exceptionPackages.valueAt(j));
3952 }
3953 }
3954 }
3955 }
3956 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003957 if (needSep) {
3958 pw.println();
3959 }
Svet Ganov2af57082015-07-30 08:44:20 -07003960 for (int i=0; i<mUidStates.size(); i++) {
3961 UidState uidState = mUidStates.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003962 final SparseIntArray opModes = uidState.opModes;
3963 final ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
3964
Svet Ganovaf189e32019-02-15 18:45:29 -08003965 if (dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08003966 continue;
3967 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003968 if (dumpOp >= 0 || dumpPackage != null || dumpMode >= 0) {
3969 boolean hasOp = dumpOp < 0 || (uidState.opModes != null
3970 && uidState.opModes.indexOfKey(dumpOp) >= 0);
3971 boolean hasPackage = dumpPackage == null;
3972 boolean hasMode = dumpMode < 0;
3973 if (!hasMode && opModes != null) {
3974 for (int opi = 0; !hasMode && opi < opModes.size(); opi++) {
3975 if (opModes.valueAt(opi) == dumpMode) {
3976 hasMode = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003977 }
3978 }
3979 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003980 if (pkgOps != null) {
3981 for (int pkgi = 0;
Svet Ganov8455ba22019-01-02 13:05:56 -08003982 (!hasOp || !hasPackage || !hasMode) && pkgi < pkgOps.size();
3983 pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003984 Ops ops = pkgOps.valueAt(pkgi);
3985 if (!hasOp && ops != null && ops.indexOfKey(dumpOp) >= 0) {
3986 hasOp = true;
3987 }
3988 if (!hasMode) {
3989 for (int opi = 0; !hasMode && opi < ops.size(); opi++) {
3990 if (ops.valueAt(opi).mode == dumpMode) {
3991 hasMode = true;
3992 }
3993 }
3994 }
3995 if (!hasPackage && dumpPackage.equals(ops.packageName)) {
3996 hasPackage = true;
3997 }
3998 }
3999 }
4000 if (uidState.foregroundOps != null && !hasOp) {
4001 if (uidState.foregroundOps.indexOfKey(dumpOp) > 0) {
4002 hasOp = true;
4003 }
4004 }
4005 if (!hasOp || !hasPackage || !hasMode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004006 continue;
4007 }
4008 }
Svet Ganov2af57082015-07-30 08:44:20 -07004009
4010 pw.print(" Uid "); UserHandle.formatUid(pw, uidState.uid); pw.println(":");
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004011 pw.print(" state=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004012 pw.println(AppOpsManager.getUidStateName(uidState.state));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004013 if (uidState.state != uidState.pendingState) {
4014 pw.print(" pendingState=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004015 pw.println(AppOpsManager.getUidStateName(uidState.pendingState));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004016 }
4017 if (uidState.pendingStateCommitTime != 0) {
4018 pw.print(" pendingStateCommitTime=");
Dianne Hackborn9fb93502018-06-18 12:29:44 -07004019 TimeUtils.formatDuration(uidState.pendingStateCommitTime, nowElapsed, pw);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004020 pw.println();
4021 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004022 if (uidState.startNesting != 0) {
4023 pw.print(" startNesting=");
4024 pw.println(uidState.startNesting);
4025 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004026 if (uidState.foregroundOps != null && (dumpMode < 0
4027 || dumpMode == AppOpsManager.MODE_FOREGROUND)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004028 pw.println(" foregroundOps:");
4029 for (int j = 0; j < uidState.foregroundOps.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004030 if (dumpOp >= 0 && dumpOp != uidState.foregroundOps.keyAt(j)) {
4031 continue;
4032 }
4033 pw.print(" ");
4034 pw.print(AppOpsManager.opToName(uidState.foregroundOps.keyAt(j)));
4035 pw.print(": ");
4036 pw.println(uidState.foregroundOps.valueAt(j) ? "WATCHER" : "SILENT");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004037 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004038 pw.print(" hasForegroundWatchers=");
4039 pw.println(uidState.hasForegroundWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004040 }
Svet Ganovee438d42017-01-19 18:04:38 -08004041 needSep = true;
Svet Ganov2af57082015-07-30 08:44:20 -07004042
Svet Ganov2af57082015-07-30 08:44:20 -07004043 if (opModes != null) {
4044 final int opModeCount = opModes.size();
4045 for (int j = 0; j < opModeCount; j++) {
4046 final int code = opModes.keyAt(j);
4047 final int mode = opModes.valueAt(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004048 if (dumpOp >= 0 && dumpOp != code) {
4049 continue;
4050 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004051 if (dumpMode >= 0 && dumpMode != mode) {
4052 continue;
4053 }
Svet Ganov2af57082015-07-30 08:44:20 -07004054 pw.print(" "); pw.print(AppOpsManager.opToName(code));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004055 pw.print(": mode="); pw.println(AppOpsManager.modeToName(mode));
Svet Ganov2af57082015-07-30 08:44:20 -07004056 }
4057 }
4058
Svet Ganov2af57082015-07-30 08:44:20 -07004059 if (pkgOps == null) {
4060 continue;
4061 }
4062
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004063 for (int pkgi = 0; pkgi < pkgOps.size(); pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004064 final Ops ops = pkgOps.valueAt(pkgi);
4065 if (dumpPackage != null && !dumpPackage.equals(ops.packageName)) {
4066 continue;
4067 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004068 boolean printedPackage = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004069 for (int j=0; j<ops.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004070 final Op op = ops.valueAt(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004071 final int opCode = op.op;
4072 if (dumpOp >= 0 && dumpOp != opCode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004073 continue;
4074 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004075 if (dumpMode >= 0 && dumpMode != op.mode) {
4076 continue;
4077 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004078 if (!printedPackage) {
4079 pw.print(" Package "); pw.print(ops.packageName); pw.println(":");
4080 printedPackage = true;
4081 }
Svet Ganovaf189e32019-02-15 18:45:29 -08004082 pw.print(" "); pw.print(AppOpsManager.opToName(opCode));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004083 pw.print(" ("); pw.print(AppOpsManager.modeToName(op.mode));
Svet Ganovaf189e32019-02-15 18:45:29 -08004084 final int switchOp = AppOpsManager.opToSwitch(opCode);
4085 if (switchOp != opCode) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004086 pw.print(" / switch ");
4087 pw.print(AppOpsManager.opToName(switchOp));
4088 final Op switchObj = ops.get(switchOp);
Svet Ganovaf189e32019-02-15 18:45:29 -08004089 int mode = switchObj != null ? switchObj.mode
4090 : AppOpsManager.opToDefaultMode(switchOp);
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004091 pw.print("="); pw.print(AppOpsManager.modeToName(mode));
4092 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004093 pw.println("): ");
Svet Ganovaf189e32019-02-15 18:45:29 -08004094 dumpStatesLocked(pw, op, now, sdf, date, " ");
4095 if (op.running) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004096 pw.print(" Running start at: ");
4097 TimeUtils.formatDuration(nowElapsed-op.startRealtime, pw);
4098 pw.println();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004099 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004100 if (op.startNesting != 0) {
4101 pw.print(" startNesting=");
4102 pw.println(op.startNesting);
4103 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004104 }
4105 }
4106 }
Svet Ganovee438d42017-01-19 18:04:38 -08004107 if (needSep) {
4108 pw.println();
4109 }
4110
4111 final int userRestrictionCount = mOpUserRestrictions.size();
4112 for (int i = 0; i < userRestrictionCount; i++) {
4113 IBinder token = mOpUserRestrictions.keyAt(i);
4114 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004115 boolean printedTokenHeader = false;
4116
Svet Ganovaf189e32019-02-15 18:45:29 -08004117 if (dumpMode >= 0 || dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08004118 continue;
4119 }
Svet Ganovee438d42017-01-19 18:04:38 -08004120
4121 final int restrictionCount = restrictionState.perUserRestrictions != null
4122 ? restrictionState.perUserRestrictions.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004123 if (restrictionCount > 0 && dumpPackage == null) {
4124 boolean printedOpsHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004125 for (int j = 0; j < restrictionCount; j++) {
4126 int userId = restrictionState.perUserRestrictions.keyAt(j);
4127 boolean[] restrictedOps = restrictionState.perUserRestrictions.valueAt(j);
4128 if (restrictedOps == null) {
4129 continue;
4130 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08004131 if (dumpOp >= 0 && (dumpOp >= restrictedOps.length
4132 || !restrictedOps[dumpOp])) {
4133 continue;
4134 }
4135 if (!printedTokenHeader) {
4136 pw.println(" User restrictions for token " + token + ":");
4137 printedTokenHeader = true;
4138 }
4139 if (!printedOpsHeader) {
4140 pw.println(" Restricted ops:");
4141 printedOpsHeader = true;
4142 }
Svet Ganovee438d42017-01-19 18:04:38 -08004143 StringBuilder restrictedOpsValue = new StringBuilder();
4144 restrictedOpsValue.append("[");
4145 final int restrictedOpCount = restrictedOps.length;
4146 for (int k = 0; k < restrictedOpCount; k++) {
4147 if (restrictedOps[k]) {
4148 if (restrictedOpsValue.length() > 1) {
4149 restrictedOpsValue.append(", ");
4150 }
4151 restrictedOpsValue.append(AppOpsManager.opToName(k));
4152 }
4153 }
4154 restrictedOpsValue.append("]");
4155 pw.print(" "); pw.print("user: "); pw.print(userId);
4156 pw.print(" restricted ops: "); pw.println(restrictedOpsValue);
4157 }
4158 }
4159
4160 final int excludedPackageCount = restrictionState.perUserExcludedPackages != null
4161 ? restrictionState.perUserExcludedPackages.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004162 if (excludedPackageCount > 0 && dumpOp < 0) {
4163 boolean printedPackagesHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004164 for (int j = 0; j < excludedPackageCount; j++) {
4165 int userId = restrictionState.perUserExcludedPackages.keyAt(j);
4166 String[] packageNames = restrictionState.perUserExcludedPackages.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004167 if (packageNames == null) {
4168 continue;
4169 }
4170 boolean hasPackage;
4171 if (dumpPackage != null) {
4172 hasPackage = false;
4173 for (String pkg : packageNames) {
4174 if (dumpPackage.equals(pkg)) {
4175 hasPackage = true;
4176 break;
4177 }
4178 }
4179 } else {
4180 hasPackage = true;
4181 }
4182 if (!hasPackage) {
4183 continue;
4184 }
4185 if (!printedTokenHeader) {
4186 pw.println(" User restrictions for token " + token + ":");
4187 printedTokenHeader = true;
4188 }
4189 if (!printedPackagesHeader) {
4190 pw.println(" Excluded packages:");
4191 printedPackagesHeader = true;
4192 }
Svet Ganovee438d42017-01-19 18:04:38 -08004193 pw.print(" "); pw.print("user: "); pw.print(userId);
4194 pw.print(" packages: "); pw.println(Arrays.toString(packageNames));
4195 }
4196 }
4197 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004198 }
Svet Ganov8455ba22019-01-02 13:05:56 -08004199
4200 // Must not hold the appops lock
Svet Ganovaf189e32019-02-15 18:45:29 -08004201 if (dumpHistory && !dumpWatchers) {
4202 mHistoricalRegistry.dump(" ", pw, dumpUid, dumpPackage, dumpOp);
4203 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004204 }
John Spurlock1af30c72014-03-10 08:33:35 -04004205
4206 private static final class Restriction {
4207 private static final ArraySet<String> NO_EXCEPTIONS = new ArraySet<String>();
4208 int mode;
4209 ArraySet<String> exceptionPackages = NO_EXCEPTIONS;
4210 }
Jason Monk62062992014-05-06 09:55:28 -04004211
4212 @Override
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004213 public void setUserRestrictions(Bundle restrictions, IBinder token, int userHandle) {
Jason Monk62062992014-05-06 09:55:28 -04004214 checkSystemUid("setUserRestrictions");
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004215 Preconditions.checkNotNull(restrictions);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004216 Preconditions.checkNotNull(token);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004217 for (int i = 0; i < AppOpsManager._NUM_OP; i++) {
Jason Monk62062992014-05-06 09:55:28 -04004218 String restriction = AppOpsManager.opToRestriction(i);
Suprabh Shukla64e0dcb2016-05-24 16:23:11 -07004219 if (restriction != null) {
4220 setUserRestrictionNoCheck(i, restrictions.getBoolean(restriction, false), token,
4221 userHandle, null);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004222 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004223 }
4224 }
4225
4226 @Override
Ruben Brunk29931bc2016-03-11 00:24:26 -08004227 public void setUserRestriction(int code, boolean restricted, IBinder token, int userHandle,
4228 String[] exceptionPackages) {
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004229 if (Binder.getCallingPid() != Process.myPid()) {
4230 mContext.enforcePermission(Manifest.permission.MANAGE_APP_OPS_RESTRICTIONS,
4231 Binder.getCallingPid(), Binder.getCallingUid(), null);
4232 }
4233 if (userHandle != UserHandle.getCallingUserId()) {
4234 if (mContext.checkCallingOrSelfPermission(Manifest.permission
4235 .INTERACT_ACROSS_USERS_FULL) != PackageManager.PERMISSION_GRANTED
4236 && mContext.checkCallingOrSelfPermission(Manifest.permission
4237 .INTERACT_ACROSS_USERS) != PackageManager.PERMISSION_GRANTED) {
4238 throw new SecurityException("Need INTERACT_ACROSS_USERS_FULL or"
4239 + " INTERACT_ACROSS_USERS to interact cross user ");
Jason Monk62062992014-05-06 09:55:28 -04004240 }
4241 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004242 verifyIncomingOp(code);
4243 Preconditions.checkNotNull(token);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004244 setUserRestrictionNoCheck(code, restricted, token, userHandle, exceptionPackages);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004245 }
4246
4247 private void setUserRestrictionNoCheck(int code, boolean restricted, IBinder token,
Ruben Brunk29931bc2016-03-11 00:24:26 -08004248 int userHandle, String[] exceptionPackages) {
Svet Ganov442ed572016-08-17 17:29:43 -07004249 synchronized (AppOpsService.this) {
4250 ClientRestrictionState restrictionState = mOpUserRestrictions.get(token);
4251
4252 if (restrictionState == null) {
4253 try {
4254 restrictionState = new ClientRestrictionState(token);
4255 } catch (RemoteException e) {
4256 return;
4257 }
4258 mOpUserRestrictions.put(token, restrictionState);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004259 }
Svet Ganov442ed572016-08-17 17:29:43 -07004260
4261 if (restrictionState.setRestriction(code, restricted, exceptionPackages, userHandle)) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004262 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07004263 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
Svet Ganov442ed572016-08-17 17:29:43 -07004264 }
4265
4266 if (restrictionState.isDefault()) {
4267 mOpUserRestrictions.remove(token);
4268 restrictionState.destroy();
4269 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08004270 }
Julia Reynoldsbb21c252016-04-05 16:01:49 -04004271 }
4272
Svet Ganov3a95f832018-03-23 17:44:30 -07004273 private void notifyWatchersOfChange(int code, int uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004274 final ArraySet<ModeCallback> clonedCallbacks;
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004275 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004276 ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004277 if (callbacks == null) {
4278 return;
4279 }
Dianne Hackborn68d76552017-02-27 15:32:03 -08004280 clonedCallbacks = new ArraySet<>(callbacks);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004281 }
4282
Svet Ganov3a95f832018-03-23 17:44:30 -07004283 notifyOpChanged(clonedCallbacks, code, uid, null);
Jason Monk62062992014-05-06 09:55:28 -04004284 }
4285
4286 @Override
4287 public void removeUser(int userHandle) throws RemoteException {
4288 checkSystemUid("removeUser");
Svet Ganov442ed572016-08-17 17:29:43 -07004289 synchronized (AppOpsService.this) {
4290 final int tokenCount = mOpUserRestrictions.size();
4291 for (int i = tokenCount - 1; i >= 0; i--) {
4292 ClientRestrictionState opRestrictions = mOpUserRestrictions.valueAt(i);
4293 opRestrictions.removeUser(userHandle);
4294 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004295 removeUidsForUserLocked(userHandle);
4296 }
4297 }
4298
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004299 @Override
4300 public boolean isOperationActive(int code, int uid, String packageName) {
Svet Ganovf7b47252018-02-26 11:11:27 -08004301 if (Binder.getCallingUid() != uid) {
4302 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
4303 != PackageManager.PERMISSION_GRANTED) {
4304 return false;
4305 }
4306 }
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004307 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004308 final String resolvedPackageName = resolvePackageName(uid, packageName);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004309 if (resolvedPackageName == null) {
4310 return false;
4311 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004312 synchronized (AppOpsService.this) {
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004313 for (int i = mClients.size() - 1; i >= 0; i--) {
4314 final ClientState client = mClients.valueAt(i);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004315 for (int j = client.mStartedOps.size() - 1; j >= 0; j--) {
4316 final Op op = client.mStartedOps.get(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004317 if (op.op == code && op.uidState.uid == uid) return true;
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004318 }
4319 }
4320 }
4321 return false;
4322 }
4323
Svet Ganov8455ba22019-01-02 13:05:56 -08004324 @Override
4325 public void setHistoryParameters(@AppOpsManager.HistoricalMode int mode,
4326 long baseSnapshotInterval, int compressionStep) {
4327 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4328 "setHistoryParameters");
4329 // Must not hold the appops lock
4330 mHistoricalRegistry.setHistoryParameters(mode, baseSnapshotInterval, compressionStep);
4331 }
4332
4333 @Override
4334 public void offsetHistory(long offsetMillis) {
4335 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4336 "offsetHistory");
4337 // Must not hold the appops lock
4338 mHistoricalRegistry.offsetHistory(offsetMillis);
4339 }
4340
4341 @Override
4342 public void addHistoricalOps(HistoricalOps ops) {
4343 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4344 "addHistoricalOps");
4345 // Must not hold the appops lock
4346 mHistoricalRegistry.addHistoricalOps(ops);
4347 }
4348
4349 @Override
4350 public void resetHistoryParameters() {
4351 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4352 "resetHistoryParameters");
4353 // Must not hold the appops lock
4354 mHistoricalRegistry.resetHistoryParameters();
4355 }
4356
4357 @Override
4358 public void clearHistory() {
4359 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4360 "clearHistory");
4361 // Must not hold the appops lock
4362 mHistoricalRegistry.clearHistory();
4363 }
4364
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004365 private void removeUidsForUserLocked(int userHandle) {
4366 for (int i = mUidStates.size() - 1; i >= 0; --i) {
4367 final int uid = mUidStates.keyAt(i);
4368 if (UserHandle.getUserId(uid) == userHandle) {
4369 mUidStates.removeAt(i);
4370 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004371 }
4372 }
4373
Jason Monk62062992014-05-06 09:55:28 -04004374 private void checkSystemUid(String function) {
4375 int uid = Binder.getCallingUid();
4376 if (uid != Process.SYSTEM_UID) {
4377 throw new SecurityException(function + " must by called by the system");
4378 }
4379 }
4380
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004381 private static String resolvePackageName(int uid, String packageName) {
Svet Ganov82f09bc2018-01-12 22:08:40 -08004382 if (uid == Process.ROOT_UID) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004383 return "root";
4384 } else if (uid == Process.SHELL_UID) {
4385 return "com.android.shell";
Svet Ganov82f09bc2018-01-12 22:08:40 -08004386 } else if (uid == Process.MEDIA_UID) {
4387 return "media";
4388 } else if (uid == Process.AUDIOSERVER_UID) {
4389 return "audioserver";
4390 } else if (uid == Process.CAMERASERVER_UID) {
4391 return "cameraserver";
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004392 } else if (uid == Process.SYSTEM_UID && packageName == null) {
4393 return "android";
4394 }
4395 return packageName;
4396 }
4397
Svet Ganov82f09bc2018-01-12 22:08:40 -08004398 private static int resolveUid(String packageName) {
4399 if (packageName == null) {
4400 return -1;
4401 }
4402 switch (packageName) {
4403 case "root":
4404 return Process.ROOT_UID;
4405 case "shell":
4406 return Process.SHELL_UID;
4407 case "media":
4408 return Process.MEDIA_UID;
4409 case "audioserver":
4410 return Process.AUDIOSERVER_UID;
4411 case "cameraserver":
4412 return Process.CAMERASERVER_UID;
4413 }
4414 return -1;
4415 }
4416
Svet Ganov2af57082015-07-30 08:44:20 -07004417 private static String[] getPackagesForUid(int uid) {
Svet Ganovf3807aa2015-08-02 10:09:56 -07004418 String[] packageNames = null;
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004419
4420 // Very early during boot the package manager is not yet or not yet fully started. At this
4421 // time there are no packages yet.
4422 if (AppGlobals.getPackageManager() != null) {
4423 try {
4424 packageNames = AppGlobals.getPackageManager().getPackagesForUid(uid);
4425 } catch (RemoteException e) {
4426 /* ignore - local call */
4427 }
Svet Ganov2af57082015-07-30 08:44:20 -07004428 }
Svet Ganovf3807aa2015-08-02 10:09:56 -07004429 if (packageNames == null) {
4430 return EmptyArray.STRING;
4431 }
4432 return packageNames;
Svet Ganov2af57082015-07-30 08:44:20 -07004433 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004434
4435 private final class ClientRestrictionState implements DeathRecipient {
4436 private final IBinder token;
4437 SparseArray<boolean[]> perUserRestrictions;
4438 SparseArray<String[]> perUserExcludedPackages;
4439
4440 public ClientRestrictionState(IBinder token)
4441 throws RemoteException {
4442 token.linkToDeath(this, 0);
4443 this.token = token;
4444 }
4445
4446 public boolean setRestriction(int code, boolean restricted,
4447 String[] excludedPackages, int userId) {
4448 boolean changed = false;
4449
4450 if (perUserRestrictions == null && restricted) {
4451 perUserRestrictions = new SparseArray<>();
4452 }
4453
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004454 int[] users;
4455 if (userId == UserHandle.USER_ALL) {
4456 List<UserInfo> liveUsers = UserManager.get(mContext).getUsers(false);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004457
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004458 users = new int[liveUsers.size()];
4459 for (int i = 0; i < liveUsers.size(); i++) {
4460 users[i] = liveUsers.get(i).id;
4461 }
4462 } else {
4463 users = new int[]{userId};
4464 }
4465
4466 if (perUserRestrictions != null) {
4467 int numUsers = users.length;
4468
4469 for (int i = 0; i < numUsers; i++) {
4470 int thisUserId = users[i];
4471
4472 boolean[] userRestrictions = perUserRestrictions.get(thisUserId);
4473 if (userRestrictions == null && restricted) {
4474 userRestrictions = new boolean[AppOpsManager._NUM_OP];
4475 perUserRestrictions.put(thisUserId, userRestrictions);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004476 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004477 if (userRestrictions != null && userRestrictions[code] != restricted) {
4478 userRestrictions[code] = restricted;
4479 if (!restricted && isDefault(userRestrictions)) {
4480 perUserRestrictions.remove(thisUserId);
4481 userRestrictions = null;
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004482 }
4483 changed = true;
4484 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004485
4486 if (userRestrictions != null) {
4487 final boolean noExcludedPackages = ArrayUtils.isEmpty(excludedPackages);
4488 if (perUserExcludedPackages == null && !noExcludedPackages) {
4489 perUserExcludedPackages = new SparseArray<>();
4490 }
4491 if (perUserExcludedPackages != null && !Arrays.equals(excludedPackages,
4492 perUserExcludedPackages.get(thisUserId))) {
4493 if (noExcludedPackages) {
4494 perUserExcludedPackages.remove(thisUserId);
4495 if (perUserExcludedPackages.size() <= 0) {
4496 perUserExcludedPackages = null;
4497 }
4498 } else {
4499 perUserExcludedPackages.put(thisUserId, excludedPackages);
4500 }
4501 changed = true;
4502 }
4503 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004504 }
4505 }
4506
4507 return changed;
4508 }
4509
4510 public boolean hasRestriction(int restriction, String packageName, int userId) {
4511 if (perUserRestrictions == null) {
4512 return false;
4513 }
4514 boolean[] restrictions = perUserRestrictions.get(userId);
4515 if (restrictions == null) {
4516 return false;
4517 }
4518 if (!restrictions[restriction]) {
4519 return false;
4520 }
4521 if (perUserExcludedPackages == null) {
4522 return true;
4523 }
4524 String[] perUserExclusions = perUserExcludedPackages.get(userId);
4525 if (perUserExclusions == null) {
4526 return true;
4527 }
4528 return !ArrayUtils.contains(perUserExclusions, packageName);
4529 }
4530
4531 public void removeUser(int userId) {
4532 if (perUserExcludedPackages != null) {
4533 perUserExcludedPackages.remove(userId);
4534 if (perUserExcludedPackages.size() <= 0) {
4535 perUserExcludedPackages = null;
4536 }
4537 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004538 if (perUserRestrictions != null) {
4539 perUserRestrictions.remove(userId);
4540 if (perUserRestrictions.size() <= 0) {
4541 perUserRestrictions = null;
4542 }
4543 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004544 }
4545
4546 public boolean isDefault() {
4547 return perUserRestrictions == null || perUserRestrictions.size() <= 0;
4548 }
4549
4550 @Override
4551 public void binderDied() {
4552 synchronized (AppOpsService.this) {
4553 mOpUserRestrictions.remove(token);
4554 if (perUserRestrictions == null) {
4555 return;
4556 }
4557 final int userCount = perUserRestrictions.size();
4558 for (int i = 0; i < userCount; i++) {
4559 final boolean[] restrictions = perUserRestrictions.valueAt(i);
4560 final int restrictionCount = restrictions.length;
4561 for (int j = 0; j < restrictionCount; j++) {
4562 if (restrictions[j]) {
4563 final int changedCode = j;
Svet Ganov3a95f832018-03-23 17:44:30 -07004564 mHandler.post(() -> notifyWatchersOfChange(changedCode, UID_ANY));
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004565 }
4566 }
4567 }
4568 destroy();
4569 }
4570 }
4571
4572 public void destroy() {
4573 token.unlinkToDeath(this, 0);
4574 }
4575
4576 private boolean isDefault(boolean[] array) {
4577 if (ArrayUtils.isEmpty(array)) {
4578 return true;
4579 }
4580 for (boolean value : array) {
4581 if (value) {
4582 return false;
4583 }
4584 }
4585 return true;
4586 }
4587 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004588
4589 private final class AppOpsManagerInternalImpl extends AppOpsManagerInternal {
4590 @Override public void setDeviceAndProfileOwners(SparseIntArray owners) {
4591 synchronized (AppOpsService.this) {
4592 mProfileOwners = owners;
4593 }
4594 }
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004595
4596 @Override
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004597 public void setUidMode(int code, int uid, int mode) {
4598 AppOpsService.this.setUidMode(code, uid, mode);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004599 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08004600
4601 @Override
4602 public void setAllPkgModesToDefault(int code, int uid) {
4603 AppOpsService.this.setAllPkgModesToDefault(code, uid);
4604 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07004605
4606 @Override
4607 public @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName) {
4608 return AppOpsService.this.checkOperationUnchecked(code, uid, packageName, true, false);
4609 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004610 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004611}