2022-07-12 22:52:38 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/uio.h>
|
|
|
|
#include <net/sock.h>
|
|
|
|
#include <linux/nospec.h>
|
|
|
|
|
2022-07-25 11:52:05 +02:00
|
|
|
#include "rsrc.h"
|
|
|
|
|
2023-04-15 15:20:08 +02:00
|
|
|
#define IO_NOTIF_UBUF_FLAGS (SKBFL_ZEROCOPY_FRAG | SKBFL_DONT_ORPHAN)
|
2022-07-12 22:52:39 +02:00
|
|
|
#define IO_NOTIF_SPLICE_BATCH 32
|
|
|
|
|
2022-07-27 11:30:41 +02:00
|
|
|
struct io_notif_data {
|
|
|
|
struct file *file;
|
2022-07-12 22:52:38 +02:00
|
|
|
struct ubuf_info uarg;
|
2024-04-15 14:50:13 +02:00
|
|
|
|
2024-04-19 13:08:42 +02:00
|
|
|
struct io_notif_data *next;
|
|
|
|
struct io_notif_data *head;
|
|
|
|
|
2024-04-15 14:50:13 +02:00
|
|
|
unsigned account_pages;
|
2022-10-27 20:34:45 +02:00
|
|
|
bool zc_report;
|
|
|
|
bool zc_used;
|
|
|
|
bool zc_copied;
|
2022-07-12 22:52:38 +02:00
|
|
|
};
|
|
|
|
|
2022-09-01 12:54:04 +02:00
|
|
|
struct io_kiocb *io_alloc_notif(struct io_ring_ctx *ctx);
|
2024-04-19 13:08:41 +02:00
|
|
|
void io_tx_ubuf_complete(struct sk_buff *skb, struct ubuf_info *uarg,
|
|
|
|
bool success);
|
2022-07-12 22:52:38 +02:00
|
|
|
|
2022-07-27 11:30:41 +02:00
|
|
|
static inline struct io_notif_data *io_notif_to_data(struct io_kiocb *notif)
|
|
|
|
{
|
2022-08-11 09:11:15 +02:00
|
|
|
return io_kiocb_to_cmd(notif, struct io_notif_data);
|
2022-07-27 11:30:41 +02:00
|
|
|
}
|
|
|
|
|
2022-11-04 11:59:44 +01:00
|
|
|
static inline void io_notif_flush(struct io_kiocb *notif)
|
|
|
|
__must_hold(¬if->ctx->uring_lock)
|
|
|
|
{
|
|
|
|
struct io_notif_data *nd = io_notif_to_data(notif);
|
|
|
|
|
2024-04-19 13:08:41 +02:00
|
|
|
io_tx_ubuf_complete(NULL, &nd->uarg, true);
|
2022-11-04 11:59:44 +01:00
|
|
|
}
|
|
|
|
|
2022-07-27 11:30:41 +02:00
|
|
|
static inline int io_notif_account_mem(struct io_kiocb *notif, unsigned len)
|
2022-07-25 11:52:05 +02:00
|
|
|
{
|
|
|
|
struct io_ring_ctx *ctx = notif->ctx;
|
2022-07-27 11:30:41 +02:00
|
|
|
struct io_notif_data *nd = io_notif_to_data(notif);
|
2022-07-25 11:52:05 +02:00
|
|
|
unsigned nr_pages = (len >> PAGE_SHIFT) + 2;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (ctx->user) {
|
|
|
|
ret = __io_account_mem(ctx->user, nr_pages);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2022-07-27 11:30:41 +02:00
|
|
|
nd->account_pages += nr_pages;
|
2022-07-25 11:52:05 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|