blob: 4169243c1f6b6f1e52a48fb65c20ff005de606d1 [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
17#ifndef ANDROID_APP_OPS_MANAGER_H
18#define ANDROID_APP_OPS_MANAGER_H
19
20#include <binder/IAppOpsService.h>
21
22#include <utils/threads.h>
23
Jooyung Han2d5878e2020-01-23 12:45:10 +090024#include <optional>
25
Steven Morelandc326a942019-09-09 16:07:52 -070026#ifdef __ANDROID_VNDK__
27#error "This header is not visible to vendors"
28#endif
29
Dianne Hackborn5da5ca52013-02-12 15:12:21 -080030// ---------------------------------------------------------------------------
31namespace android {
32
33class AppOpsManager
34{
35public:
36 enum {
Eino-Ville Talvalae88a85e2013-02-19 12:54:57 -080037 MODE_ALLOWED = IAppOpsService::MODE_ALLOWED,
38 MODE_IGNORED = IAppOpsService::MODE_IGNORED,
39 MODE_ERRORED = IAppOpsService::MODE_ERRORED
Dianne Hackborn5da5ca52013-02-12 15:12:21 -080040 };
41
42 enum {
43 OP_NONE = -1,
44 OP_COARSE_LOCATION = 0,
45 OP_FINE_LOCATION = 1,
46 OP_GPS = 2,
47 OP_VIBRATE = 3,
48 OP_READ_CONTACTS = 4,
49 OP_WRITE_CONTACTS = 5,
50 OP_READ_CALL_LOG = 6,
51 OP_WRITE_CALL_LOG = 7,
52 OP_READ_CALENDAR = 8,
53 OP_WRITE_CALENDAR = 9,
54 OP_WIFI_SCAN = 10,
55 OP_POST_NOTIFICATION = 11,
56 OP_NEIGHBORING_CELLS = 12,
57 OP_CALL_PHONE = 13,
58 OP_READ_SMS = 14,
59 OP_WRITE_SMS = 15,
60 OP_RECEIVE_SMS = 16,
61 OP_RECEIVE_EMERGECY_SMS = 17,
62 OP_RECEIVE_MMS = 18,
63 OP_RECEIVE_WAP_PUSH = 19,
64 OP_SEND_SMS = 20,
65 OP_READ_ICC_SMS = 21,
66 OP_WRITE_ICC_SMS = 22,
67 OP_WRITE_SETTINGS = 23,
68 OP_SYSTEM_ALERT_WINDOW = 24,
69 OP_ACCESS_NOTIFICATIONS = 25,
70 OP_CAMERA = 26,
71 OP_RECORD_AUDIO = 27,
Svet Ganovf1377f52015-04-28 12:09:01 -070072 OP_PLAY_AUDIO = 28,
73 OP_READ_CLIPBOARD = 29,
74 OP_WRITE_CLIPBOARD = 30,
75 OP_TAKE_MEDIA_BUTTONS = 31,
76 OP_TAKE_AUDIO_FOCUS = 32,
77 OP_AUDIO_MASTER_VOLUME = 33,
78 OP_AUDIO_VOICE_VOLUME = 34,
79 OP_AUDIO_RING_VOLUME = 35,
80 OP_AUDIO_MEDIA_VOLUME = 36,
81 OP_AUDIO_ALARM_VOLUME = 37,
82 OP_AUDIO_NOTIFICATION_VOLUME = 38,
83 OP_AUDIO_BLUETOOTH_VOLUME = 39,
84 OP_WAKE_LOCK = 40,
85 OP_MONITOR_LOCATION = 41,
86 OP_MONITOR_HIGH_POWER_LOCATION = 42,
87 OP_GET_USAGE_STATS = 43,
88 OP_MUTE_MICROPHONE = 44,
89 OP_TOAST_WINDOW = 45,
90 OP_PROJECT_MEDIA = 46,
91 OP_ACTIVATE_VPN = 47,
92 OP_WRITE_WALLPAPER = 48,
93 OP_ASSIST_STRUCTURE = 49,
94 OP_ASSIST_SCREENSHOT = 50,
95 OP_READ_PHONE_STATE = 51,
Svetoslavb412f6e2015-04-29 16:50:41 -070096 OP_ADD_VOICEMAIL = 52,
97 OP_USE_SIP = 53,
98 OP_PROCESS_OUTGOING_CALLS = 54,
99 OP_USE_FINGERPRINT = 55,
Jean-Michel Trivi614597b2016-11-11 13:41:54 -0800100 OP_BODY_SENSORS = 56,
101 OP_AUDIO_ACCESSIBILITY_VOLUME = 64,
Gilad Bretterb9209362018-04-08 13:46:32 +0300102 OP_READ_PHONE_NUMBERS = 65,
103 OP_REQUEST_INSTALL_PACKAGES = 66,
104 OP_PICTURE_IN_PICTURE = 67,
105 OP_INSTANT_APP_START_FOREGROUND = 68,
106 OP_ANSWER_PHONE_CALLS = 69,
107 OP_RUN_ANY_IN_BACKGROUND = 70,
108 OP_CHANGE_WIFI_STATE = 71,
109 OP_REQUEST_DELETE_PACKAGES = 72,
110 OP_BIND_ACCESSIBILITY_SERVICE = 73,
111 OP_ACCEPT_HANDOVER = 74,
112 OP_MANAGE_IPSEC_TUNNELS = 75,
113 OP_START_FOREGROUND = 76,
114 OP_BLUETOOTH_SCAN = 77,
Kevin Chyn38af61a2018-09-21 17:15:33 -0700115 OP_USE_BIOMETRIC = 78,
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700116 OP_ACTIVITY_RECOGNITION = 79,
117 OP_SMS_FINANCIAL_TRANSACTIONS = 80,
118 OP_READ_MEDIA_AUDIO = 81,
119 OP_WRITE_MEDIA_AUDIO = 82,
120 OP_READ_MEDIA_VIDEO = 83,
121 OP_WRITE_MEDIA_VIDEO = 84,
122 OP_READ_MEDIA_IMAGES = 85,
123 OP_WRITE_MEDIA_IMAGES = 86,
124 OP_LEGACY_STORAGE = 87,
125 OP_ACCESS_ACCESSIBILITY = 88,
126 OP_READ_DEVICE_IDENTIFIERS = 89,
127 _NUM_OP = 90
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800128 };
129
130 AppOpsManager();
131
132 int32_t checkOp(int32_t op, int32_t uid, const String16& callingPackage);
Jean-Michel Trivi94a566d2019-02-25 12:16:02 -0800133 int32_t checkAudioOpNoThrow(int32_t op, int32_t usage, int32_t uid,
134 const String16& callingPackage);
Philip P. Moltmannb1301882019-09-06 11:01:18 -0700135 // @Deprecated, use noteOp(int32_t, int32_t uid, const String16&, const String16&,
136 // const String16&) instead
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800137 int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage);
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700138 int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800139 const std::optional<String16>& attributionTag, const String16& message);
Philip P. Moltmannb1301882019-09-06 11:01:18 -0700140 // @Deprecated, use startOpNoThrow(int32_t, int32_t, const String16&, bool, const String16&,
141 // const String16&) instead
Svet Ganov616554c2018-02-26 13:27:26 -0800142 int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage,
143 bool startIfModeDefault);
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700144 int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800145 bool startIfModeDefault, const std::optional<String16>& attributionTag,
Philip P. Moltmannaeaaf1c2019-11-05 12:34:36 -0800146 const String16& message);
147 // @Deprecated, use finishOp(int32_t, int32_t, const String16&, bool, const String16&) instead
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800148 void finishOp(int32_t op, int32_t uid, const String16& callingPackage);
Philip P. Moltmannaeaaf1c2019-11-05 12:34:36 -0800149 void finishOp(int32_t op, int32_t uid, const String16& callingPackage,
Philip P. Moltmann3f6efd82020-03-05 15:06:19 -0800150 const std::optional<String16>& attributionTag);
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800151 void startWatchingMode(int32_t op, const String16& packageName,
152 const sp<IAppOpsCallback>& callback);
153 void stopWatchingMode(const sp<IAppOpsCallback>& callback);
Svetoslavb412f6e2015-04-29 16:50:41 -0700154 int32_t permissionToOpCode(const String16& permission);
Yin-Chia Yeh8e95ee82019-08-13 12:24:25 -0700155 void setCameraAudioRestriction(int32_t mode);
Yin-Chia Yeh8e95ee82019-08-13 12:24:25 -0700156
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800157private:
158 Mutex mLock;
159 sp<IAppOpsService> mService;
160
161 sp<IAppOpsService> getService();
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700162 bool shouldCollectNotes(int32_t opCode);
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800163};
164
165
Steven Moreland6511af52019-09-26 16:05:45 -0700166} // namespace android
Philip P. Moltmann66a87772019-06-24 16:30:00 -0700167
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800168// ---------------------------------------------------------------------------
Jiyong Park47f876b2018-04-17 13:56:46 +0900169
Dianne Hackborn5da5ca52013-02-12 15:12:21 -0800170#endif // ANDROID_APP_OPS_MANAGER_H