Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208262
b: refs/heads/master
c: 3448406
h: refs/heads/master
v: v3
  • Loading branch information
Arnd Bergmann authored and Jens Axboe committed Aug 7, 2010
1 parent 6c7b909 commit 929b187
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 610a63498f7f366031a6327eaaa9963ffa110b2b
refs/heads/master: 34484062445fe905bf02c72f87ddda21881acda3
24 changes: 18 additions & 6 deletions trunk/drivers/message/i2o/i2o_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/i2o.h>
#include <linux/smp_lock.h>

#include <linux/mempool.h>

Expand Down Expand Up @@ -652,30 +653,40 @@ static int i2o_block_ioctl(struct block_device *bdev, fmode_t mode,
{
struct gendisk *disk = bdev->bd_disk;
struct i2o_block_device *dev = disk->private_data;
int ret = -ENOTTY;

/* Anyone capable of this syscall can do *real bad* things */

if (!capable(CAP_SYS_ADMIN))
return -EPERM;

lock_kernel();
switch (cmd) {
case BLKI2OGRSTRAT:
return put_user(dev->rcache, (int __user *)arg);
ret = put_user(dev->rcache, (int __user *)arg);
break;
case BLKI2OGWSTRAT:
return put_user(dev->wcache, (int __user *)arg);
ret = put_user(dev->wcache, (int __user *)arg);
break;
case BLKI2OSRSTRAT:
ret = -EINVAL;
if (arg < 0 || arg > CACHE_SMARTFETCH)
return -EINVAL;
break;
dev->rcache = arg;
ret = 0;
break;
case BLKI2OSWSTRAT:
ret = -EINVAL;
if (arg != 0
&& (arg < CACHE_WRITETHROUGH || arg > CACHE_SMARTBACK))
return -EINVAL;
break;
dev->wcache = arg;
ret = 0;
break;
}
return -ENOTTY;
unlock_kernel();

return ret;
};

/**
Expand Down Expand Up @@ -930,7 +941,8 @@ static const struct block_device_operations i2o_block_fops = {
.owner = THIS_MODULE,
.open = i2o_block_open,
.release = i2o_block_release,
.locked_ioctl = i2o_block_ioctl,
.ioctl = i2o_block_ioctl,
.compat_ioctl = i2o_block_ioctl,
.getgeo = i2o_block_getgeo,
.media_changed = i2o_block_media_changed
};
Expand Down

0 comments on commit 929b187

Please sign in to comment.