Bounded loops in BPF for the 5.3 kernel
Bounded loops in BPF for the 5.3 kernel
Posted Aug 2, 2019 13:39 UTC (Fri) by mathstuf (subscriber, #69389)In reply to: Bounded loops in BPF for the 5.3 kernel by Karellen
Parent article: Bounded loops in BPF for the 5.3 kernel
int* p = NULL;
int i = *p;
Posted Aug 5, 2019 16:40 UTC (Mon)
by shane (subscriber, #3335)
[Link] (2 responses)
Posted Aug 5, 2019 17:09 UTC (Mon)
by excors (subscriber, #95769)
[Link] (1 responses)
GCC still knows that function must never be executed, so it replaces it with the "ud2" instruction (at least with gcc -O2).
Posted Aug 6, 2019 9:27 UTC (Tue)
by farnz (subscriber, #17727)
[Link]
As an aside, examining the code in Matt Godbolt's Compiler Explorer shows that gcc 9.1 leaves an unnecessary MOV before UD2, while clang goes straight to RET. MSVC compiles to clear RAX, load EAX from *RAX, and return 0, while ICC generates code to set up SSE2 the way it wants it, loads AL from *NULL, and then calls an "abort" subroutine.
Hm... turning your code into a C program:
Bounded loops in BPF for the 5.3 kernel
#include <stddef.h>
int
main ()
{
int* p = NULL;
int i = *p;
return i;
}
We discover that clang doesn't warn or complain in any way:
$ clang --version
clang version 8.0.0-3 (tags/RELEASE_800/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
$ clang -Weverything foo.c
$ ./a.out
Segmentation fault (core dumped)
Likewise by default GCC doesn't:
$ gcc --version
gcc (Ubuntu 8.3.0-6ubuntu1) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ gcc -Wextra -Wall -Wpedantic foo.c
$ ./a.out
Segmentation fault (core dumped)
We can use a feature disabled by default:
$ gcc -Werror=null-dereference -O foo.c
foo.c: In function ‘main’:
foo.c:7:9: error: null pointer dereference [-Werror=null-dereference]
int i = *p;
^
cc1: some warnings being treated as errors
Enabling this warning apparently breaks the GCC self-bootstrapping build (as well as things like building the Linux kernel). The ticket which added the warning is here:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16351
Bounded loops in BPF for the 5.3 kernel
Bounded loops in BPF for the 5.3 kernel
