File: ebpf.c

package info (click to toggle)
qemu 1%3A10.0.3%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 413,680 kB
  • sloc: ansic: 4,733,433; pascal: 114,769; python: 105,506; asm: 68,431; sh: 52,881; makefile: 27,469; perl: 18,778; cpp: 11,435; xml: 3,404; objc: 2,877; yacc: 2,505; php: 1,299; tcl: 1,296; lex: 1,110; sql: 71; awk: 43; sed: 35; javascript: 7
file content (69 lines) | stat: -rw-r--r-- 1,646 bytes parent folder | download | duplicates (7)
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;
}