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 | * |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame^] | 6 | * Copyright (C) International Business Machines Corp., 2005,2013 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "cifspdu.h" |
| 26 | #include "cifsglob.h" |
| 27 | #include "cifsproto.h" |
| 28 | #include "cifs_debug.h" |
Steve French | c67593a | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 29 | #include "cifsfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 31 | long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 33 | struct inode *inode = file_inode(filep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | int rc = -ENOTTY; /* strange error - but the precedent */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 35 | unsigned int xid; |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 36 | struct cifs_sb_info *cifs_sb; |
Jeff Layton | ba00ba6 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 37 | struct cifsFileInfo *pSMBFile = filep->private_data; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 38 | struct cifs_tcon *tcon; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 39 | __u64 ExtAttrBits = 0; |
| 40 | __u64 ExtAttrMask = 0; |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 41 | __u64 caps; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 42 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 43 | xid = get_xid(); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 44 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 45 | cifs_dbg(FYI, "ioctl file %p cmd %u arg %lu\n", filep, command, arg); |
Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 46 | |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 47 | cifs_sb = CIFS_SB(inode->i_sb); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 48 | |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 49 | switch (command) { |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 50 | case FS_IOC_GETFLAGS: |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 51 | if (pSMBFile == NULL) |
| 52 | break; |
| 53 | tcon = tlink_tcon(pSMBFile->tlink); |
| 54 | caps = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame^] | 55 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 56 | if (CIFS_UNIX_EXTATTR_CAP & caps) { |
Pavel Shilovsky | 4b4de76 | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 57 | rc = CIFSGetExtAttr(xid, tcon, |
| 58 | pSMBFile->fid.netfid, |
| 59 | &ExtAttrBits, &ExtAttrMask); |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 60 | if (rc == 0) |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 61 | rc = put_user(ExtAttrBits & |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 62 | FS_FL_USER_VISIBLE, |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 63 | (int __user *)arg); |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame^] | 64 | if (rc != EOPNOTSUPP) |
| 65 | break; |
| 66 | } |
| 67 | #endif /* CONFIG_CIFS_POSIX */ |
| 68 | rc = 0; |
| 69 | if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) { |
| 70 | /* add in the compressed bit */ |
| 71 | ExtAttrBits = FS_COMPR_FL; |
| 72 | rc = put_user(ExtAttrBits & FS_FL_USER_VISIBLE, |
| 73 | (int __user *)arg); |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 74 | } |
| 75 | break; |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 76 | case FS_IOC_SETFLAGS: |
Jeff Layton | 6187639 | 2010-11-08 07:28:32 -0500 | [diff] [blame] | 77 | if (pSMBFile == NULL) |
| 78 | break; |
| 79 | tcon = tlink_tcon(pSMBFile->tlink); |
| 80 | caps = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame^] | 81 | |
| 82 | if (get_user(ExtAttrBits, (int __user *)arg)) { |
| 83 | rc = -EFAULT; |
| 84 | break; |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 85 | } |
Steve French | 64a5cfa | 2013-10-14 15:31:32 -0500 | [diff] [blame^] | 86 | |
| 87 | /* |
| 88 | * if (CIFS_UNIX_EXTATTR_CAP & caps) |
| 89 | * rc = CIFSSetExtAttr(xid, tcon, |
| 90 | * pSMBFile->fid.netfid, |
| 91 | * extAttrBits, |
| 92 | * &ExtAttrMask); |
| 93 | * if (rc != EOPNOTSUPP) |
| 94 | * break; |
| 95 | */ |
| 96 | |
| 97 | /* Currently only flag we can set is compressed flag */ |
| 98 | if ((ExtAttrBits & FS_COMPR_FL) == 0) |
| 99 | break; |
| 100 | |
| 101 | /* Try to set compress flag */ |
| 102 | if (tcon->ses->server->ops->set_compression) { |
| 103 | rc = tcon->ses->server->ops->set_compression( |
| 104 | xid, tcon, pSMBFile); |
| 105 | cifs_dbg(FYI, "set compress flag rc %d\n", rc); |
| 106 | } |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 107 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 109 | cifs_dbg(FYI, "unsupported ioctl\n"); |
Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 110 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
Steve French | f654bac | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 112 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 113 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | return rc; |
Steve French | 5fdae1f | 2007-06-05 18:30:44 +0000 | [diff] [blame] | 115 | } |