blob: 27000e8c0f68860db3eb9bdc90aba8b926e444f0 [file] [log] [blame]
Dan Willemsene05dc6d2016-07-25 17:13:45 -07001// Copyright (C) 2009 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badour3c538232021-02-12 21:26:48 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_native_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["frameworks_native_license"],
22}
23
Vijay Venkatraman5583be72017-03-24 16:13:58 -070024cc_library_headers {
25 name: "libbinder_headers",
26 export_include_dirs: ["include"],
Jiyong Park172bd722017-06-21 12:14:18 +090027 vendor_available: true,
Yifan Hong70786532021-10-20 21:41:18 -070028 recovery_available: true,
Steven Moreland28723ae2019-04-01 18:52:30 -070029 host_supported: true,
Victor Khimenko38786ab2020-07-03 00:06:50 +020030 // TODO(b/153609531): remove when no longer needed.
31 native_bridge_supported: true,
Steven Moreland28723ae2019-04-01 18:52:30 -070032
Jiyong Parkb7df6cb2017-04-13 21:19:48 -070033 header_libs: [
34 "libbase_headers",
Jooyung Hancaede592021-02-04 10:18:37 +090035 "libbinder_headers_platform_shared",
Jiyong Parkb7df6cb2017-04-13 21:19:48 -070036 "libcutils_headers",
37 "libutils_headers",
38 ],
39 export_header_lib_headers: [
40 "libbase_headers",
Jooyung Hancaede592021-02-04 10:18:37 +090041 "libbinder_headers_platform_shared",
Jiyong Parkb7df6cb2017-04-13 21:19:48 -070042 "libcutils_headers",
43 "libutils_headers",
44 ],
Jooyung Han5f6a89a2021-02-05 15:28:58 +090045 apex_available: [
46 "//apex_available:platform",
47 "com.android.media",
48 "com.android.media.swcodec",
49 ],
Jooyung Hana395c8d2020-04-16 18:48:32 +090050 min_sdk_version: "29",
Yifan Hongf856a982020-10-30 14:51:17 -070051 target: {
52 darwin: {
53 enabled: false,
54 },
55 },
Vijay Venkatraman5583be72017-03-24 16:13:58 -070056}
57
Steven Moreland28723ae2019-04-01 18:52:30 -070058// These interfaces are android-specific implementation unrelated to binder
59// transport itself and should be moved to AIDL or in domain-specific libs.
60//
61// Currently, these are only on system android (not vendor, not host)
Steven Morelandea6bfab2021-04-01 00:10:31 +000062// TODO(b/183654927) - move these into separate libraries
Atneya Nair5b9cbbf2022-05-24 20:39:48 -040063
64filegroup {
65 name: "libbinder_device_interface_sources",
66 srcs: [
67 "IPermissionController.cpp",
68 "PermissionCache.cpp",
69 "PermissionController.cpp",
70 ],
71}
Steven Moreland28723ae2019-04-01 18:52:30 -070072
Steven Moreland899ab372019-09-24 15:16:21 -070073cc_library {
Dan Willemsene05dc6d2016-07-25 17:13:45 -070074 name: "libbinder",
75
Yi Kong0bae3072021-05-31 23:22:23 +080076 version_script: "libbinder.map",
77
Steven Moreland3aa76162017-04-13 21:19:48 -070078 // for vndbinder
79 vendor_available: true,
Justin Yunb367ff42017-08-02 17:02:05 +090080 vndk: {
81 enabled: true,
82 },
Yifan Hong70786532021-10-20 21:41:18 -070083 recovery_available: true,
Jiyong Parkfe0a8242018-04-09 12:16:30 +090084 double_loadable: true,
Steven Moreland28723ae2019-04-01 18:52:30 -070085 host_supported: true,
Victor Khimenko38786ab2020-07-03 00:06:50 +020086 // TODO(b/153609531): remove when no longer needed.
87 native_bridge_supported: true,
Steven Moreland28723ae2019-04-01 18:52:30 -070088
89 // TODO(b/31559095): get headers from bionic on host
90 include_dirs: [
91 "bionic/libc/kernel/android/uapi/",
92 "bionic/libc/kernel/uapi/",
93 ],
Steven Moreland636d7d52019-08-26 10:42:38 -070094
95 // libbinder does not offer a stable wire protocol.
96 // if a second copy of it is installed, then it may break after security
97 // or dessert updates. Instead, apex users should use libbinder_ndk.
Jiyong Parkdd52ad32019-09-30 19:25:16 +090098 apex_available: [
99 "//apex_available:platform",
Jiyong Parkdd52ad32019-09-30 19:25:16 +0900100 ],
Steven Moreland3aa76162017-04-13 21:19:48 -0700101
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700102 srcs: [
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700103 "Binder.cpp",
104 "BpBinder.cpp",
105 "BufferedTextOutput.cpp",
106 "Debug.cpp",
Yifan Hong8c950422021-08-05 17:13:55 -0700107 "FdTrigger.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700108 "IInterface.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700109 "IMemory.cpp",
110 "IPCThreadState.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700111 "IResultReceiver.cpp",
112 "IServiceManager.cpp",
Dianne Hackborn1941a402016-08-29 12:30:43 -0700113 "IShellCallback.cpp",
Jon Spivack9f503a42019-10-22 16:49:19 -0700114 "LazyServiceRegistrar.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700115 "MemoryBase.cpp",
116 "MemoryDealer.cpp",
117 "MemoryHeapBase.cpp",
118 "Parcel.cpp",
Jeongik Cha8cb23452020-08-26 23:38:03 +0900119 "ParcelableHolder.cpp",
Ryo Hashimotobf551892018-05-31 16:58:35 +0900120 "ParcelFileDescriptor.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700121 "PersistableBundle.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700122 "ProcessState.cpp",
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000123 "RpcSession.cpp",
Steven Moreland5553ac42020-11-11 02:14:45 +0000124 "RpcServer.cpp",
125 "RpcState.cpp",
Yifan Hongf6b4d5c2021-06-23 19:12:32 -0700126 "RpcTransportRaw.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700127 "Static.cpp",
Steven Morelanda86a3562019-08-01 23:28:34 +0000128 "Stability.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700129 "Status.cpp",
130 "TextOutput.cpp",
Steven Morelandf183fdd2020-10-27 00:12:12 +0000131 "Utils.cpp",
Colin Cross21c210e2017-11-14 13:05:37 -0800132 ":libbinder_aidl",
Atneya Nair5b9cbbf2022-05-24 20:39:48 -0400133 ":libbinder_device_interface_sources",
Samiul Islam4480b6f2021-08-26 11:41:49 +0100134 ],
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700135
Jiyong Park47f876b2018-04-17 13:56:46 +0900136 target: {
Steven Moreland28723ae2019-04-01 18:52:30 -0700137 android: {
Steven Moreland899ab372019-09-24 15:16:21 -0700138 // NOT static to keep the wire protocol unfrozen
139 static: {
140 enabled: false,
141 },
Steven Moreland28723ae2019-04-01 18:52:30 -0700142 },
Jiyong Park47f876b2018-04-17 13:56:46 +0900143 vendor: {
Atneya Nair5b9cbbf2022-05-24 20:39:48 -0400144 exclude_srcs: [
145 ":libbinder_device_interface_sources",
146 ],
Jiyong Park47f876b2018-04-17 13:56:46 +0900147 },
Yifan Hongf856a982020-10-30 14:51:17 -0700148 darwin: {
149 enabled: false,
150 },
Yifan Hongaf766e62021-06-14 13:24:19 -0700151 host: {
Yifan Hongaf766e62021-06-14 13:24:19 -0700152 srcs: [
Yifan Hongf7760012021-06-04 16:04:42 -0700153 "ServiceManagerHost.cpp",
Yifan Hongaf766e62021-06-14 13:24:19 -0700154 "UtilsHost.cpp",
155 ],
156 },
Yifan Hongd258e682021-11-01 18:34:42 -0700157 recovery: {
158 exclude_header_libs: [
159 "libandroid_runtime_vm_headers",
160 ],
161 },
Jiyong Park47f876b2018-04-17 13:56:46 +0900162 },
163
Todd Kennedy757186e2017-08-02 07:49:20 -0700164 aidl: {
165 export_aidl_headers: true,
166 },
167
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700168 cflags: [
169 "-Wall",
170 "-Wextra",
Jooyung Hanc91e3cb2020-11-25 06:38:17 +0900171 "-Wextra-semi",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700172 "-Werror",
Yi Kongc2376e42018-07-10 15:12:36 -0700173 "-Wzero-as-null-pointer-constant",
Andrei Homescu5a036f32022-03-08 22:54:40 +0000174 "-Wreorder-init-list",
Steven Moreland74cf6132020-11-14 00:09:44 +0000175 "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION",
Steven Moreland1a3a8ef2021-04-02 02:52:46 +0000176 "-DANDROID_UTILS_REF_BASE_DISABLE_IMPLICIT_CONSTRUCTION",
Steven Moreland32150282021-11-12 22:54:53 +0000177 "-DBINDER_WITH_KERNEL_IPC",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700178 ],
179 product_variables: {
180 binder32bit: {
181 cflags: ["-DBINDER_IPC_32BIT=1"],
182 },
Yifan Hong84bedeb2021-04-21 21:37:17 -0700183
184 debuggable: {
185 cflags: ["-DBINDER_RPC_DEV_SERVERS"],
186 },
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700187 },
188
189 shared_libs: [
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700190 "liblog",
191 "libcutils",
192 "libutils",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700193 ],
Jiyong Park42842052017-06-20 13:51:22 +0900194
Steven Moreland62129012021-07-29 12:14:44 -0700195 static_libs: [
196 "libbase",
197 ],
198
Jiyong Park42842052017-06-20 13:51:22 +0900199 header_libs: [
200 "libbinder_headers",
Yifan Hong194acf22021-06-29 18:44:56 -0700201 "libandroid_runtime_vm_headers",
Jiyong Park42842052017-06-20 13:51:22 +0900202 ],
203
Jiyong Park42842052017-06-20 13:51:22 +0900204 export_header_lib_headers: [
205 "libbinder_headers",
Dan Stozad630e522016-12-01 15:16:31 -0800206 ],
207
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700208 sanitize: {
209 misc_undefined: ["integer"],
210 },
Jiyong Park25265082020-11-13 16:58:57 +0900211
212 tidy: true,
213 tidy_flags: [
214 // Only check our headers
215 "--header-filter=^.*frameworks/native/libs/binder/.*.h$",
216 ],
Steven Moreland525dd902021-04-22 23:00:04 +0000217 tidy_checks: [
218 "-performance-no-int-to-ptr",
219 ],
Jiyong Park25265082020-11-13 16:58:57 +0900220 tidy_checks_as_errors: [
Chih-Hung Hsieh09d11b32021-01-11 21:29:01 -0800221 // Explicitly list the checks that should not occur in this module.
222 "abseil-*",
223 "android-*",
224 "bugprone-*",
Chih-Hung Hsieh41366b42022-06-09 23:12:22 -0700225 "-bugprone-branch-clone", // b/155034972
Chih-Hung Hsieh09d11b32021-01-11 21:29:01 -0800226 "cert-*",
227 "clang-analyzer-*",
Chih-Hung Hsieh09d11b32021-01-11 21:29:01 -0800228 "google-*",
Chih-Hung Hsieh09d11b32021-01-11 21:29:01 -0800229 "misc-*",
Chih-Hung Hsieh09d11b32021-01-11 21:29:01 -0800230 "performance*",
231 "portability*",
Jiyong Park25265082020-11-13 16:58:57 +0900232 ],
Yi Kong054f2fa2021-03-05 01:50:23 +0800233
Yi Kong7cd72c52021-12-23 15:51:29 +0800234 afdo: true,
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700235}
236
Yifan Honge8212f22021-06-28 15:49:08 -0700237cc_defaults {
238 name: "libbinder_tls_shared_deps",
239 shared_libs: [
240 "libbinder",
241 "libcrypto",
242 "liblog",
243 "libssl",
244 "libutils",
245 ],
246}
247
248cc_defaults {
249 name: "libbinder_tls_defaults",
250 defaults: ["libbinder_tls_shared_deps"],
251 host_supported: true,
252
253 header_libs: [
254 "libbinder_headers",
255 ],
256 export_header_lib_headers: [
257 "libbinder_headers",
258 ],
Yifan Hongb160f8c2021-09-17 22:59:11 -0700259 export_shared_lib_headers: [
260 "libssl",
261 ],
Yifan Honge8212f22021-06-28 15:49:08 -0700262 export_include_dirs: ["include_tls"],
263 static_libs: [
264 "libbase",
265 ],
266 srcs: [
267 "RpcTransportTls.cpp",
Yifan Hongbb24eea2021-09-17 18:21:56 -0700268 "RpcTlsUtils.cpp",
Yifan Honge8212f22021-06-28 15:49:08 -0700269 ],
270}
271
272cc_library_shared {
273 name: "libbinder_tls",
274 defaults: ["libbinder_tls_defaults"],
275}
276
Yifan Hong92409752021-07-30 21:25:32 -0700277// For testing
278cc_library_static {
279 name: "libbinder_tls_static",
280 defaults: ["libbinder_tls_defaults"],
281 visibility: [
282 ":__subpackages__",
283 ],
284}
285
Colin Cross21c210e2017-11-14 13:05:37 -0800286// AIDL interface between libbinder and framework.jar
287filegroup {
288 name: "libbinder_aidl",
289 srcs: [
Devin Moore5e4c2f12021-09-09 22:36:33 +0000290 "aidl/android/os/ConnectionInfo.aidl",
Jon Spivack9f503a42019-10-22 16:49:19 -0700291 "aidl/android/os/IClientCallback.aidl",
Steven Moreland27cfab02019-08-12 14:34:16 -0700292 "aidl/android/os/IServiceCallback.aidl",
Steven Moreland80e1e6d2019-06-21 12:35:59 -0700293 "aidl/android/os/IServiceManager.aidl",
Steven Moreland3ea43272021-01-28 22:49:28 +0000294 "aidl/android/os/ServiceDebugInfo.aidl",
Colin Cross21c210e2017-11-14 13:05:37 -0800295 ],
Dan Willemsena5d65222018-09-14 21:27:01 -0700296 path: "aidl",
Colin Cross21c210e2017-11-14 13:05:37 -0800297}
Steven Moreland82c97cf2019-10-16 16:29:27 -0700298
Samiul Islam4480b6f2021-08-26 11:41:49 +0100299aidl_interface {
Steven Morelandf9514192021-03-26 01:34:55 +0000300 name: "packagemanager_aidl",
Samiul Islam4480b6f2021-08-26 11:41:49 +0100301 unstable: true,
302 local_include_dir: "aidl",
303 host_supported: true,
Steven Morelandf9514192021-03-26 01:34:55 +0000304 srcs: [
305 "aidl/android/content/pm/IPackageChangeObserver.aidl",
306 "aidl/android/content/pm/IPackageManagerNative.aidl",
307 "aidl/android/content/pm/PackageChangeEvent.aidl",
Samiul Islam643744f2021-08-04 15:56:52 +0100308 "aidl/android/content/pm/IStagedApexObserver.aidl",
309 "aidl/android/content/pm/ApexStagedEvent.aidl",
310 "aidl/android/content/pm/StagedApexInfo.aidl",
Steven Morelandf9514192021-03-26 01:34:55 +0000311 ],
Jooyung Hanfc622692021-10-05 16:51:09 +0900312 backend: {
313 rust: {
314 apex_available: [
315 "com.android.virt",
316 ],
317 enabled: true,
318 },
319 },
Steven Morelandf9514192021-03-26 01:34:55 +0000320}
321
Steven Moreland82c97cf2019-10-16 16:29:27 -0700322aidl_interface {
323 name: "libbinder_aidl_test_stub",
Jiyong Park701fa1a2020-04-13 12:55:44 +0900324 unstable: true,
Steven Moreland82c97cf2019-10-16 16:29:27 -0700325 local_include_dir: "aidl",
326 srcs: [":libbinder_aidl"],
Steven Moreland82c97cf2019-10-16 16:29:27 -0700327 vendor_available: true,
328 backend: {
329 java: {
330 enabled: false,
331 },
332 },
333}
Steven Morelandea6bfab2021-04-01 00:10:31 +0000334
Victor Hsiehd35d31d2021-06-03 11:24:31 -0700335// TODO(b/184872979): remove once the Rust API is created.
336cc_library {
337 name: "libbinder_rpc_unstable",
338 srcs: ["libbinder_rpc_unstable.cpp"],
Victor Hsiehd35d31d2021-06-03 11:24:31 -0700339 shared_libs: [
340 "libbase",
341 "libbinder",
342 "libbinder_ndk",
Inseob Kim091050a2021-10-25 14:25:25 +0000343 "liblog",
Victor Hsiehd35d31d2021-06-03 11:24:31 -0700344 "libutils",
345 ],
Inseob Kim01befc82021-08-31 20:28:50 +0900346 export_include_dirs: ["include_rpc_unstable"],
Victor Hsiehd35d31d2021-06-03 11:24:31 -0700347
348 // enumerate stable entry points, for apex use
349 stubs: {
350 symbol_file: "libbinder_rpc_unstable.map.txt",
351 },
352
353 // This library is intentionally limited to these targets, and it will be removed later.
354 // Do not expand the visibility.
355 visibility: [
Inseob Kima07b8eb2021-08-31 10:37:17 +0900356 "//packages/modules/Virtualization:__subpackages__",
Victor Hsiehd35d31d2021-06-03 11:24:31 -0700357 ],
358}
359
Inseob Kim01befc82021-08-31 20:28:50 +0900360filegroup {
361 name: "libbinder_rpc_unstable_header",
362 srcs: ["include_rpc_unstable/binder_rpc_unstable.hpp"],
363}
364
Steven Morelandea6bfab2021-04-01 00:10:31 +0000365// libbinder historically contained additional interfaces that provided specific
366// functionality in the platform but have nothing to do with binder itself. These
367// are moved out of libbinder in order to avoid the overhead of their vtables.
368// If you are working on or own one of these interfaces, the responsible things
369// to would be:
370// - give them a new home
371// - convert them to AIDL instead of having manually written parceling code
372
373cc_library {
374 name: "libbatterystats_aidl",
Atneya Nair5b9cbbf2022-05-24 20:39:48 -0400375 host_supported: true,
Steven Morelandea6bfab2021-04-01 00:10:31 +0000376 srcs: [
377 "IBatteryStats.cpp",
378 ],
379 export_include_dirs: ["include_batterystats"],
380 shared_libs: [
381 "libbinder",
382 "libutils",
383 ],
384}
Steven Moreland45e25cb2021-04-02 04:30:41 +0000385
386cc_library {
387 name: "libprocessinfoservice_aidl",
Atneya Nair5b9cbbf2022-05-24 20:39:48 -0400388 host_supported: true,
Steven Moreland45e25cb2021-04-02 04:30:41 +0000389 srcs: [
390 "IProcessInfoService.cpp",
391 "ProcessInfoService.cpp",
392 ],
393 export_include_dirs: ["include_processinfo"],
394 shared_libs: [
395 "libbinder",
396 "libutils",
397 "liblog",
398 ],
399}
Steven Moreland8a2085c2021-04-05 22:01:48 +0000400
Steven Moreland8a2085c2021-04-05 22:01:48 +0000401cc_library {
402 name: "libactivitymanager_aidl",
Steven Moreland710ad482021-04-05 23:17:21 +0000403 srcs: [
404 "ActivityManager.cpp",
405 "IActivityManager.cpp",
406 "IUidObserver.cpp",
407 ":activity_manager_procstate_aidl",
408 ],
409 export_include_dirs: ["include_activitymanager"],
Steven Moreland8a2085c2021-04-05 22:01:48 +0000410 shared_libs: [
411 "libbinder",
412 "libutils",
413 "liblog",
414 ],
Steven Moreland710ad482021-04-05 23:17:21 +0000415 aidl: {
416 export_aidl_headers: true,
417 },
Steven Moreland8a2085c2021-04-05 22:01:48 +0000418}
Yifan Hongdbf58d42021-06-03 19:21:11 -0700419
420cc_binary {
421 name: "servicedispatcher",
422 host_supported: false,
423 srcs: [
424 "servicedispatcher.cpp",
425 ],
426 shared_libs: [
427 "libbase",
428 "libbinder",
429 "liblog",
430 "libutils",
Yifan Honga5b02692021-07-22 20:06:48 -0700431 "android.debug_aidl-cpp",
Yifan Hongdbf58d42021-06-03 19:21:11 -0700432 ],
433}