blob: db7abf891d1e5635a601bea00d0c48c81fb45d22 [file] [log] [blame]
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Svet Ganov8455ba22019-01-02 13:05:56 -080017package com.android.server.appop;
Dianne Hackborna06de0f2012-12-11 16:34:47 -080018
Svet Ganovaf189e32019-02-15 18:45:29 -080019import static android.app.AppOpsManager.MAX_PRIORITY_UID_STATE;
20import static android.app.AppOpsManager.MIN_PRIORITY_UID_STATE;
21import static android.app.AppOpsManager.OP_FLAGS_ALL;
Svet Ganov8455ba22019-01-02 13:05:56 -080022import static android.app.AppOpsManager.OP_NONE;
Philip P. Moltmanndde07852019-01-25 16:42:36 -080023import static android.app.AppOpsManager.OP_PLAY_AUDIO;
Hai Zhang2b98fb32018-09-21 15:18:46 -070024import static android.app.AppOpsManager.UID_STATE_BACKGROUND;
25import static android.app.AppOpsManager.UID_STATE_CACHED;
26import static android.app.AppOpsManager.UID_STATE_FOREGROUND;
27import static android.app.AppOpsManager.UID_STATE_FOREGROUND_SERVICE;
Amith Yamasania0a30a12019-01-22 11:38:06 -080028import static android.app.AppOpsManager.UID_STATE_FOREGROUND_SERVICE_LOCATION;
Svet Ganovaf189e32019-02-15 18:45:29 -080029import static android.app.AppOpsManager.UID_STATE_MAX_LAST_NON_RESTRICTED;
Hai Zhang2b98fb32018-09-21 15:18:46 -070030import static android.app.AppOpsManager.UID_STATE_PERSISTENT;
31import static android.app.AppOpsManager.UID_STATE_TOP;
Eugene Suslae4ee2c22018-11-05 12:23:30 -080032import static android.app.AppOpsManager.modeToName;
33import static android.app.AppOpsManager.opToName;
Svet Ganovaf189e32019-02-15 18:45:29 -080034import static android.app.AppOpsManager.resolveFirstUnrestrictedUidState;
Hai Zhang2b98fb32018-09-21 15:18:46 -070035
Philip P. Moltmanne683f192017-06-23 14:05:04 -070036import android.Manifest;
Svet Ganovad0a49b2018-10-29 10:07:08 -070037import android.annotation.NonNull;
38import android.annotation.Nullable;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070039import android.app.ActivityManager;
40import android.app.ActivityThread;
41import android.app.AppGlobals;
42import android.app.AppOpsManager;
Svet Ganov8455ba22019-01-02 13:05:56 -080043import android.app.AppOpsManager.HistoricalOps;
Svet Ganov23c88db2019-01-22 20:38:11 -080044import android.app.AppOpsManager.HistoricalOpsRequest;
Svet Ganovaf189e32019-02-15 18:45:29 -080045import android.app.AppOpsManager.Mode;
46import android.app.AppOpsManager.OpEntry;
47import android.app.AppOpsManager.OpFlags;
Dianne Hackbornd5254412018-05-11 18:02:58 -070048import android.app.AppOpsManagerInternal;
Svet Ganovd873ae62018-06-25 16:39:23 -070049import android.app.AppOpsManagerInternal.CheckOpsDelegate;
Suprabh Shukla3017fe42018-11-08 19:00:01 -080050import android.content.BroadcastReceiver;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070051import android.content.ContentResolver;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070052import android.content.Context;
Suprabh Shukla3017fe42018-11-08 19:00:01 -080053import android.content.Intent;
54import android.content.IntentFilter;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070055import android.content.pm.ApplicationInfo;
56import android.content.pm.IPackageManager;
57import android.content.pm.PackageManager;
58import android.content.pm.PackageManagerInternal;
59import android.content.pm.UserInfo;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070060import android.database.ContentObserver;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070061import android.media.AudioAttributes;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070062import android.net.Uri;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070063import android.os.AsyncTask;
64import android.os.Binder;
65import android.os.Bundle;
66import android.os.Handler;
67import android.os.IBinder;
68import android.os.Process;
Svet Ganov8455ba22019-01-02 13:05:56 -080069import android.os.RemoteCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070070import android.os.RemoteException;
71import android.os.ResultReceiver;
72import android.os.ServiceManager;
73import android.os.ShellCallback;
74import android.os.ShellCommand;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -070075import android.os.SystemClock;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070076import android.os.UserHandle;
77import android.os.UserManager;
Sudheer Shanka98cb3f02018-08-17 16:10:29 -070078import android.os.storage.StorageManager;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070079import android.os.storage.StorageManagerInternal;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070080import android.provider.Settings;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070081import android.util.ArrayMap;
82import android.util.ArraySet;
83import android.util.AtomicFile;
Dianne Hackborn65a4f252018-05-08 17:30:48 -070084import android.util.KeyValueListParser;
Svet Ganovaf189e32019-02-15 18:45:29 -080085import android.util.LongSparseArray;
86import android.util.LongSparseLongArray;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070087import android.util.Slog;
88import android.util.SparseArray;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -070089import android.util.SparseBooleanArray;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070090import android.util.SparseIntArray;
91import android.util.TimeUtils;
92import android.util.Xml;
93
Todd Kennedy556efba2018-11-15 07:43:55 -080094import com.android.internal.annotations.GuardedBy;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -070095import com.android.internal.annotations.VisibleForTesting;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -080096import com.android.internal.app.IAppOpsActiveCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070097import com.android.internal.app.IAppOpsCallback;
Svet Ganovb3d2ae22018-12-17 22:06:15 -080098import com.android.internal.app.IAppOpsNotedCallback;
Philip P. Moltmanne683f192017-06-23 14:05:04 -070099import com.android.internal.app.IAppOpsService;
100import com.android.internal.os.Zygote;
101import com.android.internal.util.ArrayUtils;
102import com.android.internal.util.DumpUtils;
103import com.android.internal.util.FastXmlSerializer;
104import com.android.internal.util.Preconditions;
105import com.android.internal.util.XmlUtils;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -0800106import com.android.internal.util.function.pooled.PooledLambda;
Svet Ganov8455ba22019-01-02 13:05:56 -0800107import com.android.server.LocalServices;
108import com.android.server.LockGuard;
Philip P. Moltmanndde07852019-01-25 16:42:36 -0800109
Philip P. Moltmanne683f192017-06-23 14:05:04 -0700110import libcore.util.EmptyArray;
111
112import org.xmlpull.v1.XmlPullParser;
113import org.xmlpull.v1.XmlPullParserException;
114import org.xmlpull.v1.XmlSerializer;
115
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800116import java.io.File;
117import java.io.FileDescriptor;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800118import java.io.FileInputStream;
119import java.io.FileNotFoundException;
120import java.io.FileOutputStream;
121import java.io.IOException;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800122import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100123import java.nio.charset.StandardCharsets;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700124import java.text.SimpleDateFormat;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800125import java.util.ArrayList;
Svetoslav Ganova8bbd762016-05-13 17:08:16 -0700126import java.util.Arrays;
Svetoslav215b44a2015-08-04 19:03:40 -0700127import java.util.Collections;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700128import java.util.Date;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800129import java.util.HashMap;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800130import java.util.Iterator;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800131import java.util.List;
Dianne Hackborn607b4142013-08-02 18:10:10 -0700132import java.util.Map;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800133
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800134public class AppOpsService extends IAppOpsService.Stub {
135 static final String TAG = "AppOps";
Dianne Hackborn35654b62013-01-14 17:38:02 -0800136 static final boolean DEBUG = false;
137
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700138 private static final int NO_VERSION = -1;
139 /** Increment by one every time and add the corresponding upgrade logic in
140 * {@link #upgradeLocked(int)} below. The first version was 1 */
141 private static final int CURRENT_VERSION = 1;
142
Dianne Hackborn35654b62013-01-14 17:38:02 -0800143 // Write at most every 30 minutes.
144 static final long WRITE_DELAY = DEBUG ? 1000 : 30*60*1000;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800145
Svet Ganov3a95f832018-03-23 17:44:30 -0700146 // Constant meaning that any UID should be matched when dispatching callbacks
147 private static final int UID_ANY = -2;
148
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700149 // Map from process states to the uid states we track.
150 private static final int[] PROCESS_STATE_TO_UID_STATE = new int[] {
151 UID_STATE_PERSISTENT, // ActivityManager.PROCESS_STATE_PERSISTENT
152 UID_STATE_PERSISTENT, // ActivityManager.PROCESS_STATE_PERSISTENT_UI
153 UID_STATE_TOP, // ActivityManager.PROCESS_STATE_TOP
Amith Yamasania0a30a12019-01-22 11:38:06 -0800154 UID_STATE_FOREGROUND_SERVICE_LOCATION,
155 // ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE_LOCATION
Amith Yamasanif235d0b2019-03-20 22:49:43 -0700156 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_BOUND_TOP
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700157 UID_STATE_FOREGROUND_SERVICE, // ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE
158 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_BOUND_FOREGROUND_SERVICE
159 UID_STATE_FOREGROUND, // ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND
160 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_IMPORTANT_BACKGROUND
161 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_TRANSIENT_BACKGROUND
162 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_BACKUP
163 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_SERVICE
164 UID_STATE_BACKGROUND, // ActivityManager.PROCESS_STATE_RECEIVER
165 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_TOP_SLEEPING
166 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_HEAVY_WEIGHT
167 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_HOME
168 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_LAST_ACTIVITY
169 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_ACTIVITY
170 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_ACTIVITY_CLIENT
171 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_RECENT
172 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_CACHED_EMPTY
173 UID_STATE_CACHED, // ActivityManager.PROCESS_STATE_NONEXISTENT
174 };
175
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800176 Context mContext;
177 final AtomicFile mFile;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800178 final Handler mHandler;
179
Dianne Hackbornd5254412018-05-11 18:02:58 -0700180 private final AppOpsManagerInternalImpl mAppOpsManagerInternal
181 = new AppOpsManagerInternalImpl();
182
Dianne Hackborn35654b62013-01-14 17:38:02 -0800183 boolean mWriteScheduled;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800184 boolean mFastWriteScheduled;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800185 final Runnable mWriteRunner = new Runnable() {
186 public void run() {
187 synchronized (AppOpsService.this) {
188 mWriteScheduled = false;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -0800189 mFastWriteScheduled = false;
Dianne Hackborn35654b62013-01-14 17:38:02 -0800190 AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
191 @Override protected Void doInBackground(Void... params) {
192 writeState();
193 return null;
194 }
195 };
196 task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[])null);
197 }
198 }
199 };
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800200
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700201 @VisibleForTesting
202 final SparseArray<UidState> mUidStates = new SparseArray<>();
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800203
Svet Ganov8455ba22019-01-02 13:05:56 -0800204 private final HistoricalRegistry mHistoricalRegistry = new HistoricalRegistry(this);
205
Dianne Hackborn9fb93502018-06-18 12:29:44 -0700206 long mLastRealtime;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700207
Ruben Brunk29931bc2016-03-11 00:24:26 -0800208 /*
209 * These are app op restrictions imposed per user from various parties.
Ruben Brunk29931bc2016-03-11 00:24:26 -0800210 */
Svetoslav Ganova8bbd762016-05-13 17:08:16 -0700211 private final ArrayMap<IBinder, ClientRestrictionState> mOpUserRestrictions = new ArrayMap<>();
Jason Monk62062992014-05-06 09:55:28 -0400212
Dianne Hackbornd5254412018-05-11 18:02:58 -0700213 SparseIntArray mProfileOwners;
214
Todd Kennedy556efba2018-11-15 07:43:55 -0800215 @GuardedBy("this")
Svet Ganovd873ae62018-06-25 16:39:23 -0700216 private CheckOpsDelegate mCheckOpsDelegate;
217
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700218 /**
219 * All times are in milliseconds. These constants are kept synchronized with the system
220 * global Settings. Any access to this class or its fields should be done while
221 * holding the AppOpsService lock.
222 */
Amith Yamasani23d4cd72019-04-10 17:57:00 -0700223 @VisibleForTesting
224 final class Constants extends ContentObserver {
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700225 // Key names stored in the settings value.
Dianne Hackborne93ab412018-05-14 17:52:30 -0700226 private static final String KEY_TOP_STATE_SETTLE_TIME = "top_state_settle_time";
227 private static final String KEY_FG_SERVICE_STATE_SETTLE_TIME
228 = "fg_service_state_settle_time";
229 private static final String KEY_BG_STATE_SETTLE_TIME = "bg_state_settle_time";
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700230
231 /**
Dianne Hackborne93ab412018-05-14 17:52:30 -0700232 * How long we want for a drop in uid state from top to settle before applying it.
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700233 * @see Settings.Global#APP_OPS_CONSTANTS
Dianne Hackborne93ab412018-05-14 17:52:30 -0700234 * @see #KEY_TOP_STATE_SETTLE_TIME
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700235 */
Dianne Hackborne93ab412018-05-14 17:52:30 -0700236 public long TOP_STATE_SETTLE_TIME;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700237
Dianne Hackborne93ab412018-05-14 17:52:30 -0700238 /**
239 * How long we want for a drop in uid state from foreground to settle before applying it.
240 * @see Settings.Global#APP_OPS_CONSTANTS
241 * @see #KEY_FG_SERVICE_STATE_SETTLE_TIME
242 */
243 public long FG_SERVICE_STATE_SETTLE_TIME;
244
245 /**
246 * How long we want for a drop in uid state from background to settle before applying it.
247 * @see Settings.Global#APP_OPS_CONSTANTS
248 * @see #KEY_BG_STATE_SETTLE_TIME
249 */
250 public long BG_STATE_SETTLE_TIME;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700251
252 private final KeyValueListParser mParser = new KeyValueListParser(',');
253 private ContentResolver mResolver;
254
255 public Constants(Handler handler) {
256 super(handler);
257 updateConstants();
258 }
259
260 public void startMonitoring(ContentResolver resolver) {
261 mResolver = resolver;
262 mResolver.registerContentObserver(
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700263 Settings.Global.getUriFor(Settings.Global.APP_OPS_CONSTANTS),
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700264 false, this);
265 updateConstants();
266 }
267
268 @Override
269 public void onChange(boolean selfChange, Uri uri) {
270 updateConstants();
271 }
272
273 private void updateConstants() {
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700274 String value = mResolver != null ? Settings.Global.getString(mResolver,
275 Settings.Global.APP_OPS_CONSTANTS) : "";
276
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700277 synchronized (AppOpsService.this) {
278 try {
Dianne Hackborn45c79b02018-05-11 09:46:13 -0700279 mParser.setString(value);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700280 } catch (IllegalArgumentException e) {
281 // Failed to parse the settings string, log this and move on
282 // with defaults.
283 Slog.e(TAG, "Bad app ops settings", e);
284 }
Dianne Hackborne93ab412018-05-14 17:52:30 -0700285 TOP_STATE_SETTLE_TIME = mParser.getDurationMillis(
286 KEY_TOP_STATE_SETTLE_TIME, 30 * 1000L);
287 FG_SERVICE_STATE_SETTLE_TIME = mParser.getDurationMillis(
288 KEY_FG_SERVICE_STATE_SETTLE_TIME, 10 * 1000L);
289 BG_STATE_SETTLE_TIME = mParser.getDurationMillis(
290 KEY_BG_STATE_SETTLE_TIME, 1 * 1000L);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700291 }
292 }
293
294 void dump(PrintWriter pw) {
295 pw.println(" Settings:");
296
Dianne Hackborne93ab412018-05-14 17:52:30 -0700297 pw.print(" "); pw.print(KEY_TOP_STATE_SETTLE_TIME); pw.print("=");
298 TimeUtils.formatDuration(TOP_STATE_SETTLE_TIME, pw);
Dianne Hackbornb94d82f2018-05-16 17:03:01 -0700299 pw.println();
Dianne Hackborne93ab412018-05-14 17:52:30 -0700300 pw.print(" "); pw.print(KEY_FG_SERVICE_STATE_SETTLE_TIME); pw.print("=");
301 TimeUtils.formatDuration(FG_SERVICE_STATE_SETTLE_TIME, pw);
Dianne Hackbornb94d82f2018-05-16 17:03:01 -0700302 pw.println();
Dianne Hackborne93ab412018-05-14 17:52:30 -0700303 pw.print(" "); pw.print(KEY_BG_STATE_SETTLE_TIME); pw.print("=");
304 TimeUtils.formatDuration(BG_STATE_SETTLE_TIME, pw);
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700305 pw.println();
306 }
307 }
308
Amith Yamasani23d4cd72019-04-10 17:57:00 -0700309 @VisibleForTesting
310 final Constants mConstants;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700311
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -0700312 @VisibleForTesting
313 static final class UidState {
Svet Ganov2af57082015-07-30 08:44:20 -0700314 public final int uid;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700315
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700316 public int state = UID_STATE_CACHED;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700317 public int pendingState = UID_STATE_CACHED;
318 public long pendingStateCommitTime;
319
Dianne Hackborncd1f30b2018-04-23 17:38:09 -0700320 public int startNesting;
Svet Ganov2af57082015-07-30 08:44:20 -0700321 public ArrayMap<String, Ops> pkgOps;
322 public SparseIntArray opModes;
323
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700324 // true indicates there is an interested observer, false there isn't but it has such an op
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700325 public SparseBooleanArray foregroundOps;
Dianne Hackborn65a4f252018-05-08 17:30:48 -0700326 public boolean hasForegroundWatchers;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700327
Svet Ganov2af57082015-07-30 08:44:20 -0700328 public UidState(int uid) {
329 this.uid = uid;
330 }
331
332 public void clear() {
333 pkgOps = null;
334 opModes = null;
335 }
336
337 public boolean isDefault() {
338 return (pkgOps == null || pkgOps.isEmpty())
Svet Ganovaf189e32019-02-15 18:45:29 -0800339 && (opModes == null || opModes.size() <= 0)
340 && (state == UID_STATE_CACHED
341 && (pendingState == UID_STATE_CACHED));
Svet Ganov2af57082015-07-30 08:44:20 -0700342 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700343
Svet Ganovaf189e32019-02-15 18:45:29 -0800344 int evalMode(int op, int mode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -0700345 if (mode == AppOpsManager.MODE_FOREGROUND) {
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) {
1317 return;
1318 }
1319
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001320 for (int i = 0; i < callbackSpecs.size(); i++) {
1321 final ModeCallback callback = callbackSpecs.keyAt(i);
1322 final ArraySet<String> reportedPackageNames = callbackSpecs.valueAt(i);
1323 if (reportedPackageNames == null) {
1324 mHandler.sendMessage(PooledLambda.obtainMessage(
1325 AppOpsService::notifyOpChanged,
1326 this, callback, code, uid, (String) null));
1327
1328 } else {
1329 final int reportedPackageCount = reportedPackageNames.size();
1330 for (int j = 0; j < reportedPackageCount; j++) {
1331 final String reportedPackageName = reportedPackageNames.valueAt(j);
1332 mHandler.sendMessage(PooledLambda.obtainMessage(
1333 AppOpsService::notifyOpChanged,
1334 this, callback, code, uid, reportedPackageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001335 }
1336 }
Svet Ganov2af57082015-07-30 08:44:20 -07001337 }
1338 }
1339
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001340 /**
1341 * Set all {@link #setMode (package) modes} for this uid to the default value.
1342 *
1343 * @param code The app-op
1344 * @param uid The uid
1345 */
1346 private void setAllPkgModesToDefault(int code, int uid) {
1347 synchronized (this) {
1348 UidState uidState = getUidStateLocked(uid, false);
1349 if (uidState == null) {
1350 return;
1351 }
1352
1353 ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
1354 if (pkgOps == null) {
1355 return;
1356 }
1357
Svet Ganovaf189e32019-02-15 18:45:29 -08001358 boolean scheduleWrite = false;
1359
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001360 int numPkgs = pkgOps.size();
1361 for (int pkgNum = 0; pkgNum < numPkgs; pkgNum++) {
1362 Ops ops = pkgOps.valueAt(pkgNum);
1363
1364 Op op = ops.get(code);
1365 if (op == null) {
1366 continue;
1367 }
1368
1369 int defaultMode = AppOpsManager.opToDefaultMode(code);
1370 if (op.mode != defaultMode) {
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001371 op.mode = defaultMode;
Svet Ganovaf189e32019-02-15 18:45:29 -08001372 scheduleWrite = true;
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001373 }
1374 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001375
1376 if (scheduleWrite) {
1377 scheduleWriteLocked();
1378 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08001379 }
1380 }
1381
Svet Ganov2af57082015-07-30 08:44:20 -07001382 @Override
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001383 public void setMode(int code, int uid, String packageName, int mode) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001384 setMode(code, uid, packageName, mode, true, false);
1385 }
1386
1387 /**
1388 * Sets the mode for a certain op and uid.
1389 *
1390 * @param code The op code to set
1391 * @param uid The UID for which to set
1392 * @param packageName The package for which to set
1393 * @param mode The new mode to set
1394 * @param verifyUid Iff {@code true}, check that the package name belongs to the uid
1395 * @param isPrivileged Whether the package is privileged. (Only used if {@code verifyUid ==
1396 * false})
1397 */
1398 private void setMode(int code, int uid, @NonNull String packageName, int mode,
1399 boolean verifyUid, boolean isPrivileged) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001400 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001401 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001402 ArraySet<ModeCallback> repCbs = null;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001403 code = AppOpsManager.opToSwitch(code);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001404 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001405 UidState uidState = getUidStateLocked(uid, false);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07001406 Op op = getOpLocked(code, uid, packageName, true, verifyUid, isPrivileged);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001407 if (op != null) {
1408 if (op.mode != mode) {
1409 op.mode = mode;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001410 if (uidState != null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001411 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001412 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001413 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(code);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001414 if (cbs != null) {
1415 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001416 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001417 }
1418 repCbs.addAll(cbs);
1419 }
1420 cbs = mPackageModeWatchers.get(packageName);
1421 if (cbs != null) {
1422 if (repCbs == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001423 repCbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001424 }
1425 repCbs.addAll(cbs);
1426 }
David Braunf5d83192013-09-16 13:43:51 -07001427 if (mode == AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborn514074f2013-02-11 10:52:46 -08001428 // If going into the default mode, prune this op
1429 // if there is nothing else interesting in it.
Dianne Hackborn607b4142013-08-02 18:10:10 -07001430 pruneOp(op, uid, packageName);
Dianne Hackborn514074f2013-02-11 10:52:46 -08001431 }
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001432 scheduleFastWriteLocked();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001433 }
1434 }
1435 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001436 if (repCbs != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001437 mHandler.sendMessage(PooledLambda.obtainMessage(
1438 AppOpsService::notifyOpChanged,
1439 this, repCbs, code, uid, packageName));
Dianne Hackbornc2293022013-02-06 23:14:49 -08001440 }
1441 }
1442
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001443 private void notifyOpChanged(ArraySet<ModeCallback> callbacks, int code,
1444 int uid, String packageName) {
1445 for (int i = 0; i < callbacks.size(); i++) {
1446 final ModeCallback callback = callbacks.valueAt(i);
1447 notifyOpChanged(callback, code, uid, packageName);
1448 }
1449 }
1450
1451 private void notifyOpChanged(ModeCallback callback, int code,
1452 int uid, String packageName) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001453 if (uid != UID_ANY && callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001454 return;
1455 }
1456 // There are components watching for mode changes such as window manager
1457 // and location manager which are in our process. The callbacks in these
1458 // components may require permissions our remote caller does not have.
1459 final long identity = Binder.clearCallingIdentity();
1460 try {
1461 callback.mCallback.opChanged(code, uid, packageName);
1462 } catch (RemoteException e) {
1463 /* ignore */
1464 } finally {
1465 Binder.restoreCallingIdentity(identity);
1466 }
1467 }
1468
1469 private static HashMap<ModeCallback, ArrayList<ChangeRec>> addCallbacks(
1470 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks,
1471 int op, int uid, String packageName, ArraySet<ModeCallback> cbs) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001472 if (cbs == null) {
1473 return callbacks;
1474 }
1475 if (callbacks == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001476 callbacks = new HashMap<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001477 }
Svet Ganov2af57082015-07-30 08:44:20 -07001478 boolean duplicate = false;
Dianne Hackborn68d76552017-02-27 15:32:03 -08001479 final int N = cbs.size();
1480 for (int i=0; i<N; i++) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001481 ModeCallback cb = cbs.valueAt(i);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001482 ArrayList<ChangeRec> reports = callbacks.get(cb);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001483 if (reports == null) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001484 reports = new ArrayList<>();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001485 callbacks.put(cb, reports);
Svet Ganov2af57082015-07-30 08:44:20 -07001486 } else {
1487 final int reportCount = reports.size();
1488 for (int j = 0; j < reportCount; j++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001489 ChangeRec report = reports.get(j);
1490 if (report.op == op && report.pkg.equals(packageName)) {
Svet Ganov2af57082015-07-30 08:44:20 -07001491 duplicate = true;
1492 break;
1493 }
1494 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001495 }
Svet Ganov2af57082015-07-30 08:44:20 -07001496 if (!duplicate) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001497 reports.add(new ChangeRec(op, uid, packageName));
Svet Ganov2af57082015-07-30 08:44:20 -07001498 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001499 }
1500 return callbacks;
1501 }
1502
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001503 static final class ChangeRec {
1504 final int op;
1505 final int uid;
1506 final String pkg;
1507
1508 ChangeRec(int _op, int _uid, String _pkg) {
1509 op = _op;
1510 uid = _uid;
1511 pkg = _pkg;
1512 }
1513 }
1514
Dianne Hackborn607b4142013-08-02 18:10:10 -07001515 @Override
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001516 public void resetAllModes(int reqUserId, String reqPackageName) {
1517 final int callingPid = Binder.getCallingPid();
1518 final int callingUid = Binder.getCallingUid();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001519 reqUserId = ActivityManager.handleIncomingUser(callingPid, callingUid, reqUserId,
1520 true, true, "resetAllModes", null);
Svet Ganov2af57082015-07-30 08:44:20 -07001521
1522 int reqUid = -1;
1523 if (reqPackageName != null) {
1524 try {
1525 reqUid = AppGlobals.getPackageManager().getPackageUid(
Jeff Sharkeycd654482016-01-08 17:42:11 -07001526 reqPackageName, PackageManager.MATCH_UNINSTALLED_PACKAGES, reqUserId);
Svet Ganov2af57082015-07-30 08:44:20 -07001527 } catch (RemoteException e) {
1528 /* ignore - local call */
1529 }
1530 }
1531
Dianne Hackbornd5254412018-05-11 18:02:58 -07001532 enforceManageAppOpsModes(callingPid, callingUid, reqUid);
1533
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001534 HashMap<ModeCallback, ArrayList<ChangeRec>> callbacks = null;
Dianne Hackborn607b4142013-08-02 18:10:10 -07001535 synchronized (this) {
1536 boolean changed = false;
Svet Ganov2af57082015-07-30 08:44:20 -07001537 for (int i = mUidStates.size() - 1; i >= 0; i--) {
1538 UidState uidState = mUidStates.valueAt(i);
1539
1540 SparseIntArray opModes = uidState.opModes;
1541 if (opModes != null && (uidState.uid == reqUid || reqUid == -1)) {
1542 final int uidOpCount = opModes.size();
1543 for (int j = uidOpCount - 1; j >= 0; j--) {
1544 final int code = opModes.keyAt(j);
1545 if (AppOpsManager.opAllowsReset(code)) {
1546 opModes.removeAt(j);
1547 if (opModes.size() <= 0) {
1548 uidState.opModes = null;
1549 }
1550 for (String packageName : getPackagesForUid(uidState.uid)) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001551 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001552 mOpModeWatchers.get(code));
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001553 callbacks = addCallbacks(callbacks, code, uidState.uid, packageName,
Svet Ganov2af57082015-07-30 08:44:20 -07001554 mPackageModeWatchers.get(packageName));
1555 }
1556 }
1557 }
1558 }
1559
1560 if (uidState.pkgOps == null) {
1561 continue;
1562 }
1563
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001564 if (reqUserId != UserHandle.USER_ALL
Svet Ganov2af57082015-07-30 08:44:20 -07001565 && reqUserId != UserHandle.getUserId(uidState.uid)) {
Alexandra Gherghinad6a98972014-08-04 17:05:34 +01001566 // Skip any ops for a different user
1567 continue;
1568 }
Svet Ganov2af57082015-07-30 08:44:20 -07001569
1570 Map<String, Ops> packages = uidState.pkgOps;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001571 Iterator<Map.Entry<String, Ops>> it = packages.entrySet().iterator();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001572 boolean uidChanged = false;
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001573 while (it.hasNext()) {
1574 Map.Entry<String, Ops> ent = it.next();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001575 String packageName = ent.getKey();
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001576 if (reqPackageName != null && !reqPackageName.equals(packageName)) {
1577 // Skip any ops for a different package
1578 continue;
1579 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001580 Ops pkgOps = ent.getValue();
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001581 for (int j=pkgOps.size()-1; j>=0; j--) {
Dianne Hackborn607b4142013-08-02 18:10:10 -07001582 Op curOp = pkgOps.valueAt(j);
Dianne Hackborn8828d3a2013-09-25 16:47:10 -07001583 if (AppOpsManager.opAllowsReset(curOp.op)
1584 && curOp.mode != AppOpsManager.opToDefaultMode(curOp.op)) {
David Braunf5d83192013-09-16 13:43:51 -07001585 curOp.mode = AppOpsManager.opToDefaultMode(curOp.op);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001586 changed = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001587 uidChanged = true;
Svet Ganovaf189e32019-02-15 18:45:29 -08001588 final int uid = curOp.uidState.uid;
1589 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001590 mOpModeWatchers.get(curOp.op));
Svet Ganovaf189e32019-02-15 18:45:29 -08001591 callbacks = addCallbacks(callbacks, curOp.op, uid, packageName,
Dianne Hackborn607b4142013-08-02 18:10:10 -07001592 mPackageModeWatchers.get(packageName));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001593 if (!curOp.hasAnyTime()) {
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001594 pkgOps.removeAt(j);
1595 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001596 }
1597 }
Dianne Hackborn7f09ec32013-08-07 15:36:08 -07001598 if (pkgOps.size() == 0) {
1599 it.remove();
1600 }
1601 }
Svet Ganov2af57082015-07-30 08:44:20 -07001602 if (uidState.isDefault()) {
1603 mUidStates.remove(uidState.uid);
Dianne Hackborn607b4142013-08-02 18:10:10 -07001604 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001605 if (uidChanged) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001606 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07001607 }
Dianne Hackborn607b4142013-08-02 18:10:10 -07001608 }
Svet Ganov2af57082015-07-30 08:44:20 -07001609
Dianne Hackborn607b4142013-08-02 18:10:10 -07001610 if (changed) {
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08001611 scheduleFastWriteLocked();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001612 }
1613 }
1614 if (callbacks != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001615 for (Map.Entry<ModeCallback, ArrayList<ChangeRec>> ent : callbacks.entrySet()) {
1616 ModeCallback cb = ent.getKey();
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001617 ArrayList<ChangeRec> reports = ent.getValue();
Dianne Hackborn607b4142013-08-02 18:10:10 -07001618 for (int i=0; i<reports.size(); i++) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001619 ChangeRec rep = reports.get(i);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001620 mHandler.sendMessage(PooledLambda.obtainMessage(
1621 AppOpsService::notifyOpChanged,
1622 this, cb, rep.op, rep.uid, rep.pkg));
Dianne Hackborn607b4142013-08-02 18:10:10 -07001623 }
1624 }
1625 }
1626 }
1627
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001628 private void evalAllForegroundOpsLocked() {
1629 for (int uidi = mUidStates.size() - 1; uidi >= 0; uidi--) {
1630 final UidState uidState = mUidStates.valueAt(uidi);
1631 if (uidState.foregroundOps != null) {
1632 uidState.evalForegroundOps(mOpModeWatchers);
1633 }
1634 }
1635 }
1636
Dianne Hackbornc2293022013-02-06 23:14:49 -08001637 @Override
1638 public void startWatchingMode(int op, String packageName, IAppOpsCallback callback) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001639 startWatchingModeWithFlags(op, packageName, 0, callback);
1640 }
1641
1642 @Override
1643 public void startWatchingModeWithFlags(int op, String packageName, int flags,
1644 IAppOpsCallback callback) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001645 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07001646 final int callingUid = Binder.getCallingUid();
1647 final int callingPid = Binder.getCallingPid();
Dianne Hackborn5376edd2018-06-05 13:21:16 -07001648 // TODO: should have a privileged permission to protect this.
1649 // Also, if the caller has requested WATCH_FOREGROUND_CHANGES, should we require
1650 // the USAGE_STATS permission since this can provide information about when an
1651 // app is in the foreground?
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001652 Preconditions.checkArgumentInRange(op, AppOpsManager.OP_NONE,
1653 AppOpsManager._NUM_OP - 1, "Invalid op code: " + op);
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001654 if (callback == null) {
1655 return;
1656 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001657 synchronized (this) {
Svet Ganov2af57082015-07-30 08:44:20 -07001658 op = (op != AppOpsManager.OP_NONE) ? AppOpsManager.opToSwitch(op) : op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001659 ModeCallback cb = mModeWatchers.get(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001660 if (cb == null) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001661 cb = new ModeCallback(callback, watchedUid, flags, callingUid, callingPid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001662 mModeWatchers.put(callback.asBinder(), cb);
1663 }
1664 if (op != AppOpsManager.OP_NONE) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001665 ArraySet<ModeCallback> cbs = mOpModeWatchers.get(op);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001666 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001667 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001668 mOpModeWatchers.put(op, cbs);
1669 }
1670 cbs.add(cb);
1671 }
1672 if (packageName != null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001673 ArraySet<ModeCallback> cbs = mPackageModeWatchers.get(packageName);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001674 if (cbs == null) {
Dianne Hackborn68d76552017-02-27 15:32:03 -08001675 cbs = new ArraySet<>();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001676 mPackageModeWatchers.put(packageName, cbs);
1677 }
1678 cbs.add(cb);
1679 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001680 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001681 }
1682 }
1683
1684 @Override
1685 public void stopWatchingMode(IAppOpsCallback callback) {
Svetoslav Ganov8de59712015-12-09 18:25:13 -08001686 if (callback == null) {
1687 return;
1688 }
Dianne Hackbornc2293022013-02-06 23:14:49 -08001689 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001690 ModeCallback cb = mModeWatchers.remove(callback.asBinder());
Dianne Hackbornc2293022013-02-06 23:14:49 -08001691 if (cb != null) {
1692 cb.unlinkToDeath();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001693 for (int i=mOpModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001694 ArraySet<ModeCallback> cbs = mOpModeWatchers.valueAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001695 cbs.remove(cb);
1696 if (cbs.size() <= 0) {
1697 mOpModeWatchers.removeAt(i);
1698 }
1699 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001700 for (int i=mPackageModeWatchers.size()-1; i>=0; i--) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001701 ArraySet<ModeCallback> cbs = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001702 cbs.remove(cb);
1703 if (cbs.size() <= 0) {
1704 mPackageModeWatchers.removeAt(i);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001705 }
1706 }
1707 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07001708 evalAllForegroundOpsLocked();
Dianne Hackbornc2293022013-02-06 23:14:49 -08001709 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001710 }
1711
1712 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001713 public IBinder getToken(IBinder clientToken) {
1714 synchronized (this) {
1715 ClientState cs = mClients.get(clientToken);
1716 if (cs == null) {
1717 cs = new ClientState(clientToken);
1718 mClients.put(clientToken, cs);
1719 }
1720 return cs;
1721 }
1722 }
1723
Svet Ganovd873ae62018-06-25 16:39:23 -07001724 public CheckOpsDelegate getAppOpsServiceDelegate() {
1725 synchronized (this) {
1726 return mCheckOpsDelegate;
1727 }
1728 }
1729
1730 public void setAppOpsServiceDelegate(CheckOpsDelegate delegate) {
1731 synchronized (this) {
1732 mCheckOpsDelegate = delegate;
1733 }
1734 }
1735
Dianne Hackborne98f5db2013-07-17 17:23:25 -07001736 @Override
Svet Ganov9d528a12018-12-19 17:23:11 -08001737 public int checkOperationRaw(int code, int uid, String packageName) {
1738 return checkOperationInternal(code, uid, packageName, true /*raw*/);
1739 }
1740
1741 @Override
Dianne Hackborn35654b62013-01-14 17:38:02 -08001742 public int checkOperation(int code, int uid, String packageName) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001743 return checkOperationInternal(code, uid, packageName, false /*raw*/);
1744 }
1745
1746 private int checkOperationInternal(int code, int uid, String packageName, boolean raw) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001747 final CheckOpsDelegate delegate;
Dianne Hackborn35654b62013-01-14 17:38:02 -08001748 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001749 delegate = mCheckOpsDelegate;
1750 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001751 if (delegate == null) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001752 return checkOperationImpl(code, uid, packageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001753 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001754 return delegate.checkOperation(code, uid, packageName, raw,
Svet Ganovd873ae62018-06-25 16:39:23 -07001755 AppOpsService.this::checkOperationImpl);
1756 }
1757
Svet Ganov9d528a12018-12-19 17:23:11 -08001758 private int checkOperationImpl(int code, int uid, String packageName,
1759 boolean raw) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001760 verifyIncomingUid(uid);
1761 verifyIncomingOp(code);
1762 String resolvedPackageName = resolvePackageName(uid, packageName);
1763 if (resolvedPackageName == null) {
1764 return AppOpsManager.MODE_IGNORED;
1765 }
Svet Ganov9d528a12018-12-19 17:23:11 -08001766 return checkOperationUnchecked(code, uid, resolvedPackageName, raw);
Todd Kennedy556efba2018-11-15 07:43:55 -08001767 }
1768
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001769 /**
1770 * @see #checkOperationUnchecked(int, int, String, boolean, boolean)
1771 */
1772 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1773 boolean raw) {
1774 return checkOperationUnchecked(code, uid, packageName, raw, true);
1775 }
1776
1777 /**
1778 * Get the mode of an app-op.
1779 *
1780 * @param code The code of the op
1781 * @param uid The uid of the package the op belongs to
1782 * @param packageName The package the op belongs to
1783 * @param raw If the raw state of eval-ed state should be checked.
1784 * @param verify If the code should check the package belongs to the uid
1785 *
1786 * @return The mode of the op
1787 */
1788 private @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName,
1789 boolean raw, boolean verify) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001790 synchronized (this) {
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001791 if (verify) {
1792 checkPackage(uid, packageName);
1793 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001794 if (isOpRestrictedLocked(uid, code, packageName)) {
Jason Monk62062992014-05-06 09:55:28 -04001795 return AppOpsManager.MODE_IGNORED;
1796 }
Svet Ganov2af57082015-07-30 08:44:20 -07001797 code = AppOpsManager.opToSwitch(code);
1798 UidState uidState = getUidStateLocked(uid, false);
Svet Ganovee438d42017-01-19 18:04:38 -08001799 if (uidState != null && uidState.opModes != null
1800 && uidState.opModes.indexOfKey(code) >= 0) {
Svet Ganov9d528a12018-12-19 17:23:11 -08001801 final int rawMode = uidState.opModes.get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001802 return raw ? rawMode : uidState.evalMode(code, rawMode);
Svet Ganov2af57082015-07-30 08:44:20 -07001803 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07001804 Op op = getOpLocked(code, uid, packageName, false, verify, false);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001805 if (op == null) {
David Braunf5d83192013-09-16 13:43:51 -07001806 return AppOpsManager.opToDefaultMode(code);
Dianne Hackborn35654b62013-01-14 17:38:02 -08001807 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001808 return raw ? op.mode : op.evalMode();
Dianne Hackborn35654b62013-01-14 17:38:02 -08001809 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001810 }
1811
1812 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001813 public int checkAudioOperation(int code, int usage, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001814 final CheckOpsDelegate delegate;
John Spurlock1af30c72014-03-10 08:33:35 -04001815 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001816 delegate = mCheckOpsDelegate;
1817 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001818 if (delegate == null) {
1819 return checkAudioOperationImpl(code, usage, uid, packageName);
1820 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001821 return delegate.checkAudioOperation(code, usage, uid, packageName,
1822 AppOpsService.this::checkAudioOperationImpl);
1823 }
1824
1825 private int checkAudioOperationImpl(int code, int usage, int uid, String packageName) {
Todd Kennedy556efba2018-11-15 07:43:55 -08001826 boolean suspended;
1827 try {
1828 suspended = isPackageSuspendedForUser(packageName, uid);
1829 } catch (IllegalArgumentException ex) {
1830 // Package not found.
1831 suspended = false;
1832 }
1833
1834 if (suspended) {
1835 Slog.i(TAG, "Audio disabled for suspended package=" + packageName
1836 + " for uid=" + uid);
1837 return AppOpsManager.MODE_IGNORED;
1838 }
1839
Svet Ganovd873ae62018-06-25 16:39:23 -07001840 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001841 final int mode = checkRestrictionLocked(code, usage, uid, packageName);
John Spurlock1af30c72014-03-10 08:33:35 -04001842 if (mode != AppOpsManager.MODE_ALLOWED) {
1843 return mode;
1844 }
1845 }
1846 return checkOperation(code, uid, packageName);
1847 }
1848
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001849 private boolean isPackageSuspendedForUser(String pkg, int uid) {
Svet Ganov8d123f42019-04-09 17:11:12 -07001850 final long identity = Binder.clearCallingIdentity();
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001851 try {
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00001852 return AppGlobals.getPackageManager().isPackageSuspendedForUser(
1853 pkg, UserHandle.getUserId(uid));
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001854 } catch (RemoteException re) {
1855 throw new SecurityException("Could not talk to package manager service");
Svet Ganov8d123f42019-04-09 17:11:12 -07001856 } finally {
1857 Binder.restoreCallingIdentity(identity);
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001858 }
Andrei Stingaceanu2bc2feb2016-02-11 16:23:49 +00001859 }
1860
John Spurlock7b414672014-07-18 13:02:39 -04001861 private int checkRestrictionLocked(int code, int usage, int uid, String packageName) {
1862 final SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1863 if (usageRestrictions != null) {
1864 final Restriction r = usageRestrictions.get(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001865 if (r != null && !r.exceptionPackages.contains(packageName)) {
1866 return r.mode;
1867 }
1868 }
1869 return AppOpsManager.MODE_ALLOWED;
1870 }
1871
1872 @Override
John Spurlock7b414672014-07-18 13:02:39 -04001873 public void setAudioRestriction(int code, int usage, int uid, int mode,
John Spurlock1af30c72014-03-10 08:33:35 -04001874 String[] exceptionPackages) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07001875 enforceManageAppOpsModes(Binder.getCallingPid(), Binder.getCallingUid(), uid);
John Spurlock1af30c72014-03-10 08:33:35 -04001876 verifyIncomingUid(uid);
1877 verifyIncomingOp(code);
1878 synchronized (this) {
John Spurlock7b414672014-07-18 13:02:39 -04001879 SparseArray<Restriction> usageRestrictions = mAudioRestrictions.get(code);
1880 if (usageRestrictions == null) {
1881 usageRestrictions = new SparseArray<Restriction>();
1882 mAudioRestrictions.put(code, usageRestrictions);
John Spurlock1af30c72014-03-10 08:33:35 -04001883 }
John Spurlock7b414672014-07-18 13:02:39 -04001884 usageRestrictions.remove(usage);
John Spurlock1af30c72014-03-10 08:33:35 -04001885 if (mode != AppOpsManager.MODE_ALLOWED) {
1886 final Restriction r = new Restriction();
1887 r.mode = mode;
1888 if (exceptionPackages != null) {
1889 final int N = exceptionPackages.length;
1890 r.exceptionPackages = new ArraySet<String>(N);
1891 for (int i = 0; i < N; i++) {
1892 final String pkg = exceptionPackages[i];
1893 if (pkg != null) {
1894 r.exceptionPackages.add(pkg.trim());
1895 }
1896 }
1897 }
John Spurlock7b414672014-07-18 13:02:39 -04001898 usageRestrictions.put(usage, r);
John Spurlock1af30c72014-03-10 08:33:35 -04001899 }
1900 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001901
1902 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07001903 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
John Spurlock1af30c72014-03-10 08:33:35 -04001904 }
1905
1906 @Override
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001907 public int checkPackage(int uid, String packageName) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001908 Preconditions.checkNotNull(packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001909 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07001910 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
1911 true /* uidMismatchExpected */);
1912 if (ops != null) {
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001913 return AppOpsManager.MODE_ALLOWED;
1914 } else {
1915 return AppOpsManager.MODE_ERRORED;
1916 }
1917 }
1918 }
1919
1920 @Override
Svet Ganovd873ae62018-06-25 16:39:23 -07001921 public int noteProxyOperation(int code, int proxyUid,
1922 String proxyPackageName, int proxiedUid, String proxiedPackageName) {
1923 verifyIncomingUid(proxyUid);
Svet Ganov99b60432015-06-27 13:15:22 -07001924 verifyIncomingOp(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08001925
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001926 String resolveProxyPackageName = resolvePackageName(proxyUid, proxyPackageName);
1927 if (resolveProxyPackageName == null) {
1928 return AppOpsManager.MODE_IGNORED;
1929 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001930
1931 final boolean isProxyTrusted = mContext.checkPermission(
1932 Manifest.permission.UPDATE_APP_OPS_STATS, -1, proxyUid)
1933 == PackageManager.PERMISSION_GRANTED;
1934
1935 final int proxyFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXY
1936 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXY;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001937 final int proxyMode = noteOperationUnchecked(code, proxyUid,
Svet Ganovaf189e32019-02-15 18:45:29 -08001938 resolveProxyPackageName, Process.INVALID_UID, null, proxyFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001939 if (proxyMode != AppOpsManager.MODE_ALLOWED || Binder.getCallingUid() == proxiedUid) {
1940 return proxyMode;
1941 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001942
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001943 String resolveProxiedPackageName = resolvePackageName(proxiedUid, proxiedPackageName);
1944 if (resolveProxiedPackageName == null) {
1945 return AppOpsManager.MODE_IGNORED;
1946 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001947 final int proxiedFlags = isProxyTrusted ? AppOpsManager.OP_FLAG_TRUSTED_PROXIED
1948 : AppOpsManager.OP_FLAG_UNTRUSTED_PROXIED;
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001949 return noteOperationUnchecked(code, proxiedUid, resolveProxiedPackageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001950 proxyUid, resolveProxyPackageName, proxiedFlags);
Svet Ganov99b60432015-06-27 13:15:22 -07001951 }
1952
1953 @Override
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001954 public int noteOperation(int code, int uid, String packageName) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001955 final CheckOpsDelegate delegate;
1956 synchronized (this) {
Svet Ganovd873ae62018-06-25 16:39:23 -07001957 delegate = mCheckOpsDelegate;
1958 }
Todd Kennedy556efba2018-11-15 07:43:55 -08001959 if (delegate == null) {
1960 return noteOperationImpl(code, uid, packageName);
1961 }
Svet Ganovd873ae62018-06-25 16:39:23 -07001962 return delegate.noteOperation(code, uid, packageName,
1963 AppOpsService.this::noteOperationImpl);
1964 }
1965
1966 private int noteOperationImpl(int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001967 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08001968 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00001969 String resolvedPackageName = resolvePackageName(uid, packageName);
1970 if (resolvedPackageName == null) {
1971 return AppOpsManager.MODE_IGNORED;
1972 }
Svet Ganovaf189e32019-02-15 18:45:29 -08001973 return noteOperationUnchecked(code, uid, resolvedPackageName, Process.INVALID_UID, null,
1974 AppOpsManager.OP_FLAG_SELF);
Svet Ganov99b60432015-06-27 13:15:22 -07001975 }
1976
1977 private int noteOperationUnchecked(int code, int uid, String packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08001978 int proxyUid, String proxyPackageName, @OpFlags int flags) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001979 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001980 final Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07001981 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08001982 if (ops == null) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08001983 scheduleOpNotedIfNeededLocked(code, uid, packageName,
1984 AppOpsManager.MODE_IGNORED);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08001985 if (DEBUG) Slog.d(TAG, "noteOperation: no op for code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001986 + " package " + packageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07001987 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001988 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001989 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07001990 if (isOpRestrictedLocked(uid, code, packageName)) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08001991 scheduleOpNotedIfNeededLocked(code, uid, packageName,
1992 AppOpsManager.MODE_IGNORED);
Jason Monk62062992014-05-06 09:55:28 -04001993 return AppOpsManager.MODE_IGNORED;
1994 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07001995 final UidState uidState = ops.uidState;
Svet Ganovaf189e32019-02-15 18:45:29 -08001996 if (op.running) {
1997 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
1998 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001999 Slog.w(TAG, "Noting op not finished: uid " + uid + " pkg " + packageName
Svet Ganovaf189e32019-02-15 18:45:29 -08002000 + " code " + code + " time=" + entry.getLastAccessTime(uidState.state,
2001 uidState.state, flags) + " duration=" + entry.getLastDuration(
2002 uidState.state, uidState.state, flags));
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002003 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002004
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002005 final int switchCode = AppOpsManager.opToSwitch(code);
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002006 // If there is a non-default per UID policy (we set UID op mode only if
2007 // non-default) it takes over, otherwise use the per package policy.
2008 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002009 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganov2af57082015-07-30 08:44:20 -07002010 if (uidMode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002011 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002012 + switchCode + " (" + code + ") uid " + uid + " package "
2013 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002014 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2015 uidState.state, flags);
2016 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2017 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002018 scheduleOpNotedIfNeededLocked(code, uid, packageName, uidMode);
Svet Ganov2af57082015-07-30 08:44:20 -07002019 return uidMode;
2020 }
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002021 } else {
2022 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002023 final int mode = switchOp.evalMode();
2024 if (switchOp.mode != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002025 if (DEBUG) Slog.d(TAG, "noteOperation: reject #" + mode + " for code "
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002026 + switchCode + " (" + code + ") uid " + uid + " package "
2027 + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002028 op.rejected(System.currentTimeMillis(), proxyUid, proxyPackageName,
2029 uidState.state, flags);
2030 mHistoricalRegistry.incrementOpRejected(code, uid, packageName,
2031 uidState.state, flags);
2032 scheduleOpNotedIfNeededLocked(code, uid, packageName, mode);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002033 return mode;
Svetoslav Ganov1984bba2016-04-05 13:39:25 -07002034 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002035 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002036 if (DEBUG) Slog.d(TAG, "noteOperation: allowing code " + code + " uid " + uid
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002037 + " package " + packageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002038 op.accessed(System.currentTimeMillis(), proxyUid, proxyPackageName,
2039 uidState.state, flags);
Svet Ganov8455ba22019-01-02 13:05:56 -08002040 mHistoricalRegistry.incrementOpAccessedCount(op.op, uid, packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002041 uidState.state, flags);
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002042 scheduleOpNotedIfNeededLocked(code, uid, packageName,
2043 AppOpsManager.MODE_ALLOWED);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002044 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002045 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002046 }
2047
2048 @Override
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002049 public void startWatchingActive(int[] ops, IAppOpsActiveCallback callback) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002050 int watchedUid = -1;
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002051 final int callingUid = Binder.getCallingUid();
2052 final int callingPid = Binder.getCallingPid();
Svet Ganovf7b47252018-02-26 11:11:27 -08002053 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2054 != PackageManager.PERMISSION_GRANTED) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002055 watchedUid = callingUid;
Svet Ganovf7b47252018-02-26 11:11:27 -08002056 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002057 if (ops != null) {
2058 Preconditions.checkArrayElementsInRange(ops, 0,
2059 AppOpsManager._NUM_OP - 1, "Invalid op code in: " + Arrays.toString(ops));
2060 }
2061 if (callback == null) {
2062 return;
2063 }
2064 synchronized (this) {
2065 SparseArray<ActiveCallback> callbacks = mActiveWatchers.get(callback.asBinder());
2066 if (callbacks == null) {
2067 callbacks = new SparseArray<>();
2068 mActiveWatchers.put(callback.asBinder(), callbacks);
2069 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002070 final ActiveCallback activeCallback = new ActiveCallback(callback, watchedUid,
2071 callingUid, callingPid);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002072 for (int op : ops) {
2073 callbacks.put(op, activeCallback);
2074 }
2075 }
2076 }
2077
2078 @Override
2079 public void stopWatchingActive(IAppOpsActiveCallback callback) {
2080 if (callback == null) {
2081 return;
2082 }
2083 synchronized (this) {
2084 final SparseArray<ActiveCallback> activeCallbacks =
2085 mActiveWatchers.remove(callback.asBinder());
2086 if (activeCallbacks == null) {
2087 return;
2088 }
2089 final int callbackCount = activeCallbacks.size();
2090 for (int i = 0; i < callbackCount; i++) {
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002091 activeCallbacks.valueAt(i).destroy();
2092 }
2093 }
2094 }
2095
2096 @Override
2097 public void startWatchingNoted(@NonNull int[] ops, @NonNull IAppOpsNotedCallback callback) {
2098 int watchedUid = Process.INVALID_UID;
2099 final int callingUid = Binder.getCallingUid();
2100 final int callingPid = Binder.getCallingPid();
2101 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
2102 != PackageManager.PERMISSION_GRANTED) {
2103 watchedUid = callingUid;
2104 }
2105 Preconditions.checkArgument(!ArrayUtils.isEmpty(ops), "Ops cannot be null or empty");
2106 Preconditions.checkArrayElementsInRange(ops, 0, AppOpsManager._NUM_OP - 1,
2107 "Invalid op code in: " + Arrays.toString(ops));
2108 Preconditions.checkNotNull(callback, "Callback cannot be null");
2109 synchronized (this) {
2110 SparseArray<NotedCallback> callbacks = mNotedWatchers.get(callback.asBinder());
2111 if (callbacks == null) {
2112 callbacks = new SparseArray<>();
2113 mNotedWatchers.put(callback.asBinder(), callbacks);
2114 }
2115 final NotedCallback notedCallback = new NotedCallback(callback, watchedUid,
2116 callingUid, callingPid);
2117 for (int op : ops) {
2118 callbacks.put(op, notedCallback);
2119 }
2120 }
2121 }
2122
2123 @Override
2124 public void stopWatchingNoted(IAppOpsNotedCallback callback) {
2125 Preconditions.checkNotNull(callback, "Callback cannot be null");
2126 synchronized (this) {
2127 final SparseArray<NotedCallback> notedCallbacks =
2128 mNotedWatchers.remove(callback.asBinder());
2129 if (notedCallbacks == null) {
2130 return;
2131 }
2132 final int callbackCount = notedCallbacks.size();
2133 for (int i = 0; i < callbackCount; i++) {
2134 notedCallbacks.valueAt(i).destroy();
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002135 }
2136 }
2137 }
2138
2139 @Override
Svet Ganovf7b47252018-02-26 11:11:27 -08002140 public int startOperation(IBinder token, int code, int uid, String packageName,
2141 boolean startIfModeDefault) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002142 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002143 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002144 String resolvedPackageName = resolvePackageName(uid, packageName);
2145 if (resolvedPackageName == null) {
2146 return AppOpsManager.MODE_IGNORED;
2147 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002148 ClientState client = (ClientState)token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002149 synchronized (this) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002150 final Ops ops = getOpsRawLocked(uid, resolvedPackageName, true /* edit */,
Yohei Yukawaa965d652017-10-12 15:02:26 -07002151 false /* uidMismatchExpected */);
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002152 if (ops == null) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002153 if (DEBUG) Slog.d(TAG, "startOperation: no op for code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002154 + " package " + resolvedPackageName);
Jeff Sharkey911d7f42013-09-05 18:11:45 -07002155 return AppOpsManager.MODE_ERRORED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002156 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002157 final Op op = getOpLocked(ops, code, true);
Svet Ganov442ed572016-08-17 17:29:43 -07002158 if (isOpRestrictedLocked(uid, code, resolvedPackageName)) {
Jason Monk62062992014-05-06 09:55:28 -04002159 return AppOpsManager.MODE_IGNORED;
2160 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002161 final int switchCode = AppOpsManager.opToSwitch(code);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002162 final UidState uidState = ops.uidState;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002163 // If there is a non-default per UID policy (we set UID op mode only if
2164 // non-default) it takes over, otherwise use the per package policy.
Svet Ganovaf189e32019-02-15 18:45:29 -08002165 final int opCode = op.op;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002166 if (uidState.opModes != null && uidState.opModes.indexOfKey(switchCode) >= 0) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002167 final int uidMode = uidState.evalMode(code, uidState.opModes.get(switchCode));
Svet Ganovf7b47252018-02-26 11:11:27 -08002168 if (uidMode != AppOpsManager.MODE_ALLOWED
2169 && (!startIfModeDefault || uidMode != AppOpsManager.MODE_DEFAULT)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002170 if (DEBUG) Slog.d(TAG, "noteOperation: uid reject #" + uidMode + " for code "
Svet Ganov2af57082015-07-30 08:44:20 -07002171 + switchCode + " (" + code + ") uid " + uid + " package "
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002172 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002173 // We don't support proxy long running ops (start/stop)
2174 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2175 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2176 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2177 uidState.state, AppOpsManager.OP_FLAG_SELF);
Svet Ganov2af57082015-07-30 08:44:20 -07002178 return uidMode;
2179 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002180 } else {
2181 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
Svet Ganovaf189e32019-02-15 18:45:29 -08002182 final int mode = switchOp.evalMode();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002183 if (mode != AppOpsManager.MODE_ALLOWED
2184 && (!startIfModeDefault || mode != AppOpsManager.MODE_DEFAULT)) {
2185 if (DEBUG) Slog.d(TAG, "startOperation: reject #" + mode + " for code "
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002186 + switchCode + " (" + code + ") uid " + uid + " package "
2187 + resolvedPackageName);
Svet Ganovaf189e32019-02-15 18:45:29 -08002188 // We don't support proxy long running ops (start/stop)
2189 op.rejected(System.currentTimeMillis(), -1 /*proxyUid*/,
2190 null /*proxyPackage*/, uidState.state, AppOpsManager.OP_FLAG_SELF);
2191 mHistoricalRegistry.incrementOpRejected(opCode, uid, packageName,
2192 uidState.state, AppOpsManager.OP_FLAG_SELF);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002193 return mode;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002194 }
Svet Ganov2af57082015-07-30 08:44:20 -07002195 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002196 if (DEBUG) Slog.d(TAG, "startOperation: allowing code " + code + " uid " + uid
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002197 + " package " + resolvedPackageName);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002198 if (op.startNesting == 0) {
2199 op.startRealtime = SystemClock.elapsedRealtime();
Svet Ganovaf189e32019-02-15 18:45:29 -08002200 // We don't support proxy long running ops (start/stop)
2201 op.started(System.currentTimeMillis(), uidState.state,
2202 AppOpsManager.OP_FLAG_SELF);
2203 mHistoricalRegistry.incrementOpAccessedCount(opCode, uid, packageName,
2204 uidState.state, AppOpsManager.OP_FLAG_SELF);
2205
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002206 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, true);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002207 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002208 op.startNesting++;
2209 uidState.startNesting++;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002210 if (client.mStartedOps != null) {
2211 client.mStartedOps.add(op);
2212 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002213 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002214
2215 return AppOpsManager.MODE_ALLOWED;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002216 }
2217
2218 @Override
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002219 public void finishOperation(IBinder token, int code, int uid, String packageName) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002220 verifyIncomingUid(uid);
Dianne Hackborn961321f2013-02-05 17:22:41 -08002221 verifyIncomingOp(code);
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002222 String resolvedPackageName = resolvePackageName(uid, packageName);
2223 if (resolvedPackageName == null) {
2224 return;
2225 }
2226 if (!(token instanceof ClientState)) {
2227 return;
2228 }
2229 ClientState client = (ClientState) token;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002230 synchronized (this) {
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002231 Op op = getOpLocked(code, uid, resolvedPackageName, true, true, false);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002232 if (op == null) {
2233 return;
2234 }
Svet Ganovf7b47252018-02-26 11:11:27 -08002235 if (!client.mStartedOps.remove(op)) {
Svet Ganovf5d5af12018-03-18 11:51:17 -07002236 // We finish ops when packages get removed to guarantee no dangling
2237 // started ops. However, some part of the system may asynchronously
2238 // finish ops for an already gone package. Hence, finishing an op
2239 // for a non existing package is fine and we don't log as a wtf.
2240 final long identity = Binder.clearCallingIdentity();
2241 try {
2242 if (LocalServices.getService(PackageManagerInternal.class).getPackageUid(
2243 resolvedPackageName, 0, UserHandle.getUserId(uid)) < 0) {
2244 Slog.i(TAG, "Finishing op=" + AppOpsManager.opToName(code)
2245 + " for non-existing package=" + resolvedPackageName
2246 + " in uid=" + uid);
2247 return;
2248 }
2249 } finally {
2250 Binder.restoreCallingIdentity(identity);
2251 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002252 Slog.wtf(TAG, "Operation not started: uid=" + op.uidState.uid + " pkg="
Svet Ganovf5d5af12018-03-18 11:51:17 -07002253 + op.packageName + " op=" + AppOpsManager.opToName(op.op));
Svet Ganov31d83ae2018-03-15 10:45:56 -07002254 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002255 }
Svet Ganova7a0db62018-02-27 20:08:01 -08002256 finishOperationLocked(op, /*finishNested*/ false);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002257 if (op.startNesting <= 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002258 scheduleOpActiveChangedIfNeededLocked(code, uid, packageName, false);
2259 }
2260 }
2261 }
2262
2263 private void scheduleOpActiveChangedIfNeededLocked(int code, int uid, String packageName,
2264 boolean active) {
2265 ArraySet<ActiveCallback> dispatchedCallbacks = null;
2266 final int callbackListCount = mActiveWatchers.size();
2267 for (int i = 0; i < callbackListCount; i++) {
2268 final SparseArray<ActiveCallback> callbacks = mActiveWatchers.valueAt(i);
2269 ActiveCallback callback = callbacks.get(code);
2270 if (callback != null) {
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07002271 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
Svet Ganovf7b47252018-02-26 11:11:27 -08002272 continue;
2273 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08002274 if (dispatchedCallbacks == null) {
2275 dispatchedCallbacks = new ArraySet<>();
2276 }
2277 dispatchedCallbacks.add(callback);
2278 }
2279 }
2280 if (dispatchedCallbacks == null) {
2281 return;
2282 }
2283 mHandler.sendMessage(PooledLambda.obtainMessage(
2284 AppOpsService::notifyOpActiveChanged,
2285 this, dispatchedCallbacks, code, uid, packageName, active));
2286 }
2287
2288 private void notifyOpActiveChanged(ArraySet<ActiveCallback> callbacks,
2289 int code, int uid, String packageName, boolean active) {
2290 // There are components watching for mode changes such as window manager
2291 // and location manager which are in our process. The callbacks in these
2292 // components may require permissions our remote caller does not have.
2293 final long identity = Binder.clearCallingIdentity();
2294 try {
2295 final int callbackCount = callbacks.size();
2296 for (int i = 0; i < callbackCount; i++) {
2297 final ActiveCallback callback = callbacks.valueAt(i);
2298 try {
2299 callback.mCallback.opActiveChanged(code, uid, packageName, active);
2300 } catch (RemoteException e) {
2301 /* do nothing */
2302 }
2303 }
2304 } finally {
2305 Binder.restoreCallingIdentity(identity);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002306 }
2307 }
2308
Svet Ganovb3d2ae22018-12-17 22:06:15 -08002309 private void scheduleOpNotedIfNeededLocked(int code, int uid, String packageName,
2310 int result) {
2311 ArraySet<NotedCallback> dispatchedCallbacks = null;
2312 final int callbackListCount = mNotedWatchers.size();
2313 for (int i = 0; i < callbackListCount; i++) {
2314 final SparseArray<NotedCallback> callbacks = mNotedWatchers.valueAt(i);
2315 final NotedCallback callback = callbacks.get(code);
2316 if (callback != null) {
2317 if (callback.mWatchingUid >= 0 && callback.mWatchingUid != uid) {
2318 continue;
2319 }
2320 if (dispatchedCallbacks == null) {
2321 dispatchedCallbacks = new ArraySet<>();
2322 }
2323 dispatchedCallbacks.add(callback);
2324 }
2325 }
2326 if (dispatchedCallbacks == null) {
2327 return;
2328 }
2329 mHandler.sendMessage(PooledLambda.obtainMessage(
2330 AppOpsService::notifyOpChecked,
2331 this, dispatchedCallbacks, code, uid, packageName, result));
2332 }
2333
2334 private void notifyOpChecked(ArraySet<NotedCallback> callbacks,
2335 int code, int uid, String packageName, int result) {
2336 // There are components watching for checks in our process. The callbacks in
2337 // these components may require permissions our remote caller does not have.
2338 final long identity = Binder.clearCallingIdentity();
2339 try {
2340 final int callbackCount = callbacks.size();
2341 for (int i = 0; i < callbackCount; i++) {
2342 final NotedCallback callback = callbacks.valueAt(i);
2343 try {
2344 callback.mCallback.opNoted(code, uid, packageName, result);
2345 } catch (RemoteException e) {
2346 /* do nothing */
2347 }
2348 }
2349 } finally {
2350 Binder.restoreCallingIdentity(identity);
2351 }
2352 }
2353
Svet Ganovb9d71a62015-04-30 10:38:13 -07002354 @Override
2355 public int permissionToOpCode(String permission) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00002356 if (permission == null) {
2357 return AppOpsManager.OP_NONE;
2358 }
Svet Ganovb9d71a62015-04-30 10:38:13 -07002359 return AppOpsManager.permissionToOpCode(permission);
2360 }
2361
Svet Ganova7a0db62018-02-27 20:08:01 -08002362 void finishOperationLocked(Op op, boolean finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002363 final int opCode = op.op;
2364 final int uid = op.uidState.uid;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002365 if (op.startNesting <= 1 || finishNested) {
2366 if (op.startNesting == 1 || finishNested) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002367 // We don't support proxy long running ops (start/stop)
2368 final long duration = SystemClock.elapsedRealtime() - op.startRealtime;
2369 op.finished(System.currentTimeMillis(), duration, op.uidState.state,
2370 AppOpsManager.OP_FLAG_SELF);
2371 mHistoricalRegistry.increaseOpAccessDuration(opCode, uid, op.packageName,
2372 op.uidState.state, AppOpsManager.OP_FLAG_SELF, duration);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002373 } else {
Svet Ganovaf189e32019-02-15 18:45:29 -08002374 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
2375 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
2376 Slog.w(TAG, "Finishing op nesting under-run: uid " + uid + " pkg "
2377 + op.packageName + " code " + opCode + " time="
2378 + entry.getLastAccessTime(OP_FLAGS_ALL)
2379 + " duration=" + entry.getLastDuration(MAX_PRIORITY_UID_STATE,
2380 MIN_PRIORITY_UID_STATE, OP_FLAGS_ALL) + " nesting=" + op.startNesting);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002381 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002382 if (op.startNesting >= 1) {
2383 op.uidState.startNesting -= op.startNesting;
2384 }
2385 op.startNesting = 0;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07002386 } else {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002387 op.startNesting--;
2388 op.uidState.startNesting--;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002389 }
2390 }
2391
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002392 private void verifyIncomingUid(int uid) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002393 if (uid == Binder.getCallingUid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002394 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002395 }
2396 if (Binder.getCallingPid() == Process.myPid()) {
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002397 return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002398 }
2399 mContext.enforcePermission(android.Manifest.permission.UPDATE_APP_OPS_STATS,
2400 Binder.getCallingPid(), Binder.getCallingUid(), null);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002401 }
2402
Dianne Hackborn961321f2013-02-05 17:22:41 -08002403 private void verifyIncomingOp(int op) {
2404 if (op >= 0 && op < AppOpsManager._NUM_OP) {
2405 return;
2406 }
2407 throw new IllegalArgumentException("Bad operation #" + op);
2408 }
2409
Philip P. Moltmann724150d2019-03-11 17:01:05 -07002410 private @Nullable UidState getUidStateLocked(int uid, boolean edit) {
Svet Ganov2af57082015-07-30 08:44:20 -07002411 UidState uidState = mUidStates.get(uid);
2412 if (uidState == null) {
2413 if (!edit) {
2414 return null;
2415 }
2416 uidState = new UidState(uid);
2417 mUidStates.put(uid, uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002418 } else {
2419 if (uidState.pendingStateCommitTime != 0) {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002420 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002421 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002422 } else {
Dianne Hackborn9fb93502018-06-18 12:29:44 -07002423 mLastRealtime = SystemClock.elapsedRealtime();
2424 if (uidState.pendingStateCommitTime < mLastRealtime) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002425 commitUidPendingStateLocked(uidState);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002426 }
2427 }
2428 }
Svet Ganov2af57082015-07-30 08:44:20 -07002429 }
2430 return uidState;
2431 }
2432
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002433 private void commitUidPendingStateLocked(UidState uidState) {
Wei Wange1f864e2019-03-28 18:12:18 -07002434 if (uidState.hasForegroundWatchers) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002435 for (int fgi = uidState.foregroundOps.size() - 1; fgi >= 0; fgi--) {
2436 if (!uidState.foregroundOps.valueAt(fgi)) {
2437 continue;
2438 }
2439 final int code = uidState.foregroundOps.keyAt(fgi);
Svet Ganovaf189e32019-02-15 18:45:29 -08002440 // For location ops we consider fg state only if the fg service
2441 // is of location type, for all other ops any fg service will do.
Wei Wang711eb662019-03-21 18:24:17 -07002442 final long firstUnrestrictedUidState = resolveFirstUnrestrictedUidState(code);
2443 final boolean resolvedLastFg = uidState.state <= firstUnrestrictedUidState;
2444 final boolean resolvedNowFg = uidState.pendingState <= firstUnrestrictedUidState;
2445 if (resolvedLastFg == resolvedNowFg) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002446 continue;
2447 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002448 final ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
2449 if (callbacks != null) {
2450 for (int cbi = callbacks.size() - 1; cbi >= 0; cbi--) {
2451 final ModeCallback callback = callbacks.valueAt(cbi);
2452 if ((callback.mFlags & AppOpsManager.WATCH_FOREGROUND_CHANGES) == 0
2453 || !callback.isWatchingUid(uidState.uid)) {
2454 continue;
2455 }
2456 boolean doAllPackages = uidState.opModes != null
Hai Zhang2b98fb32018-09-21 15:18:46 -07002457 && uidState.opModes.indexOfKey(code) >= 0
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002458 && uidState.opModes.get(code) == AppOpsManager.MODE_FOREGROUND;
2459 if (uidState.pkgOps != null) {
2460 for (int pkgi = uidState.pkgOps.size() - 1; pkgi >= 0; pkgi--) {
2461 final Op op = uidState.pkgOps.valueAt(pkgi).get(code);
Svet Ganovaf189e32019-02-15 18:45:29 -08002462 if (op == null) {
2463 continue;
2464 }
2465 if (doAllPackages || op.mode == AppOpsManager.MODE_FOREGROUND) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002466 mHandler.sendMessage(PooledLambda.obtainMessage(
2467 AppOpsService::notifyOpChanged,
2468 this, callback, code, uidState.uid,
2469 uidState.pkgOps.keyAt(pkgi)));
2470 }
2471 }
2472 }
2473 }
2474 }
2475 }
2476 }
Wei Wang711eb662019-03-21 18:24:17 -07002477 uidState.state = uidState.pendingState;
2478 uidState.pendingStateCommitTime = 0;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002479 }
2480
Yohei Yukawaa965d652017-10-12 15:02:26 -07002481 private Ops getOpsRawLocked(int uid, String packageName, boolean edit,
2482 boolean uidMismatchExpected) {
Svet Ganov2af57082015-07-30 08:44:20 -07002483 UidState uidState = getUidStateLocked(uid, edit);
2484 if (uidState == null) {
2485 return null;
2486 }
2487
2488 if (uidState.pkgOps == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002489 if (!edit) {
2490 return null;
2491 }
Svet Ganov2af57082015-07-30 08:44:20 -07002492 uidState.pkgOps = new ArrayMap<>();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002493 }
Svet Ganov2af57082015-07-30 08:44:20 -07002494
2495 Ops ops = uidState.pkgOps.get(packageName);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002496 if (ops == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002497 if (!edit) {
2498 return null;
2499 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002500 boolean isPrivileged = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002501 // This is the first time we have seen this package name under this uid,
2502 // so let's make sure it is valid.
Dianne Hackborn514074f2013-02-11 10:52:46 -08002503 if (uid != 0) {
2504 final long ident = Binder.clearCallingIdentity();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002505 try {
Dianne Hackborn514074f2013-02-11 10:52:46 -08002506 int pkgUid = -1;
2507 try {
Jason Monk1c7c3192014-06-26 12:52:18 -04002508 ApplicationInfo appInfo = ActivityThread.getPackageManager()
Jeff Sharkeycd654482016-01-08 17:42:11 -07002509 .getApplicationInfo(packageName,
Svet Ganovad0a49b2018-10-29 10:07:08 -07002510 PackageManager.MATCH_DIRECT_BOOT_AWARE
Svet Ganov8455ba22019-01-02 13:05:56 -08002511 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
Jeff Sharkeycd654482016-01-08 17:42:11 -07002512 UserHandle.getUserId(uid));
Jason Monk1c7c3192014-06-26 12:52:18 -04002513 if (appInfo != null) {
2514 pkgUid = appInfo.uid;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002515 isPrivileged = (appInfo.privateFlags
2516 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002517 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08002518 pkgUid = resolveUid(packageName);
2519 if (pkgUid >= 0) {
Chien-Yu Chen75cade02016-01-11 10:56:21 -08002520 isPrivileged = false;
Jason Monk1c7c3192014-06-26 12:52:18 -04002521 }
Dianne Hackborn713df152013-05-17 11:27:57 -07002522 }
Jason Monk1c7c3192014-06-26 12:52:18 -04002523 } catch (RemoteException e) {
2524 Slog.w(TAG, "Could not contact PackageManager", e);
Dianne Hackborn514074f2013-02-11 10:52:46 -08002525 }
2526 if (pkgUid != uid) {
2527 // Oops! The package name is not valid for the uid they are calling
2528 // under. Abort.
Yohei Yukawaa965d652017-10-12 15:02:26 -07002529 if (!uidMismatchExpected) {
2530 RuntimeException ex = new RuntimeException("here");
2531 ex.fillInStackTrace();
2532 Slog.w(TAG, "Bad call: specified package " + packageName
2533 + " under uid " + uid + " but it is really " + pkgUid, ex);
2534 }
Dianne Hackborn514074f2013-02-11 10:52:46 -08002535 return null;
2536 }
2537 } finally {
2538 Binder.restoreCallingIdentity(ident);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002539 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002540 }
Svet Ganov2af57082015-07-30 08:44:20 -07002541 ops = new Ops(packageName, uidState, isPrivileged);
2542 uidState.pkgOps.put(packageName, ops);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002543 }
Dianne Hackborn72e39832013-01-18 18:36:09 -08002544 return ops;
2545 }
2546
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002547 /**
2548 * Get the state of all ops for a package, <b>don't verify that package belongs to uid</b>.
2549 *
2550 * <p>Usually callers should use {@link #getOpLocked} and not call this directly.
2551 *
2552 * @param uid The uid the of the package
2553 * @param packageName The package name for which to get the state for
2554 * @param edit Iff {@code true} create the {@link Ops} object if not yet created
2555 * @param isPrivileged Whether the package is privileged or not
2556 *
2557 * @return The {@link Ops state} of all ops for the package
2558 */
2559 private @Nullable Ops getOpsRawNoVerifyLocked(int uid, @NonNull String packageName,
2560 boolean edit, boolean isPrivileged) {
2561 UidState uidState = getUidStateLocked(uid, edit);
2562 if (uidState == null) {
2563 return null;
2564 }
2565
2566 if (uidState.pkgOps == null) {
2567 if (!edit) {
2568 return null;
2569 }
2570 uidState.pkgOps = new ArrayMap<>();
2571 }
2572
2573 Ops ops = uidState.pkgOps.get(packageName);
2574 if (ops == null) {
2575 if (!edit) {
2576 return null;
2577 }
2578 ops = new Ops(packageName, uidState, isPrivileged);
2579 uidState.pkgOps.put(packageName, ops);
2580 }
2581 return ops;
2582 }
2583
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002584 private void scheduleWriteLocked() {
2585 if (!mWriteScheduled) {
2586 mWriteScheduled = true;
2587 mHandler.postDelayed(mWriteRunner, WRITE_DELAY);
2588 }
2589 }
2590
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002591 private void scheduleFastWriteLocked() {
2592 if (!mFastWriteScheduled) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002593 mWriteScheduled = true;
Dianne Hackborn7b7c58b2014-12-02 18:32:20 -08002594 mFastWriteScheduled = true;
2595 mHandler.removeCallbacks(mWriteRunner);
2596 mHandler.postDelayed(mWriteRunner, 10*1000);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002597 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002598 }
2599
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07002600 /**
2601 * Get the state of an op for a uid.
2602 *
2603 * @param code The code of the op
2604 * @param uid The uid the of the package
2605 * @param packageName The package name for which to get the state for
2606 * @param edit Iff {@code true} create the {@link Op} object if not yet created
2607 * @param verifyUid Iff {@code true} check that the package belongs to the uid
2608 * @param isPrivileged Whether the package is privileged or not (only used if {@code verifyUid
2609 * == false})
2610 *
2611 * @return The {@link Op state} of the op
2612 */
2613 private @Nullable Op getOpLocked(int code, int uid, @NonNull String packageName, boolean edit,
2614 boolean verifyUid, boolean isPrivileged) {
2615 Ops ops;
2616
2617 if (verifyUid) {
2618 ops = getOpsRawLocked(uid, packageName, edit, false /* uidMismatchExpected */);
2619 } else {
2620 ops = getOpsRawNoVerifyLocked(uid, packageName, edit, isPrivileged);
2621 }
2622
Dianne Hackborn72e39832013-01-18 18:36:09 -08002623 if (ops == null) {
2624 return null;
2625 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08002626 return getOpLocked(ops, code, edit);
2627 }
2628
2629 private Op getOpLocked(Ops ops, int code, boolean edit) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002630 Op op = ops.get(code);
2631 if (op == null) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002632 if (!edit) {
2633 return null;
2634 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002635 op = new Op(ops.uidState, ops.packageName, code);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002636 ops.put(code, op);
2637 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002638 if (edit) {
2639 scheduleWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002640 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002641 return op;
2642 }
2643
Svet Ganov442ed572016-08-17 17:29:43 -07002644 private boolean isOpRestrictedLocked(int uid, int code, String packageName) {
Jason Monk62062992014-05-06 09:55:28 -04002645 int userHandle = UserHandle.getUserId(uid);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002646 final int restrictionSetCount = mOpUserRestrictions.size();
Ruben Brunk29931bc2016-03-11 00:24:26 -08002647
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002648 for (int i = 0; i < restrictionSetCount; i++) {
Ruben Brunk29931bc2016-03-11 00:24:26 -08002649 // For each client, check that the given op is not restricted, or that the given
2650 // package is exempt from the restriction.
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07002651 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002652 if (restrictionState.hasRestriction(code, packageName, userHandle)) {
2653 if (AppOpsManager.opAllowSystemBypassRestriction(code)) {
2654 // If we are the system, bypass user restrictions for certain codes
2655 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07002656 Ops ops = getOpsRawLocked(uid, packageName, true /* edit */,
2657 false /* uidMismatchExpected */);
Suprabh Shuklaffddadb2016-05-20 16:37:26 -07002658 if ((ops != null) && ops.isPrivileged) {
2659 return false;
2660 }
Ruben Brunk32f0fa42016-03-11 19:07:07 -08002661 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08002662 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002663 return true;
Jason Monk1c7c3192014-06-26 12:52:18 -04002664 }
Jason Monk62062992014-05-06 09:55:28 -04002665 }
2666 return false;
2667 }
2668
Dianne Hackborn35654b62013-01-14 17:38:02 -08002669 void readState() {
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002670 int oldVersion = NO_VERSION;
Dianne Hackborn35654b62013-01-14 17:38:02 -08002671 synchronized (mFile) {
2672 synchronized (this) {
2673 FileInputStream stream;
2674 try {
2675 stream = mFile.openRead();
2676 } catch (FileNotFoundException e) {
2677 Slog.i(TAG, "No existing app ops " + mFile.getBaseFile() + "; starting empty");
2678 return;
2679 }
2680 boolean success = false;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002681 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002682 try {
2683 XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002684 parser.setInput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002685 int type;
2686 while ((type = parser.next()) != XmlPullParser.START_TAG
2687 && type != XmlPullParser.END_DOCUMENT) {
2688 ;
2689 }
2690
2691 if (type != XmlPullParser.START_TAG) {
2692 throw new IllegalStateException("no start tag found");
2693 }
2694
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002695 final String versionString = parser.getAttributeValue(null, "v");
2696 if (versionString != null) {
2697 oldVersion = Integer.parseInt(versionString);
2698 }
2699
Dianne Hackborn35654b62013-01-14 17:38:02 -08002700 int outerDepth = parser.getDepth();
2701 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2702 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2703 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2704 continue;
2705 }
2706
2707 String tagName = parser.getName();
2708 if (tagName.equals("pkg")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002709 readPackage(parser);
Svetoslav215b44a2015-08-04 19:03:40 -07002710 } else if (tagName.equals("uid")) {
Svet Ganov2af57082015-07-30 08:44:20 -07002711 readUidOps(parser);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002712 } else {
2713 Slog.w(TAG, "Unknown element under <app-ops>: "
2714 + parser.getName());
2715 XmlUtils.skipCurrentTag(parser);
2716 }
2717 }
2718 success = true;
2719 } catch (IllegalStateException e) {
2720 Slog.w(TAG, "Failed parsing " + e);
2721 } catch (NullPointerException e) {
2722 Slog.w(TAG, "Failed parsing " + e);
2723 } catch (NumberFormatException e) {
2724 Slog.w(TAG, "Failed parsing " + e);
2725 } catch (XmlPullParserException e) {
2726 Slog.w(TAG, "Failed parsing " + e);
2727 } catch (IOException e) {
2728 Slog.w(TAG, "Failed parsing " + e);
2729 } catch (IndexOutOfBoundsException e) {
2730 Slog.w(TAG, "Failed parsing " + e);
2731 } finally {
2732 if (!success) {
Svet Ganov2af57082015-07-30 08:44:20 -07002733 mUidStates.clear();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002734 }
2735 try {
2736 stream.close();
2737 } catch (IOException e) {
2738 }
2739 }
2740 }
2741 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002742 synchronized (this) {
2743 upgradeLocked(oldVersion);
2744 }
2745 }
2746
2747 private void upgradeRunAnyInBackgroundLocked() {
2748 for (int i = 0; i < mUidStates.size(); i++) {
2749 final UidState uidState = mUidStates.valueAt(i);
2750 if (uidState == null) {
2751 continue;
2752 }
2753 if (uidState.opModes != null) {
2754 final int idx = uidState.opModes.indexOfKey(AppOpsManager.OP_RUN_IN_BACKGROUND);
2755 if (idx >= 0) {
2756 uidState.opModes.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND,
Svet Ganovaf189e32019-02-15 18:45:29 -08002757 uidState.opModes.valueAt(idx));
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002758 }
2759 }
2760 if (uidState.pkgOps == null) {
2761 continue;
2762 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002763 boolean changed = false;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002764 for (int j = 0; j < uidState.pkgOps.size(); j++) {
2765 Ops ops = uidState.pkgOps.valueAt(j);
2766 if (ops != null) {
2767 final Op op = ops.get(AppOpsManager.OP_RUN_IN_BACKGROUND);
2768 if (op != null && op.mode != AppOpsManager.opToDefaultMode(op.op)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07002769 final Op copy = new Op(op.uidState, op.packageName,
Svet Ganovaf189e32019-02-15 18:45:29 -08002770 AppOpsManager.OP_RUN_ANY_IN_BACKGROUND);
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002771 copy.mode = op.mode;
2772 ops.put(AppOpsManager.OP_RUN_ANY_IN_BACKGROUND, copy);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002773 changed = true;
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002774 }
2775 }
2776 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002777 if (changed) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07002778 uidState.evalForegroundOps(mOpModeWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002779 }
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002780 }
2781 }
2782
2783 private void upgradeLocked(int oldVersion) {
2784 if (oldVersion >= CURRENT_VERSION) {
2785 return;
2786 }
2787 Slog.d(TAG, "Upgrading app-ops xml from version " + oldVersion + " to " + CURRENT_VERSION);
2788 switch (oldVersion) {
2789 case NO_VERSION:
2790 upgradeRunAnyInBackgroundLocked();
2791 // fall through
2792 case 1:
2793 // for future upgrades
2794 }
2795 scheduleFastWriteLocked();
Dianne Hackborn35654b62013-01-14 17:38:02 -08002796 }
2797
Svet Ganovaf189e32019-02-15 18:45:29 -08002798 private void readUidOps(XmlPullParser parser) throws NumberFormatException,
Svet Ganov2af57082015-07-30 08:44:20 -07002799 XmlPullParserException, IOException {
2800 final int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
2801 int outerDepth = parser.getDepth();
2802 int type;
2803 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2804 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2805 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2806 continue;
2807 }
2808
2809 String tagName = parser.getName();
2810 if (tagName.equals("op")) {
2811 final int code = Integer.parseInt(parser.getAttributeValue(null, "n"));
2812 final int mode = Integer.parseInt(parser.getAttributeValue(null, "m"));
2813 UidState uidState = getUidStateLocked(uid, true);
2814 if (uidState.opModes == null) {
2815 uidState.opModes = new SparseIntArray();
2816 }
2817 uidState.opModes.put(code, mode);
2818 } else {
2819 Slog.w(TAG, "Unknown element under <uid-ops>: "
2820 + parser.getName());
2821 XmlUtils.skipCurrentTag(parser);
2822 }
2823 }
2824 }
2825
Svet Ganovaf189e32019-02-15 18:45:29 -08002826 private void readPackage(XmlPullParser parser)
2827 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002828 String pkgName = parser.getAttributeValue(null, "n");
2829 int outerDepth = parser.getDepth();
2830 int type;
2831 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2832 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2833 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2834 continue;
2835 }
2836
2837 String tagName = parser.getName();
2838 if (tagName.equals("uid")) {
Dave Burke0997c5bd2013-08-02 20:25:02 +00002839 readUid(parser, pkgName);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002840 } else {
2841 Slog.w(TAG, "Unknown element under <pkg>: "
2842 + parser.getName());
2843 XmlUtils.skipCurrentTag(parser);
2844 }
2845 }
2846 }
2847
Svet Ganovaf189e32019-02-15 18:45:29 -08002848 private void readUid(XmlPullParser parser, String pkgName)
2849 throws NumberFormatException, XmlPullParserException, IOException {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002850 int uid = Integer.parseInt(parser.getAttributeValue(null, "n"));
Svet Ganovaf189e32019-02-15 18:45:29 -08002851 final UidState uidState = getUidStateLocked(uid, true);
Jason Monk1c7c3192014-06-26 12:52:18 -04002852 String isPrivilegedString = parser.getAttributeValue(null, "p");
2853 boolean isPrivileged = false;
2854 if (isPrivilegedString == null) {
2855 try {
2856 IPackageManager packageManager = ActivityThread.getPackageManager();
2857 if (packageManager != null) {
2858 ApplicationInfo appInfo = ActivityThread.getPackageManager()
2859 .getApplicationInfo(pkgName, 0, UserHandle.getUserId(uid));
2860 if (appInfo != null) {
Alex Klyubinb9f8a522015-02-03 11:12:59 -08002861 isPrivileged = (appInfo.privateFlags
2862 & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Jason Monk1c7c3192014-06-26 12:52:18 -04002863 }
2864 } else {
2865 // Could not load data, don't add to cache so it will be loaded later.
2866 return;
2867 }
2868 } catch (RemoteException e) {
2869 Slog.w(TAG, "Could not contact PackageManager", e);
2870 }
2871 } else {
2872 isPrivileged = Boolean.parseBoolean(isPrivilegedString);
2873 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002874 int outerDepth = parser.getDepth();
2875 int type;
2876 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2877 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2878 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2879 continue;
2880 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002881 String tagName = parser.getName();
2882 if (tagName.equals("op")) {
Svet Ganovaf189e32019-02-15 18:45:29 -08002883 readOp(parser, uidState, pkgName, isPrivileged);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002884 } else {
2885 Slog.w(TAG, "Unknown element under <pkg>: "
2886 + parser.getName());
2887 XmlUtils.skipCurrentTag(parser);
2888 }
2889 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002890 uidState.evalForegroundOps(mOpModeWatchers);
2891 }
2892
2893 private void readOp(XmlPullParser parser, @NonNull UidState uidState,
2894 @NonNull String pkgName, boolean isPrivileged) throws NumberFormatException,
2895 XmlPullParserException, IOException {
2896 Op op = new Op(uidState, pkgName,
2897 Integer.parseInt(parser.getAttributeValue(null, "n")));
2898
2899 final int mode = XmlUtils.readIntAttribute(parser, "m",
2900 AppOpsManager.opToDefaultMode(op.op));
2901 op.mode = mode;
2902
2903 int outerDepth = parser.getDepth();
2904 int type;
2905 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
2906 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
2907 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2908 continue;
2909 }
2910 String tagName = parser.getName();
2911 if (tagName.equals("st")) {
2912 final long key = XmlUtils.readLongAttribute(parser, "n");
2913
2914 final int flags = AppOpsManager.extractFlagsFromKey(key);
2915 final int state = AppOpsManager.extractUidStateFromKey(key);
2916
2917 final long accessTime = XmlUtils.readLongAttribute(parser, "t", 0);
2918 final long rejectTime = XmlUtils.readLongAttribute(parser, "r", 0);
2919 final long accessDuration = XmlUtils.readLongAttribute(parser, "d", 0);
2920 final String proxyPkg = XmlUtils.readStringAttribute(parser, "pp");
2921 final int proxyUid = XmlUtils.readIntAttribute(parser, "pu", 0);
2922
2923 if (accessTime > 0) {
2924 op.accessed(accessTime, proxyUid, proxyPkg, state, flags);
2925 }
2926 if (rejectTime > 0) {
2927 op.rejected(rejectTime, proxyUid, proxyPkg, state, flags);
2928 }
2929 if (accessDuration > 0) {
2930 op.running(accessTime, accessDuration, state, flags);
2931 }
2932 } else {
2933 Slog.w(TAG, "Unknown element under <op>: "
2934 + parser.getName());
2935 XmlUtils.skipCurrentTag(parser);
2936 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07002937 }
Svet Ganovaf189e32019-02-15 18:45:29 -08002938
2939 if (uidState.pkgOps == null) {
2940 uidState.pkgOps = new ArrayMap<>();
2941 }
2942 Ops ops = uidState.pkgOps.get(pkgName);
2943 if (ops == null) {
2944 ops = new Ops(pkgName, uidState, isPrivileged);
2945 uidState.pkgOps.put(pkgName, ops);
2946 }
2947 ops.put(op.op, op);
Dianne Hackborn35654b62013-01-14 17:38:02 -08002948 }
2949
2950 void writeState() {
2951 synchronized (mFile) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08002952 FileOutputStream stream;
2953 try {
2954 stream = mFile.startWrite();
2955 } catch (IOException e) {
2956 Slog.w(TAG, "Failed to write state: " + e);
2957 return;
2958 }
2959
Dianne Hackborne17b4452018-01-10 13:15:40 -08002960 List<AppOpsManager.PackageOps> allOps = getPackagesForOps(null);
2961
Dianne Hackborn35654b62013-01-14 17:38:02 -08002962 try {
2963 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002964 out.setOutput(stream, StandardCharsets.UTF_8.name());
Dianne Hackborn35654b62013-01-14 17:38:02 -08002965 out.startDocument(null, true);
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07002966 out.startTag(null, "app-ops");
Suprabh Shukla3ac1daa2017-07-14 12:15:27 -07002967 out.attribute(null, "v", String.valueOf(CURRENT_VERSION));
Svet Ganov2af57082015-07-30 08:44:20 -07002968
2969 final int uidStateCount = mUidStates.size();
2970 for (int i = 0; i < uidStateCount; i++) {
2971 UidState uidState = mUidStates.valueAt(i);
2972 if (uidState.opModes != null && uidState.opModes.size() > 0) {
2973 out.startTag(null, "uid");
2974 out.attribute(null, "n", Integer.toString(uidState.uid));
2975 SparseIntArray uidOpModes = uidState.opModes;
2976 final int opCount = uidOpModes.size();
2977 for (int j = 0; j < opCount; j++) {
2978 final int op = uidOpModes.keyAt(j);
2979 final int mode = uidOpModes.valueAt(j);
2980 out.startTag(null, "op");
2981 out.attribute(null, "n", Integer.toString(op));
2982 out.attribute(null, "m", Integer.toString(mode));
2983 out.endTag(null, "op");
2984 }
2985 out.endTag(null, "uid");
2986 }
2987 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08002988
2989 if (allOps != null) {
2990 String lastPkg = null;
2991 for (int i=0; i<allOps.size(); i++) {
2992 AppOpsManager.PackageOps pkg = allOps.get(i);
2993 if (!pkg.getPackageName().equals(lastPkg)) {
2994 if (lastPkg != null) {
2995 out.endTag(null, "pkg");
2996 }
2997 lastPkg = pkg.getPackageName();
2998 out.startTag(null, "pkg");
2999 out.attribute(null, "n", lastPkg);
3000 }
3001 out.startTag(null, "uid");
3002 out.attribute(null, "n", Integer.toString(pkg.getUid()));
Jason Monk1c7c3192014-06-26 12:52:18 -04003003 synchronized (this) {
Yohei Yukawaa965d652017-10-12 15:02:26 -07003004 Ops ops = getOpsRawLocked(pkg.getUid(), pkg.getPackageName(),
3005 false /* edit */, false /* uidMismatchExpected */);
Jason Monk1c7c3192014-06-26 12:52:18 -04003006 // Should always be present as the list of PackageOps is generated
3007 // from Ops.
3008 if (ops != null) {
3009 out.attribute(null, "p", Boolean.toString(ops.isPrivileged));
3010 } else {
3011 out.attribute(null, "p", Boolean.toString(false));
3012 }
3013 }
Dianne Hackborn35654b62013-01-14 17:38:02 -08003014 List<AppOpsManager.OpEntry> ops = pkg.getOps();
3015 for (int j=0; j<ops.size(); j++) {
3016 AppOpsManager.OpEntry op = ops.get(j);
3017 out.startTag(null, "op");
3018 out.attribute(null, "n", Integer.toString(op.getOp()));
David Braunf5d83192013-09-16 13:43:51 -07003019 if (op.getMode() != AppOpsManager.opToDefaultMode(op.getOp())) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003020 out.attribute(null, "m", Integer.toString(op.getMode()));
3021 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003022
3023 final LongSparseArray keys = op.collectKeys();
3024 if (keys == null || keys.size() <= 0) {
Svet Ganov8e5bf962019-03-19 23:59:03 -07003025 out.endTag(null, "op");
Svet Ganovaf189e32019-02-15 18:45:29 -08003026 continue;
3027 }
3028
3029 final int keyCount = keys.size();
3030 for (int k = 0; k < keyCount; k++) {
3031 final long key = keys.keyAt(k);
3032
3033 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3034 final int flags = AppOpsManager.extractFlagsFromKey(key);
3035
3036 final long accessTime = op.getLastAccessTime(
3037 uidState, uidState, flags);
3038 final long rejectTime = op.getLastRejectTime(
3039 uidState, uidState, flags);
3040 final long accessDuration = op.getLastDuration(
3041 uidState, uidState, flags);
3042 final String proxyPkg = op.getProxyPackageName(uidState, flags);
3043 final int proxyUid = op.getProxyUid(uidState, flags);
3044
3045 if (accessTime <= 0 && rejectTime <= 0 && accessDuration <= 0
3046 && proxyPkg == null && proxyUid < 0) {
3047 continue;
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003048 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003049
3050 out.startTag(null, "st");
3051 out.attribute(null, "n", Long.toString(key));
3052 if (accessTime > 0) {
3053 out.attribute(null, "t", Long.toString(accessTime));
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003054 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003055 if (rejectTime > 0) {
3056 out.attribute(null, "r", Long.toString(rejectTime));
3057 }
3058 if (accessDuration > 0) {
3059 out.attribute(null, "d", Long.toString(accessDuration));
3060 }
3061 if (proxyPkg != null) {
3062 out.attribute(null, "pp", proxyPkg);
3063 }
3064 if (proxyUid >= 0) {
3065 out.attribute(null, "pu", Integer.toString(proxyUid));
3066 }
3067 out.endTag(null, "st");
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003068 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003069
Dianne Hackborn35654b62013-01-14 17:38:02 -08003070 out.endTag(null, "op");
3071 }
3072 out.endTag(null, "uid");
3073 }
3074 if (lastPkg != null) {
3075 out.endTag(null, "pkg");
3076 }
3077 }
3078
3079 out.endTag(null, "app-ops");
3080 out.endDocument();
3081 mFile.finishWrite(stream);
3082 } catch (IOException e) {
3083 Slog.w(TAG, "Failed to write state, restoring backup.", e);
3084 mFile.failWrite(stream);
3085 }
3086 }
3087 }
3088
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003089 static class Shell extends ShellCommand {
3090 final IAppOpsService mInterface;
3091 final AppOpsService mInternal;
3092
3093 int userId = UserHandle.USER_SYSTEM;
3094 String packageName;
3095 String opStr;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003096 String modeStr;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003097 int op;
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003098 int mode;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003099 int packageUid;
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003100 int nonpackageUid;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003101 final static Binder sBinder = new Binder();
3102 IBinder mToken;
Svet Ganovd563e932019-04-14 13:07:41 -07003103 boolean targetsUid;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003104
3105 Shell(IAppOpsService iface, AppOpsService internal) {
3106 mInterface = iface;
3107 mInternal = internal;
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003108 try {
3109 mToken = mInterface.getToken(sBinder);
3110 } catch (RemoteException e) {
3111 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003112 }
3113
3114 @Override
3115 public int onCommand(String cmd) {
3116 return onShellCommand(this, cmd);
3117 }
3118
3119 @Override
3120 public void onHelp() {
3121 PrintWriter pw = getOutPrintWriter();
3122 dumpCommandHelp(pw);
3123 }
3124
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003125 static private int strOpToOp(String op, PrintWriter err) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003126 try {
3127 return AppOpsManager.strOpToOp(op);
3128 } catch (IllegalArgumentException e) {
3129 }
3130 try {
3131 return Integer.parseInt(op);
3132 } catch (NumberFormatException e) {
3133 }
3134 try {
3135 return AppOpsManager.strDebugOpToOp(op);
3136 } catch (IllegalArgumentException e) {
3137 err.println("Error: " + e.getMessage());
3138 return -1;
3139 }
3140 }
3141
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003142 static int strModeToMode(String modeStr, PrintWriter err) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003143 for (int i = AppOpsManager.MODE_NAMES.length - 1; i >= 0; i--) {
3144 if (AppOpsManager.MODE_NAMES[i].equals(modeStr)) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003145 return i;
3146 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003147 }
3148 try {
3149 return Integer.parseInt(modeStr);
3150 } catch (NumberFormatException e) {
3151 }
3152 err.println("Error: Mode " + modeStr + " is not valid");
3153 return -1;
3154 }
3155
3156 int parseUserOpMode(int defMode, PrintWriter err) throws RemoteException {
3157 userId = UserHandle.USER_CURRENT;
3158 opStr = null;
3159 modeStr = null;
3160 for (String argument; (argument = getNextArg()) != null;) {
3161 if ("--user".equals(argument)) {
3162 userId = UserHandle.parseUserArg(getNextArgRequired());
3163 } else {
3164 if (opStr == null) {
3165 opStr = argument;
3166 } else if (modeStr == null) {
3167 modeStr = argument;
3168 break;
3169 }
3170 }
3171 }
3172 if (opStr == null) {
3173 err.println("Error: Operation not specified.");
3174 return -1;
3175 }
3176 op = strOpToOp(opStr, err);
3177 if (op < 0) {
3178 return -1;
3179 }
3180 if (modeStr != null) {
3181 if ((mode=strModeToMode(modeStr, err)) < 0) {
3182 return -1;
3183 }
3184 } else {
3185 mode = defMode;
3186 }
3187 return 0;
3188 }
3189
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003190 int parseUserPackageOp(boolean reqOp, PrintWriter err) throws RemoteException {
3191 userId = UserHandle.USER_CURRENT;
3192 packageName = null;
3193 opStr = null;
3194 for (String argument; (argument = getNextArg()) != null;) {
3195 if ("--user".equals(argument)) {
3196 userId = UserHandle.parseUserArg(getNextArgRequired());
Svet Ganovd563e932019-04-14 13:07:41 -07003197 } else if ("--uid".equals(argument)) {
3198 targetsUid = true;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003199 } else {
3200 if (packageName == null) {
3201 packageName = argument;
3202 } else if (opStr == null) {
3203 opStr = argument;
3204 break;
3205 }
3206 }
3207 }
3208 if (packageName == null) {
3209 err.println("Error: Package name not specified.");
3210 return -1;
3211 } else if (opStr == null && reqOp) {
3212 err.println("Error: Operation not specified.");
3213 return -1;
3214 }
3215 if (opStr != null) {
3216 op = strOpToOp(opStr, err);
3217 if (op < 0) {
3218 return -1;
3219 }
3220 } else {
3221 op = AppOpsManager.OP_NONE;
3222 }
3223 if (userId == UserHandle.USER_CURRENT) {
3224 userId = ActivityManager.getCurrentUser();
3225 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003226 nonpackageUid = -1;
3227 try {
3228 nonpackageUid = Integer.parseInt(packageName);
3229 } catch (NumberFormatException e) {
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003230 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003231 if (nonpackageUid == -1 && packageName.length() > 1 && packageName.charAt(0) == 'u'
3232 && packageName.indexOf('.') < 0) {
3233 int i = 1;
3234 while (i < packageName.length() && packageName.charAt(i) >= '0'
3235 && packageName.charAt(i) <= '9') {
3236 i++;
3237 }
3238 if (i > 1 && i < packageName.length()) {
3239 String userStr = packageName.substring(1, i);
3240 try {
3241 int user = Integer.parseInt(userStr);
3242 char type = packageName.charAt(i);
3243 i++;
3244 int startTypeVal = i;
3245 while (i < packageName.length() && packageName.charAt(i) >= '0'
3246 && packageName.charAt(i) <= '9') {
3247 i++;
3248 }
3249 if (i > startTypeVal) {
3250 String typeValStr = packageName.substring(startTypeVal, i);
3251 try {
3252 int typeVal = Integer.parseInt(typeValStr);
3253 if (type == 'a') {
3254 nonpackageUid = UserHandle.getUid(user,
3255 typeVal + Process.FIRST_APPLICATION_UID);
3256 } else if (type == 's') {
3257 nonpackageUid = UserHandle.getUid(user, typeVal);
3258 }
3259 } catch (NumberFormatException e) {
3260 }
3261 }
3262 } catch (NumberFormatException e) {
3263 }
3264 }
3265 }
3266 if (nonpackageUid != -1) {
3267 packageName = null;
3268 } else {
Svet Ganov82f09bc2018-01-12 22:08:40 -08003269 packageUid = resolveUid(packageName);
3270 if (packageUid < 0) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003271 packageUid = AppGlobals.getPackageManager().getPackageUid(packageName,
3272 PackageManager.MATCH_UNINSTALLED_PACKAGES, userId);
3273 }
3274 if (packageUid < 0) {
3275 err.println("Error: No UID for " + packageName + " in user " + userId);
3276 return -1;
3277 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003278 }
3279 return 0;
3280 }
3281 }
3282
3283 @Override public void onShellCommand(FileDescriptor in, FileDescriptor out,
Dianne Hackborn354736e2016-08-22 17:00:05 -07003284 FileDescriptor err, String[] args, ShellCallback callback,
3285 ResultReceiver resultReceiver) {
3286 (new Shell(this, this)).exec(this, in, out, err, args, callback, resultReceiver);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003287 }
3288
3289 static void dumpCommandHelp(PrintWriter pw) {
3290 pw.println("AppOps service (appops) commands:");
3291 pw.println(" help");
3292 pw.println(" Print this help text.");
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003293 pw.println(" start [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3294 pw.println(" Starts a given operation for a particular application.");
3295 pw.println(" stop [--user <USER_ID>] <PACKAGE | UID> <OP> ");
3296 pw.println(" Stops a given operation for a particular application.");
Svet Ganovb687fad2019-04-30 17:32:44 -07003297 pw.println(" set [--user <USER_ID>] <[--uid] PACKAGE | UID> <OP> <MODE>");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003298 pw.println(" Set the mode for a particular application and operation.");
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003299 pw.println(" get [--user <USER_ID>] <PACKAGE | UID> [<OP>]");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003300 pw.println(" Return the mode for a particular application and optional operation.");
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003301 pw.println(" query-op [--user <USER_ID>] <OP> [<MODE>]");
3302 pw.println(" Print all packages that currently have the given op in the given mode.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003303 pw.println(" reset [--user <USER_ID>] [<PACKAGE>]");
3304 pw.println(" Reset the given application or all applications to default modes.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003305 pw.println(" write-settings");
3306 pw.println(" Immediately write pending changes to storage.");
3307 pw.println(" read-settings");
3308 pw.println(" Read the last written settings, replacing current state in RAM.");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003309 pw.println(" options:");
Svet Ganovb687fad2019-04-30 17:32:44 -07003310 pw.println(" <PACKAGE> an Android package name or its UID if prefixed by --uid");
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003311 pw.println(" <OP> an AppOps operation.");
3312 pw.println(" <MODE> one of allow, ignore, deny, or default");
3313 pw.println(" <USER_ID> the user id under which the package is installed. If --user is not");
3314 pw.println(" specified, the current user is assumed.");
3315 }
3316
3317 static int onShellCommand(Shell shell, String cmd) {
3318 if (cmd == null) {
3319 return shell.handleDefaultCommands(cmd);
3320 }
3321 PrintWriter pw = shell.getOutPrintWriter();
3322 PrintWriter err = shell.getErrPrintWriter();
3323 try {
3324 switch (cmd) {
3325 case "set": {
3326 int res = shell.parseUserPackageOp(true, err);
3327 if (res < 0) {
3328 return res;
3329 }
3330 String modeStr = shell.getNextArg();
3331 if (modeStr == null) {
3332 err.println("Error: Mode not specified.");
3333 return -1;
3334 }
3335
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003336 final int mode = shell.strModeToMode(modeStr, err);
3337 if (mode < 0) {
3338 return -1;
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003339 }
3340
Svet Ganovd563e932019-04-14 13:07:41 -07003341 if (!shell.targetsUid && shell.packageName != null) {
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003342 shell.mInterface.setMode(shell.op, shell.packageUid, shell.packageName,
3343 mode);
Svet Ganovd563e932019-04-14 13:07:41 -07003344 } else if (shell.targetsUid && shell.packageName != null) {
3345 try {
3346 final int uid = shell.mInternal.mContext.getPackageManager()
3347 .getPackageUid(shell.packageName, shell.userId);
3348 shell.mInterface.setUidMode(shell.op, uid, mode);
3349 } catch (PackageManager.NameNotFoundException e) {
3350 return -1;
3351 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003352 } else {
3353 shell.mInterface.setUidMode(shell.op, shell.nonpackageUid, mode);
3354 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003355 return 0;
3356 }
3357 case "get": {
3358 int res = shell.parseUserPackageOp(false, err);
3359 if (res < 0) {
3360 return res;
3361 }
3362
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003363 List<AppOpsManager.PackageOps> ops = new ArrayList<>();
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003364 if (shell.packageName != null) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003365 // Uid mode overrides package mode, so make sure it's also reported
3366 List<AppOpsManager.PackageOps> r = shell.mInterface.getUidOps(
3367 shell.packageUid,
3368 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3369 if (r != null) {
3370 ops.addAll(r);
3371 }
3372 r = shell.mInterface.getOpsForPackage(
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003373 shell.packageUid, shell.packageName,
3374 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003375 if (r != null) {
3376 ops.addAll(r);
3377 }
Dianne Hackbornc7214a32017-04-11 13:32:47 -07003378 } else {
3379 ops = shell.mInterface.getUidOps(
3380 shell.nonpackageUid,
3381 shell.op != AppOpsManager.OP_NONE ? new int[]{shell.op} : null);
3382 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003383 if (ops == null || ops.size() <= 0) {
3384 pw.println("No operations.");
Svet Ganov82f09bc2018-01-12 22:08:40 -08003385 if (shell.op > AppOpsManager.OP_NONE && shell.op < AppOpsManager._NUM_OP) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003386 pw.println("Default mode: " + AppOpsManager.modeToName(
Svet Ganov82f09bc2018-01-12 22:08:40 -08003387 AppOpsManager.opToDefaultMode(shell.op)));
3388 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003389 return 0;
3390 }
3391 final long now = System.currentTimeMillis();
3392 for (int i=0; i<ops.size(); i++) {
Eugene Suslae4ee2c22018-11-05 12:23:30 -08003393 AppOpsManager.PackageOps packageOps = ops.get(i);
3394 if (packageOps.getPackageName() == null) {
3395 pw.print("Uid mode: ");
3396 }
3397 List<AppOpsManager.OpEntry> entries = packageOps.getOps();
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003398 for (int j=0; j<entries.size(); j++) {
3399 AppOpsManager.OpEntry ent = entries.get(j);
3400 pw.print(AppOpsManager.opToName(ent.getOp()));
3401 pw.print(": ");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003402 pw.print(AppOpsManager.modeToName(ent.getMode()));
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003403 if (ent.getTime() != 0) {
3404 pw.print("; time=");
3405 TimeUtils.formatDuration(now - ent.getTime(), pw);
3406 pw.print(" ago");
3407 }
3408 if (ent.getRejectTime() != 0) {
3409 pw.print("; rejectTime=");
3410 TimeUtils.formatDuration(now - ent.getRejectTime(), pw);
3411 pw.print(" ago");
3412 }
3413 if (ent.getDuration() == -1) {
3414 pw.print(" (running)");
3415 } else if (ent.getDuration() != 0) {
3416 pw.print("; duration=");
3417 TimeUtils.formatDuration(ent.getDuration(), pw);
3418 }
3419 pw.println();
3420 }
3421 }
3422 return 0;
3423 }
Dianne Hackborne91f3e72016-03-25 18:48:15 -07003424 case "query-op": {
3425 int res = shell.parseUserOpMode(AppOpsManager.MODE_IGNORED, err);
3426 if (res < 0) {
3427 return res;
3428 }
3429 List<AppOpsManager.PackageOps> ops = shell.mInterface.getPackagesForOps(
3430 new int[] {shell.op});
3431 if (ops == null || ops.size() <= 0) {
3432 pw.println("No operations.");
3433 return 0;
3434 }
3435 for (int i=0; i<ops.size(); i++) {
3436 final AppOpsManager.PackageOps pkg = ops.get(i);
3437 boolean hasMatch = false;
3438 final List<AppOpsManager.OpEntry> entries = ops.get(i).getOps();
3439 for (int j=0; j<entries.size(); j++) {
3440 AppOpsManager.OpEntry ent = entries.get(j);
3441 if (ent.getOp() == shell.op && ent.getMode() == shell.mode) {
3442 hasMatch = true;
3443 break;
3444 }
3445 }
3446 if (hasMatch) {
3447 pw.println(pkg.getPackageName());
3448 }
3449 }
3450 return 0;
3451 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003452 case "reset": {
3453 String packageName = null;
3454 int userId = UserHandle.USER_CURRENT;
3455 for (String argument; (argument = shell.getNextArg()) != null;) {
3456 if ("--user".equals(argument)) {
3457 String userStr = shell.getNextArgRequired();
3458 userId = UserHandle.parseUserArg(userStr);
3459 } else {
3460 if (packageName == null) {
3461 packageName = argument;
3462 } else {
3463 err.println("Error: Unsupported argument: " + argument);
3464 return -1;
3465 }
3466 }
3467 }
3468
3469 if (userId == UserHandle.USER_CURRENT) {
3470 userId = ActivityManager.getCurrentUser();
3471 }
3472
3473 shell.mInterface.resetAllModes(userId, packageName);
3474 pw.print("Reset all modes for: ");
3475 if (userId == UserHandle.USER_ALL) {
3476 pw.print("all users");
3477 } else {
3478 pw.print("user "); pw.print(userId);
3479 }
3480 pw.print(", ");
3481 if (packageName == null) {
3482 pw.println("all packages");
3483 } else {
3484 pw.print("package "); pw.println(packageName);
3485 }
3486 return 0;
3487 }
3488 case "write-settings": {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003489 shell.mInternal.enforceManageAppOpsModes(Binder.getCallingPid(),
3490 Binder.getCallingUid(), -1);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003491 long token = Binder.clearCallingIdentity();
3492 try {
3493 synchronized (shell.mInternal) {
3494 shell.mInternal.mHandler.removeCallbacks(shell.mInternal.mWriteRunner);
3495 }
3496 shell.mInternal.writeState();
3497 pw.println("Current settings written.");
3498 } finally {
3499 Binder.restoreCallingIdentity(token);
3500 }
3501 return 0;
3502 }
3503 case "read-settings": {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003504 shell.mInternal.enforceManageAppOpsModes(Binder.getCallingPid(),
3505 Binder.getCallingUid(), -1);
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003506 long token = Binder.clearCallingIdentity();
3507 try {
3508 shell.mInternal.readState();
3509 pw.println("Last settings read.");
3510 } finally {
3511 Binder.restoreCallingIdentity(token);
3512 }
3513 return 0;
3514 }
Julia Reynolds6cb5fcc2018-02-27 17:33:52 -05003515 case "start": {
3516 int res = shell.parseUserPackageOp(true, err);
3517 if (res < 0) {
3518 return res;
3519 }
3520
3521 if (shell.packageName != null) {
3522 shell.mInterface.startOperation(shell.mToken,
3523 shell.op, shell.packageUid, shell.packageName, true);
3524 } else {
3525 return -1;
3526 }
3527 return 0;
3528 }
3529 case "stop": {
3530 int res = shell.parseUserPackageOp(true, err);
3531 if (res < 0) {
3532 return res;
3533 }
3534
3535 if (shell.packageName != null) {
3536 shell.mInterface.finishOperation(shell.mToken,
3537 shell.op, shell.packageUid, shell.packageName);
3538 } else {
3539 return -1;
3540 }
3541 return 0;
3542 }
Dianne Hackborn268e4e32015-11-18 16:29:56 -08003543 default:
3544 return shell.handleDefaultCommands(cmd);
3545 }
3546 } catch (RemoteException e) {
3547 pw.println("Remote exception: " + e);
3548 }
3549 return -1;
3550 }
3551
3552 private void dumpHelp(PrintWriter pw) {
3553 pw.println("AppOps service (appops) dump options:");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003554 pw.println(" -h");
3555 pw.println(" Print this help text.");
3556 pw.println(" --op [OP]");
3557 pw.println(" Limit output to data associated with the given app op code.");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003558 pw.println(" --mode [MODE]");
3559 pw.println(" Limit output to data associated with the given app op mode.");
3560 pw.println(" --package [PACKAGE]");
3561 pw.println(" Limit output to data associated with the given package name.");
Dianne Hackborn125dc532019-01-09 13:31:48 -08003562 pw.println(" --watchers");
3563 pw.println(" Only output the watcher sections.");
Svet Ganovaf189e32019-02-15 18:45:29 -08003564 pw.println(" --history");
3565 pw.println(" Output the historical data.");
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003566 }
3567
Svet Ganovaf189e32019-02-15 18:45:29 -08003568 private void dumpStatesLocked(@NonNull PrintWriter pw, @NonNull Op op,
3569 long now, @NonNull SimpleDateFormat sdf, @NonNull Date date, @NonNull String prefix) {
3570
3571 final OpEntry entry = new OpEntry(op.op, op.running, op.mode, op.mAccessTimes,
3572 op.mRejectTimes, op.mDurations, op.mProxyUids, op.mProxyPackageNames);
3573
3574 final LongSparseArray keys = entry.collectKeys();
3575 if (keys == null || keys.size() <= 0) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003576 return;
3577 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003578
3579 final int keyCount = keys.size();
3580 for (int k = 0; k < keyCount; k++) {
3581 final long key = keys.keyAt(k);
3582
3583 final int uidState = AppOpsManager.extractUidStateFromKey(key);
3584 final int flags = AppOpsManager.extractFlagsFromKey(key);
3585
3586 final long accessTime = entry.getLastAccessTime(
3587 uidState, uidState, flags);
3588 final long rejectTime = entry.getLastRejectTime(
3589 uidState, uidState, flags);
3590 final long accessDuration = entry.getLastDuration(
3591 uidState, uidState, flags);
3592 final String proxyPkg = entry.getProxyPackageName(uidState, flags);
3593 final int proxyUid = entry.getProxyUid(uidState, flags);
3594
3595 if (accessTime > 0) {
3596 pw.print(prefix);
3597 pw.print("Access: ");
3598 pw.print(AppOpsManager.keyToString(key));
3599 pw.print(" ");
3600 date.setTime(accessTime);
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003601 pw.print(sdf.format(date));
3602 pw.print(" (");
Svet Ganovaf189e32019-02-15 18:45:29 -08003603 TimeUtils.formatDuration(accessTime - now, pw);
3604 pw.print(")");
3605 if (accessDuration > 0) {
3606 pw.print(" duration=");
3607 TimeUtils.formatDuration(accessDuration, pw);
3608 }
3609 if (proxyUid >= 0) {
3610 pw.print(" proxy[");
3611 pw.print("uid=");
3612 pw.print(proxyUid);
3613 pw.print(", pkg=");
3614 pw.print(proxyPkg);
3615 pw.print("]");
3616 }
3617 pw.println();
3618 }
3619
3620 if (rejectTime > 0) {
3621 pw.print(prefix);
3622 pw.print("Reject: ");
3623 pw.print(AppOpsManager.keyToString(key));
3624 date.setTime(rejectTime);
3625 pw.print(sdf.format(date));
3626 pw.print(" (");
3627 TimeUtils.formatDuration(rejectTime - now, pw);
3628 pw.print(")");
3629 if (proxyUid >= 0) {
3630 pw.print(" proxy[");
3631 pw.print("uid=");
3632 pw.print(proxyUid);
3633 pw.print(", pkg=");
3634 pw.print(proxyPkg);
3635 pw.print("]");
3636 }
3637 pw.println();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003638 }
3639 }
3640 }
3641
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003642 @Override
3643 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkey6df866a2017-03-31 14:08:23 -06003644 if (!DumpUtils.checkDumpAndUsageStatsPermission(mContext, TAG, pw)) return;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003645
Svet Ganov8455ba22019-01-02 13:05:56 -08003646 int dumpOp = OP_NONE;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003647 String dumpPackage = null;
Svet Ganov8455ba22019-01-02 13:05:56 -08003648 int dumpUid = Process.INVALID_UID;
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003649 int dumpMode = -1;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003650 boolean dumpWatchers = false;
Svet Ganovaf189e32019-02-15 18:45:29 -08003651 boolean dumpHistory = false;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003652
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003653 if (args != null) {
3654 for (int i=0; i<args.length; i++) {
3655 String arg = args[i];
3656 if ("-h".equals(arg)) {
3657 dumpHelp(pw);
3658 return;
Tim Kilbourn8f1ea832015-08-26 15:07:37 -07003659 } else if ("-a".equals(arg)) {
3660 // dump all data
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003661 } else if ("--op".equals(arg)) {
3662 i++;
3663 if (i >= args.length) {
3664 pw.println("No argument for --op option");
3665 return;
3666 }
3667 dumpOp = Shell.strOpToOp(args[i], pw);
3668 if (dumpOp < 0) {
3669 return;
3670 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003671 } else if ("--package".equals(arg)) {
3672 i++;
3673 if (i >= args.length) {
3674 pw.println("No argument for --package option");
3675 return;
3676 }
3677 dumpPackage = args[i];
3678 try {
3679 dumpUid = AppGlobals.getPackageManager().getPackageUid(dumpPackage,
3680 PackageManager.MATCH_KNOWN_PACKAGES | PackageManager.MATCH_INSTANT,
3681 0);
3682 } catch (RemoteException e) {
3683 }
3684 if (dumpUid < 0) {
3685 pw.println("Unknown package: " + dumpPackage);
3686 return;
3687 }
3688 dumpUid = UserHandle.getAppId(dumpUid);
3689 } else if ("--mode".equals(arg)) {
3690 i++;
3691 if (i >= args.length) {
3692 pw.println("No argument for --mode option");
3693 return;
3694 }
3695 dumpMode = Shell.strModeToMode(args[i], pw);
3696 if (dumpMode < 0) {
3697 return;
3698 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003699 } else if ("--watchers".equals(arg)) {
3700 dumpWatchers = true;
Svet Ganovaf189e32019-02-15 18:45:29 -08003701 } else if ("--history".equals(arg)) {
3702 dumpHistory = true;
Dianne Hackborn4d34bb82015-08-07 18:26:38 -07003703 } else if (arg.length() > 0 && arg.charAt(0) == '-'){
3704 pw.println("Unknown option: " + arg);
3705 return;
3706 } else {
3707 pw.println("Unknown command: " + arg);
3708 return;
3709 }
3710 }
3711 }
3712
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003713 synchronized (this) {
3714 pw.println("Current AppOps Service state:");
Svet Ganovaf189e32019-02-15 18:45:29 -08003715 if (!dumpHistory && !dumpWatchers) {
3716 mConstants.dump(pw);
3717 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003718 pw.println();
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08003719 final long now = System.currentTimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003720 final long nowElapsed = SystemClock.elapsedRealtime();
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003721 final long nowUptime = SystemClock.uptimeMillis();
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07003722 final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
3723 final Date date = new Date();
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003724 boolean needSep = false;
Dianne Hackborn125dc532019-01-09 13:31:48 -08003725 if (dumpOp < 0 && dumpMode < 0 && dumpPackage == null && mProfileOwners != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003726 && !dumpWatchers && !dumpHistory) {
Dianne Hackbornd5254412018-05-11 18:02:58 -07003727 pw.println(" Profile owners:");
3728 for (int poi = 0; poi < mProfileOwners.size(); poi++) {
3729 pw.print(" User #");
3730 pw.print(mProfileOwners.keyAt(poi));
3731 pw.print(": ");
3732 UserHandle.formatUid(pw, mProfileOwners.valueAt(poi));
3733 pw.println();
3734 }
3735 pw.println();
3736 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003737 if (mOpModeWatchers.size() > 0 && !dumpHistory) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003738 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003739 for (int i=0; i<mOpModeWatchers.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003740 if (dumpOp >= 0 && dumpOp != mOpModeWatchers.keyAt(i)) {
3741 continue;
3742 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003743 boolean printedOpHeader = false;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003744 ArraySet<ModeCallback> callbacks = mOpModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003745 for (int j=0; j<callbacks.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003746 final ModeCallback cb = callbacks.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003747 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003748 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3749 continue;
3750 }
3751 needSep = true;
3752 if (!printedHeader) {
3753 pw.println(" Op mode watchers:");
3754 printedHeader = true;
3755 }
3756 if (!printedOpHeader) {
3757 pw.print(" Op ");
3758 pw.print(AppOpsManager.opToName(mOpModeWatchers.keyAt(i)));
3759 pw.println(":");
3760 printedOpHeader = true;
3761 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003762 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003763 pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003764 }
3765 }
3766 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003767 if (mPackageModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003768 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003769 for (int i=0; i<mPackageModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003770 if (dumpPackage != null && !dumpPackage.equals(mPackageModeWatchers.keyAt(i))) {
3771 continue;
3772 }
3773 needSep = true;
3774 if (!printedHeader) {
3775 pw.println(" Package mode watchers:");
3776 printedHeader = true;
3777 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003778 pw.print(" Pkg "); pw.print(mPackageModeWatchers.keyAt(i));
3779 pw.println(":");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003780 ArraySet<ModeCallback> callbacks = mPackageModeWatchers.valueAt(i);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003781 for (int j=0; j<callbacks.size(); j++) {
3782 pw.print(" #"); pw.print(j); pw.print(": ");
Dianne Hackborn68d76552017-02-27 15:32:03 -08003783 pw.println(callbacks.valueAt(j));
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003784 }
3785 }
3786 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003787 if (mModeWatchers.size() > 0 && dumpOp < 0 && !dumpHistory) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003788 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003789 for (int i=0; i<mModeWatchers.size(); i++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003790 final ModeCallback cb = mModeWatchers.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08003791 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003792 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3793 continue;
3794 }
3795 needSep = true;
3796 if (!printedHeader) {
3797 pw.println(" All op mode watchers:");
3798 printedHeader = true;
3799 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003800 pw.print(" ");
3801 pw.print(Integer.toHexString(System.identityHashCode(mModeWatchers.keyAt(i))));
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003802 pw.print(": "); pw.println(cb);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003803 }
3804 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003805 if (mActiveWatchers.size() > 0 && dumpMode < 0) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003806 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003807 boolean printedHeader = false;
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003808 for (int i = 0; i < mActiveWatchers.size(); i++) {
3809 final SparseArray<ActiveCallback> activeWatchers = mActiveWatchers.valueAt(i);
3810 if (activeWatchers.size() <= 0) {
3811 continue;
3812 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003813 final ActiveCallback cb = activeWatchers.valueAt(0);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003814 if (dumpOp >= 0 && activeWatchers.indexOfKey(dumpOp) < 0) {
3815 continue;
3816 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003817 if (dumpPackage != null
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003818 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3819 continue;
3820 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003821 if (!printedHeader) {
3822 pw.println(" All op active watchers:");
3823 printedHeader = true;
3824 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003825 pw.print(" ");
3826 pw.print(Integer.toHexString(System.identityHashCode(
3827 mActiveWatchers.keyAt(i))));
3828 pw.println(" ->");
3829 pw.print(" [");
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003830 final int opCount = activeWatchers.size();
3831 for (i = 0; i < opCount; i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003832 if (i > 0) {
3833 pw.print(' ');
3834 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003835 pw.print(AppOpsManager.opToName(activeWatchers.keyAt(i)));
3836 if (i < opCount - 1) {
3837 pw.print(',');
3838 }
3839 }
Dianne Hackborn3b563fc2018-04-16 17:17:14 -07003840 pw.println("]");
3841 pw.print(" ");
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003842 pw.println(cb);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08003843 }
3844 }
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003845 if (mNotedWatchers.size() > 0 && dumpMode < 0) {
3846 needSep = true;
3847 boolean printedHeader = false;
3848 for (int i = 0; i < mNotedWatchers.size(); i++) {
3849 final SparseArray<NotedCallback> notedWatchers = mNotedWatchers.valueAt(i);
3850 if (notedWatchers.size() <= 0) {
3851 continue;
3852 }
3853 final NotedCallback cb = notedWatchers.valueAt(0);
3854 if (dumpOp >= 0 && notedWatchers.indexOfKey(dumpOp) < 0) {
3855 continue;
3856 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08003857 if (dumpPackage != null
Svet Ganovb3d2ae22018-12-17 22:06:15 -08003858 && dumpUid != UserHandle.getAppId(cb.mWatchingUid)) {
3859 continue;
3860 }
3861 if (!printedHeader) {
3862 pw.println(" All op noted watchers:");
3863 printedHeader = true;
3864 }
3865 pw.print(" ");
3866 pw.print(Integer.toHexString(System.identityHashCode(
3867 mNotedWatchers.keyAt(i))));
3868 pw.println(" ->");
3869 pw.print(" [");
3870 final int opCount = notedWatchers.size();
3871 for (i = 0; i < opCount; i++) {
3872 if (i > 0) {
3873 pw.print(' ');
3874 }
3875 pw.print(AppOpsManager.opToName(notedWatchers.keyAt(i)));
3876 if (i < opCount - 1) {
3877 pw.print(',');
3878 }
3879 }
3880 pw.println("]");
3881 pw.print(" ");
3882 pw.println(cb);
3883 }
3884 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003885 if (mClients.size() > 0 && dumpMode < 0 && !dumpWatchers && !dumpHistory) {
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003886 needSep = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003887 boolean printedHeader = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003888 for (int i=0; i<mClients.size(); i++) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003889 boolean printedClient = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003890 ClientState cs = mClients.valueAt(i);
Svet Ganovf7b47252018-02-26 11:11:27 -08003891 if (cs.mStartedOps.size() > 0) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003892 boolean printedStarted = false;
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003893 for (int j=0; j<cs.mStartedOps.size(); j++) {
3894 Op op = cs.mStartedOps.get(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003895 if (dumpOp >= 0 && op.op != dumpOp) {
3896 continue;
3897 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003898 if (dumpPackage != null && !dumpPackage.equals(op.packageName)) {
3899 continue;
3900 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003901 if (!printedHeader) {
3902 pw.println(" Clients:");
3903 printedHeader = true;
3904 }
3905 if (!printedClient) {
3906 pw.print(" "); pw.print(mClients.keyAt(i)); pw.println(":");
3907 pw.print(" "); pw.println(cs);
3908 printedClient = true;
3909 }
3910 if (!printedStarted) {
3911 pw.println(" Started ops:");
3912 printedStarted = true;
3913 }
Svet Ganovaf189e32019-02-15 18:45:29 -08003914 pw.print(" "); pw.print("uid="); pw.print(op.uidState.uid);
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003915 pw.print(" pkg="); pw.print(op.packageName);
3916 pw.print(" op="); pw.println(AppOpsManager.opToName(op.op));
3917 }
3918 }
3919 }
3920 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003921 if (mAudioRestrictions.size() > 0 && dumpOp < 0 && dumpPackage != null
Svet Ganovaf189e32019-02-15 18:45:29 -08003922 && dumpMode < 0 && !dumpWatchers && !dumpWatchers) {
John Spurlock1af30c72014-03-10 08:33:35 -04003923 boolean printedHeader = false;
3924 for (int o=0; o<mAudioRestrictions.size(); o++) {
3925 final String op = AppOpsManager.opToName(mAudioRestrictions.keyAt(o));
3926 final SparseArray<Restriction> restrictions = mAudioRestrictions.valueAt(o);
3927 for (int i=0; i<restrictions.size(); i++) {
3928 if (!printedHeader){
3929 pw.println(" Audio Restrictions:");
3930 printedHeader = true;
3931 needSep = true;
3932 }
John Spurlock7b414672014-07-18 13:02:39 -04003933 final int usage = restrictions.keyAt(i);
John Spurlock1af30c72014-03-10 08:33:35 -04003934 pw.print(" "); pw.print(op);
John Spurlock7b414672014-07-18 13:02:39 -04003935 pw.print(" usage="); pw.print(AudioAttributes.usageToString(usage));
John Spurlock1af30c72014-03-10 08:33:35 -04003936 Restriction r = restrictions.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003937 pw.print(": mode="); pw.println(AppOpsManager.modeToName(r.mode));
John Spurlock1af30c72014-03-10 08:33:35 -04003938 if (!r.exceptionPackages.isEmpty()) {
3939 pw.println(" Exceptions:");
3940 for (int j=0; j<r.exceptionPackages.size(); j++) {
3941 pw.print(" "); pw.println(r.exceptionPackages.valueAt(j));
3942 }
3943 }
3944 }
3945 }
3946 }
Dianne Hackborne98f5db2013-07-17 17:23:25 -07003947 if (needSep) {
3948 pw.println();
3949 }
Svet Ganov2af57082015-07-30 08:44:20 -07003950 for (int i=0; i<mUidStates.size(); i++) {
3951 UidState uidState = mUidStates.valueAt(i);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003952 final SparseIntArray opModes = uidState.opModes;
3953 final ArrayMap<String, Ops> pkgOps = uidState.pkgOps;
3954
Svet Ganovaf189e32019-02-15 18:45:29 -08003955 if (dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08003956 continue;
3957 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003958 if (dumpOp >= 0 || dumpPackage != null || dumpMode >= 0) {
3959 boolean hasOp = dumpOp < 0 || (uidState.opModes != null
3960 && uidState.opModes.indexOfKey(dumpOp) >= 0);
3961 boolean hasPackage = dumpPackage == null;
3962 boolean hasMode = dumpMode < 0;
3963 if (!hasMode && opModes != null) {
3964 for (int opi = 0; !hasMode && opi < opModes.size(); opi++) {
3965 if (opModes.valueAt(opi) == dumpMode) {
3966 hasMode = true;
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003967 }
3968 }
3969 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003970 if (pkgOps != null) {
3971 for (int pkgi = 0;
Svet Ganov8455ba22019-01-02 13:05:56 -08003972 (!hasOp || !hasPackage || !hasMode) && pkgi < pkgOps.size();
3973 pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07003974 Ops ops = pkgOps.valueAt(pkgi);
3975 if (!hasOp && ops != null && ops.indexOfKey(dumpOp) >= 0) {
3976 hasOp = true;
3977 }
3978 if (!hasMode) {
3979 for (int opi = 0; !hasMode && opi < ops.size(); opi++) {
3980 if (ops.valueAt(opi).mode == dumpMode) {
3981 hasMode = true;
3982 }
3983 }
3984 }
3985 if (!hasPackage && dumpPackage.equals(ops.packageName)) {
3986 hasPackage = true;
3987 }
3988 }
3989 }
3990 if (uidState.foregroundOps != null && !hasOp) {
3991 if (uidState.foregroundOps.indexOfKey(dumpOp) > 0) {
3992 hasOp = true;
3993 }
3994 }
3995 if (!hasOp || !hasPackage || !hasMode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07003996 continue;
3997 }
3998 }
Svet Ganov2af57082015-07-30 08:44:20 -07003999
4000 pw.print(" Uid "); UserHandle.formatUid(pw, uidState.uid); pw.println(":");
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004001 pw.print(" state=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004002 pw.println(AppOpsManager.getUidStateName(uidState.state));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004003 if (uidState.state != uidState.pendingState) {
4004 pw.print(" pendingState=");
Svet Ganovaf189e32019-02-15 18:45:29 -08004005 pw.println(AppOpsManager.getUidStateName(uidState.pendingState));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004006 }
4007 if (uidState.pendingStateCommitTime != 0) {
4008 pw.print(" pendingStateCommitTime=");
Dianne Hackborn9fb93502018-06-18 12:29:44 -07004009 TimeUtils.formatDuration(uidState.pendingStateCommitTime, nowElapsed, pw);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004010 pw.println();
4011 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004012 if (uidState.startNesting != 0) {
4013 pw.print(" startNesting=");
4014 pw.println(uidState.startNesting);
4015 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004016 if (uidState.foregroundOps != null && (dumpMode < 0
4017 || dumpMode == AppOpsManager.MODE_FOREGROUND)) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004018 pw.println(" foregroundOps:");
4019 for (int j = 0; j < uidState.foregroundOps.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004020 if (dumpOp >= 0 && dumpOp != uidState.foregroundOps.keyAt(j)) {
4021 continue;
4022 }
4023 pw.print(" ");
4024 pw.print(AppOpsManager.opToName(uidState.foregroundOps.keyAt(j)));
4025 pw.print(": ");
4026 pw.println(uidState.foregroundOps.valueAt(j) ? "WATCHER" : "SILENT");
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004027 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004028 pw.print(" hasForegroundWatchers=");
4029 pw.println(uidState.hasForegroundWatchers);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004030 }
Svet Ganovee438d42017-01-19 18:04:38 -08004031 needSep = true;
Svet Ganov2af57082015-07-30 08:44:20 -07004032
Svet Ganov2af57082015-07-30 08:44:20 -07004033 if (opModes != null) {
4034 final int opModeCount = opModes.size();
4035 for (int j = 0; j < opModeCount; j++) {
4036 final int code = opModes.keyAt(j);
4037 final int mode = opModes.valueAt(j);
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004038 if (dumpOp >= 0 && dumpOp != code) {
4039 continue;
4040 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004041 if (dumpMode >= 0 && dumpMode != mode) {
4042 continue;
4043 }
Svet Ganov2af57082015-07-30 08:44:20 -07004044 pw.print(" "); pw.print(AppOpsManager.opToName(code));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004045 pw.print(": mode="); pw.println(AppOpsManager.modeToName(mode));
Svet Ganov2af57082015-07-30 08:44:20 -07004046 }
4047 }
4048
Svet Ganov2af57082015-07-30 08:44:20 -07004049 if (pkgOps == null) {
4050 continue;
4051 }
4052
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004053 for (int pkgi = 0; pkgi < pkgOps.size(); pkgi++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004054 final Ops ops = pkgOps.valueAt(pkgi);
4055 if (dumpPackage != null && !dumpPackage.equals(ops.packageName)) {
4056 continue;
4057 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004058 boolean printedPackage = false;
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004059 for (int j=0; j<ops.size(); j++) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004060 final Op op = ops.valueAt(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004061 final int opCode = op.op;
4062 if (dumpOp >= 0 && dumpOp != opCode) {
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004063 continue;
4064 }
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004065 if (dumpMode >= 0 && dumpMode != op.mode) {
4066 continue;
4067 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004068 if (!printedPackage) {
4069 pw.print(" Package "); pw.print(ops.packageName); pw.println(":");
4070 printedPackage = true;
4071 }
Svet Ganovaf189e32019-02-15 18:45:29 -08004072 pw.print(" "); pw.print(AppOpsManager.opToName(opCode));
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004073 pw.print(" ("); pw.print(AppOpsManager.modeToName(op.mode));
Svet Ganovaf189e32019-02-15 18:45:29 -08004074 final int switchOp = AppOpsManager.opToSwitch(opCode);
4075 if (switchOp != opCode) {
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004076 pw.print(" / switch ");
4077 pw.print(AppOpsManager.opToName(switchOp));
4078 final Op switchObj = ops.get(switchOp);
Svet Ganovaf189e32019-02-15 18:45:29 -08004079 int mode = switchObj != null ? switchObj.mode
4080 : AppOpsManager.opToDefaultMode(switchOp);
Dianne Hackborn65a4f252018-05-08 17:30:48 -07004081 pw.print("="); pw.print(AppOpsManager.modeToName(mode));
4082 }
Dianne Hackborn2378a4a2018-04-26 13:46:22 -07004083 pw.println("): ");
Svet Ganovaf189e32019-02-15 18:45:29 -08004084 dumpStatesLocked(pw, op, now, sdf, date, " ");
4085 if (op.running) {
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004086 pw.print(" Running start at: ");
4087 TimeUtils.formatDuration(nowElapsed-op.startRealtime, pw);
4088 pw.println();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004089 }
Dianne Hackborncd1f30b2018-04-23 17:38:09 -07004090 if (op.startNesting != 0) {
4091 pw.print(" startNesting=");
4092 pw.println(op.startNesting);
4093 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004094 }
4095 }
4096 }
Svet Ganovee438d42017-01-19 18:04:38 -08004097 if (needSep) {
4098 pw.println();
4099 }
4100
4101 final int userRestrictionCount = mOpUserRestrictions.size();
4102 for (int i = 0; i < userRestrictionCount; i++) {
4103 IBinder token = mOpUserRestrictions.keyAt(i);
4104 ClientRestrictionState restrictionState = mOpUserRestrictions.valueAt(i);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004105 boolean printedTokenHeader = false;
4106
Svet Ganovaf189e32019-02-15 18:45:29 -08004107 if (dumpMode >= 0 || dumpWatchers || dumpHistory) {
Dianne Hackborn125dc532019-01-09 13:31:48 -08004108 continue;
4109 }
Svet Ganovee438d42017-01-19 18:04:38 -08004110
4111 final int restrictionCount = restrictionState.perUserRestrictions != null
4112 ? restrictionState.perUserRestrictions.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004113 if (restrictionCount > 0 && dumpPackage == null) {
4114 boolean printedOpsHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004115 for (int j = 0; j < restrictionCount; j++) {
4116 int userId = restrictionState.perUserRestrictions.keyAt(j);
4117 boolean[] restrictedOps = restrictionState.perUserRestrictions.valueAt(j);
4118 if (restrictedOps == null) {
4119 continue;
4120 }
Dianne Hackborn125dc532019-01-09 13:31:48 -08004121 if (dumpOp >= 0 && (dumpOp >= restrictedOps.length
4122 || !restrictedOps[dumpOp])) {
4123 continue;
4124 }
4125 if (!printedTokenHeader) {
4126 pw.println(" User restrictions for token " + token + ":");
4127 printedTokenHeader = true;
4128 }
4129 if (!printedOpsHeader) {
4130 pw.println(" Restricted ops:");
4131 printedOpsHeader = true;
4132 }
Svet Ganovee438d42017-01-19 18:04:38 -08004133 StringBuilder restrictedOpsValue = new StringBuilder();
4134 restrictedOpsValue.append("[");
4135 final int restrictedOpCount = restrictedOps.length;
4136 for (int k = 0; k < restrictedOpCount; k++) {
4137 if (restrictedOps[k]) {
4138 if (restrictedOpsValue.length() > 1) {
4139 restrictedOpsValue.append(", ");
4140 }
4141 restrictedOpsValue.append(AppOpsManager.opToName(k));
4142 }
4143 }
4144 restrictedOpsValue.append("]");
4145 pw.print(" "); pw.print("user: "); pw.print(userId);
4146 pw.print(" restricted ops: "); pw.println(restrictedOpsValue);
4147 }
4148 }
4149
4150 final int excludedPackageCount = restrictionState.perUserExcludedPackages != null
4151 ? restrictionState.perUserExcludedPackages.size() : 0;
Dianne Hackborn125dc532019-01-09 13:31:48 -08004152 if (excludedPackageCount > 0 && dumpOp < 0) {
4153 boolean printedPackagesHeader = false;
Svet Ganovee438d42017-01-19 18:04:38 -08004154 for (int j = 0; j < excludedPackageCount; j++) {
4155 int userId = restrictionState.perUserExcludedPackages.keyAt(j);
4156 String[] packageNames = restrictionState.perUserExcludedPackages.valueAt(j);
Dianne Hackborn125dc532019-01-09 13:31:48 -08004157 if (packageNames == null) {
4158 continue;
4159 }
4160 boolean hasPackage;
4161 if (dumpPackage != null) {
4162 hasPackage = false;
4163 for (String pkg : packageNames) {
4164 if (dumpPackage.equals(pkg)) {
4165 hasPackage = true;
4166 break;
4167 }
4168 }
4169 } else {
4170 hasPackage = true;
4171 }
4172 if (!hasPackage) {
4173 continue;
4174 }
4175 if (!printedTokenHeader) {
4176 pw.println(" User restrictions for token " + token + ":");
4177 printedTokenHeader = true;
4178 }
4179 if (!printedPackagesHeader) {
4180 pw.println(" Excluded packages:");
4181 printedPackagesHeader = true;
4182 }
Svet Ganovee438d42017-01-19 18:04:38 -08004183 pw.print(" "); pw.print("user: "); pw.print(userId);
4184 pw.print(" packages: "); pw.println(Arrays.toString(packageNames));
4185 }
4186 }
4187 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004188 }
Svet Ganov8455ba22019-01-02 13:05:56 -08004189
4190 // Must not hold the appops lock
Svet Ganovaf189e32019-02-15 18:45:29 -08004191 if (dumpHistory && !dumpWatchers) {
4192 mHistoricalRegistry.dump(" ", pw, dumpUid, dumpPackage, dumpOp);
4193 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004194 }
John Spurlock1af30c72014-03-10 08:33:35 -04004195
4196 private static final class Restriction {
4197 private static final ArraySet<String> NO_EXCEPTIONS = new ArraySet<String>();
4198 int mode;
4199 ArraySet<String> exceptionPackages = NO_EXCEPTIONS;
4200 }
Jason Monk62062992014-05-06 09:55:28 -04004201
4202 @Override
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004203 public void setUserRestrictions(Bundle restrictions, IBinder token, int userHandle) {
Jason Monk62062992014-05-06 09:55:28 -04004204 checkSystemUid("setUserRestrictions");
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004205 Preconditions.checkNotNull(restrictions);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004206 Preconditions.checkNotNull(token);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004207 for (int i = 0; i < AppOpsManager._NUM_OP; i++) {
Jason Monk62062992014-05-06 09:55:28 -04004208 String restriction = AppOpsManager.opToRestriction(i);
Suprabh Shukla64e0dcb2016-05-24 16:23:11 -07004209 if (restriction != null) {
4210 setUserRestrictionNoCheck(i, restrictions.getBoolean(restriction, false), token,
4211 userHandle, null);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004212 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004213 }
4214 }
4215
4216 @Override
Ruben Brunk29931bc2016-03-11 00:24:26 -08004217 public void setUserRestriction(int code, boolean restricted, IBinder token, int userHandle,
4218 String[] exceptionPackages) {
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004219 if (Binder.getCallingPid() != Process.myPid()) {
4220 mContext.enforcePermission(Manifest.permission.MANAGE_APP_OPS_RESTRICTIONS,
4221 Binder.getCallingPid(), Binder.getCallingUid(), null);
4222 }
4223 if (userHandle != UserHandle.getCallingUserId()) {
4224 if (mContext.checkCallingOrSelfPermission(Manifest.permission
4225 .INTERACT_ACROSS_USERS_FULL) != PackageManager.PERMISSION_GRANTED
4226 && mContext.checkCallingOrSelfPermission(Manifest.permission
4227 .INTERACT_ACROSS_USERS) != PackageManager.PERMISSION_GRANTED) {
4228 throw new SecurityException("Need INTERACT_ACROSS_USERS_FULL or"
4229 + " INTERACT_ACROSS_USERS to interact cross user ");
Jason Monk62062992014-05-06 09:55:28 -04004230 }
4231 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004232 verifyIncomingOp(code);
4233 Preconditions.checkNotNull(token);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004234 setUserRestrictionNoCheck(code, restricted, token, userHandle, exceptionPackages);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004235 }
4236
4237 private void setUserRestrictionNoCheck(int code, boolean restricted, IBinder token,
Ruben Brunk29931bc2016-03-11 00:24:26 -08004238 int userHandle, String[] exceptionPackages) {
Svet Ganov442ed572016-08-17 17:29:43 -07004239 synchronized (AppOpsService.this) {
4240 ClientRestrictionState restrictionState = mOpUserRestrictions.get(token);
4241
4242 if (restrictionState == null) {
4243 try {
4244 restrictionState = new ClientRestrictionState(token);
4245 } catch (RemoteException e) {
4246 return;
4247 }
4248 mOpUserRestrictions.put(token, restrictionState);
Ruben Brunk29931bc2016-03-11 00:24:26 -08004249 }
Svet Ganov442ed572016-08-17 17:29:43 -07004250
4251 if (restrictionState.setRestriction(code, restricted, exceptionPackages, userHandle)) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004252 mHandler.sendMessage(PooledLambda.obtainMessage(
Svet Ganov3a95f832018-03-23 17:44:30 -07004253 AppOpsService::notifyWatchersOfChange, this, code, UID_ANY));
Svet Ganov442ed572016-08-17 17:29:43 -07004254 }
4255
4256 if (restrictionState.isDefault()) {
4257 mOpUserRestrictions.remove(token);
4258 restrictionState.destroy();
4259 }
Ruben Brunk29931bc2016-03-11 00:24:26 -08004260 }
Julia Reynoldsbb21c252016-04-05 16:01:49 -04004261 }
4262
Svet Ganov3a95f832018-03-23 17:44:30 -07004263 private void notifyWatchersOfChange(int code, int uid) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004264 final ArraySet<ModeCallback> clonedCallbacks;
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004265 synchronized (this) {
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004266 ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004267 if (callbacks == null) {
4268 return;
4269 }
Dianne Hackborn68d76552017-02-27 15:32:03 -08004270 clonedCallbacks = new ArraySet<>(callbacks);
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004271 }
4272
Svet Ganov3a95f832018-03-23 17:44:30 -07004273 notifyOpChanged(clonedCallbacks, code, uid, null);
Jason Monk62062992014-05-06 09:55:28 -04004274 }
4275
4276 @Override
4277 public void removeUser(int userHandle) throws RemoteException {
4278 checkSystemUid("removeUser");
Svet Ganov442ed572016-08-17 17:29:43 -07004279 synchronized (AppOpsService.this) {
4280 final int tokenCount = mOpUserRestrictions.size();
4281 for (int i = tokenCount - 1; i >= 0; i--) {
4282 ClientRestrictionState opRestrictions = mOpUserRestrictions.valueAt(i);
4283 opRestrictions.removeUser(userHandle);
4284 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004285 removeUidsForUserLocked(userHandle);
4286 }
4287 }
4288
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004289 @Override
4290 public boolean isOperationActive(int code, int uid, String packageName) {
Svet Ganovf7b47252018-02-26 11:11:27 -08004291 if (Binder.getCallingUid() != uid) {
4292 if (mContext.checkCallingOrSelfPermission(Manifest.permission.WATCH_APPOPS)
4293 != PackageManager.PERMISSION_GRANTED) {
4294 return false;
4295 }
4296 }
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004297 verifyIncomingOp(code);
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004298 final String resolvedPackageName = resolvePackageName(uid, packageName);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004299 if (resolvedPackageName == null) {
4300 return false;
4301 }
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004302 synchronized (AppOpsService.this) {
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004303 for (int i = mClients.size() - 1; i >= 0; i--) {
4304 final ClientState client = mClients.valueAt(i);
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004305 for (int j = client.mStartedOps.size() - 1; j >= 0; j--) {
4306 final Op op = client.mStartedOps.get(j);
Svet Ganovaf189e32019-02-15 18:45:29 -08004307 if (op.op == code && op.uidState.uid == uid) return true;
Jeff Sharkey35e46d22017-06-09 10:01:20 -06004308 }
4309 }
4310 }
4311 return false;
4312 }
4313
Svet Ganov8455ba22019-01-02 13:05:56 -08004314 @Override
4315 public void setHistoryParameters(@AppOpsManager.HistoricalMode int mode,
4316 long baseSnapshotInterval, int compressionStep) {
4317 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4318 "setHistoryParameters");
4319 // Must not hold the appops lock
4320 mHistoricalRegistry.setHistoryParameters(mode, baseSnapshotInterval, compressionStep);
4321 }
4322
4323 @Override
4324 public void offsetHistory(long offsetMillis) {
4325 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4326 "offsetHistory");
4327 // Must not hold the appops lock
4328 mHistoricalRegistry.offsetHistory(offsetMillis);
4329 }
4330
4331 @Override
4332 public void addHistoricalOps(HistoricalOps ops) {
4333 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4334 "addHistoricalOps");
4335 // Must not hold the appops lock
4336 mHistoricalRegistry.addHistoricalOps(ops);
4337 }
4338
4339 @Override
4340 public void resetHistoryParameters() {
4341 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4342 "resetHistoryParameters");
4343 // Must not hold the appops lock
4344 mHistoricalRegistry.resetHistoryParameters();
4345 }
4346
4347 @Override
4348 public void clearHistory() {
4349 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_APPOPS,
4350 "clearHistory");
4351 // Must not hold the appops lock
4352 mHistoricalRegistry.clearHistory();
4353 }
4354
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004355 private void removeUidsForUserLocked(int userHandle) {
4356 for (int i = mUidStates.size() - 1; i >= 0; --i) {
4357 final int uid = mUidStates.keyAt(i);
4358 if (UserHandle.getUserId(uid) == userHandle) {
4359 mUidStates.removeAt(i);
4360 }
Svet Ganov9cea80cd2016-02-16 11:47:00 -08004361 }
4362 }
4363
Jason Monk62062992014-05-06 09:55:28 -04004364 private void checkSystemUid(String function) {
4365 int uid = Binder.getCallingUid();
4366 if (uid != Process.SYSTEM_UID) {
4367 throw new SecurityException(function + " must by called by the system");
4368 }
4369 }
4370
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004371 private static String resolvePackageName(int uid, String packageName) {
Svet Ganov82f09bc2018-01-12 22:08:40 -08004372 if (uid == Process.ROOT_UID) {
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004373 return "root";
4374 } else if (uid == Process.SHELL_UID) {
4375 return "com.android.shell";
Svet Ganov82f09bc2018-01-12 22:08:40 -08004376 } else if (uid == Process.MEDIA_UID) {
4377 return "media";
4378 } else if (uid == Process.AUDIOSERVER_UID) {
4379 return "audioserver";
4380 } else if (uid == Process.CAMERASERVER_UID) {
4381 return "cameraserver";
Svetoslav Ganovf73adb62016-03-29 01:07:06 +00004382 } else if (uid == Process.SYSTEM_UID && packageName == null) {
4383 return "android";
4384 }
4385 return packageName;
4386 }
4387
Svet Ganov82f09bc2018-01-12 22:08:40 -08004388 private static int resolveUid(String packageName) {
4389 if (packageName == null) {
4390 return -1;
4391 }
4392 switch (packageName) {
4393 case "root":
4394 return Process.ROOT_UID;
4395 case "shell":
4396 return Process.SHELL_UID;
4397 case "media":
4398 return Process.MEDIA_UID;
4399 case "audioserver":
4400 return Process.AUDIOSERVER_UID;
4401 case "cameraserver":
4402 return Process.CAMERASERVER_UID;
4403 }
4404 return -1;
4405 }
4406
Svet Ganov2af57082015-07-30 08:44:20 -07004407 private static String[] getPackagesForUid(int uid) {
Svet Ganovf3807aa2015-08-02 10:09:56 -07004408 String[] packageNames = null;
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004409
4410 // Very early during boot the package manager is not yet or not yet fully started. At this
4411 // time there are no packages yet.
4412 if (AppGlobals.getPackageManager() != null) {
4413 try {
4414 packageNames = AppGlobals.getPackageManager().getPackagesForUid(uid);
4415 } catch (RemoteException e) {
4416 /* ignore - local call */
4417 }
Svet Ganov2af57082015-07-30 08:44:20 -07004418 }
Svet Ganovf3807aa2015-08-02 10:09:56 -07004419 if (packageNames == null) {
4420 return EmptyArray.STRING;
4421 }
4422 return packageNames;
Svet Ganov2af57082015-07-30 08:44:20 -07004423 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004424
4425 private final class ClientRestrictionState implements DeathRecipient {
4426 private final IBinder token;
4427 SparseArray<boolean[]> perUserRestrictions;
4428 SparseArray<String[]> perUserExcludedPackages;
4429
4430 public ClientRestrictionState(IBinder token)
4431 throws RemoteException {
4432 token.linkToDeath(this, 0);
4433 this.token = token;
4434 }
4435
4436 public boolean setRestriction(int code, boolean restricted,
4437 String[] excludedPackages, int userId) {
4438 boolean changed = false;
4439
4440 if (perUserRestrictions == null && restricted) {
4441 perUserRestrictions = new SparseArray<>();
4442 }
4443
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004444 int[] users;
4445 if (userId == UserHandle.USER_ALL) {
4446 List<UserInfo> liveUsers = UserManager.get(mContext).getUsers(false);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004447
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004448 users = new int[liveUsers.size()];
4449 for (int i = 0; i < liveUsers.size(); i++) {
4450 users[i] = liveUsers.get(i).id;
4451 }
4452 } else {
4453 users = new int[]{userId};
4454 }
4455
4456 if (perUserRestrictions != null) {
4457 int numUsers = users.length;
4458
4459 for (int i = 0; i < numUsers; i++) {
4460 int thisUserId = users[i];
4461
4462 boolean[] userRestrictions = perUserRestrictions.get(thisUserId);
4463 if (userRestrictions == null && restricted) {
4464 userRestrictions = new boolean[AppOpsManager._NUM_OP];
4465 perUserRestrictions.put(thisUserId, userRestrictions);
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004466 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004467 if (userRestrictions != null && userRestrictions[code] != restricted) {
4468 userRestrictions[code] = restricted;
4469 if (!restricted && isDefault(userRestrictions)) {
4470 perUserRestrictions.remove(thisUserId);
4471 userRestrictions = null;
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004472 }
4473 changed = true;
4474 }
Philip P. Moltmanne683f192017-06-23 14:05:04 -07004475
4476 if (userRestrictions != null) {
4477 final boolean noExcludedPackages = ArrayUtils.isEmpty(excludedPackages);
4478 if (perUserExcludedPackages == null && !noExcludedPackages) {
4479 perUserExcludedPackages = new SparseArray<>();
4480 }
4481 if (perUserExcludedPackages != null && !Arrays.equals(excludedPackages,
4482 perUserExcludedPackages.get(thisUserId))) {
4483 if (noExcludedPackages) {
4484 perUserExcludedPackages.remove(thisUserId);
4485 if (perUserExcludedPackages.size() <= 0) {
4486 perUserExcludedPackages = null;
4487 }
4488 } else {
4489 perUserExcludedPackages.put(thisUserId, excludedPackages);
4490 }
4491 changed = true;
4492 }
4493 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004494 }
4495 }
4496
4497 return changed;
4498 }
4499
4500 public boolean hasRestriction(int restriction, String packageName, int userId) {
4501 if (perUserRestrictions == null) {
4502 return false;
4503 }
4504 boolean[] restrictions = perUserRestrictions.get(userId);
4505 if (restrictions == null) {
4506 return false;
4507 }
4508 if (!restrictions[restriction]) {
4509 return false;
4510 }
4511 if (perUserExcludedPackages == null) {
4512 return true;
4513 }
4514 String[] perUserExclusions = perUserExcludedPackages.get(userId);
4515 if (perUserExclusions == null) {
4516 return true;
4517 }
4518 return !ArrayUtils.contains(perUserExclusions, packageName);
4519 }
4520
4521 public void removeUser(int userId) {
4522 if (perUserExcludedPackages != null) {
4523 perUserExcludedPackages.remove(userId);
4524 if (perUserExcludedPackages.size() <= 0) {
4525 perUserExcludedPackages = null;
4526 }
4527 }
Sudheer Shankabc2fadd2016-09-27 17:36:39 -07004528 if (perUserRestrictions != null) {
4529 perUserRestrictions.remove(userId);
4530 if (perUserRestrictions.size() <= 0) {
4531 perUserRestrictions = null;
4532 }
4533 }
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004534 }
4535
4536 public boolean isDefault() {
4537 return perUserRestrictions == null || perUserRestrictions.size() <= 0;
4538 }
4539
4540 @Override
4541 public void binderDied() {
4542 synchronized (AppOpsService.this) {
4543 mOpUserRestrictions.remove(token);
4544 if (perUserRestrictions == null) {
4545 return;
4546 }
4547 final int userCount = perUserRestrictions.size();
4548 for (int i = 0; i < userCount; i++) {
4549 final boolean[] restrictions = perUserRestrictions.valueAt(i);
4550 final int restrictionCount = restrictions.length;
4551 for (int j = 0; j < restrictionCount; j++) {
4552 if (restrictions[j]) {
4553 final int changedCode = j;
Svet Ganov3a95f832018-03-23 17:44:30 -07004554 mHandler.post(() -> notifyWatchersOfChange(changedCode, UID_ANY));
Svetoslav Ganova8bbd762016-05-13 17:08:16 -07004555 }
4556 }
4557 }
4558 destroy();
4559 }
4560 }
4561
4562 public void destroy() {
4563 token.unlinkToDeath(this, 0);
4564 }
4565
4566 private boolean isDefault(boolean[] array) {
4567 if (ArrayUtils.isEmpty(array)) {
4568 return true;
4569 }
4570 for (boolean value : array) {
4571 if (value) {
4572 return false;
4573 }
4574 }
4575 return true;
4576 }
4577 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004578
4579 private final class AppOpsManagerInternalImpl extends AppOpsManagerInternal {
4580 @Override public void setDeviceAndProfileOwners(SparseIntArray owners) {
4581 synchronized (AppOpsService.this) {
4582 mProfileOwners = owners;
4583 }
4584 }
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004585
4586 @Override
Philip P. Moltmann159d98b2018-12-20 08:30:53 -08004587 public void setUidMode(int code, int uid, int mode) {
4588 AppOpsService.this.setUidMode(code, uid, mode);
Philip P. Moltmann17f65af2018-10-18 15:32:29 -07004589 }
Philip P. Moltmanndde07852019-01-25 16:42:36 -08004590
4591 @Override
4592 public void setAllPkgModesToDefault(int code, int uid) {
4593 AppOpsService.this.setAllPkgModesToDefault(code, uid);
4594 }
Philip P. Moltmann724150d2019-03-11 17:01:05 -07004595
4596 @Override
4597 public @Mode int checkOperationUnchecked(int code, int uid, @NonNull String packageName) {
4598 return AppOpsService.this.checkOperationUnchecked(code, uid, packageName, true, false);
4599 }
Dianne Hackbornd5254412018-05-11 18:02:58 -07004600 }
Dianne Hackborna06de0f2012-12-11 16:34:47 -08004601}