1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <android-base/logging.h>
#include <binder/Binder.h>
#include <binder/IServiceManager.h>
#include <binder/Parcel.h>
#include <binder/RpcServer.h>
#include <binder/RpcSession.h>
#include <cutils/trace.h>
#include <gtest/gtest.h>
#include <utils/CallStack.h>
#include <malloc.h>
#include <functional>
#include <vector>
static android::String8 gEmpty(""); // make sure first allocation from optimization runs
struct DestructionAction {
DestructionAction(std::function<void()> f) : mF(std::move(f)) {}
~DestructionAction() { mF(); };
private:
std::function<void()> mF;
};
// Group of hooks
struct MallocHooks {
decltype(__malloc_hook) malloc_hook;
decltype(__realloc_hook) realloc_hook;
static MallocHooks save() {
return {
.malloc_hook = __malloc_hook,
.realloc_hook = __realloc_hook,
};
}
void overwrite() const {
__malloc_hook = malloc_hook;
__realloc_hook = realloc_hook;
}
};
static const MallocHooks orig_malloc_hooks = MallocHooks::save();
// When malloc is hit, executes lambda.
namespace LambdaHooks {
using AllocationHook = std::function<void(size_t)>;
static std::vector<AllocationHook> lambdas = {};
static void* lambda_realloc_hook(void* ptr, size_t bytes, const void* arg);
static void* lambda_malloc_hook(size_t bytes, const void* arg);
static const MallocHooks lambda_malloc_hooks = {
.malloc_hook = lambda_malloc_hook,
.realloc_hook = lambda_realloc_hook,
};
static void* lambda_malloc_hook(size_t bytes, const void* arg) {
{
orig_malloc_hooks.overwrite();
lambdas.at(lambdas.size() - 1)(bytes);
lambda_malloc_hooks.overwrite();
}
return orig_malloc_hooks.malloc_hook(bytes, arg);
}
static void* lambda_realloc_hook(void* ptr, size_t bytes, const void* arg) {
{
orig_malloc_hooks.overwrite();
lambdas.at(lambdas.size() - 1)(bytes);
lambda_malloc_hooks.overwrite();
}
return orig_malloc_hooks.realloc_hook(ptr, bytes, arg);
}
}
// Action to execute when malloc is hit. Supports nesting. Malloc is not
// restricted when the allocation hook is being processed.
__attribute__((warn_unused_result))
DestructionAction OnMalloc(LambdaHooks::AllocationHook f) {
MallocHooks before = MallocHooks::save();
LambdaHooks::lambdas.emplace_back(std::move(f));
LambdaHooks::lambda_malloc_hooks.overwrite();
return DestructionAction([before]() {
before.overwrite();
LambdaHooks::lambdas.pop_back();
});
}
// exported symbol, to force compiler not to optimize away pointers we set here
const void* imaginary_use;
TEST(TestTheTest, OnMalloc) {
size_t mallocs = 0;
{
const auto on_malloc = OnMalloc([&](size_t bytes) {
mallocs++;
EXPECT_EQ(bytes, 40);
});
imaginary_use = new int[10];
}
EXPECT_EQ(mallocs, 1);
}
__attribute__((warn_unused_result))
DestructionAction ScopeDisallowMalloc() {
return OnMalloc([&](size_t bytes) {
ADD_FAILURE() << "Unexpected allocation: " << bytes;
using android::CallStack;
std::cout << CallStack::stackToString("UNEXPECTED ALLOCATION", CallStack::getCurrent(4 /*ignoreDepth*/).get())
<< std::endl;
});
}
using android::BBinder;
using android::defaultServiceManager;
using android::IBinder;
using android::IServiceManager;
using android::OK;
using android::Parcel;
using android::RpcServer;
using android::RpcSession;
using android::sp;
using android::status_t;
using android::statusToString;
using android::String16;
static sp<IBinder> GetRemoteBinder() {
// This gets binder representing the service manager
// the current IServiceManager API doesn't expose the binder, and
// I want to avoid adding usages of the AIDL generated interface it
// is using underneath, so to avoid people copying it.
sp<IBinder> binder = defaultServiceManager()->checkService(String16("manager"));
EXPECT_NE(nullptr, binder);
return binder;
}
TEST(BinderAllocation, ParcelOnStack) {
const auto m = ScopeDisallowMalloc();
Parcel p;
imaginary_use = p.data();
}
TEST(BinderAllocation, GetServiceManager) {
defaultServiceManager(); // first call may alloc
const auto m = ScopeDisallowMalloc();
defaultServiceManager();
}
// note, ping does not include interface descriptor
TEST(BinderAllocation, PingTransaction) {
sp<IBinder> a_binder = GetRemoteBinder();
const auto m = ScopeDisallowMalloc();
a_binder->pingBinder();
}
TEST(BinderAllocation, InterfaceDescriptorTransaction) {
sp<IBinder> a_binder = GetRemoteBinder();
size_t mallocs = 0;
const auto on_malloc = OnMalloc([&](size_t bytes) {
mallocs++;
// Happens to be SM package length. We could switch to forking
// and registering our own service if it became an issue.
#if defined(__LP64__)
EXPECT_EQ(bytes, 78);
#else
EXPECT_EQ(bytes, 70);
#endif
});
a_binder->getInterfaceDescriptor();
a_binder->getInterfaceDescriptor();
a_binder->getInterfaceDescriptor();
EXPECT_EQ(mallocs, 1);
}
TEST(BinderAllocation, SmallTransaction) {
String16 empty_descriptor = String16("");
sp<IServiceManager> manager = defaultServiceManager();
size_t mallocs = 0;
const auto on_malloc = OnMalloc([&](size_t bytes) {
mallocs++;
// Parcel should allocate a small amount by default
EXPECT_EQ(bytes, 128);
});
manager->checkService(empty_descriptor);
EXPECT_EQ(mallocs, 1);
}
TEST(RpcBinderAllocation, SetupRpcServer) {
std::string tmp = getenv("TMPDIR") ?: "/tmp";
std::string addr = tmp + "/binderRpcBenchmark";
(void)unlink(addr.c_str());
auto server = RpcServer::make();
server->setRootObject(sp<BBinder>::make());
ASSERT_EQ(OK, server->setupUnixDomainServer(addr.c_str()));
std::thread([server]() { server->join(); }).detach();
auto session = RpcSession::make();
status_t status = session->setupUnixDomainClient(addr.c_str());
ASSERT_EQ(status, OK) << "Could not connect: " << addr << ": " << statusToString(status).c_str();
auto remoteBinder = session->getRootObject();
ASSERT_NE(remoteBinder, nullptr);
size_t mallocs = 0, totalBytes = 0;
{
const auto on_malloc = OnMalloc([&](size_t bytes) {
mallocs++;
totalBytes += bytes;
});
ASSERT_EQ(OK, remoteBinder->pingBinder());
}
EXPECT_EQ(mallocs, 1);
EXPECT_EQ(totalBytes, 40);
}
int main(int argc, char** argv) {
if (getenv("LIBC_HOOKS_ENABLE") == nullptr) {
CHECK(0 == setenv("LIBC_HOOKS_ENABLE", "1", true /*overwrite*/));
execv(argv[0], argv);
return 1;
}
::testing::InitGoogleTest(&argc, argv);
// if tracing is enabled, take in one-time cost
(void)ATRACE_INIT();
(void)ATRACE_GET_ENABLED_TAGS();
return RUN_ALL_TESTS();
}
|