mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
This adds custom filtering for IORING_OP_OPENAT and IORING_OP_OPENAT2, where the open_how flags, mode, and resolve can be checked by filters. Signed-off-by: Jens Axboe <axboe@kernel.dk>
23 lines
995 B
C
23 lines
995 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "bpf_filter.h"
|
|
|
|
int __io_close_fixed(struct io_ring_ctx *ctx, unsigned int issue_flags,
|
|
unsigned int offset);
|
|
|
|
int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_openat(struct io_kiocb *req, unsigned int issue_flags);
|
|
void io_open_cleanup(struct io_kiocb *req);
|
|
void io_openat_bpf_populate(struct io_uring_bpf_ctx *bctx, struct io_kiocb *req);
|
|
|
|
int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_openat2(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_close(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
int io_pipe_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_pipe(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
int io_install_fixed_fd_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_install_fixed_fd(struct io_kiocb *req, unsigned int issue_flags);
|