blob: 3d993588a426ac0958edf864235dadbf79fae4ac [file] [log] [blame]
Steven Morelanddea3cf92019-07-16 18:06:55 -07001/*
2 * Copyright (C) 2019 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
Kalesh Singh8b802912021-03-31 12:13:56 -040017#include <android/binder_libbinder.h>
Steven Moreland12300a02019-08-02 13:27:15 -070018#include <android/binder_manager.h>
19#include <android/binder_stability.h>
Steven Morelanddea3cf92019-07-16 18:06:55 -070020#include <binder/Binder.h>
21#include <binder/IBinder.h>
22#include <binder/IPCThreadState.h>
23#include <binder/IServiceManager.h>
24#include <binder/Parcel.h>
25#include <binder/Stability.h>
26#include <gtest/gtest.h>
27
28#include <sys/prctl.h>
29
Steven Moreland12300a02019-08-02 13:27:15 -070030#include "aidl/BnBinderStabilityTest.h"
Steven Morelanddea3cf92019-07-16 18:06:55 -070031#include "BnBinderStabilityTest.h"
Steven Morelanddea3cf92019-07-16 18:06:55 -070032
33using namespace android;
Steven Moreland12300a02019-08-02 13:27:15 -070034using namespace ndk;
Steven Morelanddea3cf92019-07-16 18:06:55 -070035using android::binder::Status;
Steven Moreland12300a02019-08-02 13:27:15 -070036using android::internal::Stability; // for testing only!
Steven Morelanddea3cf92019-07-16 18:06:55 -070037
Steven Moreland43564fd2019-08-08 17:27:12 -070038const String16 kSystemStabilityServer = String16("binder_stability_test_service_system");
Steven Morelanddea3cf92019-07-16 18:06:55 -070039
Steven Moreland43564fd2019-08-08 17:27:12 -070040// This is handwritten so that we can test different stability levels w/o having the AIDL
41// compiler assign them. Hand-writing binder interfaces is considered a bad practice
42// sanity reasons. YOU SHOULD DEFINE AN AIDL INTERFACE INSTEAD!
43class BadStableBinder : public BBinder {
Steven Moreland12300a02019-08-02 13:27:15 -070044public:
Steven Moreland43564fd2019-08-08 17:27:12 -070045 static constexpr uint32_t USER_TRANSACTION = IBinder::FIRST_CALL_TRANSACTION;
46 static String16 kDescriptor;
47
48 bool gotUserTransaction = false;
49
50 static status_t doUserTransaction(const sp<IBinder>& binder) {
51 Parcel data, reply;
52 data.writeInterfaceToken(kDescriptor);
53 return binder->transact(USER_TRANSACTION, data, &reply, 0/*flags*/);
Steven Morelandc709dd82019-08-05 20:30:14 -070054 }
Steven Moreland12300a02019-08-02 13:27:15 -070055
Steven Moreland43564fd2019-08-08 17:27:12 -070056 status_t onTransact(uint32_t code,
57 const Parcel& data, Parcel* reply, uint32_t flags) override {
58 if (code == USER_TRANSACTION) {
59 // not interested in this kind of stability. Make sure
60 // we have a test failure
61 LOG_ALWAYS_FATAL_IF(!data.enforceInterface(kDescriptor));
62
63 gotUserTransaction = true;
64
65 ALOGE("binder stability: Got user transaction");
66 return OK;
67 }
68 return BBinder::onTransact(code, data, reply, flags);
69 }
70
71 static sp<BadStableBinder> undef() {
72 sp<BadStableBinder> iface = new BadStableBinder();
Steven Moreland12300a02019-08-02 13:27:15 -070073 return iface;
74 }
75
Steven Moreland43564fd2019-08-08 17:27:12 -070076 static sp<BadStableBinder> system() {
77 sp<BadStableBinder> iface = new BadStableBinder();
78 Stability::markCompilationUnit(iface.get()); // <- for test only
Steven Moreland12300a02019-08-02 13:27:15 -070079 return iface;
80 }
81
Steven Moreland43564fd2019-08-08 17:27:12 -070082 static sp<BadStableBinder> vintf() {
83 sp<BadStableBinder> iface = new BadStableBinder();
84 Stability::markVintf(iface.get()); // <- for test only
85 return iface;
86 }
87
88 static sp<BadStableBinder> vendor() {
89 sp<BadStableBinder> iface = new BadStableBinder();
90 Stability::markVndk(iface.get()); // <- for test only
Steven Moreland12300a02019-08-02 13:27:15 -070091 return iface;
92 }
Steven Morelandc709dd82019-08-05 20:30:14 -070093};
Steven Moreland43564fd2019-08-08 17:27:12 -070094String16 BadStableBinder::kDescriptor = String16("BadStableBinder.test");
Steven Morelandc709dd82019-08-05 20:30:14 -070095
Steven Morelanddea3cf92019-07-16 18:06:55 -070096// NO! NO! NO! Do not even think of doing something like this!
97// This is for testing! If a class like this was actually used in production,
98// it would ruin everything!
Steven Moreland43564fd2019-08-08 17:27:12 -070099class MyBinderStabilityTest : public BnBinderStabilityTest {
Steven Morelanddea3cf92019-07-16 18:06:55 -0700100public:
Steven Moreland43564fd2019-08-08 17:27:12 -0700101 Status sendBinder(const sp<IBinder>& /*binder*/) override {
Steven Morelanddea3cf92019-07-16 18:06:55 -0700102 return Status::ok();
103 }
Steven Moreland43564fd2019-08-08 17:27:12 -0700104 Status sendAndCallBinder(const sp<IBinder>& binder) override {
Steven Morelande5a6a872021-05-19 22:11:37 +0000105 ALOGI("Debug log stability: %s", Stability::debugToString(binder).c_str());
Steven Moreland43564fd2019-08-08 17:27:12 -0700106 return Status::fromExceptionCode(BadStableBinder::doUserTransaction(binder));
Steven Morelandc709dd82019-08-05 20:30:14 -0700107 }
Steven Moreland43564fd2019-08-08 17:27:12 -0700108 Status returnNoStabilityBinder(sp<IBinder>* _aidl_return) override {
109 *_aidl_return = BadStableBinder::undef();
Steven Morelanddea3cf92019-07-16 18:06:55 -0700110 return Status::ok();
111 }
Steven Moreland43564fd2019-08-08 17:27:12 -0700112 Status returnLocalStabilityBinder(sp<IBinder>* _aidl_return) override {
113 *_aidl_return = BadStableBinder::system();
Steven Morelanddea3cf92019-07-16 18:06:55 -0700114 return Status::ok();
115 }
Steven Moreland43564fd2019-08-08 17:27:12 -0700116 Status returnVintfStabilityBinder(sp<IBinder>* _aidl_return) override {
117 *_aidl_return = BadStableBinder::vintf();
Steven Morelanddea3cf92019-07-16 18:06:55 -0700118 return Status::ok();
119 }
Steven Moreland43564fd2019-08-08 17:27:12 -0700120 Status returnVendorStabilityBinder(sp<IBinder>* _aidl_return) override {
121 *_aidl_return = BadStableBinder::vendor();
Steven Morelandc709dd82019-08-05 20:30:14 -0700122 return Status::ok();
Steven Morelanddea3cf92019-07-16 18:06:55 -0700123 }
124};
125
Steven Moreland86a17f82019-09-10 10:18:00 -0700126TEST(BinderStability, OnlyVintfStabilityBinderNeedsVintfDeclaration) {
127 EXPECT_FALSE(Stability::requiresVintfDeclaration(nullptr));
128 EXPECT_FALSE(Stability::requiresVintfDeclaration(BadStableBinder::undef()));
129 EXPECT_FALSE(Stability::requiresVintfDeclaration(BadStableBinder::system()));
130 EXPECT_FALSE(Stability::requiresVintfDeclaration(BadStableBinder::vendor()));
131
132 EXPECT_TRUE(Stability::requiresVintfDeclaration(BadStableBinder::vintf()));
133}
134
Kalesh Singh3b9ac062021-04-05 10:07:50 -0400135TEST(BinderStability, ForceDowngradeToLocalStability) {
Steven Morelande35fef32021-03-23 01:38:24 +0000136 sp<IBinder> someBinder = BadStableBinder::vintf();
137
138 EXPECT_TRUE(Stability::requiresVintfDeclaration(someBinder));
139
140 // silly to do this after already using the binder, but it's for the test
Kalesh Singh8b802912021-03-31 12:13:56 -0400141 Stability::forceDowngradeToLocalStability(someBinder);
142
143 EXPECT_FALSE(Stability::requiresVintfDeclaration(someBinder));
144}
145
Kalesh Singh3b9ac062021-04-05 10:07:50 -0400146TEST(BinderStability, NdkForceDowngradeToLocalStability) {
Kalesh Singh8b802912021-03-31 12:13:56 -0400147 sp<IBinder> someBinder = BadStableBinder::vintf();
148
149 EXPECT_TRUE(Stability::requiresVintfDeclaration(someBinder));
150
151 // silly to do this after already using the binder, but it's for the test
152 AIBinder_forceDowngradeToLocalStability(AIBinder_fromPlatformBinder(someBinder));
Steven Morelande35fef32021-03-23 01:38:24 +0000153
154 EXPECT_FALSE(Stability::requiresVintfDeclaration(someBinder));
155}
156
Kalesh Singh3b9ac062021-04-05 10:07:50 -0400157TEST(BinderStability, ForceDowngradeToVendorStability) {
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000158#pragma clang diagnostic push
159#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Kalesh Singh3b9ac062021-04-05 10:07:50 -0400160 sp<IBinder> serverBinder = android::defaultServiceManager()->getService(kSystemStabilityServer);
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000161#pragma clang diagnostic pop
Kalesh Singh3b9ac062021-04-05 10:07:50 -0400162 auto server = interface_cast<IBinderStabilityTest>(serverBinder);
163
164 ASSERT_NE(nullptr, server.get());
165 ASSERT_NE(nullptr, IInterface::asBinder(server)->remoteBinder());
166
167 {
168 sp<BadStableBinder> binder = BadStableBinder::vintf();
169
170 EXPECT_TRUE(Stability::requiresVintfDeclaration(binder));
171 EXPECT_TRUE(server->sendAndCallBinder(binder).isOk());
172 EXPECT_TRUE(binder->gotUserTransaction);
173 }
174 {
175 sp<BadStableBinder> binder = BadStableBinder::vintf();
176
177 // This method should never be called directly. This is done only for the test.
178 Stability::forceDowngradeToVendorStability(binder);
179
180 // Binder downgraded to vendor stability, cannot be called from system context
181 EXPECT_FALSE(Stability::requiresVintfDeclaration(binder));
182 EXPECT_EQ(BAD_TYPE, server->sendAndCallBinder(binder).exceptionCode());
183 EXPECT_FALSE(binder->gotUserTransaction);
184 }
185}
186
Steven Moreland86a17f82019-09-10 10:18:00 -0700187TEST(BinderStability, VintfStabilityServerMustBeDeclaredInManifest) {
188 sp<IBinder> vintfServer = BadStableBinder::vintf();
189
Steven Morelandb82b8f82019-10-28 10:52:34 -0700190 for (const char* instance8 : {
191 ".", "/", "/.", "a.d.IFoo", "foo", "a.d.IFoo/foo"
192 }) {
193 String16 instance (instance8);
194
195 EXPECT_EQ(Status::EX_ILLEGAL_ARGUMENT,
196 android::defaultServiceManager()->addService(String16("."), vintfServer)) << instance8;
197 EXPECT_FALSE(android::defaultServiceManager()->isDeclared(instance)) << instance8;
Steven Morelandedd4e072021-04-21 00:27:29 +0000198 EXPECT_EQ(std::nullopt, android::defaultServiceManager()->updatableViaApex(instance))
199 << instance8;
Steven Morelandb82b8f82019-10-28 10:52:34 -0700200 }
Steven Moreland86a17f82019-09-10 10:18:00 -0700201}
202
Devin Moore5e4c2f12021-09-09 22:36:33 +0000203TEST(BinderStability, ConnectionInfoRequiresManifestEntries) {
204 sp<IServiceManager> sm = android::defaultServiceManager();
205 sp<IBinder> systemBinder = BadStableBinder::system();
206 EXPECT_EQ(OK, sm->addService(String16("no.connection.foo"), systemBinder));
207 std::optional<android::IServiceManager::ConnectionInfo> connectionInfo;
208 connectionInfo = sm->getConnectionInfo(String16("no.connection.foo"));
209 EXPECT_EQ(connectionInfo, std::nullopt);
210}
Steven Moreland43564fd2019-08-08 17:27:12 -0700211TEST(BinderStability, CantCallVendorBinderInSystemContext) {
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000212#pragma clang diagnostic push
213#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Steven Moreland43564fd2019-08-08 17:27:12 -0700214 sp<IBinder> serverBinder = android::defaultServiceManager()->getService(kSystemStabilityServer);
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000215#pragma clang diagnostic pop
Steven Moreland43564fd2019-08-08 17:27:12 -0700216 auto server = interface_cast<IBinderStabilityTest>(serverBinder);
Steven Morelanddea3cf92019-07-16 18:06:55 -0700217
Steven Moreland43564fd2019-08-08 17:27:12 -0700218 ASSERT_NE(nullptr, server.get());
219 ASSERT_NE(nullptr, IInterface::asBinder(server)->remoteBinder());
Steven Morelandc709dd82019-08-05 20:30:14 -0700220
Steven Moreland43564fd2019-08-08 17:27:12 -0700221 EXPECT_TRUE(server->sendBinder(BadStableBinder::undef()).isOk());
222 EXPECT_TRUE(server->sendBinder(BadStableBinder::system()).isOk());
223 EXPECT_TRUE(server->sendBinder(BadStableBinder::vintf()).isOk());
224 EXPECT_TRUE(server->sendBinder(BadStableBinder::vendor()).isOk());
Steven Morelandc709dd82019-08-05 20:30:14 -0700225
Steven Moreland43564fd2019-08-08 17:27:12 -0700226 {
227 sp<BadStableBinder> binder = BadStableBinder::undef();
228 EXPECT_TRUE(server->sendAndCallBinder(binder).isOk());
229 EXPECT_TRUE(binder->gotUserTransaction);
230 }
231 {
232 sp<BadStableBinder> binder = BadStableBinder::system();
233 EXPECT_TRUE(server->sendAndCallBinder(binder).isOk());
234 EXPECT_TRUE(binder->gotUserTransaction);
235 }
236 {
237 sp<BadStableBinder> binder = BadStableBinder::vintf();
238 EXPECT_TRUE(server->sendAndCallBinder(binder).isOk());
239 EXPECT_TRUE(binder->gotUserTransaction);
240 }
241 {
242 // !!! user-defined transaction may not be stable for remote server !!!
243 // !!! so, it does not work !!!
244 sp<BadStableBinder> binder = BadStableBinder::vendor();
245 EXPECT_EQ(BAD_TYPE, server->sendAndCallBinder(binder).exceptionCode());
246 EXPECT_FALSE(binder->gotUserTransaction);
247 }
248
249 sp<IBinder> out;
250 EXPECT_TRUE(server->returnNoStabilityBinder(&out).isOk());
Steven Morelandc709dd82019-08-05 20:30:14 -0700251 ASSERT_NE(nullptr, out.get());
Steven Moreland43564fd2019-08-08 17:27:12 -0700252 EXPECT_EQ(OK, out->pingBinder());
253 EXPECT_EQ(OK, BadStableBinder::doUserTransaction(out));
Steven Morelanddea3cf92019-07-16 18:06:55 -0700254
Steven Moreland43564fd2019-08-08 17:27:12 -0700255 EXPECT_TRUE(server->returnLocalStabilityBinder(&out).isOk());
Steven Morelandc709dd82019-08-05 20:30:14 -0700256 ASSERT_NE(nullptr, out.get());
Steven Moreland43564fd2019-08-08 17:27:12 -0700257 EXPECT_EQ(OK, out->pingBinder());
258 EXPECT_EQ(OK, BadStableBinder::doUserTransaction(out));
Steven Morelanddea3cf92019-07-16 18:06:55 -0700259
Steven Moreland43564fd2019-08-08 17:27:12 -0700260 EXPECT_TRUE(server->returnVintfStabilityBinder(&out).isOk());
Steven Morelandc709dd82019-08-05 20:30:14 -0700261 ASSERT_NE(nullptr, out.get());
Steven Moreland43564fd2019-08-08 17:27:12 -0700262 EXPECT_EQ(OK, out->pingBinder());
263 EXPECT_EQ(OK, BadStableBinder::doUserTransaction(out));
Steven Morelanddea3cf92019-07-16 18:06:55 -0700264
Steven Moreland43564fd2019-08-08 17:27:12 -0700265 EXPECT_TRUE(server->returnVendorStabilityBinder(&out).isOk());
Steven Morelandc709dd82019-08-05 20:30:14 -0700266 ASSERT_NE(nullptr, out.get());
Steven Morelanddea3cf92019-07-16 18:06:55 -0700267
Steven Morelandc709dd82019-08-05 20:30:14 -0700268 // !!! libbinder-defined transaction works !!!
Steven Moreland43564fd2019-08-08 17:27:12 -0700269 EXPECT_EQ(OK, out->pingBinder());
Steven Morelanddea3cf92019-07-16 18:06:55 -0700270
Steven Morelandc709dd82019-08-05 20:30:14 -0700271 // !!! user-defined transaction may not be stable !!!
Steven Moreland43564fd2019-08-08 17:27:12 -0700272 // !!! so, it does not work !!!
273 EXPECT_EQ(BAD_TYPE, BadStableBinder::doUserTransaction(out));
Steven Morelanddea3cf92019-07-16 18:06:55 -0700274}
275
Steven Moreland43564fd2019-08-08 17:27:12 -0700276// This is handwritten so that we can test different stability levels w/o having the AIDL
277// compiler assign them. Hand-writing binder interfaces is considered a bad practice
278// sanity reasons. YOU SHOULD DEFINE AN AIDL INTERFACE INSTEAD!
Steven Morelanddea3cf92019-07-16 18:06:55 -0700279
Steven Moreland43564fd2019-08-08 17:27:12 -0700280struct NdkBinderStable_DataClass {
281 bool gotUserTransaction = false;
Steven Moreland12300a02019-08-02 13:27:15 -0700282};
Steven Moreland43564fd2019-08-08 17:27:12 -0700283void* NdkBadStableBinder_Class_onCreate(void* args) {
284 LOG_ALWAYS_FATAL_IF(args != nullptr, "Takes no args");
285 return static_cast<void*>(new NdkBinderStable_DataClass);
286}
287void NdkBadStableBinder_Class_onDestroy(void* userData) {
288 delete static_cast<NdkBinderStable_DataClass*>(userData);
289}
290NdkBinderStable_DataClass* NdkBadStableBinder_getUserData(AIBinder* binder) {
291 LOG_ALWAYS_FATAL_IF(binder == nullptr);
292 void* userData = AIBinder_getUserData(binder);
293 LOG_ALWAYS_FATAL_IF(userData == nullptr, "null data - binder is remote?");
294
295 return static_cast<NdkBinderStable_DataClass*>(userData);
296}
297binder_status_t NdkBadStableBinder_Class_onTransact(
298 AIBinder* binder, transaction_code_t code, const AParcel* /*in*/, AParcel* /*out*/) {
299
300 if (code == BadStableBinder::USER_TRANSACTION) {
301 ALOGE("ndk binder stability: Got user transaction");
302 NdkBadStableBinder_getUserData(binder)->gotUserTransaction = true;
303 return STATUS_OK;
304 }
305
306 return STATUS_UNKNOWN_TRANSACTION;
307}
308
309static AIBinder_Class* kNdkBadStableBinder =
310 AIBinder_Class_define(String8(BadStableBinder::kDescriptor).c_str(),
311 NdkBadStableBinder_Class_onCreate,
312 NdkBadStableBinder_Class_onDestroy,
313 NdkBadStableBinder_Class_onTransact);
314
Steven Moreland12300a02019-08-02 13:27:15 -0700315// for testing only to get around __ANDROID_VNDK__ guard.
316extern "C" void AIBinder_markVendorStability(AIBinder* binder); // <- BAD DO NOT COPY
317
Steven Moreland43564fd2019-08-08 17:27:12 -0700318TEST(BinderStability, NdkCantCallVendorBinderInSystemContext) {
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000319#pragma clang diagnostic push
320#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Steven Moreland12300a02019-08-02 13:27:15 -0700321 SpAIBinder binder = SpAIBinder(AServiceManager_getService(
Steven Moreland43564fd2019-08-08 17:27:12 -0700322 String8(kSystemStabilityServer).c_str()));
Tomasz Wasilczykbb07b982023-10-11 21:25:36 +0000323#pragma clang diagnostic pop
Steven Moreland12300a02019-08-02 13:27:15 -0700324
325 std::shared_ptr<aidl::IBinderStabilityTest> remoteServer =
326 aidl::IBinderStabilityTest::fromBinder(binder);
327
328 ASSERT_NE(nullptr, remoteServer.get());
329
Steven Moreland43564fd2019-08-08 17:27:12 -0700330 SpAIBinder comp = SpAIBinder(AIBinder_new(kNdkBadStableBinder, nullptr /*args*/));
331 EXPECT_TRUE(remoteServer->sendBinder(comp).isOk());
332 EXPECT_TRUE(remoteServer->sendAndCallBinder(comp).isOk());
333 EXPECT_TRUE(NdkBadStableBinder_getUserData(comp.get())->gotUserTransaction);
Steven Moreland12300a02019-08-02 13:27:15 -0700334
Steven Moreland43564fd2019-08-08 17:27:12 -0700335 SpAIBinder vendor = SpAIBinder(AIBinder_new(kNdkBadStableBinder, nullptr /*args*/));
336 AIBinder_markVendorStability(vendor.get());
Steven Moreland12300a02019-08-02 13:27:15 -0700337 EXPECT_TRUE(remoteServer->sendBinder(vendor).isOk());
338 EXPECT_FALSE(remoteServer->sendAndCallBinder(vendor).isOk());
Steven Moreland43564fd2019-08-08 17:27:12 -0700339 EXPECT_FALSE(NdkBadStableBinder_getUserData(vendor.get())->gotUserTransaction);
Steven Moreland12300a02019-08-02 13:27:15 -0700340}
341
Steven Morelanddea3cf92019-07-16 18:06:55 -0700342class MarksStabilityInConstructor : public BBinder {
343public:
344 static bool gDestructed;
345
346 MarksStabilityInConstructor() {
Steven Moreland12300a02019-08-02 13:27:15 -0700347 Stability::markCompilationUnit(this);
Steven Morelanddea3cf92019-07-16 18:06:55 -0700348 }
349 ~MarksStabilityInConstructor() {
350 gDestructed = true;
351 }
352};
353bool MarksStabilityInConstructor::gDestructed = false;
354
355TEST(BinderStability, MarkingObjectNoDestructTest) {
356 ASSERT_FALSE(MarksStabilityInConstructor::gDestructed);
357
358 // best practice is to put this directly in an sp, but for this test, we
359 // want to explicitly check what happens before that happens
360 MarksStabilityInConstructor* binder = new MarksStabilityInConstructor();
361 ASSERT_FALSE(MarksStabilityInConstructor::gDestructed);
362
363 sp<MarksStabilityInConstructor> binderSp = binder;
364 ASSERT_FALSE(MarksStabilityInConstructor::gDestructed);
365
366 binderSp = nullptr;
367 ASSERT_TRUE(MarksStabilityInConstructor::gDestructed);
368}
369
Steven Morelandcfdeaf12019-08-08 15:41:01 -0700370TEST(BinderStability, RemarkDies) {
371 ASSERT_DEATH({
372 sp<IBinder> binder = new BBinder();
373 Stability::markCompilationUnit(binder.get()); // <-- only called for tests
374 Stability::markVndk(binder.get()); // <-- only called for tests
375 }, "Should only mark known object.");
376}
377
Steven Morelanddea3cf92019-07-16 18:06:55 -0700378int main(int argc, char** argv) {
379 ::testing::InitGoogleTest(&argc, argv);
380
381 if (fork() == 0) {
382 // child process
383 prctl(PR_SET_PDEATHSIG, SIGHUP);
384
Steven Moreland43564fd2019-08-08 17:27:12 -0700385 sp<IBinder> server = new MyBinderStabilityTest;
386 android::defaultServiceManager()->addService(kSystemStabilityServer, server);
Steven Morelanddea3cf92019-07-16 18:06:55 -0700387
388 IPCThreadState::self()->joinThreadPool(true);
389 exit(1); // should not reach
390 }
391
392 // This is not racey. Just giving these services some time to register before we call
393 // getService which sleeps for much longer...
394 usleep(10000);
395
396 return RUN_ALL_TESTS();
397}