hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2019 Facebook
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
 
char _license[] SEC("license") = "GPL";
 
SEC("raw_tracepoint/consume_skb")
int while_true(volatile struct pt_regs* ctx)
{
   int i = 0;
 
   while (true) {
       if (PT_REGS_RC(ctx) & 1)
           i += 3;
       else
           i += 7;
       if (i > 40)
           break;
   }
 
   return i;
}