2022-07-13 04:52:38 +08:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/io_uring.h>
|
|
|
|
|
|
|
|
#include "io_uring.h"
|
|
|
|
#include "notif.h"
|
2022-07-13 04:52:41 +08:00
|
|
|
#include "rsrc.h"
|
2022-07-13 04:52:38 +08:00
|
|
|
|
2024-04-19 19:08:41 +08:00
|
|
|
static void io_notif_tw_complete(struct io_kiocb *notif, struct io_tw_state *ts)
|
2022-07-13 04:52:38 +08:00
|
|
|
{
|
2022-07-27 17:30:41 +08:00
|
|
|
struct io_notif_data *nd = io_notif_to_data(notif);
|
2022-07-13 04:52:38 +08:00
|
|
|
|
2024-04-08 07:54:56 +08:00
|
|
|
if (unlikely(nd->zc_report) && (nd->zc_copied || !nd->zc_used))
|
2022-11-04 18:59:46 +08:00
|
|
|
notif->cqe.res |= IORING_NOTIF_USAGE_ZC_COPIED;
|
|
|
|
|
2024-04-15 20:50:12 +08:00
|
|
|
if (nd->account_pages && notif->ctx->user) {
|
|
|
|
__io_unaccount_mem(notif->ctx->user, nd->account_pages);
|
2022-07-27 17:30:41 +08:00
|
|
|
nd->account_pages = 0;
|
2022-07-13 04:52:44 +08:00
|
|
|
}
|
2023-03-27 23:38:15 +08:00
|
|
|
io_req_task_complete(notif, ts);
|
2022-11-04 18:59:45 +08:00
|
|
|
}
|
|
|
|
|
2024-04-19 19:08:41 +08:00
|
|
|
void io_tx_ubuf_complete(struct sk_buff *skb, struct ubuf_info *uarg,
|
|
|
|
bool success)
|
2022-07-13 04:52:38 +08:00
|
|
|
{
|
2022-07-27 17:30:41 +08:00
|
|
|
struct io_notif_data *nd = container_of(uarg, struct io_notif_data, uarg);
|
|
|
|
struct io_kiocb *notif = cmd_to_io_kiocb(nd);
|
2022-07-13 04:52:39 +08:00
|
|
|
|
2022-10-28 02:34:45 +08:00
|
|
|
if (nd->zc_report) {
|
|
|
|
if (success && !nd->zc_used && skb)
|
|
|
|
WRITE_ONCE(nd->zc_used, true);
|
|
|
|
else if (!success && !nd->zc_copied)
|
|
|
|
WRITE_ONCE(nd->zc_copied, true);
|
|
|
|
}
|
2024-04-08 07:54:55 +08:00
|
|
|
|
2024-04-15 20:50:11 +08:00
|
|
|
if (!refcount_dec_and_test(&uarg->refcnt))
|
|
|
|
return;
|
|
|
|
|
|
|
|
notif->io_task_work.func = io_notif_tw_complete;
|
|
|
|
__io_req_task_work_add(notif, IOU_F_TWQ_LAZY_WAKE);
|
2022-07-13 04:52:39 +08:00
|
|
|
}
|
|
|
|
|
2024-04-19 19:08:39 +08:00
|
|
|
static const struct ubuf_info_ops io_ubuf_ops = {
|
|
|
|
.complete = io_tx_ubuf_complete,
|
|
|
|
};
|
|
|
|
|
2022-09-01 18:54:04 +08:00
|
|
|
struct io_kiocb *io_alloc_notif(struct io_ring_ctx *ctx)
|
2022-07-13 04:52:38 +08:00
|
|
|
__must_hold(&ctx->uring_lock)
|
|
|
|
{
|
2022-07-27 17:30:41 +08:00
|
|
|
struct io_kiocb *notif;
|
|
|
|
struct io_notif_data *nd;
|
|
|
|
|
2023-01-23 22:37:16 +08:00
|
|
|
if (unlikely(!io_alloc_req(ctx, ¬if)))
|
2022-07-27 17:30:41 +08:00
|
|
|
return NULL;
|
|
|
|
notif->opcode = IORING_OP_NOP;
|
|
|
|
notif->flags = 0;
|
|
|
|
notif->file = NULL;
|
|
|
|
notif->task = current;
|
|
|
|
io_get_task_refs(1);
|
|
|
|
notif->rsrc_node = NULL;
|
|
|
|
|
|
|
|
nd = io_notif_to_data(notif);
|
2024-04-08 07:54:55 +08:00
|
|
|
nd->zc_report = false;
|
|
|
|
nd->account_pages = 0;
|
2023-04-15 21:20:08 +08:00
|
|
|
nd->uarg.flags = IO_NOTIF_UBUF_FLAGS;
|
2024-04-19 19:08:39 +08:00
|
|
|
nd->uarg.ops = &io_ubuf_ops;
|
2022-07-27 17:30:41 +08:00
|
|
|
refcount_set(&nd->uarg.refcnt, 1);
|
2022-07-13 04:52:38 +08:00
|
|
|
return notif;
|
|
|
|
}
|