2019-04-30 18:42:43 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2006-01-11 20:17:46 +00:00
|
|
|
#include <linux/capability.h>
|
2019-11-28 14:48:10 +00:00
|
|
|
#include <linux/compat.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/blkdev.h>
|
2011-05-26 20:00:52 +00:00
|
|
|
#include <linux/export.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/gfp.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/blkpg.h>
|
2006-01-08 09:02:50 +00:00
|
|
|
#include <linux/hdreg.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/backing-dev.h>
|
2011-09-16 06:31:11 +00:00
|
|
|
#include <linux/fs.h>
|
2006-03-23 19:00:26 +00:00
|
|
|
#include <linux/blktrace_api.h>
|
2015-10-15 12:10:48 +00:00
|
|
|
#include <linux/pr.h>
|
2016-12-24 19:46:01 +00:00
|
|
|
#include <linux/uaccess.h>
|
2020-03-25 15:48:41 +00:00
|
|
|
#include "blk.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2019-11-28 10:28:41 +00:00
|
|
|
static int blkpg_do_ioctl(struct block_device *bdev,
|
|
|
|
struct blkpg_partition __user *upart, int op)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct blkpg_partition p;
|
|
|
|
long long start, length;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
2019-11-28 10:28:41 +00:00
|
|
|
if (copy_from_user(&p, upart, sizeof(struct blkpg_partition)))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EFAULT;
|
2020-09-03 05:40:57 +00:00
|
|
|
if (bdev_is_partition(bdev))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2008-08-25 10:30:16 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
if (p.pno <= 0)
|
|
|
|
return -EINVAL;
|
2008-09-03 07:03:02 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
if (op == BLKPG_DEL_PARTITION)
|
|
|
|
return bdev_del_partition(bdev, p.pno);
|
2008-09-03 07:03:02 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
start = p.start >> SECTOR_SHIFT;
|
|
|
|
length = p.length >> SECTOR_SHIFT;
|
2008-09-03 07:03:02 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
/* check for fit in a hd_struct */
|
|
|
|
if (sizeof(sector_t) < sizeof(long long)) {
|
|
|
|
long pstart = start, plength = length;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
if (pstart != start || plength != length || pstart < 0 ||
|
|
|
|
plength < 0 || p.pno > 65535)
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2020-04-14 07:28:53 +00:00
|
|
|
switch (op) {
|
|
|
|
case BLKPG_ADD_PARTITION:
|
|
|
|
/* check if partition is aligned to blocksize */
|
|
|
|
if (p.start & (bdev_logical_block_size(bdev) - 1))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
2020-04-14 07:28:53 +00:00
|
|
|
return bdev_add_partition(bdev, p.pno, start, length);
|
|
|
|
case BLKPG_RESIZE_PARTITION:
|
|
|
|
return bdev_resize_partition(bdev, p.pno, start, length);
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-28 10:28:41 +00:00
|
|
|
static int blkpg_ioctl(struct block_device *bdev,
|
|
|
|
struct blkpg_ioctl_arg __user *arg)
|
|
|
|
{
|
|
|
|
struct blkpg_partition __user *udata;
|
|
|
|
int op;
|
|
|
|
|
|
|
|
if (get_user(op, &arg->op) || get_user(udata, &arg->data))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return blkpg_do_ioctl(bdev, udata, op);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
struct compat_blkpg_ioctl_arg {
|
|
|
|
compat_int_t op;
|
|
|
|
compat_int_t flags;
|
|
|
|
compat_int_t datalen;
|
|
|
|
compat_caddr_t data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int compat_blkpg_ioctl(struct block_device *bdev,
|
|
|
|
struct compat_blkpg_ioctl_arg __user *arg)
|
|
|
|
{
|
|
|
|
compat_caddr_t udata;
|
|
|
|
int op;
|
|
|
|
|
|
|
|
if (get_user(op, &arg->op) || get_user(udata, &arg->data))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return blkpg_do_ioctl(bdev, compat_ptr(udata), op);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-11-14 14:34:36 +00:00
|
|
|
static int blkdev_reread_part(struct block_device *bdev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-14 14:34:36 +00:00
|
|
|
int ret;
|
|
|
|
|
2020-09-03 05:40:57 +00:00
|
|
|
if (!disk_part_scan_enabled(bdev->bd_disk) || bdev_is_partition(bdev))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
2015-05-06 04:26:22 +00:00
|
|
|
|
block: replace trylock with mutex_lock in blkdev_reread_part()
The only possible problem of using mutex_lock() instead of trylock
is about deadlock.
If there aren't any locks held before calling blkdev_reread_part(),
deadlock can't be caused by this conversion.
If there are locks held before calling blkdev_reread_part(),
and if these locks arn't required in open, close handler and I/O
path, deadlock shouldn't be caused too.
Both user space's ioctl(BLKRRPART) and md_setup_drive() from
init/do_mounts_md.c belongs to the 1st case, so the conversion is safe
for the two cases.
For loop, the previous patches in this pathset has fixed the ABBA lock
dependency, so the conversion is OK.
For nbd, tx_lock is held when calling the function:
- both open and release won't hold the lock
- when blkdev_reread_part() is run, I/O thread has been stopped
already, so tx_lock won't be acquired in I/O path at that time.
- so the conversion won't cause deadlock for nbd
For dasd, both dasd_open(), dasd_release() and request function don't
acquire any mutex/semphone, so the conversion should be safe.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Tested-by: Jarod Wilson <jarod@redhat.com>
Acked-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Ming Lei <ming.lei@canonical.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
2015-05-06 04:26:27 +00:00
|
|
|
mutex_lock(&bdev->bd_mutex);
|
2019-11-14 14:34:36 +00:00
|
|
|
ret = bdev_disk_changed(bdev, false);
|
2006-03-23 11:00:28 +00:00
|
|
|
mutex_unlock(&bdev->bd_mutex);
|
2015-05-06 04:26:22 +00:00
|
|
|
|
2019-11-14 14:34:36 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
static int blk_ioctl_discard(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned long arg, unsigned long flags)
|
2008-08-11 14:58:42 +00:00
|
|
|
{
|
2015-10-15 12:10:47 +00:00
|
|
|
uint64_t range[2];
|
|
|
|
uint64_t start, len;
|
2017-10-25 00:44:57 +00:00
|
|
|
struct request_queue *q = bdev_get_queue(bdev);
|
2020-09-04 08:58:52 +00:00
|
|
|
int err;
|
2015-10-15 12:10:47 +00:00
|
|
|
|
|
|
|
if (!(mode & FMODE_WRITE))
|
|
|
|
return -EBADF;
|
|
|
|
|
2017-10-25 00:44:57 +00:00
|
|
|
if (!blk_queue_discard(q))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
if (copy_from_user(range, (void __user *)arg, sizeof(range)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
start = range[0];
|
|
|
|
len = range[1];
|
2010-08-11 21:17:49 +00:00
|
|
|
|
2008-08-11 14:58:42 +00:00
|
|
|
if (start & 511)
|
|
|
|
return -EINVAL;
|
|
|
|
if (len & 511)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-10-25 00:44:57 +00:00
|
|
|
if (start + len > i_size_read(bdev->bd_inode))
|
2008-08-11 14:58:42 +00:00
|
|
|
return -EINVAL;
|
2020-09-04 08:58:52 +00:00
|
|
|
|
|
|
|
err = truncate_bdev_range(bdev, mode, start, start + len - 1);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2017-10-25 00:44:57 +00:00
|
|
|
return blkdev_issue_discard(bdev, start >> 9, len >> 9,
|
|
|
|
GFP_KERNEL, flags);
|
2008-08-11 14:58:42 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
static int blk_ioctl_zeroout(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned long arg)
|
2012-09-18 16:19:29 +00:00
|
|
|
{
|
2015-10-15 12:10:47 +00:00
|
|
|
uint64_t range[2];
|
2016-10-11 20:51:05 +00:00
|
|
|
uint64_t start, end, len;
|
2020-09-04 08:58:52 +00:00
|
|
|
int err;
|
2015-10-15 12:10:47 +00:00
|
|
|
|
|
|
|
if (!(mode & FMODE_WRITE))
|
|
|
|
return -EBADF;
|
|
|
|
|
|
|
|
if (copy_from_user(range, (void __user *)arg, sizeof(range)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
start = range[0];
|
|
|
|
len = range[1];
|
2016-10-11 20:51:05 +00:00
|
|
|
end = start + len - 1;
|
2015-10-15 12:10:47 +00:00
|
|
|
|
2012-09-18 16:19:29 +00:00
|
|
|
if (start & 511)
|
|
|
|
return -EINVAL;
|
|
|
|
if (len & 511)
|
|
|
|
return -EINVAL;
|
2016-10-11 20:51:05 +00:00
|
|
|
if (end >= (uint64_t)i_size_read(bdev->bd_inode))
|
|
|
|
return -EINVAL;
|
|
|
|
if (end < start)
|
2012-09-18 16:19:29 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2016-10-11 20:51:05 +00:00
|
|
|
/* Invalidate the page cache, including dirty pages */
|
2020-09-04 08:58:52 +00:00
|
|
|
err = truncate_bdev_range(bdev, mode, start, end);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2016-10-11 20:51:05 +00:00
|
|
|
|
|
|
|
return blkdev_issue_zeroout(bdev, start >> 9, len >> 9, GFP_KERNEL,
|
2017-04-05 17:21:08 +00:00
|
|
|
BLKDEV_ZERO_NOUNMAP);
|
2012-09-18 16:19:29 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_ushort(unsigned short __user *argp, unsigned short val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_int(int __user *argp, int val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_uint(unsigned int __user *argp, unsigned int val)
|
2009-10-03 18:52:01 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2009-10-03 18:52:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_long(long __user *argp, long val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_ulong(unsigned long __user *argp, unsigned long val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int put_u64(u64 __user *argp, u64 val)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 10:45:30 +00:00
|
|
|
#ifdef CONFIG_COMPAT
|
2020-05-19 04:07:34 +00:00
|
|
|
static int compat_put_long(compat_long_t __user *argp, long val)
|
2019-11-29 10:45:30 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2019-11-29 10:45:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 04:07:34 +00:00
|
|
|
static int compat_put_ulong(compat_ulong_t __user *argp, compat_ulong_t val)
|
2019-11-29 10:45:30 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_user(val, argp);
|
2019-11-29 10:45:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-08-30 00:34:12 +00:00
|
|
|
int __blkdev_driver_ioctl(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
[PATCH] beginning of methods conversion
To keep the size of changesets sane we split the switch by drivers;
to keep the damn thing bisectable we do the following:
1) rename the affected methods, add ones with correct
prototypes, make (few) callers handle both. That's this changeset.
2) for each driver convert to new methods. *ALL* drivers
are converted in this series.
3) kill the old (renamed) methods.
Note that it _is_ a flagday; all in-tree drivers are converted and by the
end of this series no trace of old methods remain. The only reason why
we do that this way is to keep the damn thing bisectable and allow per-driver
debugging if anything goes wrong.
New methods:
open(bdev, mode)
release(disk, mode)
ioctl(bdev, mode, cmd, arg) /* Called without BKL */
compat_ioctl(bdev, mode, cmd, arg)
locked_ioctl(bdev, mode, cmd, arg) /* Called with BKL, legacy */
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2008-03-02 14:09:22 +00:00
|
|
|
|
|
|
|
if (disk->fops->ioctl)
|
|
|
|
return disk->fops->ioctl(bdev, mode, cmd, arg);
|
2007-08-30 00:34:12 +00:00
|
|
|
|
|
|
|
return -ENOTTY;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* For the record: _GPL here is only because somebody decided to slap it
|
|
|
|
* on the previous export. Sheer idiocy, since it wasn't copyrightable
|
|
|
|
* at all and could be open-coded without any exports by anybody who cares.
|
|
|
|
*/
|
|
|
|
EXPORT_SYMBOL_GPL(__blkdev_driver_ioctl);
|
|
|
|
|
2019-11-28 14:48:10 +00:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
/*
|
|
|
|
* This is the equivalent of compat_ptr_ioctl(), to be used by block
|
|
|
|
* drivers that implement only commands that are completely compatible
|
|
|
|
* between 32-bit and 64-bit user space
|
|
|
|
*/
|
|
|
|
int blkdev_compat_ptr_ioctl(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
|
|
|
|
|
|
|
if (disk->fops->ioctl)
|
|
|
|
return disk->fops->ioctl(bdev, mode, cmd,
|
|
|
|
(unsigned long)compat_ptr(arg));
|
|
|
|
|
|
|
|
return -ENOIOCTLCMD;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(blkdev_compat_ptr_ioctl);
|
|
|
|
#endif
|
|
|
|
|
2015-10-15 12:10:48 +00:00
|
|
|
static int blkdev_pr_register(struct block_device *bdev,
|
|
|
|
struct pr_registration __user *arg)
|
|
|
|
{
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
struct pr_registration reg;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EPERM;
|
|
|
|
if (!ops || !ops->pr_register)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
if (copy_from_user(®, arg, sizeof(reg)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (reg.flags & ~PR_FL_IGNORE_KEY)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
return ops->pr_register(bdev, reg.old_key, reg.new_key, reg.flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int blkdev_pr_reserve(struct block_device *bdev,
|
|
|
|
struct pr_reservation __user *arg)
|
|
|
|
{
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
struct pr_reservation rsv;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EPERM;
|
|
|
|
if (!ops || !ops->pr_reserve)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
if (copy_from_user(&rsv, arg, sizeof(rsv)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (rsv.flags & ~PR_FL_IGNORE_KEY)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
return ops->pr_reserve(bdev, rsv.key, rsv.type, rsv.flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int blkdev_pr_release(struct block_device *bdev,
|
|
|
|
struct pr_reservation __user *arg)
|
|
|
|
{
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
struct pr_reservation rsv;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EPERM;
|
|
|
|
if (!ops || !ops->pr_release)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
if (copy_from_user(&rsv, arg, sizeof(rsv)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (rsv.flags)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
return ops->pr_release(bdev, rsv.key, rsv.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int blkdev_pr_preempt(struct block_device *bdev,
|
|
|
|
struct pr_preempt __user *arg, bool abort)
|
|
|
|
{
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
struct pr_preempt p;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EPERM;
|
|
|
|
if (!ops || !ops->pr_preempt)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
if (copy_from_user(&p, arg, sizeof(p)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (p.flags)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
return ops->pr_preempt(bdev, p.old_key, p.new_key, p.type, abort);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int blkdev_pr_clear(struct block_device *bdev,
|
|
|
|
struct pr_clear __user *arg)
|
|
|
|
{
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
struct pr_clear c;
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EPERM;
|
|
|
|
if (!ops || !ops->pr_clear)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
if (copy_from_user(&c, arg, sizeof(c)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (c.flags)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
return ops->pr_clear(bdev, c.key);
|
|
|
|
}
|
|
|
|
|
2012-01-05 23:40:12 +00:00
|
|
|
/*
|
|
|
|
* Is it an unrecognized ioctl? The correct returns are either
|
|
|
|
* ENOTTY (final) or ENOIOCTLCMD ("I don't know this one, try a
|
|
|
|
* fallback"). ENOIOCTLCMD gets turned into ENOTTY by the ioctl
|
|
|
|
* code before returning.
|
|
|
|
*
|
|
|
|
* Confused drivers sometimes return EINVAL, which is wrong. It
|
|
|
|
* means "I understood the ioctl command, but the parameters to
|
|
|
|
* it were wrong".
|
|
|
|
*
|
|
|
|
* We should aim to just fix the broken drivers, the EINVAL case
|
|
|
|
* should go away.
|
|
|
|
*/
|
|
|
|
static inline int is_unrecognized_ioctl(int ret)
|
|
|
|
{
|
|
|
|
return ret == -EINVAL ||
|
|
|
|
ret == -ENOTTY ||
|
|
|
|
ret == -ENOIOCTLCMD;
|
|
|
|
}
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
static int blkdev_flushbuf(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned cmd, unsigned long arg)
|
2005-06-23 07:10:15 +00:00
|
|
|
{
|
2015-10-15 12:10:47 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
|
|
|
fsync_bdev(bdev);
|
|
|
|
invalidate_bdev(bdev);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-08-11 14:58:42 +00:00
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
static int blkdev_roset(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
int ret, n;
|
2008-08-11 14:58:42 +00:00
|
|
|
|
2017-10-18 12:38:38 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
|
|
|
|
if (!is_unrecognized_ioctl(ret))
|
|
|
|
return ret;
|
|
|
|
if (get_user(n, (int __user *)arg))
|
|
|
|
return -EFAULT;
|
2020-11-03 10:00:11 +00:00
|
|
|
if (bdev->bd_disk->fops->set_read_only) {
|
|
|
|
ret = bdev->bd_disk->fops->set_read_only(bdev, n);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2015-10-15 12:10:47 +00:00
|
|
|
set_device_ro(bdev, n);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-08-11 14:58:42 +00:00
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
static int blkdev_getgeo(struct block_device *bdev,
|
|
|
|
struct hd_geometry __user *argp)
|
|
|
|
{
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
|
|
|
struct hd_geometry geo;
|
|
|
|
int ret;
|
2008-08-11 14:58:42 +00:00
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
if (!argp)
|
|
|
|
return -EINVAL;
|
|
|
|
if (!disk->fops->getgeo)
|
|
|
|
return -ENOTTY;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to set the startsect first, the driver may
|
|
|
|
* want to override it.
|
|
|
|
*/
|
|
|
|
memset(&geo, 0, sizeof(geo));
|
|
|
|
geo.start = get_start_sect(bdev);
|
|
|
|
ret = disk->fops->getgeo(bdev, &geo);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
if (copy_to_user(argp, &geo, sizeof(geo)))
|
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
|
|
}
|
2012-09-18 16:19:29 +00:00
|
|
|
|
2019-11-29 10:45:30 +00:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
struct compat_hd_geometry {
|
|
|
|
unsigned char heads;
|
|
|
|
unsigned char sectors;
|
|
|
|
unsigned short cylinders;
|
|
|
|
u32 start;
|
|
|
|
};
|
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
static int compat_hdio_getgeo(struct block_device *bdev,
|
|
|
|
struct compat_hd_geometry __user *ugeo)
|
2019-11-29 10:45:30 +00:00
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
2019-11-29 10:45:30 +00:00
|
|
|
struct hd_geometry geo;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!ugeo)
|
|
|
|
return -EINVAL;
|
|
|
|
if (!disk->fops->getgeo)
|
|
|
|
return -ENOTTY;
|
|
|
|
|
|
|
|
memset(&geo, 0, sizeof(geo));
|
|
|
|
/*
|
|
|
|
* We need to set the startsect first, the driver may
|
|
|
|
* want to override it.
|
|
|
|
*/
|
|
|
|
geo.start = get_start_sect(bdev);
|
|
|
|
ret = disk->fops->getgeo(bdev, &geo);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = copy_to_user(ugeo, &geo, 4);
|
|
|
|
ret |= put_user(geo.start, &ugeo->start);
|
|
|
|
if (ret)
|
|
|
|
ret = -EFAULT;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
/* set the logical block size */
|
|
|
|
static int blkdev_bszset(struct block_device *bdev, fmode_t mode,
|
|
|
|
int __user *argp)
|
|
|
|
{
|
|
|
|
int ret, n;
|
2012-09-18 16:19:29 +00:00
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
|
|
|
if (!argp)
|
|
|
|
return -EINVAL;
|
|
|
|
if (get_user(n, argp))
|
|
|
|
return -EFAULT;
|
2012-09-18 16:19:29 +00:00
|
|
|
|
2020-09-21 07:19:47 +00:00
|
|
|
if (mode & FMODE_EXCL)
|
|
|
|
return set_blocksize(bdev, n);
|
2008-08-11 14:58:42 +00:00
|
|
|
|
2020-09-21 07:19:47 +00:00
|
|
|
if (IS_ERR(blkdev_get_by_dev(bdev->bd_dev, mode | FMODE_EXCL, &bdev)))
|
|
|
|
return -EBUSY;
|
2015-10-15 12:10:47 +00:00
|
|
|
ret = set_blocksize(bdev, n);
|
2020-09-21 07:19:47 +00:00
|
|
|
blkdev_put(bdev, mode | FMODE_EXCL);
|
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2006-01-08 09:02:50 +00:00
|
|
|
|
2015-10-15 12:10:47 +00:00
|
|
|
/*
|
2019-11-29 10:48:31 +00:00
|
|
|
* Common commands that are handled the same way on native and compat
|
|
|
|
* user space. Note the separate arg/argp parameters that are needed
|
|
|
|
* to deal with the compat_ptr() conversion.
|
2015-10-15 12:10:47 +00:00
|
|
|
*/
|
2019-11-29 10:48:31 +00:00
|
|
|
static int blkdev_common_ioctl(struct block_device *bdev, fmode_t mode,
|
|
|
|
unsigned cmd, unsigned long arg, void __user *argp)
|
2015-10-15 12:10:47 +00:00
|
|
|
{
|
|
|
|
unsigned int max_sectors;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case BLKFLSBUF:
|
|
|
|
return blkdev_flushbuf(bdev, mode, cmd, arg);
|
|
|
|
case BLKROSET:
|
|
|
|
return blkdev_roset(bdev, mode, cmd, arg);
|
|
|
|
case BLKDISCARD:
|
|
|
|
return blk_ioctl_discard(bdev, mode, arg, 0);
|
|
|
|
case BLKSECDISCARD:
|
|
|
|
return blk_ioctl_discard(bdev, mode, arg,
|
|
|
|
BLKDEV_DISCARD_SECURE);
|
|
|
|
case BLKZEROOUT:
|
|
|
|
return blk_ioctl_zeroout(bdev, mode, arg);
|
2016-10-18 06:40:35 +00:00
|
|
|
case BLKREPORTZONE:
|
|
|
|
return blkdev_report_zones_ioctl(bdev, mode, cmd, arg);
|
|
|
|
case BLKRESETZONE:
|
2019-10-27 14:05:46 +00:00
|
|
|
case BLKOPENZONE:
|
|
|
|
case BLKCLOSEZONE:
|
|
|
|
case BLKFINISHZONE:
|
|
|
|
return blkdev_zone_mgmt_ioctl(bdev, mode, cmd, arg);
|
2018-10-12 10:08:45 +00:00
|
|
|
case BLKGETZONESZ:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, bdev_zone_sectors(bdev));
|
2018-10-12 10:08:46 +00:00
|
|
|
case BLKGETNRZONES:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, blkdev_nr_zones(bdev->bd_disk));
|
2008-09-18 19:53:24 +00:00
|
|
|
case BLKROGET:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_int(argp, bdev_read_only(bdev) != 0);
|
2009-10-03 18:52:01 +00:00
|
|
|
case BLKSSZGET: /* get block device logical block size */
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_int(argp, bdev_logical_block_size(bdev));
|
2009-10-03 18:52:01 +00:00
|
|
|
case BLKPBSZGET: /* get block device physical block size */
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, bdev_physical_block_size(bdev));
|
2009-10-03 18:52:01 +00:00
|
|
|
case BLKIOMIN:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, bdev_io_min(bdev));
|
2009-10-03 18:52:01 +00:00
|
|
|
case BLKIOOPT:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, bdev_io_opt(bdev));
|
2009-10-03 18:52:01 +00:00
|
|
|
case BLKALIGNOFF:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_int(argp, bdev_alignment_offset(bdev));
|
2009-12-03 08:24:48 +00:00
|
|
|
case BLKDISCARDZEROES:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_uint(argp, 0);
|
2008-09-18 19:53:24 +00:00
|
|
|
case BLKSECTGET:
|
2014-05-25 12:43:33 +00:00
|
|
|
max_sectors = min_t(unsigned int, USHRT_MAX,
|
|
|
|
queue_max_sectors(bdev_get_queue(bdev)));
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_ushort(argp, max_sectors);
|
2012-01-11 15:29:31 +00:00
|
|
|
case BLKROTATIONAL:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_ushort(argp, !blk_queue_nonrot(bdev_get_queue(bdev)));
|
2008-09-18 19:53:24 +00:00
|
|
|
case BLKRASET:
|
|
|
|
case BLKFRASET:
|
|
|
|
if(!capable(CAP_SYS_ADMIN))
|
|
|
|
return -EACCES;
|
2017-02-02 14:56:53 +00:00
|
|
|
bdev->bd_bdi->ra_pages = (arg * 512) / PAGE_SIZE;
|
2008-09-18 19:53:24 +00:00
|
|
|
return 0;
|
|
|
|
case BLKRRPART:
|
2015-10-15 12:10:47 +00:00
|
|
|
return blkdev_reread_part(bdev);
|
2008-09-18 19:53:24 +00:00
|
|
|
case BLKTRACESTART:
|
|
|
|
case BLKTRACESTOP:
|
|
|
|
case BLKTRACETEARDOWN:
|
2015-10-15 12:10:47 +00:00
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
2015-10-15 12:10:48 +00:00
|
|
|
case IOC_PR_REGISTER:
|
|
|
|
return blkdev_pr_register(bdev, argp);
|
|
|
|
case IOC_PR_RESERVE:
|
|
|
|
return blkdev_pr_reserve(bdev, argp);
|
|
|
|
case IOC_PR_RELEASE:
|
|
|
|
return blkdev_pr_release(bdev, argp);
|
|
|
|
case IOC_PR_PREEMPT:
|
|
|
|
return blkdev_pr_preempt(bdev, argp, false);
|
|
|
|
case IOC_PR_PREEMPT_ABORT:
|
|
|
|
return blkdev_pr_preempt(bdev, argp, true);
|
|
|
|
case IOC_PR_CLEAR:
|
|
|
|
return blkdev_pr_clear(bdev, argp);
|
2008-09-18 19:53:24 +00:00
|
|
|
default:
|
2019-11-29 10:48:31 +00:00
|
|
|
return -ENOIOCTLCMD;
|
2008-09-18 19:53:24 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2019-11-29 10:48:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Always keep this in sync with compat_blkdev_ioctl()
|
|
|
|
* to handle all incompatible commands in both functions.
|
|
|
|
*
|
|
|
|
* New commands must be compatible and go into blkdev_common_ioctl
|
|
|
|
*/
|
|
|
|
int blkdev_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
|
|
|
|
unsigned long arg)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
loff_t size;
|
|
|
|
void __user *argp = (void __user *)arg;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
/* These need separate implementations for the data structure */
|
|
|
|
case HDIO_GETGEO:
|
|
|
|
return blkdev_getgeo(bdev, argp);
|
|
|
|
case BLKPG:
|
|
|
|
return blkpg_ioctl(bdev, argp);
|
|
|
|
|
|
|
|
/* Compat mode returns 32-bit data instead of 'long' */
|
|
|
|
case BLKRAGET:
|
|
|
|
case BLKFRAGET:
|
|
|
|
if (!argp)
|
|
|
|
return -EINVAL;
|
|
|
|
return put_long(argp, (bdev->bd_bdi->ra_pages*PAGE_SIZE) / 512);
|
|
|
|
case BLKGETSIZE:
|
|
|
|
size = i_size_read(bdev->bd_inode);
|
|
|
|
if ((size >> 9) > ~0UL)
|
|
|
|
return -EFBIG;
|
|
|
|
return put_ulong(argp, size >> 9);
|
|
|
|
|
|
|
|
/* The data is compatible, but the command number is different */
|
|
|
|
case BLKBSZGET: /* get block device soft block size (cf. BLKSSZGET) */
|
|
|
|
return put_int(argp, block_size(bdev));
|
|
|
|
case BLKBSZSET:
|
|
|
|
return blkdev_bszset(bdev, mode, argp);
|
|
|
|
case BLKGETSIZE64:
|
|
|
|
return put_u64(argp, i_size_read(bdev->bd_inode));
|
|
|
|
|
|
|
|
/* Incompatible alignment on i386 */
|
|
|
|
case BLKTRACESETUP:
|
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp);
|
|
|
|
if (ret == -ENOIOCTLCMD)
|
|
|
|
return __blkdev_driver_ioctl(bdev, mode, cmd, arg);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(blkdev_ioctl); /* for /dev/raw */
|
2019-11-29 10:45:30 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
2019-11-29 10:48:31 +00:00
|
|
|
|
2019-11-29 10:45:30 +00:00
|
|
|
#define BLKBSZGET_32 _IOR(0x12, 112, int)
|
|
|
|
#define BLKBSZSET_32 _IOW(0x12, 113, int)
|
|
|
|
#define BLKGETSIZE64_32 _IOR(0x12, 114, int)
|
|
|
|
|
|
|
|
/* Most of the generic ioctls are handled in the normal fallback path.
|
|
|
|
This assumes the blkdev's low level compat_ioctl always returns
|
|
|
|
ENOIOCTLCMD for unknown ioctls. */
|
|
|
|
long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg)
|
|
|
|
{
|
2019-11-29 10:48:31 +00:00
|
|
|
int ret;
|
|
|
|
void __user *argp = compat_ptr(arg);
|
2019-11-29 10:45:30 +00:00
|
|
|
struct inode *inode = file->f_mapping->host;
|
|
|
|
struct block_device *bdev = inode->i_bdev;
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
|
|
|
fmode_t mode = file->f_mode;
|
|
|
|
loff_t size;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
|
|
|
|
* to updated it before every ioctl.
|
|
|
|
*/
|
|
|
|
if (file->f_flags & O_NDELAY)
|
|
|
|
mode |= FMODE_NDELAY;
|
|
|
|
else
|
|
|
|
mode &= ~FMODE_NDELAY;
|
|
|
|
|
|
|
|
switch (cmd) {
|
2019-11-29 10:48:31 +00:00
|
|
|
/* These need separate implementations for the data structure */
|
2019-11-29 10:45:30 +00:00
|
|
|
case HDIO_GETGEO:
|
2019-11-29 10:48:31 +00:00
|
|
|
return compat_hdio_getgeo(bdev, argp);
|
2019-11-29 10:45:30 +00:00
|
|
|
case BLKPG:
|
2019-11-29 10:48:31 +00:00
|
|
|
return compat_blkpg_ioctl(bdev, argp);
|
|
|
|
|
|
|
|
/* Compat mode returns 32-bit data instead of 'long' */
|
2019-11-29 10:45:30 +00:00
|
|
|
case BLKRAGET:
|
|
|
|
case BLKFRAGET:
|
2019-11-29 10:48:31 +00:00
|
|
|
if (!argp)
|
2019-11-29 10:45:30 +00:00
|
|
|
return -EINVAL;
|
2019-11-29 10:48:31 +00:00
|
|
|
return compat_put_long(argp,
|
2019-11-29 10:45:30 +00:00
|
|
|
(bdev->bd_bdi->ra_pages * PAGE_SIZE) / 512);
|
|
|
|
case BLKGETSIZE:
|
|
|
|
size = i_size_read(bdev->bd_inode);
|
|
|
|
if ((size >> 9) > ~0UL)
|
|
|
|
return -EFBIG;
|
2019-11-29 10:48:31 +00:00
|
|
|
return compat_put_ulong(argp, size >> 9);
|
2019-11-29 10:45:30 +00:00
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
/* The data is compatible, but the command number is different */
|
|
|
|
case BLKBSZGET_32: /* get the logical block size (cf. BLKSSZGET) */
|
|
|
|
return put_int(argp, bdev_logical_block_size(bdev));
|
|
|
|
case BLKBSZSET_32:
|
|
|
|
return blkdev_bszset(bdev, mode, argp);
|
2019-11-29 10:45:30 +00:00
|
|
|
case BLKGETSIZE64_32:
|
2019-11-29 10:48:31 +00:00
|
|
|
return put_u64(argp, i_size_read(bdev->bd_inode));
|
2019-11-29 10:45:30 +00:00
|
|
|
|
2019-11-29 10:48:31 +00:00
|
|
|
/* Incompatible alignment on i386 */
|
2019-11-29 10:45:30 +00:00
|
|
|
case BLKTRACESETUP32:
|
2019-11-29 10:48:31 +00:00
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
2019-11-29 10:45:30 +00:00
|
|
|
default:
|
2019-11-29 10:48:31 +00:00
|
|
|
break;
|
2019-11-29 10:45:30 +00:00
|
|
|
}
|
2019-11-29 10:48:31 +00:00
|
|
|
|
|
|
|
ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp);
|
|
|
|
if (ret == -ENOIOCTLCMD && disk->fops->compat_ioctl)
|
|
|
|
ret = disk->fops->compat_ioctl(bdev, mode, cmd, arg);
|
|
|
|
|
|
|
|
return ret;
|
2019-11-29 10:45:30 +00:00
|
|
|
}
|
|
|
|
#endif
|