blob: 730e51b3e391145b8087b583dd32af6a1937ed41 [file] [log] [blame]
Steven Moreland2e87adc2018-08-20 19:47:00 -07001/*
2 * Copyright (C) 2018 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#pragma once
18
19#include <android/binder_ibinder.h>
Ruchir Rastogicc7a7462020-01-31 14:29:15 -080020#include <android/binder_shell.h>
Steven Moreland4d5ad492018-09-13 12:49:16 -070021#include "ibinder_internal.h"
Steven Moreland2e87adc2018-08-20 19:47:00 -070022
23#include <atomic>
Steven Moreland901c7452018-09-04 16:17:28 -070024#include <mutex>
Andrei Homescu9556bb12020-09-21 16:59:45 -070025#include <optional>
Steven Moreland901c7452018-09-04 16:17:28 -070026#include <vector>
Steven Moreland2e87adc2018-08-20 19:47:00 -070027
28#include <binder/Binder.h>
29#include <binder/IBinder.h>
Steven Morelanda194c452019-03-04 16:47:07 -080030#include <utils/Vector.h>
Steven Moreland2e87adc2018-08-20 19:47:00 -070031
32inline bool isUserCommand(transaction_code_t code) {
33 return code >= FIRST_CALL_TRANSACTION && code <= LAST_CALL_TRANSACTION;
34}
35
36struct ABBinder;
37struct ABpBinder;
38
39struct AIBinder : public virtual ::android::RefBase {
Chih-Hung Hsieh5ca1ea42018-12-20 15:42:22 -080040 explicit AIBinder(const AIBinder_Class* clazz);
Steven Moreland2e87adc2018-08-20 19:47:00 -070041 virtual ~AIBinder();
42
Steven Moreland71cddc32018-08-30 23:39:22 -070043 bool associateClass(const AIBinder_Class* clazz);
Steven Moreland2e87adc2018-08-20 19:47:00 -070044 const AIBinder_Class* getClass() const { return mClazz; }
45
Steven Moreland2e87adc2018-08-20 19:47:00 -070046 virtual ::android::sp<::android::IBinder> getBinder() = 0;
47 virtual ABBinder* asABBinder() { return nullptr; }
48 virtual ABpBinder* asABpBinder() { return nullptr; }
49
Steven Moreland5ea54da2018-09-04 13:29:55 -070050 bool isRemote() const {
51 ::android::sp<::android::IBinder> binder = const_cast<AIBinder*>(this)->getBinder();
52 return binder->remoteBinder() != nullptr;
53 }
Steven Moreland2e87adc2018-08-20 19:47:00 -070054
Steven Moreland6cf66ac2018-11-02 18:14:54 -070055 private:
Andrei Homescu9556bb12020-09-21 16:59:45 -070056 std::optional<bool> associateClassInternal(const AIBinder_Class* clazz,
Steven Moreland63872b52020-10-02 19:28:23 +000057 const ::android::String16& newDescriptor, bool set);
Andrei Homescu9556bb12020-09-21 16:59:45 -070058
Steven Moreland2e87adc2018-08-20 19:47:00 -070059 // AIBinder instance is instance of this class for a local object. In order to transact on a
60 // remote object, this also must be set for simplicity (although right now, only the
61 // interfaceDescriptor from it is used).
62 const AIBinder_Class* mClazz;
Andrei Homescu9556bb12020-09-21 16:59:45 -070063 std::mutex mClazzMutex;
Steven Moreland2e87adc2018-08-20 19:47:00 -070064};
65
66// This is a local AIBinder object with a known class.
67struct ABBinder : public AIBinder, public ::android::BBinder {
Steven Moreland2e87adc2018-08-20 19:47:00 -070068 virtual ~ABBinder();
69
70 void* getUserData() { return mUserData; }
71
72 ::android::sp<::android::IBinder> getBinder() override { return this; }
73 ABBinder* asABBinder() override { return this; }
74
75 const ::android::String16& getInterfaceDescriptor() const override;
Steven Morelanda194c452019-03-04 16:47:07 -080076 ::android::status_t dump(int fd, const ::android::Vector<::android::String16>& args) override;
Steven Moreland5d62e442018-09-13 15:01:02 -070077 ::android::status_t onTransact(uint32_t code, const ::android::Parcel& data,
78 ::android::Parcel* reply, binder_flags_t flags) override;
Steven Moreland2e87adc2018-08-20 19:47:00 -070079
Steven Moreland6cf66ac2018-11-02 18:14:54 -070080 private:
Steven Moreland71cddc32018-08-30 23:39:22 -070081 ABBinder(const AIBinder_Class* clazz, void* userData);
82
83 // only thing that should create an ABBinder
84 friend AIBinder* AIBinder_new(const AIBinder_Class*, void*);
85
Steven Moreland2e87adc2018-08-20 19:47:00 -070086 // Can contain implementation if this is a local binder. This can still be nullptr for a local
87 // binder. If it is nullptr, the implication is the implementation state is entirely external to
88 // this object and the functionality provided in the AIBinder_Class is sufficient.
89 void* mUserData;
90};
91
Steven Moreland94968952018-09-05 14:42:59 -070092// This binder object may be remote or local (even though it is 'Bp'). The implication if it is
93// local is that it is an IBinder object created outside of the domain of libbinder_ndk.
Steven Moreland2e87adc2018-08-20 19:47:00 -070094struct ABpBinder : public AIBinder, public ::android::BpRefBase {
Steven Moreland94968952018-09-05 14:42:59 -070095 // Looks up to see if this object has or is an existing ABBinder or ABpBinder object, otherwise
96 // it creates an ABpBinder object.
97 static ::android::sp<AIBinder> lookupOrCreateFromBinder(
98 const ::android::sp<::android::IBinder>& binder);
Steven Moreland71cddc32018-08-30 23:39:22 -070099
Steven Moreland2e87adc2018-08-20 19:47:00 -0700100 virtual ~ABpBinder();
101
Steven Moreland94968952018-09-05 14:42:59 -0700102 void onLastStrongRef(const void* id) override;
103
Steven Moreland2e87adc2018-08-20 19:47:00 -0700104 ::android::sp<::android::IBinder> getBinder() override { return remote(); }
105 ABpBinder* asABpBinder() override { return this; }
Steven Moreland71cddc32018-08-30 23:39:22 -0700106
Steven Moreland6cf66ac2018-11-02 18:14:54 -0700107 private:
Steven Moreland1f1bed62021-06-25 21:50:50 +0000108 friend android::sp<ABpBinder>;
Chih-Hung Hsieh5ca1ea42018-12-20 15:42:22 -0800109 explicit ABpBinder(const ::android::sp<::android::IBinder>& binder);
Steven Moreland2e87adc2018-08-20 19:47:00 -0700110};
111
112struct AIBinder_Class {
113 AIBinder_Class(const char* interfaceDescriptor, AIBinder_Class_onCreate onCreate,
114 AIBinder_Class_onDestroy onDestroy, AIBinder_Class_onTransact onTransact);
115
Stephen Crane8fde87f2020-11-17 15:06:11 -0800116 const ::android::String16& getInterfaceDescriptor() const { return mWideInterfaceDescriptor; }
117 const char* getInterfaceDescriptorUtf8() const { return mInterfaceDescriptor.c_str(); }
Steven Moreland2e87adc2018-08-20 19:47:00 -0700118
Steven Morelandf3ed8062021-08-27 14:31:14 -0700119 // whether a transaction header should be written
120 bool writeHeader = true;
121
Steven Morelanda194c452019-03-04 16:47:07 -0800122 // required to be non-null, implemented for every class
Steven Moreland88234072020-08-06 19:32:45 +0000123 const AIBinder_Class_onCreate onCreate = nullptr;
124 const AIBinder_Class_onDestroy onDestroy = nullptr;
125 const AIBinder_Class_onTransact onTransact = nullptr;
Steven Moreland2e87adc2018-08-20 19:47:00 -0700126
Steven Morelanda194c452019-03-04 16:47:07 -0800127 // optional methods for a class
Steven Moreland88234072020-08-06 19:32:45 +0000128 AIBinder_onDump onDump = nullptr;
129 AIBinder_handleShellCommand handleShellCommand = nullptr;
Steven Morelanda194c452019-03-04 16:47:07 -0800130
Steven Moreland6cf66ac2018-11-02 18:14:54 -0700131 private:
Stephen Crane8fde87f2020-11-17 15:06:11 -0800132 // Copy of the raw char string for when we don't have to return UTF-16
133 const std::string mInterfaceDescriptor;
Steven Moreland2e87adc2018-08-20 19:47:00 -0700134 // This must be a String16 since BBinder virtual getInterfaceDescriptor returns a reference to
135 // one.
Stephen Crane8fde87f2020-11-17 15:06:11 -0800136 const ::android::String16 mWideInterfaceDescriptor;
Steven Moreland2e87adc2018-08-20 19:47:00 -0700137};
Steven Moreland901c7452018-09-04 16:17:28 -0700138
139// Ownership is like this (when linked to death):
140//
141// AIBinder_DeathRecipient -sp-> TransferDeathRecipient <-wp-> IBinder
142//
143// When the AIBinder_DeathRecipient is dropped, so are the actual underlying death recipients. When
144// the IBinder dies, only a wp to it is kept.
Steven Moreland64127ca2019-03-13 09:25:44 -0700145struct AIBinder_DeathRecipient : ::android::RefBase {
Steven Moreland901c7452018-09-04 16:17:28 -0700146 // One of these is created for every linkToDeath. This is to be able to recover data when a
147 // binderDied receipt only gives us information about the IBinder.
148 struct TransferDeathRecipient : ::android::IBinder::DeathRecipient {
149 TransferDeathRecipient(const ::android::wp<::android::IBinder>& who, void* cookie,
Steven Moreland64127ca2019-03-13 09:25:44 -0700150 const ::android::wp<AIBinder_DeathRecipient>& parentRecipient,
Alice Ryhlea9d9d22021-08-27 07:51:30 +0000151 const AIBinder_DeathRecipient_onBinderDied onDied,
152 const AIBinder_DeathRecipient_onBinderUnlinked onUnlinked)
153 : mWho(who),
154 mCookie(cookie),
155 mParentRecipient(parentRecipient),
156 mOnDied(onDied),
157 mOnUnlinked(onUnlinked) {}
158 ~TransferDeathRecipient();
Steven Moreland901c7452018-09-04 16:17:28 -0700159
160 void binderDied(const ::android::wp<::android::IBinder>& who) override;
161
162 const ::android::wp<::android::IBinder>& getWho() { return mWho; }
163 void* getCookie() { return mCookie; }
164
Steven Moreland6cf66ac2018-11-02 18:14:54 -0700165 private:
Steven Moreland901c7452018-09-04 16:17:28 -0700166 ::android::wp<::android::IBinder> mWho;
167 void* mCookie;
Steven Moreland64127ca2019-03-13 09:25:44 -0700168
169 ::android::wp<AIBinder_DeathRecipient> mParentRecipient;
170
171 // This is kept separately from AIBinder_DeathRecipient in case the death recipient is
172 // deleted while the death notification is fired
Steven Morelande88055b2019-03-13 09:23:18 -0700173 const AIBinder_DeathRecipient_onBinderDied mOnDied;
Alice Ryhlea9d9d22021-08-27 07:51:30 +0000174 const AIBinder_DeathRecipient_onBinderUnlinked mOnUnlinked;
Steven Moreland901c7452018-09-04 16:17:28 -0700175 };
176
Chih-Hung Hsieh5ca1ea42018-12-20 15:42:22 -0800177 explicit AIBinder_DeathRecipient(AIBinder_DeathRecipient_onBinderDied onDied);
Jiyong Park4f97a8c2020-11-16 18:11:14 +0900178 binder_status_t linkToDeath(const ::android::sp<::android::IBinder>&, void* cookie);
179 binder_status_t unlinkToDeath(const ::android::sp<::android::IBinder>& binder, void* cookie);
Alice Ryhlea9d9d22021-08-27 07:51:30 +0000180 void setOnUnlinked(AIBinder_DeathRecipient_onBinderUnlinked onUnlinked);
Steven Moreland901c7452018-09-04 16:17:28 -0700181
Steven Moreland6cf66ac2018-11-02 18:14:54 -0700182 private:
Steven Moreland64127ca2019-03-13 09:25:44 -0700183 // When the user of this API deletes a Bp object but not the death recipient, the
184 // TransferDeathRecipient object can't be cleaned up. This is called whenever a new
185 // TransferDeathRecipient is linked, and it ensures that mDeathRecipients can't grow unbounded.
186 void pruneDeadTransferEntriesLocked();
187
Steven Moreland901c7452018-09-04 16:17:28 -0700188 std::mutex mDeathRecipientsMutex;
189 std::vector<::android::sp<TransferDeathRecipient>> mDeathRecipients;
190 AIBinder_DeathRecipient_onBinderDied mOnDied;
Alice Ryhlea9d9d22021-08-27 07:51:30 +0000191 AIBinder_DeathRecipient_onBinderUnlinked mOnUnlinked;
Steven Moreland901c7452018-09-04 16:17:28 -0700192};