| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *   fs/cifs/ioctl.c | 
 | 3 |  * | 
 | 4 |  *   vfs operations that deal with io control | 
 | 5 |  * | 
 | 6 |  *   Copyright (C) International Business Machines  Corp., 2005 | 
 | 7 |  *   Author(s): Steve French (sfrench@us.ibm.com) | 
 | 8 |  * | 
 | 9 |  *   This library is free software; you can redistribute it and/or modify | 
 | 10 |  *   it under the terms of the GNU Lesser General Public License as published | 
 | 11 |  *   by the Free Software Foundation; either version 2.1 of the License, or | 
 | 12 |  *   (at your option) any later version. | 
 | 13 |  * | 
 | 14 |  *   This library is distributed in the hope that it will be useful, | 
 | 15 |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 16 |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See | 
 | 17 |  *   the GNU Lesser General Public License for more details. | 
 | 18 |  * | 
 | 19 |  *   You should have received a copy of the GNU Lesser General Public License | 
 | 20 |  *   along with this library; if not, write to the Free Software | 
 | 21 |  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 
 | 22 |  */ | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 23 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/fs.h> | 
 | 25 | #include <linux/ext2_fs.h> | 
 | 26 | #include "cifspdu.h" | 
 | 27 | #include "cifsglob.h" | 
 | 28 | #include "cifsproto.h" | 
 | 29 | #include "cifs_debug.h" | 
| Steve French | c67593a | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 30 | #include "cifsfs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 |  | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 32 | #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2) | 
 | 33 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | int cifs_ioctl (struct inode * inode, struct file * filep,  | 
 | 35 | 		unsigned int command, unsigned long arg) | 
 | 36 | { | 
 | 37 | 	int rc = -ENOTTY; /* strange error - but the precedent */ | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 38 | 	int xid; | 
 | 39 | 	struct cifs_sb_info *cifs_sb; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #ifdef CONFIG_CIFS_POSIX | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 41 | 	__u64	ExtAttrBits = 0; | 
 | 42 | 	__u64	ExtAttrMask = 0; | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 43 | 	__u64   caps; | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 44 | 	struct cifsTconInfo *tcon; | 
 | 45 | 	struct cifsFileInfo *pSMBFile = | 
 | 46 | 		(struct cifsFileInfo *)filep->private_data; | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 47 | #endif /* CONFIG_CIFS_POSIX */ | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 48 |  | 
 | 49 | 	xid = GetXid(); | 
 | 50 |  | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 51 |         cFYI(1,("ioctl file %p  cmd %u  arg %lu",filep,command,arg)); | 
 | 52 |  | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 53 | 	cifs_sb = CIFS_SB(inode->i_sb); | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 54 |  | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 55 | #ifdef CONFIG_CIFS_POSIX | 
 | 56 | 	tcon = cifs_sb->tcon; | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 57 | 	if(tcon) | 
 | 58 | 		caps = le64_to_cpu(tcon->fsUnixInfo.Capability); | 
 | 59 | 	else { | 
 | 60 | 		rc = -EIO; | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 61 | 		FreeXid(xid); | 
 | 62 | 		return -EIO; | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 63 | 	} | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 64 | #endif /* CONFIG_CIFS_POSIX */ | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 65 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 	switch(command) { | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 67 | 		case CIFS_IOC_CHECKUMOUNT: | 
 | 68 | 			cFYI(1,("User unmount attempted")); | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 69 | 			if(cifs_sb->mnt_uid == current->uid) | 
 | 70 | 				rc = 0; | 
 | 71 | 			else { | 
 | 72 | 				rc = -EACCES; | 
 | 73 | 				cFYI(1,("uids do not match")); | 
 | 74 | 			} | 
 | 75 | 			break; | 
 | 76 | #ifdef CONFIG_CIFS_POSIX | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | 		case EXT2_IOC_GETFLAGS: | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 78 | 			if(CIFS_UNIX_EXTATTR_CAP & caps) { | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 79 | 				if (pSMBFile == NULL) | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 80 | 					break; | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 81 | 				rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid, | 
 | 82 | 					&ExtAttrBits, &ExtAttrMask); | 
 | 83 | 				if(rc == 0) | 
 | 84 | 					rc = put_user(ExtAttrBits & | 
 | 85 | 						EXT2_FL_USER_VISIBLE, | 
 | 86 | 						(int __user *)arg); | 
 | 87 | 			} | 
 | 88 | 			break; | 
 | 89 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | 		case EXT2_IOC_SETFLAGS: | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 91 | 			if(CIFS_UNIX_EXTATTR_CAP & caps) { | 
 | 92 | 				if(get_user(ExtAttrBits,(int __user *)arg)) { | 
 | 93 | 					rc = -EFAULT; | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 94 | 					break; | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 95 | 				} | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 96 | 				if (pSMBFile == NULL) | 
| Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 97 | 					break; | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 98 | 				/* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid, | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 99 | 					extAttrBits, &ExtAttrMask);*/ | 
 | 100 | 				 | 
 | 101 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | 			cFYI(1,("set flags not implemented yet")); | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 103 | 			break; | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 104 | #endif /* CONFIG_CIFS_POSIX */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | 		default: | 
 | 106 | 			cFYI(1,("unsupported ioctl")); | 
| Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 107 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | 	} | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 109 |  | 
| Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 110 | 	FreeXid(xid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | 	return rc; | 
 | 112 | }  |