mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
aio: sanitize ki_list handling
Instead of handcoded non-null checks always initialize ki_list to an empty list and use list_empty / list_empty_careful on it. While we're at it also error out on a double call to kiocb_set_cancel_fn instead of ignoring it. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Jeff Moyer <jmoyer@redhat.com> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Change-Id: I532fb713e3185e8da9178fdd5fb5f6361796b41f Git-commit: 75321b50a37a5ba612125a04bfc9e43e3da5b305 Git-repo: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git Signed-off-by: Jack Pham <jackp@codeaurora.org>
This commit is contained in:
parent
052ad019ff
commit
4f641f9e8e
13
fs/aio.c
13
fs/aio.c
@ -558,13 +558,12 @@ void kiocb_set_cancel_fn(struct kiocb *iocb, kiocb_cancel_fn *cancel)
|
||||
struct kioctx *ctx = req->ki_ctx;
|
||||
unsigned long flags;
|
||||
|
||||
if (WARN_ON_ONCE(!list_empty(&req->ki_list)))
|
||||
return;
|
||||
|
||||
spin_lock_irqsave(&ctx->ctx_lock, flags);
|
||||
|
||||
if (!req->ki_list.next)
|
||||
list_add(&req->ki_list, &ctx->active_reqs);
|
||||
|
||||
list_add_tail(&req->ki_list, &ctx->active_reqs);
|
||||
req->ki_cancel = cancel;
|
||||
|
||||
spin_unlock_irqrestore(&ctx->ctx_lock, flags);
|
||||
}
|
||||
EXPORT_SYMBOL(kiocb_set_cancel_fn);
|
||||
@ -1051,7 +1050,7 @@ static inline struct aio_kiocb *aio_get_req(struct kioctx *ctx)
|
||||
goto out_put;
|
||||
|
||||
percpu_ref_get(&ctx->reqs);
|
||||
|
||||
INIT_LIST_HEAD(&req->ki_list);
|
||||
req->ki_ctx = ctx;
|
||||
return req;
|
||||
out_put:
|
||||
@ -1120,7 +1119,7 @@ static void aio_complete(struct kiocb *kiocb, long res, long res2)
|
||||
file_end_write(file);
|
||||
}
|
||||
|
||||
if (iocb->ki_list.next) {
|
||||
if (!list_empty_careful(&iocb->ki_list)) {
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&ctx->ctx_lock, flags);
|
||||
|
Loading…
x
Reference in New Issue
Block a user