Merge branch 'bkl/ioctl' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/random-tracing
* 'bkl/ioctl' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/random-tracing: staging: Pushdown bkl to easycap ioctl handlers autofs/autofs4: Move compat_ioctl handling into fs v4l: Convert v4l2-dev to unlocked_ioctl ia64/perfmon: Convert to unlocked_ioctl sunrpc: Remove duplicated #include ncpfs: Remove duplicated #include
This commit is contained in:
		
				commit
				
					
						7233e39276
					
				
			
		
					 9 changed files with 180 additions and 124 deletions
				
			
		| 
						 | 
					@ -25,6 +25,7 @@
 | 
				
			||||||
#include <linux/init.h>
 | 
					#include <linux/init.h>
 | 
				
			||||||
#include <linux/kmod.h>
 | 
					#include <linux/kmod.h>
 | 
				
			||||||
#include <linux/slab.h>
 | 
					#include <linux/slab.h>
 | 
				
			||||||
 | 
					#include <linux/smp_lock.h>
 | 
				
			||||||
#include <asm/uaccess.h>
 | 
					#include <asm/uaccess.h>
 | 
				
			||||||
#include <asm/system.h>
 | 
					#include <asm/system.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -215,28 +216,24 @@ static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
 | 
				
			||||||
	return vdev->fops->poll(filp, poll);
 | 
						return vdev->fops->poll(filp, poll);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int v4l2_ioctl(struct inode *inode, struct file *filp,
 | 
					static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
 | 
				
			||||||
		unsigned int cmd, unsigned long arg)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct video_device *vdev = video_devdata(filp);
 | 
						struct video_device *vdev = video_devdata(filp);
 | 
				
			||||||
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!vdev->fops->ioctl)
 | 
					 | 
				
			||||||
		return -ENOTTY;
 | 
					 | 
				
			||||||
	/* Allow ioctl to continue even if the device was unregistered.
 | 
						/* Allow ioctl to continue even if the device was unregistered.
 | 
				
			||||||
	   Things like dequeueing buffers might still be useful. */
 | 
						   Things like dequeueing buffers might still be useful. */
 | 
				
			||||||
	return vdev->fops->ioctl(filp, cmd, arg);
 | 
						if (vdev->fops->unlocked_ioctl) {
 | 
				
			||||||
}
 | 
							ret = vdev->fops->unlocked_ioctl(filp, cmd, arg);
 | 
				
			||||||
 | 
						} else if (vdev->fops->ioctl) {
 | 
				
			||||||
 | 
							/* TODO: convert all drivers to unlocked_ioctl */
 | 
				
			||||||
 | 
							lock_kernel();
 | 
				
			||||||
 | 
							ret = vdev->fops->ioctl(filp, cmd, arg);
 | 
				
			||||||
 | 
							unlock_kernel();
 | 
				
			||||||
 | 
						} else
 | 
				
			||||||
 | 
							ret = -ENOTTY;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static long v4l2_unlocked_ioctl(struct file *filp,
 | 
						return ret;
 | 
				
			||||||
		unsigned int cmd, unsigned long arg)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	struct video_device *vdev = video_devdata(filp);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (!vdev->fops->unlocked_ioctl)
 | 
					 | 
				
			||||||
		return -ENOTTY;
 | 
					 | 
				
			||||||
	/* Allow ioctl to continue even if the device was unregistered.
 | 
					 | 
				
			||||||
	   Things like dequeueing buffers might still be useful. */
 | 
					 | 
				
			||||||
	return vdev->fops->unlocked_ioctl(filp, cmd, arg);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_MMU
 | 
					#ifdef CONFIG_MMU
 | 
				
			||||||
| 
						 | 
					@ -307,22 +304,6 @@ static int v4l2_release(struct inode *inode, struct file *filp)
 | 
				
			||||||
	return ret;
 | 
						return ret;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const struct file_operations v4l2_unlocked_fops = {
 | 
					 | 
				
			||||||
	.owner = THIS_MODULE,
 | 
					 | 
				
			||||||
	.read = v4l2_read,
 | 
					 | 
				
			||||||
	.write = v4l2_write,
 | 
					 | 
				
			||||||
	.open = v4l2_open,
 | 
					 | 
				
			||||||
	.get_unmapped_area = v4l2_get_unmapped_area,
 | 
					 | 
				
			||||||
	.mmap = v4l2_mmap,
 | 
					 | 
				
			||||||
	.unlocked_ioctl = v4l2_unlocked_ioctl,
 | 
					 | 
				
			||||||
#ifdef CONFIG_COMPAT
 | 
					 | 
				
			||||||
	.compat_ioctl = v4l2_compat_ioctl32,
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
	.release = v4l2_release,
 | 
					 | 
				
			||||||
	.poll = v4l2_poll,
 | 
					 | 
				
			||||||
	.llseek = no_llseek,
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static const struct file_operations v4l2_fops = {
 | 
					static const struct file_operations v4l2_fops = {
 | 
				
			||||||
	.owner = THIS_MODULE,
 | 
						.owner = THIS_MODULE,
 | 
				
			||||||
	.read = v4l2_read,
 | 
						.read = v4l2_read,
 | 
				
			||||||
| 
						 | 
					@ -330,7 +311,7 @@ static const struct file_operations v4l2_fops = {
 | 
				
			||||||
	.open = v4l2_open,
 | 
						.open = v4l2_open,
 | 
				
			||||||
	.get_unmapped_area = v4l2_get_unmapped_area,
 | 
						.get_unmapped_area = v4l2_get_unmapped_area,
 | 
				
			||||||
	.mmap = v4l2_mmap,
 | 
						.mmap = v4l2_mmap,
 | 
				
			||||||
	.ioctl = v4l2_ioctl,
 | 
						.unlocked_ioctl = v4l2_ioctl,
 | 
				
			||||||
#ifdef CONFIG_COMPAT
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
	.compat_ioctl = v4l2_compat_ioctl32,
 | 
						.compat_ioctl = v4l2_compat_ioctl32,
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					@ -521,9 +502,6 @@ static int __video_register_device(struct video_device *vdev, int type, int nr,
 | 
				
			||||||
		ret = -ENOMEM;
 | 
							ret = -ENOMEM;
 | 
				
			||||||
		goto cleanup;
 | 
							goto cleanup;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if (vdev->fops->unlocked_ioctl)
 | 
					 | 
				
			||||||
		vdev->cdev->ops = &v4l2_unlocked_fops;
 | 
					 | 
				
			||||||
	else
 | 
					 | 
				
			||||||
	vdev->cdev->ops = &v4l2_fops;
 | 
						vdev->cdev->ops = &v4l2_fops;
 | 
				
			||||||
	vdev->cdev->owner = vdev->fops->owner;
 | 
						vdev->cdev->owner = vdev->fops->owner;
 | 
				
			||||||
	ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
 | 
						ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -463,15 +463,12 @@ struct data_buffer audio_buffer[];
 | 
				
			||||||
void             easycap_complete(struct urb *);
 | 
					void             easycap_complete(struct urb *);
 | 
				
			||||||
int              easycap_open(struct inode *, struct file *);
 | 
					int              easycap_open(struct inode *, struct file *);
 | 
				
			||||||
int              easycap_release(struct inode *, struct file *);
 | 
					int              easycap_release(struct inode *, struct file *);
 | 
				
			||||||
int              easycap_ioctl(struct inode *, struct file *, \
 | 
					long             easycap_ioctl(struct file *, unsigned int,  unsigned long);
 | 
				
			||||||
						unsigned int,  unsigned long);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv*/
 | 
					/*vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv*/
 | 
				
			||||||
#if defined(EASYCAP_IS_VIDEODEV_CLIENT)
 | 
					#if defined(EASYCAP_IS_VIDEODEV_CLIENT)
 | 
				
			||||||
int              easycap_open_noinode(struct file *);
 | 
					int              easycap_open_noinode(struct file *);
 | 
				
			||||||
int              easycap_release_noinode(struct file *);
 | 
					int              easycap_release_noinode(struct file *);
 | 
				
			||||||
long             easycap_ioctl_noinode(struct file *, \
 | 
					 | 
				
			||||||
						unsigned int,  unsigned long);
 | 
					 | 
				
			||||||
int              videodev_release(struct video_device *);
 | 
					int              videodev_release(struct video_device *);
 | 
				
			||||||
#endif /*EASYCAP_IS_VIDEODEV_CLIENT*/
 | 
					#endif /*EASYCAP_IS_VIDEODEV_CLIENT*/
 | 
				
			||||||
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
 | 
					/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
 | 
				
			||||||
| 
						 | 
					@ -515,8 +512,7 @@ void             easysnd_complete(struct urb *);
 | 
				
			||||||
ssize_t          easysnd_read(struct file *, char __user *, size_t, loff_t *);
 | 
					ssize_t          easysnd_read(struct file *, char __user *, size_t, loff_t *);
 | 
				
			||||||
int              easysnd_open(struct inode *, struct file *);
 | 
					int              easysnd_open(struct inode *, struct file *);
 | 
				
			||||||
int              easysnd_release(struct inode *, struct file *);
 | 
					int              easysnd_release(struct inode *, struct file *);
 | 
				
			||||||
int              easysnd_ioctl(struct inode *, struct file *, \
 | 
					long             easysnd_ioctl(struct file *, unsigned int,  unsigned long);
 | 
				
			||||||
						unsigned int,  unsigned long);
 | 
					 | 
				
			||||||
unsigned int     easysnd_poll(struct file *, poll_table *);
 | 
					unsigned int     easysnd_poll(struct file *, poll_table *);
 | 
				
			||||||
void             easysnd_delete(struct kref *);
 | 
					void             easysnd_delete(struct kref *);
 | 
				
			||||||
int              submit_audio_urbs(struct easycap *);
 | 
					int              submit_audio_urbs(struct easycap *);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,6 +25,7 @@
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
/*****************************************************************************/
 | 
					/*****************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <linux/smp_lock.h>
 | 
				
			||||||
#include "easycap.h"
 | 
					#include "easycap.h"
 | 
				
			||||||
#include "easycap_debug.h"
 | 
					#include "easycap_debug.h"
 | 
				
			||||||
#include "easycap_standard.h"
 | 
					#include "easycap_standard.h"
 | 
				
			||||||
| 
						 | 
					@ -773,18 +774,9 @@ while (0xFFFFFFFF != easycap_control[i1].id) {
 | 
				
			||||||
SAY("WARNING: failed to adjust mute: control not found\n");
 | 
					SAY("WARNING: failed to adjust mute: control not found\n");
 | 
				
			||||||
return -ENOENT;
 | 
					return -ENOENT;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
/****************************************************************************/
 | 
					
 | 
				
			||||||
/*vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv*/
 | 
					 | 
				
			||||||
#if defined(EASYCAP_IS_VIDEODEV_CLIENT)
 | 
					 | 
				
			||||||
long
 | 
					 | 
				
			||||||
easycap_ioctl_noinode(struct file *file, unsigned int cmd, unsigned long arg)\
 | 
					 | 
				
			||||||
									{
 | 
					 | 
				
			||||||
	return easycap_ioctl((struct inode *)NULL, file, cmd, arg);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
#endif /*EASYCAP_IS_VIDEODEV_CLIENT*/
 | 
					 | 
				
			||||||
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
 | 
					 | 
				
			||||||
/*--------------------------------------------------------------------------*/
 | 
					/*--------------------------------------------------------------------------*/
 | 
				
			||||||
int easycap_ioctl(struct inode *inode, struct file *file, \
 | 
					static int easycap_ioctl_bkl(struct inode *inode, struct file *file,
 | 
				
			||||||
			     unsigned int cmd, unsigned long arg)
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
static struct easycap *peasycap;
 | 
					static struct easycap *peasycap;
 | 
				
			||||||
| 
						 | 
					@ -1956,18 +1948,21 @@ default: {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
return 0;
 | 
					return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
/****************************************************************************/
 | 
					
 | 
				
			||||||
/*vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv*/
 | 
					long easycap_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
 | 
				
			||||||
#if defined(EASYCAP_IS_VIDEODEV_CLIENT)
 | 
					 | 
				
			||||||
long
 | 
					 | 
				
			||||||
easysnd_ioctl_noinode(struct file *file, unsigned int cmd, unsigned long arg)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	return easysnd_ioctl((struct inode *)NULL, file, cmd, arg);
 | 
						struct inode *inode = file->f_dentry->d_inode;
 | 
				
			||||||
 | 
						long ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lock_kernel();
 | 
				
			||||||
 | 
						ret = easycap_ioctl_bkl(inode, file, cmd, arg);
 | 
				
			||||||
 | 
						unlock_kernel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return ret;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif /*EASYCAP_IS_VIDEODEV_CLIENT*/
 | 
					
 | 
				
			||||||
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
 | 
					 | 
				
			||||||
/*--------------------------------------------------------------------------*/
 | 
					/*--------------------------------------------------------------------------*/
 | 
				
			||||||
int easysnd_ioctl(struct inode *inode, struct file *file, \
 | 
					static int easysnd_ioctl_bkl(struct inode *inode, struct file *file,
 | 
				
			||||||
			     unsigned int cmd, unsigned long arg)
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
struct easycap *peasycap;
 | 
					struct easycap *peasycap;
 | 
				
			||||||
| 
						 | 
					@ -2158,6 +2153,19 @@ default: {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
return 0;
 | 
					return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					long easysnd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct inode *inode = file->f_dentry->d_inode;
 | 
				
			||||||
 | 
						long ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lock_kernel();
 | 
				
			||||||
 | 
						ret = easysnd_ioctl_bkl(inode, file, cmd, arg);
 | 
				
			||||||
 | 
						unlock_kernel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*****************************************************************************/
 | 
					/*****************************************************************************/
 | 
				
			||||||
int explain_ioctl(__u32 wot)
 | 
					int explain_ioctl(__u32 wot)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -63,7 +63,7 @@ const struct file_operations easycap_fops = {
 | 
				
			||||||
	.owner		= THIS_MODULE,
 | 
						.owner		= THIS_MODULE,
 | 
				
			||||||
	.open		= easycap_open,
 | 
						.open		= easycap_open,
 | 
				
			||||||
	.release	= easycap_release,
 | 
						.release	= easycap_release,
 | 
				
			||||||
.ioctl =   easycap_ioctl,
 | 
						.unlocked_ioctl	= easycap_ioctl,
 | 
				
			||||||
	.poll		= easycap_poll,
 | 
						.poll		= easycap_poll,
 | 
				
			||||||
	.mmap		= easycap_mmap,
 | 
						.mmap		= easycap_mmap,
 | 
				
			||||||
	.llseek		= no_llseek,
 | 
						.llseek		= no_llseek,
 | 
				
			||||||
| 
						 | 
					@ -86,7 +86,7 @@ const struct v4l2_file_operations v4l2_fops = {
 | 
				
			||||||
	.owner		= THIS_MODULE,
 | 
						.owner		= THIS_MODULE,
 | 
				
			||||||
	.open		= easycap_open_noinode,
 | 
						.open		= easycap_open_noinode,
 | 
				
			||||||
	.release	= easycap_release_noinode,
 | 
						.release	= easycap_release_noinode,
 | 
				
			||||||
.ioctl =   easycap_ioctl_noinode,
 | 
						.unlocked_ioctl	= easycap_ioctl,
 | 
				
			||||||
	.poll		= easycap_poll,
 | 
						.poll		= easycap_poll,
 | 
				
			||||||
	.mmap		= easycap_mmap,
 | 
						.mmap		= easycap_mmap,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -105,7 +105,7 @@ const struct file_operations easysnd_fops = {
 | 
				
			||||||
	.owner		= THIS_MODULE,
 | 
						.owner		= THIS_MODULE,
 | 
				
			||||||
	.open		= easysnd_open,
 | 
						.open		= easysnd_open,
 | 
				
			||||||
	.release	= easysnd_release,
 | 
						.release	= easysnd_release,
 | 
				
			||||||
.ioctl =   easysnd_ioctl,
 | 
						.unlocked_ioctl	= easysnd_ioctl,
 | 
				
			||||||
	.read		= easysnd_read,
 | 
						.read		= easysnd_read,
 | 
				
			||||||
	.llseek		= no_llseek,
 | 
						.llseek		= no_llseek,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -16,6 +16,7 @@
 | 
				
			||||||
#include <linux/slab.h>
 | 
					#include <linux/slab.h>
 | 
				
			||||||
#include <linux/param.h>
 | 
					#include <linux/param.h>
 | 
				
			||||||
#include <linux/time.h>
 | 
					#include <linux/time.h>
 | 
				
			||||||
 | 
					#include <linux/compat.h>
 | 
				
			||||||
#include <linux/smp_lock.h>
 | 
					#include <linux/smp_lock.h>
 | 
				
			||||||
#include "autofs_i.h"
 | 
					#include "autofs_i.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,13 +26,17 @@ static int autofs_root_symlink(struct inode *,struct dentry *,const char *);
 | 
				
			||||||
static int autofs_root_unlink(struct inode *,struct dentry *);
 | 
					static int autofs_root_unlink(struct inode *,struct dentry *);
 | 
				
			||||||
static int autofs_root_rmdir(struct inode *,struct dentry *);
 | 
					static int autofs_root_rmdir(struct inode *,struct dentry *);
 | 
				
			||||||
static int autofs_root_mkdir(struct inode *,struct dentry *,int);
 | 
					static int autofs_root_mkdir(struct inode *,struct dentry *,int);
 | 
				
			||||||
static int autofs_root_ioctl(struct inode *, struct file *,unsigned int,unsigned long);
 | 
					static long autofs_root_ioctl(struct file *,unsigned int,unsigned long);
 | 
				
			||||||
 | 
					static long autofs_root_compat_ioctl(struct file *,unsigned int,unsigned long);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const struct file_operations autofs_root_operations = {
 | 
					const struct file_operations autofs_root_operations = {
 | 
				
			||||||
	.llseek		= generic_file_llseek,
 | 
						.llseek		= generic_file_llseek,
 | 
				
			||||||
	.read		= generic_read_dir,
 | 
						.read		= generic_read_dir,
 | 
				
			||||||
	.readdir	= autofs_root_readdir,
 | 
						.readdir	= autofs_root_readdir,
 | 
				
			||||||
	.ioctl		= autofs_root_ioctl,
 | 
						.unlocked_ioctl	= autofs_root_ioctl,
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
						.compat_ioctl	= autofs_root_compat_ioctl,
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const struct inode_operations autofs_root_inode_operations = {
 | 
					const struct inode_operations autofs_root_inode_operations = {
 | 
				
			||||||
| 
						 | 
					@ -492,6 +497,25 @@ static int autofs_root_mkdir(struct inode *dir, struct dentry *dentry, int mode)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Get/set timeout ioctl() operation */
 | 
					/* Get/set timeout ioctl() operation */
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
					static inline int autofs_compat_get_set_timeout(struct autofs_sb_info *sbi,
 | 
				
			||||||
 | 
										 unsigned int __user *p)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						unsigned long ntimeout;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (get_user(ntimeout, p) ||
 | 
				
			||||||
 | 
						    put_user(sbi->exp_timeout / HZ, p))
 | 
				
			||||||
 | 
							return -EFAULT;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (ntimeout > UINT_MAX/HZ)
 | 
				
			||||||
 | 
							sbi->exp_timeout = 0;
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							sbi->exp_timeout = ntimeout * HZ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline int autofs_get_set_timeout(struct autofs_sb_info *sbi,
 | 
					static inline int autofs_get_set_timeout(struct autofs_sb_info *sbi,
 | 
				
			||||||
					 unsigned long __user *p)
 | 
										 unsigned long __user *p)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					@ -546,7 +570,7 @@ static inline int autofs_expire_run(struct super_block *sb,
 | 
				
			||||||
 * ioctl()'s on the root directory is the chief method for the daemon to
 | 
					 * ioctl()'s on the root directory is the chief method for the daemon to
 | 
				
			||||||
 * generate kernel reactions
 | 
					 * generate kernel reactions
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static int autofs_root_ioctl(struct inode *inode, struct file *filp,
 | 
					static int autofs_do_root_ioctl(struct inode *inode, struct file *filp,
 | 
				
			||||||
			     unsigned int cmd, unsigned long arg)
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct autofs_sb_info *sbi = autofs_sbi(inode->i_sb);
 | 
						struct autofs_sb_info *sbi = autofs_sbi(inode->i_sb);
 | 
				
			||||||
| 
						 | 
					@ -571,6 +595,10 @@ static int autofs_root_ioctl(struct inode *inode, struct file *filp,
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
	case AUTOFS_IOC_PROTOVER: /* Get protocol version */
 | 
						case AUTOFS_IOC_PROTOVER: /* Get protocol version */
 | 
				
			||||||
		return autofs_get_protover(argp);
 | 
							return autofs_get_protover(argp);
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
						case AUTOFS_IOC_SETTIMEOUT32:
 | 
				
			||||||
 | 
							return autofs_compat_get_set_timeout(sbi, argp);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
	case AUTOFS_IOC_SETTIMEOUT:
 | 
						case AUTOFS_IOC_SETTIMEOUT:
 | 
				
			||||||
		return autofs_get_set_timeout(sbi, argp);
 | 
							return autofs_get_set_timeout(sbi, argp);
 | 
				
			||||||
	case AUTOFS_IOC_EXPIRE:
 | 
						case AUTOFS_IOC_EXPIRE:
 | 
				
			||||||
| 
						 | 
					@ -579,4 +607,37 @@ static int autofs_root_ioctl(struct inode *inode, struct file *filp,
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		return -ENOSYS;
 | 
							return -ENOSYS;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static long autofs_root_ioctl(struct file *filp,
 | 
				
			||||||
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lock_kernel();
 | 
				
			||||||
 | 
						ret = autofs_do_root_ioctl(filp->f_path.dentry->d_inode,
 | 
				
			||||||
 | 
									   filp, cmd, arg);
 | 
				
			||||||
 | 
						unlock_kernel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
					static long autofs_root_compat_ioctl(struct file *filp,
 | 
				
			||||||
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct inode *inode = filp->f_path.dentry->d_inode;
 | 
				
			||||||
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lock_kernel();
 | 
				
			||||||
 | 
						if (cmd == AUTOFS_IOC_READY || cmd == AUTOFS_IOC_FAIL)
 | 
				
			||||||
 | 
							ret = autofs_do_root_ioctl(inode, filp, cmd, arg);
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							ret = autofs_do_root_ioctl(inode, filp, cmd,
 | 
				
			||||||
 | 
								(unsigned long)compat_ptr(arg));
 | 
				
			||||||
 | 
						unlock_kernel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,7 +18,9 @@
 | 
				
			||||||
#include <linux/slab.h>
 | 
					#include <linux/slab.h>
 | 
				
			||||||
#include <linux/param.h>
 | 
					#include <linux/param.h>
 | 
				
			||||||
#include <linux/time.h>
 | 
					#include <linux/time.h>
 | 
				
			||||||
 | 
					#include <linux/compat.h>
 | 
				
			||||||
#include <linux/smp_lock.h>
 | 
					#include <linux/smp_lock.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "autofs_i.h"
 | 
					#include "autofs_i.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int autofs4_dir_symlink(struct inode *,struct dentry *,const char *);
 | 
					static int autofs4_dir_symlink(struct inode *,struct dentry *,const char *);
 | 
				
			||||||
| 
						 | 
					@ -26,6 +28,7 @@ static int autofs4_dir_unlink(struct inode *,struct dentry *);
 | 
				
			||||||
static int autofs4_dir_rmdir(struct inode *,struct dentry *);
 | 
					static int autofs4_dir_rmdir(struct inode *,struct dentry *);
 | 
				
			||||||
static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
 | 
					static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
 | 
				
			||||||
static long autofs4_root_ioctl(struct file *,unsigned int,unsigned long);
 | 
					static long autofs4_root_ioctl(struct file *,unsigned int,unsigned long);
 | 
				
			||||||
 | 
					static long autofs4_root_compat_ioctl(struct file *,unsigned int,unsigned long);
 | 
				
			||||||
static int autofs4_dir_open(struct inode *inode, struct file *file);
 | 
					static int autofs4_dir_open(struct inode *inode, struct file *file);
 | 
				
			||||||
static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
 | 
					static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
 | 
				
			||||||
static void *autofs4_follow_link(struct dentry *, struct nameidata *);
 | 
					static void *autofs4_follow_link(struct dentry *, struct nameidata *);
 | 
				
			||||||
| 
						 | 
					@ -40,6 +43,9 @@ const struct file_operations autofs4_root_operations = {
 | 
				
			||||||
	.readdir	= dcache_readdir,
 | 
						.readdir	= dcache_readdir,
 | 
				
			||||||
	.llseek		= dcache_dir_lseek,
 | 
						.llseek		= dcache_dir_lseek,
 | 
				
			||||||
	.unlocked_ioctl	= autofs4_root_ioctl,
 | 
						.unlocked_ioctl	= autofs4_root_ioctl,
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
						.compat_ioctl	= autofs4_root_compat_ioctl,
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const struct file_operations autofs4_dir_operations = {
 | 
					const struct file_operations autofs4_dir_operations = {
 | 
				
			||||||
| 
						 | 
					@ -840,6 +846,26 @@ static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Get/set timeout ioctl() operation */
 | 
					/* Get/set timeout ioctl() operation */
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
					static inline int autofs4_compat_get_set_timeout(struct autofs_sb_info *sbi,
 | 
				
			||||||
 | 
										 compat_ulong_t __user *p)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						int rv;
 | 
				
			||||||
 | 
						unsigned long ntimeout;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if ((rv = get_user(ntimeout, p)) ||
 | 
				
			||||||
 | 
						     (rv = put_user(sbi->exp_timeout/HZ, p)))
 | 
				
			||||||
 | 
							return rv;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (ntimeout > UINT_MAX/HZ)
 | 
				
			||||||
 | 
							sbi->exp_timeout = 0;
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							sbi->exp_timeout = ntimeout * HZ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
 | 
					static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
 | 
				
			||||||
					 unsigned long __user *p)
 | 
										 unsigned long __user *p)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					@ -933,6 +959,10 @@ static int autofs4_root_ioctl_unlocked(struct inode *inode, struct file *filp,
 | 
				
			||||||
		return autofs4_get_protosubver(sbi, p);
 | 
							return autofs4_get_protosubver(sbi, p);
 | 
				
			||||||
	case AUTOFS_IOC_SETTIMEOUT:
 | 
						case AUTOFS_IOC_SETTIMEOUT:
 | 
				
			||||||
		return autofs4_get_set_timeout(sbi, p);
 | 
							return autofs4_get_set_timeout(sbi, p);
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
						case AUTOFS_IOC_SETTIMEOUT32:
 | 
				
			||||||
 | 
							return autofs4_compat_get_set_timeout(sbi, p);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	case AUTOFS_IOC_ASKUMOUNT:
 | 
						case AUTOFS_IOC_ASKUMOUNT:
 | 
				
			||||||
		return autofs4_ask_umount(filp->f_path.mnt, p);
 | 
							return autofs4_ask_umount(filp->f_path.mnt, p);
 | 
				
			||||||
| 
						 | 
					@ -961,3 +991,22 @@ static long autofs4_root_ioctl(struct file *filp,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return ret;
 | 
						return ret;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef CONFIG_COMPAT
 | 
				
			||||||
 | 
					static long autofs4_root_compat_ioctl(struct file *filp,
 | 
				
			||||||
 | 
								     unsigned int cmd, unsigned long arg)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						struct inode *inode = filp->f_path.dentry->d_inode;
 | 
				
			||||||
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lock_kernel();
 | 
				
			||||||
 | 
						if (cmd == AUTOFS_IOC_READY || cmd == AUTOFS_IOC_FAIL)
 | 
				
			||||||
 | 
							ret = autofs4_root_ioctl_unlocked(inode, filp, cmd, arg);
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							ret = autofs4_root_ioctl_unlocked(inode, filp, cmd,
 | 
				
			||||||
 | 
								(unsigned long)compat_ptr(arg));
 | 
				
			||||||
 | 
						unlock_kernel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -131,23 +131,6 @@ static int w_long(unsigned int fd, unsigned int cmd,
 | 
				
			||||||
	return err;
 | 
						return err;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int rw_long(unsigned int fd, unsigned int cmd,
 | 
					 | 
				
			||||||
		compat_ulong_t __user *argp)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	mm_segment_t old_fs = get_fs();
 | 
					 | 
				
			||||||
	int err;
 | 
					 | 
				
			||||||
	unsigned long val;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if(get_user(val, argp))
 | 
					 | 
				
			||||||
		return -EFAULT;
 | 
					 | 
				
			||||||
	set_fs (KERNEL_DS);
 | 
					 | 
				
			||||||
	err = sys_ioctl(fd, cmd, (unsigned long)&val);
 | 
					 | 
				
			||||||
	set_fs (old_fs);
 | 
					 | 
				
			||||||
	if (!err && put_user(val, argp))
 | 
					 | 
				
			||||||
		return -EFAULT;
 | 
					 | 
				
			||||||
	return err;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct compat_video_event {
 | 
					struct compat_video_event {
 | 
				
			||||||
	int32_t		type;
 | 
						int32_t		type;
 | 
				
			||||||
	compat_time_t	timestamp;
 | 
						compat_time_t	timestamp;
 | 
				
			||||||
| 
						 | 
					@ -594,12 +577,6 @@ static int do_smb_getmountuid(unsigned int fd, unsigned int cmd,
 | 
				
			||||||
	return err;
 | 
						return err;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ioc_settimeout(unsigned int fd, unsigned int cmd,
 | 
					 | 
				
			||||||
		compat_ulong_t __user *argp)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	return rw_long(fd, AUTOFS_IOC_SETTIMEOUT, argp);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Bluetooth ioctls */
 | 
					/* Bluetooth ioctls */
 | 
				
			||||||
#define HCIUARTSETPROTO		_IOW('U', 200, int)
 | 
					#define HCIUARTSETPROTO		_IOW('U', 200, int)
 | 
				
			||||||
#define HCIUARTGETPROTO		_IOR('U', 201, int)
 | 
					#define HCIUARTGETPROTO		_IOR('U', 201, int)
 | 
				
			||||||
| 
						 | 
					@ -1284,13 +1261,6 @@ COMPATIBLE_IOCTL(SOUND_MIXER_PRIVATE5)
 | 
				
			||||||
COMPATIBLE_IOCTL(SOUND_MIXER_GETLEVELS)
 | 
					COMPATIBLE_IOCTL(SOUND_MIXER_GETLEVELS)
 | 
				
			||||||
COMPATIBLE_IOCTL(SOUND_MIXER_SETLEVELS)
 | 
					COMPATIBLE_IOCTL(SOUND_MIXER_SETLEVELS)
 | 
				
			||||||
COMPATIBLE_IOCTL(OSS_GETVERSION)
 | 
					COMPATIBLE_IOCTL(OSS_GETVERSION)
 | 
				
			||||||
/* AUTOFS */
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_CATATONIC)
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_PROTOVER)
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_EXPIRE)
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_EXPIRE_MULTI)
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_PROTOSUBVER)
 | 
					 | 
				
			||||||
COMPATIBLE_IOCTL(AUTOFS_IOC_ASKUMOUNT)
 | 
					 | 
				
			||||||
/* Raw devices */
 | 
					/* Raw devices */
 | 
				
			||||||
COMPATIBLE_IOCTL(RAW_SETBIND)
 | 
					COMPATIBLE_IOCTL(RAW_SETBIND)
 | 
				
			||||||
COMPATIBLE_IOCTL(RAW_GETBIND)
 | 
					COMPATIBLE_IOCTL(RAW_GETBIND)
 | 
				
			||||||
| 
						 | 
					@ -1557,9 +1527,6 @@ static long do_ioctl_trans(int fd, unsigned int cmd,
 | 
				
			||||||
	case RAW_GETBIND:
 | 
						case RAW_GETBIND:
 | 
				
			||||||
		return raw_ioctl(fd, cmd, argp);
 | 
							return raw_ioctl(fd, cmd, argp);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#define AUTOFS_IOC_SETTIMEOUT32 _IOWR(0x93,0x64,unsigned int)
 | 
					 | 
				
			||||||
	case AUTOFS_IOC_SETTIMEOUT32:
 | 
					 | 
				
			||||||
		return ioc_settimeout(fd, cmd, argp);
 | 
					 | 
				
			||||||
	/* One SMB ioctl needs translations. */
 | 
						/* One SMB ioctl needs translations. */
 | 
				
			||||||
#define SMB_IOC_GETMOUNTUID_32 _IOR('u', 1, compat_uid_t)
 | 
					#define SMB_IOC_GETMOUNTUID_32 _IOR('u', 1, compat_uid_t)
 | 
				
			||||||
	case SMB_IOC_GETMOUNTUID_32:
 | 
						case SMB_IOC_GETMOUNTUID_32:
 | 
				
			||||||
| 
						 | 
					@ -1614,9 +1581,6 @@ static long do_ioctl_trans(int fd, unsigned int cmd,
 | 
				
			||||||
	case KDSKBMETA:
 | 
						case KDSKBMETA:
 | 
				
			||||||
	case KDSKBLED:
 | 
						case KDSKBLED:
 | 
				
			||||||
	case KDSETLED:
 | 
						case KDSETLED:
 | 
				
			||||||
	/* AUTOFS */
 | 
					 | 
				
			||||||
	case AUTOFS_IOC_READY:
 | 
					 | 
				
			||||||
	case AUTOFS_IOC_FAIL:
 | 
					 | 
				
			||||||
	/* NBD */
 | 
						/* NBD */
 | 
				
			||||||
	case NBD_SET_SOCK:
 | 
						case NBD_SET_SOCK:
 | 
				
			||||||
	case NBD_SET_BLKSIZE:
 | 
						case NBD_SET_BLKSIZE:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,6 @@
 | 
				
			||||||
#include <linux/smp_lock.h>
 | 
					#include <linux/smp_lock.h>
 | 
				
			||||||
#include <linux/vmalloc.h>
 | 
					#include <linux/vmalloc.h>
 | 
				
			||||||
#include <linux/sched.h>
 | 
					#include <linux/sched.h>
 | 
				
			||||||
#include <linux/smp_lock.h>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <linux/ncp_fs.h>
 | 
					#include <linux/ncp_fs.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -79,6 +79,7 @@ struct autofs_packet_expire {
 | 
				
			||||||
#define AUTOFS_IOC_FAIL       _IO(0x93,0x61)
 | 
					#define AUTOFS_IOC_FAIL       _IO(0x93,0x61)
 | 
				
			||||||
#define AUTOFS_IOC_CATATONIC  _IO(0x93,0x62)
 | 
					#define AUTOFS_IOC_CATATONIC  _IO(0x93,0x62)
 | 
				
			||||||
#define AUTOFS_IOC_PROTOVER   _IOR(0x93,0x63,int)
 | 
					#define AUTOFS_IOC_PROTOVER   _IOR(0x93,0x63,int)
 | 
				
			||||||
 | 
					#define AUTOFS_IOC_SETTIMEOUT32 _IOWR(0x93,0x64,compat_ulong_t)
 | 
				
			||||||
#define AUTOFS_IOC_SETTIMEOUT _IOWR(0x93,0x64,unsigned long)
 | 
					#define AUTOFS_IOC_SETTIMEOUT _IOWR(0x93,0x64,unsigned long)
 | 
				
			||||||
#define AUTOFS_IOC_EXPIRE     _IOR(0x93,0x65,struct autofs_packet_expire)
 | 
					#define AUTOFS_IOC_EXPIRE     _IOR(0x93,0x65,struct autofs_packet_expire)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue