Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2020 Facebook */
3#include <stddef.h>
4#include <linux/bpf.h>
5#include <bpf/bpf_helpers.h>
6
7#ifndef MAX_STACK
8#define MAX_STACK (512 - 3 * 32 + 8)
9#endif
10
11static __attribute__ ((noinline))
12int f0(int var, struct __sk_buff *skb)
13{
14 return skb->len;
15}
16
17__attribute__ ((noinline))
18int f1(struct __sk_buff *skb)
19{
20 volatile char buf[MAX_STACK] = {};
21
22 return f0(0, skb) + skb->len;
23}
24
25int f3(int, struct __sk_buff *skb, int);
26
27__attribute__ ((noinline))
28int f2(int val, struct __sk_buff *skb)
29{
30 return f1(skb) + f3(val, skb, 1);
31}
32
33__attribute__ ((noinline))
34int f3(int val, struct __sk_buff *skb, int var)
35{
36 volatile char buf[MAX_STACK] = {};
37
38 return skb->ifindex * val * var;
39}
40
41SEC("classifier/test")
42int test_cls(struct __sk_buff *skb)
43{
44 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
45}
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2020 Facebook */
3#include <stddef.h>
4#include <linux/bpf.h>
5#include <bpf/bpf_helpers.h>
6#include "bpf_misc.h"
7
8#define MAX_STACK (512 - 3 * 32 + 8)
9
10static __attribute__ ((noinline))
11int f0(int var, struct __sk_buff *skb)
12{
13 asm volatile ("");
14
15 return skb->len;
16}
17
18__attribute__ ((noinline))
19int f1(struct __sk_buff *skb)
20{
21 volatile char buf[MAX_STACK] = {};
22
23 __sink(buf[MAX_STACK - 1]);
24
25 return f0(0, skb) + skb->len;
26}
27
28int f3(int, struct __sk_buff *skb, int);
29
30__attribute__ ((noinline))
31int f2(int val, struct __sk_buff *skb)
32{
33 return f1(skb) + f3(val, skb, 1);
34}
35
36__attribute__ ((noinline))
37int f3(int val, struct __sk_buff *skb, int var)
38{
39 volatile char buf[MAX_STACK] = {};
40
41 __sink(buf[MAX_STACK - 1]);
42
43 return skb->ifindex * val * var;
44}
45
46SEC("tc")
47__failure __msg("combined stack size of 4 calls is 544")
48int global_func1(struct __sk_buff *skb)
49{
50 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
51}