-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a test with multiple exit conditions. It's not an infinite loop only when the verifier can properly track all math on variable 'i' through all possible ways of executing this loop. barrier()s are needed to disable llvm optimization that combines multiple branches into fewer branches. Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Yonghong Song <yhs@fb.com>
- Loading branch information
Alexei Starovoitov
committed
Aug 6, 2019
1 parent
a78d0db
commit 8c30396
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
// Copyright (c) 2019 Facebook | ||
#include <linux/bpf.h> | ||
#include "bpf_helpers.h" | ||
#define barrier() __asm__ __volatile__("": : :"memory") | ||
|
||
char _license[] SEC("license") = "GPL"; | ||
|
||
SEC("socket") | ||
int while_true(volatile struct __sk_buff* skb) | ||
{ | ||
int i = 0; | ||
|
||
while (1) { | ||
if (skb->len) | ||
i += 3; | ||
else | ||
i += 7; | ||
if (i == 9) | ||
break; | ||
barrier(); | ||
if (i == 10) | ||
break; | ||
barrier(); | ||
if (i == 13) | ||
break; | ||
barrier(); | ||
if (i == 14) | ||
break; | ||
} | ||
return i; | ||
} |