| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  |  * linux/fs/ext4/ioctl.c | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 1993, 1994, 1995 | 
					
						
							|  |  |  |  * Remy Card (card@masi.ibp.fr) | 
					
						
							|  |  |  |  * Laboratoire MASI - Institut Blaise Pascal | 
					
						
							|  |  |  |  * Universite Pierre et Marie Curie (Paris VI) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/fs.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:21:01 -07:00
										 |  |  | #include <linux/jbd2.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | #include <linux/capability.h>
 | 
					
						
							|  |  |  | #include <linux/time.h>
 | 
					
						
							|  |  |  | #include <linux/compat.h>
 | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | #include <linux/mount.h>
 | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | #include <linux/file.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | #include <asm/uaccess.h>
 | 
					
						
							| 
									
										
										
										
											2008-04-29 18:13:32 -04:00
										 |  |  | #include "ext4_jbd2.h"
 | 
					
						
							|  |  |  | #include "ext4.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-29 22:03:54 -04:00
										 |  |  | long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-29 22:03:54 -04:00
										 |  |  | 	struct inode *inode = filp->f_dentry->d_inode; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	struct ext4_inode_info *ei = EXT4_I(inode); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 	unsigned int flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-08 22:25:24 -04:00
										 |  |  | 	ext4_debug("cmd = %u, arg = %lu\n", cmd, arg); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (cmd) { | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_GETFLAGS: | 
					
						
							| 
									
										
										
										
											2007-07-18 09:24:20 -04:00
										 |  |  | 		ext4_get_inode_flags(ei); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		flags = ei->i_flags & EXT4_FL_USER_VISIBLE; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		return put_user(flags, (int __user *) arg); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_SETFLAGS: { | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		handle_t *handle = NULL; | 
					
						
							| 
									
										
										
										
											2008-10-08 23:34:06 -04:00
										 |  |  | 		int err, migrate = 0; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		struct ext4_iloc iloc; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		unsigned int oldflags; | 
					
						
							|  |  |  | 		unsigned int jflag; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-17 15:00:08 +05:30
										 |  |  | 		if (!is_owner_or_cap(inode)) | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 			return -EACCES; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (get_user(flags, (int __user *) arg)) | 
					
						
							|  |  |  | 			return -EFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-15 18:09:20 -05:00
										 |  |  | 		flags = ext4_mask_flags(inode->i_mode, flags); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		err = -EPERM; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		mutex_lock(&inode->i_mutex); | 
					
						
							| 
									
										
										
										
											2007-11-14 16:58:56 -08:00
										 |  |  | 		/* Is it quota file? Do not allow user to mess with it */ | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		if (IS_NOQUOTA(inode)) | 
					
						
							|  |  |  | 			goto flags_out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		oldflags = ei->i_flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* The JOURNAL_DATA flag is modifiable only by root */ | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		jflag = flags & EXT4_JOURNAL_DATA_FL; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * The IMMUTABLE and APPEND_ONLY flags can only be changed by | 
					
						
							|  |  |  | 		 * the relevant capability. | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * This test looks nicer. Thanks to Pauline Middelink | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		if ((flags ^ oldflags) & (EXT4_APPEND_FL | EXT4_IMMUTABLE_FL)) { | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 			if (!capable(CAP_LINUX_IMMUTABLE)) | 
					
						
							|  |  |  | 				goto flags_out; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * The JOURNAL_DATA flag can only be changed by | 
					
						
							|  |  |  | 		 * the relevant capability. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) { | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 			if (!capable(CAP_SYS_RESOURCE)) | 
					
						
							|  |  |  | 				goto flags_out; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-10-08 23:34:06 -04:00
										 |  |  | 		if (oldflags & EXT4_EXTENTS_FL) { | 
					
						
							|  |  |  | 			/* We don't support clearning extent flags */ | 
					
						
							|  |  |  | 			if (!(flags & EXT4_EXTENTS_FL)) { | 
					
						
							|  |  |  | 				err = -EOPNOTSUPP; | 
					
						
							|  |  |  | 				goto flags_out; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (flags & EXT4_EXTENTS_FL) { | 
					
						
							|  |  |  | 			/* migrate the file */ | 
					
						
							|  |  |  | 			migrate = 1; | 
					
						
							|  |  |  | 			flags &= ~EXT4_EXTENTS_FL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 09:52:53 -05:00
										 |  |  | 		if (flags & EXT4_EOFBLOCKS_FL) { | 
					
						
							|  |  |  | 			/* we don't support adding EOFBLOCKS flag */ | 
					
						
							|  |  |  | 			if (!(oldflags & EXT4_EOFBLOCKS_FL)) { | 
					
						
							|  |  |  | 				err = -EOPNOTSUPP; | 
					
						
							|  |  |  | 				goto flags_out; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (oldflags & EXT4_EOFBLOCKS_FL) | 
					
						
							|  |  |  | 			ext4_truncate(inode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		handle = ext4_journal_start(inode, 1); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		if (IS_ERR(handle)) { | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 			err = PTR_ERR(handle); | 
					
						
							|  |  |  | 			goto flags_out; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (IS_SYNC(inode)) | 
					
						
							| 
									
										
										
										
											2009-01-07 00:06:22 -05:00
										 |  |  | 			ext4_handle_sync(handle); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		err = ext4_reserve_inode_write(handle, inode, &iloc); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto flags_err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		flags = flags & EXT4_FL_USER_MODIFIABLE; | 
					
						
							|  |  |  | 		flags |= oldflags & ~EXT4_FL_USER_MODIFIABLE; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		ei->i_flags = flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		ext4_set_inode_flags(inode); | 
					
						
							| 
									
										
										
										
											2007-07-18 09:15:20 -04:00
										 |  |  | 		inode->i_ctime = ext4_current_time(inode); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		err = ext4_mark_iloc_dirty(handle, inode, &iloc); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | flags_err: | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		ext4_journal_stop(handle); | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto flags_out; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) | 
					
						
							|  |  |  | 			err = ext4_change_inode_journal_flag(inode, jflag); | 
					
						
							| 
									
										
										
										
											2008-10-08 23:34:06 -04:00
										 |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto flags_out; | 
					
						
							|  |  |  | 		if (migrate) | 
					
						
							|  |  |  | 			err = ext4_ext_migrate(inode); | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | flags_out: | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		mutex_unlock(&inode->i_mutex); | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_GETVERSION: | 
					
						
							|  |  |  | 	case EXT4_IOC_GETVERSION_OLD: | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		return put_user(inode->i_generation, (int __user *) arg); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_SETVERSION: | 
					
						
							|  |  |  | 	case EXT4_IOC_SETVERSION_OLD: { | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		handle_t *handle; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		struct ext4_iloc iloc; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		__u32 generation; | 
					
						
							|  |  |  | 		int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-17 15:00:08 +05:30
										 |  |  | 		if (!is_owner_or_cap(inode)) | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 			return -EPERM; | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		if (get_user(generation, (int __user *) arg)) { | 
					
						
							|  |  |  | 			err = -EFAULT; | 
					
						
							|  |  |  | 			goto setversion_out; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		handle = ext4_journal_start(inode, 1); | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		if (IS_ERR(handle)) { | 
					
						
							|  |  |  | 			err = PTR_ERR(handle); | 
					
						
							|  |  |  | 			goto setversion_out; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		err = ext4_reserve_inode_write(handle, inode, &iloc); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		if (err == 0) { | 
					
						
							| 
									
										
										
										
											2007-07-18 09:15:20 -04:00
										 |  |  | 			inode->i_ctime = ext4_current_time(inode); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 			inode->i_generation = generation; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 			err = ext4_mark_iloc_dirty(handle, inode, &iloc); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		ext4_journal_stop(handle); | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | setversion_out: | 
					
						
							|  |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-18 08:57:06 -04:00
										 |  |  | #ifdef CONFIG_JBD2_DEBUG
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_WAIT_FOR_READONLY: | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * This is racy - by the time we're woken up and running, | 
					
						
							|  |  |  | 		 * the superblock could be released.  And the module could | 
					
						
							|  |  |  | 		 * have been unloaded.  So sue me. | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * Returns 1 if it slept, else zero. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			struct super_block *sb = inode->i_sb; | 
					
						
							|  |  |  | 			DECLARE_WAITQUEUE(wait, current); | 
					
						
							|  |  |  | 			int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			set_current_state(TASK_INTERRUPTIBLE); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 			add_wait_queue(&EXT4_SB(sb)->ro_wait_queue, &wait); | 
					
						
							|  |  |  | 			if (timer_pending(&EXT4_SB(sb)->turn_ro_timer)) { | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 				schedule(); | 
					
						
							|  |  |  | 				ret = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 			remove_wait_queue(&EXT4_SB(sb)->ro_wait_queue, &wait); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 			return ret; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_GROUP_EXTEND: { | 
					
						
							|  |  |  | 		ext4_fsblk_t n_blocks_count; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		struct super_block *sb = inode->i_sb; | 
					
						
							| 
									
										
										
										
											2009-07-13 09:30:17 -04:00
										 |  |  | 		int err, err2=0; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!capable(CAP_SYS_RESOURCE)) | 
					
						
							|  |  |  | 			return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (get_user(n_blocks_count, (__u32 __user *)arg)) | 
					
						
							|  |  |  | 			return -EFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count); | 
					
						
							| 
									
										
										
										
											2009-07-13 09:30:17 -04:00
										 |  |  | 		if (EXT4_SB(sb)->s_journal) { | 
					
						
							|  |  |  | 			jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 			err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 			jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-10-10 20:29:21 -04:00
										 |  |  | 		if (err == 0) | 
					
						
							|  |  |  | 			err = err2; | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case EXT4_IOC_MOVE_EXT: { | 
					
						
							|  |  |  | 		struct move_extent me; | 
					
						
							|  |  |  | 		struct file *donor_filp; | 
					
						
							|  |  |  | 		int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 		if (!(filp->f_mode & FMODE_READ) || | 
					
						
							|  |  |  | 		    !(filp->f_mode & FMODE_WRITE)) | 
					
						
							|  |  |  | 			return -EBADF; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 		if (copy_from_user(&me, | 
					
						
							|  |  |  | 			(struct move_extent __user *)arg, sizeof(me))) | 
					
						
							|  |  |  | 			return -EFAULT; | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 		me.moved_len = 0; | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		donor_filp = fget(me.donor_fd); | 
					
						
							|  |  |  | 		if (!donor_filp) | 
					
						
							|  |  |  | 			return -EBADF; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 		if (!(donor_filp->f_mode & FMODE_WRITE)) { | 
					
						
							|  |  |  | 			err = -EBADF; | 
					
						
							|  |  |  | 			goto mext_out; | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto mext_out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 		err = ext4_move_extents(filp, donor_filp, me.orig_start, | 
					
						
							|  |  |  | 					me.donor_start, me.len, &me.moved_len); | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (me.moved_len > 0) | 
					
						
							|  |  |  | 			file_remove_suid(donor_filp); | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 00:39:24 -05:00
										 |  |  | 		if (copy_to_user((struct move_extent __user *)arg,  | 
					
						
							|  |  |  | 				 &me, sizeof(me))) | 
					
						
							| 
									
										
										
										
											2009-12-06 23:38:31 -05:00
										 |  |  | 			err = -EFAULT; | 
					
						
							|  |  |  | mext_out: | 
					
						
							|  |  |  | 		fput(donor_filp); | 
					
						
							| 
									
										
										
										
											2009-06-17 19:24:03 -04:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_GROUP_ADD: { | 
					
						
							|  |  |  | 		struct ext4_new_group_data input; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		struct super_block *sb = inode->i_sb; | 
					
						
							| 
									
										
										
										
											2009-07-13 09:30:17 -04:00
										 |  |  | 		int err, err2=0; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!capable(CAP_SYS_RESOURCE)) | 
					
						
							|  |  |  | 			return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg, | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 				sizeof(input))) | 
					
						
							|  |  |  | 			return -EFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 		err = ext4_group_add(sb, &input); | 
					
						
							| 
									
										
										
										
											2009-07-13 09:30:17 -04:00
										 |  |  | 		if (EXT4_SB(sb)->s_journal) { | 
					
						
							|  |  |  | 			jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 			err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 			jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-10-10 20:29:21 -04:00
										 |  |  | 		if (err == 0) | 
					
						
							|  |  |  | 			err = err2; | 
					
						
							| 
									
										
										
										
											2008-02-15 14:37:46 -08:00
										 |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-28 23:58:26 -05:00
										 |  |  | 	case EXT4_IOC_MIGRATE: | 
					
						
							| 
									
										
										
										
											2008-09-13 12:52:26 -04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		int err; | 
					
						
							|  |  |  | 		if (!is_owner_or_cap(inode)) | 
					
						
							|  |  |  | 			return -EACCES; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * inode_mutex prevent write and truncate on the file. | 
					
						
							|  |  |  | 		 * Read still goes through. We take i_data_sem in | 
					
						
							|  |  |  | 		 * ext4_ext_swap_inode_data before we switch the | 
					
						
							|  |  |  | 		 * inode format to prevent read. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		mutex_lock(&(inode->i_mutex)); | 
					
						
							|  |  |  | 		err = ext4_ext_migrate(inode); | 
					
						
							|  |  |  | 		mutex_unlock(&(inode->i_mutex)); | 
					
						
							|  |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-28 23:58:26 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-26 01:04:07 -05:00
										 |  |  | 	case EXT4_IOC_ALLOC_DA_BLKS: | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		int err; | 
					
						
							|  |  |  | 		if (!is_owner_or_cap(inode)) | 
					
						
							|  |  |  | 			return -EACCES; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = mnt_want_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		err = ext4_alloc_da_blocks(inode); | 
					
						
							|  |  |  | 		mnt_drop_write(filp->f_path.mnt); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return -ENOTTY; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_COMPAT
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* These are just misnamed, they actually get/put from/to user an int */ | 
					
						
							|  |  |  | 	switch (cmd) { | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_GETFLAGS: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_GETFLAGS; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_SETFLAGS: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_SETFLAGS; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_GETVERSION: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_GETVERSION; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_SETVERSION: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_SETVERSION; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_GROUP_EXTEND: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_GROUP_EXTEND; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_GETVERSION_OLD: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_GETVERSION_OLD; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_SETVERSION_OLD: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_SETVERSION_OLD; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2007-07-18 08:57:06 -04:00
										 |  |  | #ifdef CONFIG_JBD2_DEBUG
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_WAIT_FOR_READONLY: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_WAIT_FOR_READONLY; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_GETRSVSZ: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_GETRSVSZ; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC32_SETRSVSZ: | 
					
						
							|  |  |  | 		cmd = EXT4_IOC_SETRSVSZ; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:53 -07:00
										 |  |  | 	case EXT4_IOC_GROUP_ADD: | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -ENOIOCTLCMD; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-04-29 22:03:54 -04:00
										 |  |  | 	return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg)); | 
					
						
							| 
									
										
										
										
											2006-10-11 01:20:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 |