Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 1 | /* |
| 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 Moreland | c7a871e | 2020-11-10 21:56:57 +0000 | [diff] [blame] | 17 | #pragma once |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 18 | |
| 19 | #include <binder/IAppOpsService.h> |
| 20 | |
| 21 | #include <utils/threads.h> |
| 22 | |
Jooyung Han | 2d5878e | 2020-01-23 12:45:10 +0900 | [diff] [blame] | 23 | #include <optional> |
| 24 | |
Steven Moreland | c326a94 | 2019-09-09 16:07:52 -0700 | [diff] [blame] | 25 | #ifdef __ANDROID_VNDK__ |
| 26 | #error "This header is not visible to vendors" |
| 27 | #endif |
| 28 | |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 29 | // --------------------------------------------------------------------------- |
| 30 | namespace android { |
| 31 | |
| 32 | class AppOpsManager |
| 33 | { |
| 34 | public: |
| 35 | enum { |
Eino-Ville Talvala | e88a85e | 2013-02-19 12:54:57 -0800 | [diff] [blame] | 36 | MODE_ALLOWED = IAppOpsService::MODE_ALLOWED, |
| 37 | MODE_IGNORED = IAppOpsService::MODE_IGNORED, |
| 38 | MODE_ERRORED = IAppOpsService::MODE_ERRORED |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 39 | }; |
| 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 Ganov | f1377f5 | 2015-04-28 12:09:01 -0700 | [diff] [blame] | 71 | 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, |
Svetoslav | b412f6e | 2015-04-29 16:50:41 -0700 | [diff] [blame] | 95 | OP_ADD_VOICEMAIL = 52, |
| 96 | OP_USE_SIP = 53, |
| 97 | OP_PROCESS_OUTGOING_CALLS = 54, |
| 98 | OP_USE_FINGERPRINT = 55, |
Jean-Michel Trivi | 614597b | 2016-11-11 13:41:54 -0800 | [diff] [blame] | 99 | OP_BODY_SENSORS = 56, |
| 100 | OP_AUDIO_ACCESSIBILITY_VOLUME = 64, |
Gilad Bretter | b920936 | 2018-04-08 13:46:32 +0300 | [diff] [blame] | 101 | 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 Chyn | 38af61a | 2018-09-21 17:15:33 -0700 | [diff] [blame] | 114 | OP_USE_BIOMETRIC = 78, |
Philip P. Moltmann | 66a8777 | 2019-06-24 16:30:00 -0700 | [diff] [blame] | 115 | 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. Moltmann | 0cffd2c | 2020-03-24 10:23:09 -0700 | [diff] [blame] | 126 | 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 Kamath | 7f8989b | 2020-08-20 19:34:53 +0100 | [diff] [blame] | 135 | OP_NO_ISOLATED_STORAGE = 99, |
| 136 | OP_PHONE_CALL_MICROPHONE = 100, |
| 137 | OP_PHONE_CALL_CAMERA = 101, |
| 138 | OP_RECORD_AUDIO_HOTWORD = 102, |
| 139 | _NUM_OP = 103 |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | AppOpsManager(); |
| 143 | |
| 144 | int32_t checkOp(int32_t op, int32_t uid, const String16& callingPackage); |
Jean-Michel Trivi | 94a566d | 2019-02-25 12:16:02 -0800 | [diff] [blame] | 145 | int32_t checkAudioOpNoThrow(int32_t op, int32_t usage, int32_t uid, |
| 146 | const String16& callingPackage); |
Philip P. Moltmann | b130188 | 2019-09-06 11:01:18 -0700 | [diff] [blame] | 147 | // @Deprecated, use noteOp(int32_t, int32_t uid, const String16&, const String16&, |
| 148 | // const String16&) instead |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 149 | int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage); |
Philip P. Moltmann | 66a8777 | 2019-06-24 16:30:00 -0700 | [diff] [blame] | 150 | int32_t noteOp(int32_t op, int32_t uid, const String16& callingPackage, |
Philip P. Moltmann | 3f6efd8 | 2020-03-05 15:06:19 -0800 | [diff] [blame] | 151 | const std::optional<String16>& attributionTag, const String16& message); |
Philip P. Moltmann | b130188 | 2019-09-06 11:01:18 -0700 | [diff] [blame] | 152 | // @Deprecated, use startOpNoThrow(int32_t, int32_t, const String16&, bool, const String16&, |
| 153 | // const String16&) instead |
Svet Ganov | 616554c | 2018-02-26 13:27:26 -0800 | [diff] [blame] | 154 | int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage, |
| 155 | bool startIfModeDefault); |
Philip P. Moltmann | 66a8777 | 2019-06-24 16:30:00 -0700 | [diff] [blame] | 156 | int32_t startOpNoThrow(int32_t op, int32_t uid, const String16& callingPackage, |
Philip P. Moltmann | 3f6efd8 | 2020-03-05 15:06:19 -0800 | [diff] [blame] | 157 | bool startIfModeDefault, const std::optional<String16>& attributionTag, |
Philip P. Moltmann | aeaaf1c | 2019-11-05 12:34:36 -0800 | [diff] [blame] | 158 | const String16& message); |
| 159 | // @Deprecated, use finishOp(int32_t, int32_t, const String16&, bool, const String16&) instead |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 160 | void finishOp(int32_t op, int32_t uid, const String16& callingPackage); |
Philip P. Moltmann | aeaaf1c | 2019-11-05 12:34:36 -0800 | [diff] [blame] | 161 | void finishOp(int32_t op, int32_t uid, const String16& callingPackage, |
Philip P. Moltmann | 3f6efd8 | 2020-03-05 15:06:19 -0800 | [diff] [blame] | 162 | const std::optional<String16>& attributionTag); |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 163 | void startWatchingMode(int32_t op, const String16& packageName, |
| 164 | const sp<IAppOpsCallback>& callback); |
| 165 | void stopWatchingMode(const sp<IAppOpsCallback>& callback); |
Svetoslav | b412f6e | 2015-04-29 16:50:41 -0700 | [diff] [blame] | 166 | int32_t permissionToOpCode(const String16& permission); |
Yin-Chia Yeh | 8e95ee8 | 2019-08-13 12:24:25 -0700 | [diff] [blame] | 167 | void setCameraAudioRestriction(int32_t mode); |
Yin-Chia Yeh | 8e95ee8 | 2019-08-13 12:24:25 -0700 | [diff] [blame] | 168 | |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 169 | private: |
| 170 | Mutex mLock; |
| 171 | sp<IAppOpsService> mService; |
| 172 | |
| 173 | sp<IAppOpsService> getService(); |
Philip P. Moltmann | 66a8777 | 2019-06-24 16:30:00 -0700 | [diff] [blame] | 174 | bool shouldCollectNotes(int32_t opCode); |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 175 | }; |
| 176 | |
| 177 | |
Steven Moreland | 6511af5 | 2019-09-26 16:05:45 -0700 | [diff] [blame] | 178 | } // namespace android |
Philip P. Moltmann | 66a8777 | 2019-06-24 16:30:00 -0700 | [diff] [blame] | 179 | |
Dianne Hackborn | 5da5ca5 | 2013-02-12 15:12:21 -0800 | [diff] [blame] | 180 | // --------------------------------------------------------------------------- |