All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/3] blk-mq: fix request UAF related with iterating over tagset requests
@ 2021-04-27  1:45 Ming Lei
  2021-04-27  1:45 ` [PATCH V2 1/3] blk-mq: grab rq->refcount before calling ->fn in blk_mq_tagset_busy_iter Ming Lei
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Ming Lei @ 2021-04-27  1:45 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Bart Van Assche, Khazhy Kumykov,
	Shin'ichiro Kawasaki, Hannes Reinecke, John Garry,
	David Jeffery, Ming Lei

Hi Guys,

This patchset fixes the request UAF issue by one simple approach,
without clearing ->rqs[] in fast path.

1) grab request's ref before calling ->fn in blk_mq_tagset_busy_iter,
and release it after calling ->fn, so ->fn won't be called for one
request if its queue is frozen, done in 1st patch

2) always complete request synchronously when the completing is run
via blk_mq_tagset_busy_iter(), done in 2nd patch

3) clearing any stale request referred in ->rqs[] before freeing the
request pool, one per-tags spinlock is added for protecting
grabbing request ref vs. clearing ->rqs[tag], so UAF by refcount_inc_not_zero
in bt_tags_iter() is avoided, done in 3rd patch.


V2:
	- take Bart's suggestion to not add blk-mq helper for completing
	  requests when it is being iterated
	- don't grab rq->ref if the iterator is over static rqs because
	the use case do require to iterate over all requests no matter if
	the request is initialized or not

Ming Lei (3):
  blk-mq: grab rq->refcount before calling ->fn in
    blk_mq_tagset_busy_iter
  blk-mq: complete request locally if the completion is from tagset
    iterator
  blk-mq: clear stale request in tags->rq[] before freeing one request
    pool

 block/blk-mq-tag.c     | 33 ++++++++++++++++++-----
 block/blk-mq-tag.h     |  3 +++
 block/blk-mq.c         | 61 +++++++++++++++++++++++++++++++++++-------
 block/blk-mq.h         |  1 +
 include/linux/blkdev.h |  2 ++
 5 files changed, 84 insertions(+), 16 deletions(-)

-- 
2.29.2


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-04-27 14:53 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-27  1:45 [PATCH V2 0/3] blk-mq: fix request UAF related with iterating over tagset requests Ming Lei
2021-04-27  1:45 ` [PATCH V2 1/3] blk-mq: grab rq->refcount before calling ->fn in blk_mq_tagset_busy_iter Ming Lei
2021-04-27  2:28   ` Bart Van Assche
2021-04-27  2:45     ` Ming Lei
2021-04-27  1:45 ` [PATCH V2 2/3] blk-mq: complete request locally if the completion is from tagset iterator Ming Lei
2021-04-27  2:30   ` Bart Van Assche
2021-04-27  7:06     ` Ming Lei
2021-04-27  9:00       ` Ming Lei
2021-04-27 14:53       ` Bart Van Assche
2021-04-27  1:45 ` [PATCH V2 3/3] blk-mq: clear stale request in tags->rq[] before freeing one request pool Ming Lei
2021-04-27  2:34   ` Bart Van Assche

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.