blob: 243532bc4de14e573e0c35067486e5755dbfce72 [file] [log] [blame]
Dianne Hackborn5da5ca52013-02-12 15:12:21 -08001/*
2 * Copyright (C) 2013 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
Steven Morelandc7a871e2020-11-10 21:56:57 +000017#pragma once
Dianne Hackborn5da5ca52013-02-12 15:12:21 -080018
19#include <binder/IAppOpsService.h>
20
21#include <utils/threads.h>
22
Jooyung Han2d5878e2020-01-23 12:45:10 +090023#include <optional>
24
Steven Morelandc326a942019-09-09 16:07:52 -070025#ifdef __ANDROID_VNDK__
26#error "This header is not visible to vendors"
27#endif
28
Dianne Hackborn5da5ca52013-02-12 15:12:21 -080029// ---------------------------------------------------------------------------
30namespace android {
31
32class AppOpsManager
33{
34public:
35 enum {
Eino-Ville Talvalae88a85e2013-02-19 12:54:57 -080036 MODE_ALLOWED = IAppOpsService::MODE_ALLOWED,
37 MODE_IGNORED = IAppOpsService::MODE_IGNORED,
38 MODE_ERRORED = IAppOpsService::MODE_ERRORED
Dianne Hackborn5da5ca52013-02-12 15:12:21 -080039 };
40
41 enum {
42 OP_NONE = -1,
43 OP_COARSE_LOCATION = 0,
44 OP_FINE_LOCATION = 1,
45 OP_GPS = 2,
46 OP_VIBRATE = 3,
47 OP_READ_CONTACTS = 4,
48 OP_WRITE_CONTACTS = 5,
49 OP_READ_CALL_LOG = 6,
50 OP_WRITE_CALL_LOG = 7,
51 OP_READ_CALENDAR = 8,
52 OP_WRITE_CALENDAR = 9,
53 OP_WIFI_SCAN = 10,
54 OP_POST_NOTIFICATION = 11,
55 OP_NEIGHBORING_CELLS = 12,
56 OP_CALL_PHONE = 13,
57 OP_READ_SMS = 14,
58 OP_WRITE_SMS = 15,
59 OP_RECEIVE_SMS = 16,
60 OP_RECEIVE_EMERGECY_SMS = 17,
61 OP_RECEIVE_MMS = 18,
62 OP_RECEIVE_WAP_PUSH = 19,
63 OP_SEND_SMS = 20,
64 OP_READ_ICC_SMS = 21,
65 OP_WRITE_ICC_SMS = 22,
66 OP_WRITE_SETTINGS = 23,
67 OP_SYSTEM_ALERT_WINDOW = 24,
68 OP_ACCESS_NOTIFICATIONS = 25,
69 OP_CAMERA = 26,
70 OP_RECORD_AUDIO = 27,
Svet Ganovf1377f52015-04-28 12:09:01 -070071 OP_PLAY_AUDIO = 28,
72 OP_READ_CLIPBOARD = 29,
73 OP_WRITE_CLIPBOARD = 30,
74 OP_TAKE_MEDIA_BUTTONS = 31,
75 OP_TAKE_AUDIO_FOCUS = 32,
76 OP_AUDIO_MASTER_VOLUME = 33,
77 OP_AUDIO_VOICE_VOLUME = 34,
78 OP_AUDIO_RING_VOLUME = 35,
79 OP_AUDIO_MEDIA_VOLUME = 36,
80 OP_AUDIO_ALARM_VOLUME = 37,
81 OP_AUDIO_NOTIFICATION_VOLUME = 38,
82 OP_AUDIO_BLUETOOTH_VOLUME = 39,
83 OP_WAKE_LOCK = 40,
84 OP_MONITOR_LOCATION = 41,
85 OP_MONITOR_HIGH_POWER_LOCATION = 42,
86 OP_GET_USAGE_STATS = 43,
87 OP_MUTE_MICROPHONE = 44,
88 OP_TOAST_WINDOW = 45,
89 OP_PROJECT_MEDIA = 46,
90 OP_ACTIVATE_VPN = 47,
91 OP_WRITE_WALLPAPER = 48,
92 OP_ASSIST_STRUCTURE = 49,
93 OP_ASSIST_SCREENSHOT = 50,
94 OP_READ_PHONE_STATE = 51,
Svetoslavb412f6e2015-04-29 16:50:41 -070095 OP_ADD_VOICEMAIL = 52,
96 OP_USE_SIP = 53,
97 OP_PROCESS_OUTGOING_CALLS = 54,
98 OP_USE_FINGERPRINT = 55,
Jean-Michel Trivi614597b2016-11-11 13:41:54 -080099 OP_BODY_SENSORS = 56,
100 OP_AUDIO_ACCESSIBILITY_VOLUME = 64,
Gilad Bretterb9209362018-04-08 13:46:32 +0300101 OP_READ_PHONE_NUMBERS = 65,
102 OP_REQUEST_INSTALL_PACKAGES = 66,
103 OP_PICTURE_IN_PICTURE = 67,
104 OP_INSTANT_APP_START_FOREGROUND = 68,
105 OP_ANSWER_PHONE_CALLS = 69,
106 OP_RUN_ANY_IN_BACKGROUND = 70,
107 OP_CHANGE_WIFI_STATE = 71,
108 OP_REQUEST_DELETE_PACKAGES = 72,
109 OP_BIND_ACCESSIBILITY_SERVICE = 73,
110 OP_ACCEPT_HANDOVER = 74,
111 OP_MANAGE_IPSEC_TUNNELS = 75,
112 OP_START_FOREGROUND = 76,
113 OP_BLUETOOTH_SCAN = 77,
Kevin Chyn38af61a2018-09-21 17:15:33 -0700114 OP_USE_BIOMETRIC = 78,
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700115 OP_ACTIVITY_RECOGNITION = 79,
116 OP_SMS_FINANCIAL_TRANSACTIONS = 80,
117 OP_READ_MEDIA_AUDIO = 81,
118 OP_WRITE_MEDIA_AUDIO = 82,
119 OP_READ_MEDIA_VIDEO = 83,
120 OP_WRITE_MEDIA_VIDEO = 84,
121 OP_READ_MEDIA_IMAGES = 85,
122 OP_WRITE_MEDIA_IMAGES = 86,
123 OP_LEGACY_STORAGE = 87,
124 OP_ACCESS_ACCESSIBILITY = 88,
125 OP_READ_DEVICE_IDENTIFIERS = 89,
Philip P. Moltmann0cffd2c2020-03-24 10:23:09 -0700126 OP_ACCESS_MEDIA_LOCATION = 90,
127 OP_QUERY_ALL_PACKAGES = 91,
128 OP_MANAGE_EXTERNAL_STORAGE = 92,
129 OP_INTERACT_ACROSS_PROFILES = 93,
130 OP_ACTIVATE_PLATFORM_VPN = 94,
131 OP_LOADER_USAGE_STATS = 95,
132 OP_DEPRECATED_1 = 96,
133 OP_AUTO_REVOKE_PERMISSIONS_IF_UNUSED = 97,
134 OP_AUTO_REVOKE_MANAGED_BY_INSTALLER = 98,
Narayan Kamath7f8989b2020-08-20 19:34:53 +0100135 OP_NO_ISOLATED_STORAGE = 99,
136 OP_PHONE_CALL_MICROPHONE = 100,
137 OP_PHONE_CALL_CAMERA = 101,
138 OP_RECORD_AUDIO_HOTWORD = 102,
Nate Myren11cec552020-12-11 09:06:43 -0800139 // Ops 103-105 are currently unused in native, and intentionally omitted
140 OP_RECORD_AUDIO_OUTPUT = 106,
Ivan Chiang882340f2021-03-08 11:36:53 +0800141 OP_SCHEDULE_EXACT_ALARM = 107,
142 OP_FINE_LOCATION_SOURCE = 108,
143 OP_COARSE_LOCATION_SOURCE = 109,
144 OP_MANAGE_MEDIA = 110,
Jeff Sharkeyfccb3302021-03-20 08:39:51 -0600145 OP_BLUETOOTH_CONNECT = 111,
Roshan Pius3df1f5e2021-04-01 10:36:10 -0700146 OP_UWB_RANGING = 112,
Jeff Sharkey60b53e62021-04-01 13:53:20 -0600147 OP_ACTIVITY_RECOGNITION_SOURCE = 113,
148 OP_BLUETOOTH_ADVERTISE = 114,
Nate Myren926d36c2021-04-12 14:34:45 -0700149 OP_RECORD_INCOMING_PHONE_AUDIO = 115,
xshuaeca54e2021-09-30 16:26:24 -0700150 OP_NEARBY_WIFI_DEVICES = 116,
151 _NUM_OP = 117
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800152 };
153
Evan Severson3aaa49c2023-04-04 14:46:06 -0700154 enum {
155 WATCH_FOREGROUND_CHANGES = 1 << 0
156 };
157
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800158 AppOpsManager();
159
160 int32_t checkOp(int32_t op, int32_t uid, const String16& callingPackage);
Jean-Michel Trivi94a566d2019-02-25 12:16:02 -0800161 int32_t checkAudioOpNoThrow(int32_t op, int32_t usage, int32_t uid,
162 const String16& callingPackage);
Philip P. Moltmannb1301882019-09-06 11:01:18 -0700163 // @Deprecated, use noteOp(int32_t, int32_t uid, const String16&, const String16&,
164 // const String16&) instead
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800165 int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage);
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700166 int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800167 const std::optional<String16>& attributionTag, const String16& message);
Philip P. Moltmannb1301882019-09-06 11:01:18 -0700168 // @Deprecated, use startOpNoThrow(int32_t, int32_t, const String16&, bool, const String16&,
169 // const String16&) instead
Svet Ganov616554c2018-02-26 13:27:26 -0800170 int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage,
171 bool startIfModeDefault);
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700172 int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800173 bool startIfModeDefault, const std::optional<String16>& attributionTag,
Philip P. Moltmannaeaaf1c2019-11-05 12:34:36 -0800174 const String16& message);
175 // @Deprecated, use finishOp(int32_t, int32_t, const String16&, bool, const String16&) instead
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800176 void finishOp(int32_t op, int32_t uid, const String16& callingPackage);
Philip P. Moltmannaeaaf1c2019-11-05 12:34:36 -0800177 void finishOp(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800178 const std::optional<String16>& attributionTag);
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800179 void startWatchingMode(int32_t op, const String16& packageName,
180 const sp<IAppOpsCallback>& callback);
Evan Severson3aaa49c2023-04-04 14:46:06 -0700181 void startWatchingMode(int32_t op, const String16& packageName, int32_t flags,
182 const sp<IAppOpsCallback>& callback);
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800183 void stopWatchingMode(const sp<IAppOpsCallback>& callback);
Svetoslavb412f6e2015-04-29 16:50:41 -0700184 int32_t permissionToOpCode(const String16& permission);
Yin-Chia Yeh8e95ee82019-08-13 12:24:25 -0700185 void setCameraAudioRestriction(int32_t mode);
Yin-Chia Yeh8e95ee82019-08-13 12:24:25 -0700186
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800187private:
188 Mutex mLock;
189 sp<IAppOpsService> mService;
190
191 sp<IAppOpsService> getService();
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700192 bool shouldCollectNotes(int32_t opCode);
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800193};
194
195
Steven Moreland6511af52019-09-26 16:05:45 -0700196} // namespace android
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700197
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800198// ---------------------------------------------------------------------------