blob: fa2021388485d67192e8b60f29803f206cda7521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */
#include <vmlinux.h>
#include <bpf/bpf_tracing.h>
#include "../bpf_testmod/bpf_testmod.h"
char _license[] SEC("license") = "GPL";
int rand;
int arr[1];
SEC("struct_ops/test_1")
int BPF_PROG(test_1_turn_off)
{
return arr[rand]; /* potentially way out of range access */
}
SEC(".struct_ops.link")
struct bpf_testmod_ops ops = {
.test_1 = (void *)test_1_turn_off,
};
|