aboutsummaryrefslogtreecommitdiff
path: root/ebpf/ebpf.c
blob: 2d73beb47968679bf3c4752f61b40fa3caeb82b5 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * QEMU eBPF binary declaration routine.
 *
 * Developed by Daynix Computing LTD (http://www.daynix.com)
 *
 * Authors:
 *  Andrew Melnychenko <andrew@daynix.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "qemu/queue.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-ebpf.h"
#include "ebpf/ebpf.h"

typedef struct ElfBinaryDataEntry {
    int id;
    const void *data;
    size_t datalen;

    QSLIST_ENTRY(ElfBinaryDataEntry) node;
} ElfBinaryDataEntry;

static QSLIST_HEAD(, ElfBinaryDataEntry) ebpf_elf_obj_list =
                                            QSLIST_HEAD_INITIALIZER();

void ebpf_register_binary_data(int id, const void *data, size_t datalen)
{
    struct ElfBinaryDataEntry *dataentry = NULL;

    dataentry = g_new0(struct ElfBinaryDataEntry, 1);
    dataentry->data = data;
    dataentry->datalen = datalen;
    dataentry->id = id;

    QSLIST_INSERT_HEAD(&ebpf_elf_obj_list, dataentry, node);
}

const void *ebpf_find_binary_by_id(int id, size_t *sz, Error **errp)
{
    struct ElfBinaryDataEntry *it = NULL;
    QSLIST_FOREACH(it, &ebpf_elf_obj_list, node) {
        if (id == it->id) {
            *sz = it->datalen;
            return it->data;
        }
    }

    error_setg(errp, "can't find eBPF object with id: %d", id);

    return NULL;
}

EbpfObject *qmp_request_ebpf(EbpfProgramID id, Error **errp)
{
    EbpfObject *ret = NULL;
    size_t size = 0;
    const void *data = ebpf_find_binary_by_id(id, &size, errp);
    if (!data) {
        return NULL;
    }

    ret = g_new0(EbpfObject, 1);
    ret->object = g_base64_encode(data, size);

    return ret;
}