4c9e9ecc57
Add the necessary Android.bp file and fix the compile error for the new bpf project. Fix the run time restart false alarm in bpf loader. Bug: 112334572 Test: device boot and dumpsys netd show eBPF object okay, runtime restart netd and no bpfloader error showed in logcat. Change-Id: Iae193bda45e50b7d22479086d6403e3c4fb185c4
59 lines
1.2 KiB
Text
59 lines
1.2 KiB
Text
//
|
|
// Copyright (C) 2018 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.
|
|
//
|
|
|
|
//
|
|
// bpfLoad binary
|
|
//
|
|
cc_binary {
|
|
name: "bpfloader",
|
|
|
|
defaults: ["bpf_defaults"],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wthread-safety",
|
|
],
|
|
sanitize: {
|
|
integer_overflow: true,
|
|
},
|
|
clang: true,
|
|
shared_libs: [
|
|
"libcutils",
|
|
"libbpf",
|
|
"libbase",
|
|
"liblog",
|
|
"libnetdbpf",
|
|
"libnetdutils",
|
|
],
|
|
srcs: [
|
|
"BpfLoader.cpp",
|
|
],
|
|
|
|
required: [
|
|
"bpf_kern.o",
|
|
],
|
|
|
|
}
|
|
|
|
bpf {
|
|
name: "bpf_kern.o",
|
|
srcs: ["bpf_kern.c"],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
include_dirs: ["system/netd/libnetdbpf/include"],
|
|
}
|