All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zhiqiang Liu <liuzhiqiang26@huawei.com>
To: Ming Lei <ming.lei@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>, <linux-block@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	<npiggin@suse.de>, Mingfangsen <mingfangsen@huawei.com>,
	Guiyao <guiyao@huawei.com>, zhangsaisai <zhangsaisai@huawei.com>,
	"wubo (T)" <wubo40@huawei.com>
Subject: Re: [PATCH] brd: check parameter validation before register_blkdev func
Date: Mon, 13 Jan 2020 20:55:18 +0800	[thread overview]
Message-ID: <a1036173-7e6d-8ad6-774c-df4b912146c8@huawei.com> (raw)
In-Reply-To: <20200113110003.GA13011@ming.t460p>



On 2020/1/13 19:04, Ming Lei wrote:
> On Fri, Jan 10, 2020 at 01:10:20PM +0800, Zhiqiang Liu wrote:
>>
>> In brd_init func, rd_nr num of brd_device are firstly allocated
>> and add in brd_devices, then brd_devices are traversed to add each
>> brd_device by calling add_disk func. When allocating brd_device,
>> the disk->first_minor is set to i * max_part, if rd_nr * max_part
>> is larger than MINORMASK, two different brd_device may have the same
>> devt, then only one of them can be successfully added.
>> when rmmod brd.ko, it will cause oops when calling brd_exit.
>>
>> Follow those steps:
>>   # modprobe brd rd_nr=3 rd_size=102400 max_part=1048576
>>   # rmmod brd
>> then, the oops will appear.
>>
>> Oops log:
>> [  726.613722] Call trace:
>> [  726.614175]  kernfs_find_ns+0x24/0x130
>> [  726.614852]  kernfs_find_and_get_ns+0x44/0x68
>> [  726.615749]  sysfs_remove_group+0x38/0xb0
>> [  726.616520]  blk_trace_remove_sysfs+0x1c/0x28
>> [  726.617320]  blk_unregister_queue+0x98/0x100
>> [  726.618105]  del_gendisk+0x144/0x2b8
>> [  726.618759]  brd_exit+0x68/0x560 [brd]
>> [  726.619501]  __arm64_sys_delete_module+0x19c/0x2a0
>> [  726.620384]  el0_svc_common+0x78/0x130
>> [  726.621057]  el0_svc_handler+0x38/0x78
>> [  726.621738]  el0_svc+0x8/0xc
>> [  726.622259] Code: aa0203f6 aa0103f7 aa1e03e0 d503201f (7940e260)
>>
>> Here, we add brd_check_par_valid func to check parameter
>> validation before register_blkdev func.
>>
>> Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
>> ---
>>  drivers/block/brd.c | 33 ++++++++++++++++++++++++++-------
>> +static inline int brd_check_par_valid(void)
>> +{
>> +	if (unlikely(!rd_nr))
>> +		rd_nr = 1;
>> +
>> +	if (unlikely(!max_part))
>> +		max_part = 1;
>> +
>> +	if (rd_nr * max_part > MINORMASK)
>> +		return -EINVAL;
>> +
>> +	return 0;
>> +
>> +}
>> +
>>  static int __init brd_init(void)
>>  {
>>  	struct brd_device *brd, *next;
>> -	int i;
>> +	int i, ret;
>>
>>  	/*
>>  	 * brd module now has a feature to instantiate underlying device
>> @@ -488,11 +503,15 @@ static int __init brd_init(void)
>>  	 *	dynamically.
>>  	 */
>>
>> +	ret = brd_check_par_valid();
>> +	if (ret) {
>> +		pr_info("brd: invalid parameter setting!!!\n");
>> +		return ret;
>> +	}
>> +
> 
> The max supported partition number is 256, see __alloc_disk_node().
> So even though one bigger number is passed to alloc_disk(), at most
> 256 partitions are allowed on that disk. Maybe you can apply the
> following way to avoid the issue:
> 
> 	disk->first_minor       = i * disk->minors;
> 
> However, looks 'rd_nr' still needs to be validated(rd_nr < 2 ^ 23).
> 

Thanks for your reply.
As you said, minors is limited to DISK_MAX_PARTS in __alloc_disk_node when
calling alloc_disk in brd_alloc func. We can set: disk->first_minor = i * disk->minors
as your suggestion.
As for 'rd_nr', I think we should make sure that 'disk->first_minor' should be not
larger than MINORMASK.

->add_disk
  ->device_add_disk
    ->__device_add_disk
      ->blk_alloc_devt
	->MKDEV

If rd_nr > MINORMASK / min(max_part, DISK_MAX_PARTS), two different brd_device may have the same devt
by calling MKDEV in blk_alloc_devt func. For example, MKDEV(1, 0) is equal to MKDEV(1, MINORMASK + 1).
So we should check both rd_nr and max_part as follows,

    static inline int brd_check_par_valid(void)
    {
            if (unlikely(!rd_nr))
                    rd_nr = 1;

            if (unlikely(!max_part))
                    max_part = 1;

            if (max_part > DISK_MAX_PARTS)
                    max_part = DISK_MAX_PARTS;

            if (rd_nr > MINORMASK / max_part)
                    return -EINVAL;

            return 0;
    }

I will send the v2 patch.





      reply	other threads:[~2020-01-13 12:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-10  5:10 [PATCH] brd: check parameter validation before register_blkdev func Zhiqiang Liu
2020-01-13  9:55 ` Zhiqiang Liu
2020-01-13 11:04 ` Ming Lei
2020-01-13 12:55   ` Zhiqiang Liu [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a1036173-7e6d-8ad6-774c-df4b912146c8@huawei.com \
    --to=liuzhiqiang26@huawei.com \
    --cc=axboe@kernel.dk \
    --cc=guiyao@huawei.com \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ming.lei@redhat.com \
    --cc=mingfangsen@huawei.com \
    --cc=npiggin@suse.de \
    --cc=wubo40@huawei.com \
    --cc=zhangsaisai@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.