Skip to content

Commit

Permalink
bpfloader: ignore_on_arch support am: 53ed03b am: cc389dd
Browse files Browse the repository at this point in the history
Original change: https://googleplex-android-review.googlesource.com/c/platform/system/bpf/+/23391173

Change-Id: I8e49901aa8cf5e59ae3c9d1bf70a39a981a8d1d7
Signed-off-by: Automerger Merge Worker <[email protected]>
  • Loading branch information
zenczykowski authored and android-build-merge-worker-robot committed May 25, 2023
2 parents d30027e + cc389dd commit 95b5b03
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions libbpf_android/Loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
#include <sys/wait.h>
#include <unistd.h>

// This is BpfLoader v0.37
// This is BpfLoader v0.38
// WARNING: If you ever hit cherrypick conflicts here you're doing it wrong:
// You are NOT allowed to cherrypick bpfloader related patches out of order.
// (indeed: cherrypicking is probably a bad idea and you should merge instead)
// Mainline supports ONLY the published versions of the bpfloader for each Android release.
#define BPFLOADER_VERSION_MAJOR 0u
#define BPFLOADER_VERSION_MINOR 37u
#define BPFLOADER_VERSION_MINOR 38u
#define BPFLOADER_VERSION ((BPFLOADER_VERSION_MAJOR << 16) | BPFLOADER_VERSION_MINOR)

#include "BpfSyscallWrappers.h"
Expand Down Expand Up @@ -816,6 +816,17 @@ static int createMaps(const char* elfPath, ifstream& elfFile, vector<unique_fd>&
continue;
}

if ((isArm() && isKernel32Bit() && md[i].ignore_on_arm32) ||
(isArm() && isKernel64Bit() && md[i].ignore_on_aarch64) ||
(isX86() && isKernel32Bit() && md[i].ignore_on_x86_32) ||
(isX86() && isKernel64Bit() && md[i].ignore_on_x86_64) ||
(isRiscV() && md[i].ignore_on_riscv64)) {
ALOGI("skipping map %s which is ignored on %s", mapNames[i].c_str(),
describeArch());
mapFds.push_back(unique_fd());
continue;
}

enum bpf_map_type type = md[i].type;
if (type == BPF_MAP_TYPE_DEVMAP_HASH && !isAtLeastKernelVersion(5, 4, 0)) {
// On Linux Kernels older than 5.4 this map type doesn't exist, but it can kind
Expand Down Expand Up @@ -1071,6 +1082,15 @@ static int loadCodeSections(const char* elfPath, vector<codeSection>& cs, const
continue;
}

if ((isArm() && isKernel32Bit() && cs[i].prog_def->ignore_on_arm32) ||
(isArm() && isKernel64Bit() && cs[i].prog_def->ignore_on_aarch64) ||
(isX86() && isKernel32Bit() && cs[i].prog_def->ignore_on_x86_32) ||
(isX86() && isKernel64Bit() && cs[i].prog_def->ignore_on_x86_64) ||
(isRiscV() && cs[i].prog_def->ignore_on_riscv64)) {
ALOGD("cs[%d].name:%s is ignored on %s", i, name.c_str(), describeArch());
continue;
}

if (unrecognized(pin_subdir)) return -ENOTDIR;

if (specified(selinux_context)) {
Expand Down

0 comments on commit 95b5b03

Please sign in to comment.