| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2005 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 | #define LOG_TAG "PermissionController" | 
 | 18 |  | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 19 | #include <binder/IPermissionController.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <utils/Log.h> | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 22 | #include <binder/Parcel.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include <utils/String8.h> | 
 | 24 |  | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 25 | #include <private/binder/Static.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 |  | 
 | 27 | namespace android { | 
 | 28 |  | 
 | 29 | // ---------------------------------------------------------------------- | 
 | 30 |  | 
 | 31 | class BpPermissionController : public BpInterface<IPermissionController> | 
 | 32 | { | 
 | 33 | public: | 
| Chih-Hung Hsieh | e2347b7 | 2016-04-25 15:41:05 -0700 | [diff] [blame] | 34 |     explicit BpPermissionController(const sp<IBinder>& impl) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 |         : BpInterface<IPermissionController>(impl) | 
 | 36 |     { | 
 | 37 |     } | 
| Brad Fitzpatrick | 837a0d0 | 2010-07-13 15:33:35 -0700 | [diff] [blame] | 38 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 |     virtual bool checkPermission(const String16& permission, int32_t pid, int32_t uid) | 
 | 40 |     { | 
 | 41 |         Parcel data, reply; | 
 | 42 |         data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor()); | 
 | 43 |         data.writeString16(permission); | 
 | 44 |         data.writeInt32(pid); | 
 | 45 |         data.writeInt32(uid); | 
 | 46 |         remote()->transact(CHECK_PERMISSION_TRANSACTION, data, &reply); | 
 | 47 |         // fail on exception | 
| Brad Fitzpatrick | 837a0d0 | 2010-07-13 15:33:35 -0700 | [diff] [blame] | 48 |         if (reply.readExceptionCode() != 0) return 0; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 49 |         return reply.readInt32() != 0; | 
 | 50 |     } | 
| Svet Ganov | f1377f5 | 2015-04-28 12:09:01 -0700 | [diff] [blame] | 51 |  | 
| Jeff Sharkey | 7afcb3f | 2018-04-09 12:58:40 -0600 | [diff] [blame] | 52 |     virtual int32_t noteOp(const String16& op, int32_t uid, const String16& packageName) | 
 | 53 |     { | 
 | 54 |         Parcel data, reply; | 
 | 55 |         data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor()); | 
 | 56 |         data.writeString16(op); | 
 | 57 |         data.writeInt32(uid); | 
 | 58 |         data.writeString16(packageName); | 
 | 59 |         remote()->transact(NOTE_OP_TRANSACTION, data, &reply); | 
 | 60 |         // fail on exception | 
 | 61 |         if (reply.readExceptionCode() != 0) return 2; // MODE_ERRORED | 
 | 62 |         return reply.readInt32(); | 
 | 63 |     } | 
 | 64 |  | 
| Svet Ganov | f1377f5 | 2015-04-28 12:09:01 -0700 | [diff] [blame] | 65 |     virtual void getPackagesForUid(const uid_t uid, Vector<String16>& packages) | 
 | 66 |     { | 
 | 67 |         Parcel data, reply; | 
 | 68 |         data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor()); | 
 | 69 |         data.writeInt32(uid); | 
 | 70 |         remote()->transact(GET_PACKAGES_FOR_UID_TRANSACTION, data, &reply); | 
 | 71 |         // fail on exception | 
 | 72 |         if (reply.readExceptionCode() != 0) { | 
 | 73 |             return; | 
 | 74 |         } | 
 | 75 |         const int32_t size = reply.readInt32(); | 
 | 76 |         if (size <= 0) { | 
 | 77 |             return; | 
 | 78 |         } | 
 | 79 |         for (int i = 0; i < size; i++) { | 
 | 80 |             packages.push(reply.readString16()); | 
 | 81 |         } | 
 | 82 |     } | 
| Svetoslav | b412f6e | 2015-04-29 16:50:41 -0700 | [diff] [blame] | 83 |  | 
 | 84 |     virtual bool isRuntimePermission(const String16& permission) | 
 | 85 |     { | 
 | 86 |         Parcel data, reply; | 
 | 87 |         data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor()); | 
 | 88 |         data.writeString16(permission); | 
 | 89 |         remote()->transact(IS_RUNTIME_PERMISSION_TRANSACTION, data, &reply); | 
 | 90 |         // fail on exception | 
 | 91 |         if (reply.readExceptionCode() != 0) return false; | 
 | 92 |         return reply.readInt32() != 0; | 
 | 93 |     } | 
| Svet Ganov | e752a5c | 2018-01-15 17:14:20 -0800 | [diff] [blame] | 94 |  | 
 | 95 |     virtual int getPackageUid(const String16& package, int flags) | 
 | 96 |     { | 
 | 97 |         Parcel data, reply; | 
 | 98 |         data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor()); | 
 | 99 |         data.writeString16(package); | 
 | 100 |         data.writeInt32(flags); | 
 | 101 |         remote()->transact(GET_PACKAGE_UID_TRANSACTION, data, &reply); | 
 | 102 |         // fail on exception | 
 | 103 |         if (reply.readExceptionCode() != 0) return false; | 
 | 104 |         return reply.readInt32(); | 
 | 105 |     } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 106 | }; | 
 | 107 |  | 
 | 108 | IMPLEMENT_META_INTERFACE(PermissionController, "android.os.IPermissionController"); | 
 | 109 |  | 
 | 110 | // ---------------------------------------------------------------------- | 
 | 111 |  | 
| Jiyong Park | b86c866 | 2018-10-29 23:01:57 +0900 | [diff] [blame] | 112 | // NOLINTNEXTLINE(google-default-arguments) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 113 | status_t BnPermissionController::onTransact( | 
 | 114 |     uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) | 
 | 115 | { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 116 |     switch(code) { | 
 | 117 |         case CHECK_PERMISSION_TRANSACTION: { | 
 | 118 |             CHECK_INTERFACE(IPermissionController, data, reply); | 
 | 119 |             String16 permission = data.readString16(); | 
 | 120 |             int32_t pid = data.readInt32(); | 
 | 121 |             int32_t uid = data.readInt32(); | 
 | 122 |             bool res = checkPermission(permission, pid, uid); | 
| Brad Fitzpatrick | 837a0d0 | 2010-07-13 15:33:35 -0700 | [diff] [blame] | 123 |             reply->writeNoException(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 124 |             reply->writeInt32(res ? 1 : 0); | 
 | 125 |             return NO_ERROR; | 
 | 126 |         } break; | 
| Svet Ganov | f1377f5 | 2015-04-28 12:09:01 -0700 | [diff] [blame] | 127 |  | 
| Jeff Sharkey | 7afcb3f | 2018-04-09 12:58:40 -0600 | [diff] [blame] | 128 |         case NOTE_OP_TRANSACTION: { | 
 | 129 |             CHECK_INTERFACE(IPermissionController, data, reply); | 
 | 130 |             String16 op = data.readString16(); | 
 | 131 |             int32_t uid = data.readInt32(); | 
 | 132 |             String16 packageName = data.readString16(); | 
 | 133 |             int32_t res = noteOp(op, uid, packageName); | 
 | 134 |             reply->writeNoException(); | 
 | 135 |             reply->writeInt32(res); | 
 | 136 |             return NO_ERROR; | 
 | 137 |         } break; | 
 | 138 |  | 
| Svet Ganov | f1377f5 | 2015-04-28 12:09:01 -0700 | [diff] [blame] | 139 |         case GET_PACKAGES_FOR_UID_TRANSACTION: { | 
 | 140 |             CHECK_INTERFACE(IPermissionController, data, reply); | 
 | 141 |             int32_t uid = data.readInt32(); | 
 | 142 |             Vector<String16> packages; | 
 | 143 |             getPackagesForUid(uid, packages); | 
 | 144 |             reply->writeNoException(); | 
 | 145 |             size_t size = packages.size(); | 
 | 146 |             reply->writeInt32(size); | 
 | 147 |             for (size_t i = 0; i < size; i++) { | 
 | 148 |                 reply->writeString16(packages[i]); | 
 | 149 |             } | 
 | 150 |             return NO_ERROR; | 
 | 151 |         } break; | 
 | 152 |  | 
| Svetoslav | b412f6e | 2015-04-29 16:50:41 -0700 | [diff] [blame] | 153 |         case IS_RUNTIME_PERMISSION_TRANSACTION: { | 
 | 154 |             CHECK_INTERFACE(IPermissionController, data, reply); | 
 | 155 |             String16 permission = data.readString16(); | 
 | 156 |             const bool res = isRuntimePermission(permission); | 
 | 157 |             reply->writeNoException(); | 
 | 158 |             reply->writeInt32(res ? 1 : 0); | 
 | 159 |             return NO_ERROR; | 
 | 160 |         } break; | 
 | 161 |  | 
| Svet Ganov | e752a5c | 2018-01-15 17:14:20 -0800 | [diff] [blame] | 162 |         case GET_PACKAGE_UID_TRANSACTION: { | 
 | 163 |             CHECK_INTERFACE(IPermissionController, data, reply); | 
 | 164 |             String16 package = data.readString16(); | 
 | 165 |             int flags = data.readInt32(); | 
 | 166 |             const int uid = getPackageUid(package, flags); | 
 | 167 |             reply->writeNoException(); | 
 | 168 |             reply->writeInt32(uid); | 
 | 169 |             return NO_ERROR; | 
 | 170 |         } break; | 
 | 171 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 172 |         default: | 
 | 173 |             return BBinder::onTransact(code, data, reply, flags); | 
 | 174 |     } | 
 | 175 | } | 
 | 176 |  | 
 | 177 | }; // namespace android |