Dmitry V. Levin
055e9527bf
* bpf.c (DECL_BPF_CMD_DECODER, DEF_BPF_CMD_DECODER, BPF_CMD_ENTRY): New macros. (bpf_cmd_decoder_t): New typedef. Rename static parser functions using DEF_BPF_CMD_DECODER. (decode_BPF_MAP_LOOKUP_ELEM, decode_BPF_MAP_GET_NEXT_KEY): New proxy functions. (SYS_FUNC(bpf)): Replace big switch statement with a dispatch table.
314 lines
7.9 KiB
C
314 lines
7.9 KiB
C
/*
|
|
* Copyright (c) 2015-2017 Dmitry V. Levin <ldv@altlinux.org>
|
|
* Copyright (c) 2017 Quentin Monnet <quentin.monnet@6wind.com>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "defs.h"
|
|
#include "print_fields.h"
|
|
|
|
#ifdef HAVE_LINUX_BPF_H
|
|
# include <linux/bpf.h>
|
|
#endif
|
|
|
|
#include "xlat/bpf_commands.h"
|
|
#include "xlat/bpf_map_types.h"
|
|
#include "xlat/bpf_prog_types.h"
|
|
#include "xlat/bpf_map_update_elem_flags.h"
|
|
#include "xlat/bpf_attach_type.h"
|
|
#include "xlat/bpf_attach_flags.h"
|
|
|
|
#define DECL_BPF_CMD_DECODER(bpf_cmd_decoder) \
|
|
int \
|
|
bpf_cmd_decoder(struct tcb *const tcp, \
|
|
const kernel_ulong_t addr, \
|
|
unsigned int size) \
|
|
/* End of DECL_BPF_CMD_DECODER definition. */
|
|
|
|
#define DEF_BPF_CMD_DECODER(bpf_cmd) \
|
|
static DECL_BPF_CMD_DECODER(decode_ ## bpf_cmd)
|
|
|
|
#define BPF_CMD_ENTRY(bpf_cmd) \
|
|
[bpf_cmd] = decode_ ## bpf_cmd
|
|
|
|
typedef DECL_BPF_CMD_DECODER((*bpf_cmd_decoder_t));
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_MAP_CREATE)
|
|
{
|
|
struct {
|
|
uint32_t map_type, key_size, value_size, max_entries;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED | RVAL_FD;
|
|
|
|
PRINT_FIELD_XVAL("{", attr, map_type, bpf_map_types, "BPF_MAP_TYPE_???");
|
|
PRINT_FIELD_U(", ", attr, key_size);
|
|
PRINT_FIELD_U(", ", attr, value_size);
|
|
PRINT_FIELD_U(", ", attr, max_entries);
|
|
tprints("}");
|
|
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_MAP_UPDATE_ELEM)
|
|
{
|
|
struct {
|
|
uint32_t map_fd;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) key;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) value;
|
|
uint64_t flags;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED;
|
|
|
|
PRINT_FIELD_FD("{", attr, map_fd, tcp);
|
|
PRINT_FIELD_X(", ", attr, key);
|
|
PRINT_FIELD_X(", ", attr, value);
|
|
PRINT_FIELD_XVAL(", ", attr, flags, bpf_map_update_elem_flags,
|
|
"BPF_???");
|
|
tprints("}");
|
|
return RVAL_DECODED;
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_MAP_DELETE_ELEM)
|
|
{
|
|
struct {
|
|
uint32_t map_fd;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) key;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED;
|
|
|
|
PRINT_FIELD_FD("{", attr, map_fd, tcp);
|
|
PRINT_FIELD_X(", ", attr, key);
|
|
tprints("}");
|
|
return RVAL_DECODED;
|
|
}
|
|
|
|
static int
|
|
bpf_map_io(struct tcb *const tcp, const kernel_ulong_t addr, unsigned int size,
|
|
const char *const text)
|
|
{
|
|
struct bpf_io_elem_struct {
|
|
uint32_t map_fd;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) key;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) value;
|
|
} attr = {};
|
|
|
|
if (exiting(tcp)) {
|
|
if (!syserror(tcp) && !umove_or_printaddr(tcp, addr, &attr))
|
|
tprintf(", %s=%#" PRIx64, text, attr.value);
|
|
tprints("}");
|
|
return RVAL_DECODED;
|
|
}
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED;
|
|
|
|
PRINT_FIELD_FD("{", attr, map_fd, tcp);
|
|
PRINT_FIELD_X(", ", attr, key);
|
|
|
|
return 0;
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_MAP_LOOKUP_ELEM)
|
|
{
|
|
return bpf_map_io(tcp, addr, size, "value");
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_MAP_GET_NEXT_KEY)
|
|
{
|
|
return bpf_map_io(tcp, addr, size, "next_key");
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_PROG_LOAD)
|
|
{
|
|
struct {
|
|
uint32_t prog_type, insn_cnt;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) insns, license;
|
|
uint32_t log_level, log_size;
|
|
uint64_t ATTRIBUTE_ALIGNED(8) log_buf;
|
|
uint32_t kern_version;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED | RVAL_FD;
|
|
|
|
PRINT_FIELD_XVAL("{", attr, prog_type, bpf_prog_types, "BPF_PROG_TYPE_???");
|
|
PRINT_FIELD_U(", ", attr, insn_cnt);
|
|
PRINT_FIELD_X(", ", attr, insns);
|
|
PRINT_FIELD_STR(", ", attr, license, tcp);
|
|
PRINT_FIELD_U(", ", attr, log_level);
|
|
PRINT_FIELD_U(", ", attr, log_size);
|
|
PRINT_FIELD_X(", ", attr, log_buf);
|
|
PRINT_FIELD_U(", ", attr, kern_version);
|
|
tprints("}");
|
|
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
|
|
static DECL_BPF_CMD_DECODER(bpf_obj_manage)
|
|
{
|
|
struct {
|
|
uint64_t ATTRIBUTE_ALIGNED(8) pathname;
|
|
uint32_t bpf_fd;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED | RVAL_FD;
|
|
|
|
PRINT_FIELD_PATH("{", attr, pathname, tcp);
|
|
PRINT_FIELD_FD(", ", attr, bpf_fd, tcp);
|
|
tprints("}");
|
|
|
|
return RVAL_DECODED | RVAL_FD;
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_OBJ_PIN)
|
|
{
|
|
return bpf_obj_manage(tcp, addr, size);
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_OBJ_GET)
|
|
{
|
|
return bpf_obj_manage(tcp, addr, size);
|
|
}
|
|
|
|
static int
|
|
bpf_prog_attach_detach(struct tcb *const tcp, const kernel_ulong_t addr,
|
|
unsigned int size, bool print_attach)
|
|
{
|
|
struct {
|
|
uint32_t target_fd, attach_bpf_fd, attach_type, attach_flags;
|
|
} attr = {};
|
|
|
|
if (!size) {
|
|
printaddr(addr);
|
|
return RVAL_DECODED;
|
|
}
|
|
if (size > sizeof(attr))
|
|
size = sizeof(attr);
|
|
if (umoven_or_printaddr(tcp, addr, size, &attr))
|
|
return RVAL_DECODED;
|
|
|
|
PRINT_FIELD_FD("{", attr, target_fd, tcp);
|
|
if (print_attach)
|
|
PRINT_FIELD_FD(", ", attr, attach_bpf_fd, tcp);
|
|
PRINT_FIELD_XVAL(", ", attr, attach_type, bpf_attach_type, "BPF_???");
|
|
if (print_attach)
|
|
PRINT_FIELD_FLAGS(", ", attr, attach_flags, bpf_attach_flags,
|
|
"BPF_F_???");
|
|
tprints("}");
|
|
|
|
return RVAL_DECODED;
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_PROG_ATTACH)
|
|
{
|
|
return bpf_prog_attach_detach(tcp, addr, size, true);
|
|
}
|
|
|
|
DEF_BPF_CMD_DECODER(BPF_PROG_DETACH)
|
|
{
|
|
return bpf_prog_attach_detach(tcp, addr, size, false);
|
|
}
|
|
|
|
SYS_FUNC(bpf)
|
|
{
|
|
static const bpf_cmd_decoder_t bpf_cmd_decoders[] = {
|
|
BPF_CMD_ENTRY(BPF_MAP_CREATE),
|
|
BPF_CMD_ENTRY(BPF_MAP_LOOKUP_ELEM),
|
|
BPF_CMD_ENTRY(BPF_MAP_UPDATE_ELEM),
|
|
BPF_CMD_ENTRY(BPF_MAP_DELETE_ELEM),
|
|
BPF_CMD_ENTRY(BPF_MAP_GET_NEXT_KEY),
|
|
BPF_CMD_ENTRY(BPF_PROG_LOAD),
|
|
BPF_CMD_ENTRY(BPF_OBJ_PIN),
|
|
BPF_CMD_ENTRY(BPF_OBJ_GET),
|
|
BPF_CMD_ENTRY(BPF_PROG_ATTACH),
|
|
BPF_CMD_ENTRY(BPF_PROG_DETACH),
|
|
};
|
|
|
|
const unsigned int cmd = tcp->u_arg[0];
|
|
const kernel_ulong_t addr = tcp->u_arg[1];
|
|
const unsigned int size = tcp->u_arg[2];
|
|
int rc;
|
|
|
|
if (entering(tcp)) {
|
|
printxval(bpf_commands, cmd, "BPF_???");
|
|
tprints(", ");
|
|
}
|
|
|
|
if (cmd < ARRAY_SIZE(bpf_cmd_decoders) && bpf_cmd_decoders[cmd]) {
|
|
rc = bpf_cmd_decoders[cmd](tcp, addr, size);
|
|
} else {
|
|
printaddr(addr);
|
|
rc = RVAL_DECODED;
|
|
}
|
|
|
|
if (rc & RVAL_DECODED)
|
|
tprintf(", %u", size);
|
|
|
|
return rc;
|
|
}
|