mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-15 11:44:11 +00:00
bpftool: JIT limited misreported as negative value on aarch64
[ Upstream commit04cb8453a9
] On aarch64, "bpftool feature" reports an incorrect BPF JIT limit: $ sudo /sbin/bpftool feature Scanning system configuration... bpf() syscall restricted to privileged users JIT compiler is enabled JIT compiler hardening is disabled JIT compiler kallsyms exports are enabled for root skipping kernel config, can't open file: No such file or directory Global memory limit for JIT compiler for unprivileged users is -201326592 bytes This is because /proc/sys/net/core/bpf_jit_limit reports $ sudo cat /proc/sys/net/core/bpf_jit_limit 68169519595520 ...and an int is assumed in read_procfs(). Change read_procfs() to return a long to avoid negative value reporting. Fixes:7a4522bbef
("tools: bpftool: add probes for /proc/ eBPF parameters") Reported-by: Nicky Veitch <nicky.veitch@oracle.com> Signed-off-by: Alan Maguire <alan.maguire@oracle.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Quentin Monnet <quentin@isovalent.com> Link: https://lore.kernel.org/bpf/20230512113134.58996-1-alan.maguire@oracle.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
30b10e5e88
commit
f86a89dba6
1 changed files with 12 additions and 12 deletions
|
@ -135,12 +135,12 @@ static void print_end_section(void)
|
|||
|
||||
/* Probing functions */
|
||||
|
||||
static int read_procfs(const char *path)
|
||||
static long read_procfs(const char *path)
|
||||
{
|
||||
char *endptr, *line = NULL;
|
||||
size_t len = 0;
|
||||
FILE *fd;
|
||||
int res;
|
||||
long res;
|
||||
|
||||
fd = fopen(path, "r");
|
||||
if (!fd)
|
||||
|
@ -162,7 +162,7 @@ static int read_procfs(const char *path)
|
|||
|
||||
static void probe_unprivileged_disabled(void)
|
||||
{
|
||||
int res;
|
||||
long res;
|
||||
|
||||
/* No support for C-style ouptut */
|
||||
|
||||
|
@ -181,14 +181,14 @@ static void probe_unprivileged_disabled(void)
|
|||
printf("Unable to retrieve required privileges for bpf() syscall\n");
|
||||
break;
|
||||
default:
|
||||
printf("bpf() syscall restriction has unknown value %d\n", res);
|
||||
printf("bpf() syscall restriction has unknown value %ld\n", res);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void probe_jit_enable(void)
|
||||
{
|
||||
int res;
|
||||
long res;
|
||||
|
||||
/* No support for C-style ouptut */
|
||||
|
||||
|
@ -210,7 +210,7 @@ static void probe_jit_enable(void)
|
|||
printf("Unable to retrieve JIT-compiler status\n");
|
||||
break;
|
||||
default:
|
||||
printf("JIT-compiler status has unknown value %d\n",
|
||||
printf("JIT-compiler status has unknown value %ld\n",
|
||||
res);
|
||||
}
|
||||
}
|
||||
|
@ -218,7 +218,7 @@ static void probe_jit_enable(void)
|
|||
|
||||
static void probe_jit_harden(void)
|
||||
{
|
||||
int res;
|
||||
long res;
|
||||
|
||||
/* No support for C-style ouptut */
|
||||
|
||||
|
@ -240,7 +240,7 @@ static void probe_jit_harden(void)
|
|||
printf("Unable to retrieve JIT hardening status\n");
|
||||
break;
|
||||
default:
|
||||
printf("JIT hardening status has unknown value %d\n",
|
||||
printf("JIT hardening status has unknown value %ld\n",
|
||||
res);
|
||||
}
|
||||
}
|
||||
|
@ -248,7 +248,7 @@ static void probe_jit_harden(void)
|
|||
|
||||
static void probe_jit_kallsyms(void)
|
||||
{
|
||||
int res;
|
||||
long res;
|
||||
|
||||
/* No support for C-style ouptut */
|
||||
|
||||
|
@ -267,14 +267,14 @@ static void probe_jit_kallsyms(void)
|
|||
printf("Unable to retrieve JIT kallsyms export status\n");
|
||||
break;
|
||||
default:
|
||||
printf("JIT kallsyms exports status has unknown value %d\n", res);
|
||||
printf("JIT kallsyms exports status has unknown value %ld\n", res);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void probe_jit_limit(void)
|
||||
{
|
||||
int res;
|
||||
long res;
|
||||
|
||||
/* No support for C-style ouptut */
|
||||
|
||||
|
@ -287,7 +287,7 @@ static void probe_jit_limit(void)
|
|||
printf("Unable to retrieve global memory limit for JIT compiler for unprivileged users\n");
|
||||
break;
|
||||
default:
|
||||
printf("Global memory limit for JIT compiler for unprivileged users is %d bytes\n", res);
|
||||
printf("Global memory limit for JIT compiler for unprivileged users is %ld bytes\n", res);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue