ioctl.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * fs/cifs/ioctl.c
  3. *
  4. * vfs operations that deal with io control
  5. *
  6. * Copyright (C) International Business Machines Corp., 2005,2007
  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. */
  23. #include <linux/fs.h>
  24. #include "cifspdu.h"
  25. #include "cifsglob.h"
  26. #include "cifsproto.h"
  27. #include "cifs_debug.h"
  28. #include "cifsfs.h"
  29. #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
  30. long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
  31. {
  32. struct inode *inode = filep->f_dentry->d_inode;
  33. int rc = -ENOTTY; /* strange error - but the precedent */
  34. int xid;
  35. struct cifs_sb_info *cifs_sb;
  36. #ifdef CONFIG_CIFS_POSIX
  37. struct cifsFileInfo *pSMBFile = filep->private_data;
  38. struct cifsTconInfo *tcon = tlink_tcon(pSMBFile->tlink);
  39. __u64 ExtAttrBits = 0;
  40. __u64 ExtAttrMask = 0;
  41. __u64 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
  42. #endif /* CONFIG_CIFS_POSIX */
  43. xid = GetXid();
  44. cFYI(1, "ioctl file %p cmd %u arg %lu", filep, command, arg);
  45. cifs_sb = CIFS_SB(inode->i_sb);
  46. switch (command) {
  47. case CIFS_IOC_CHECKUMOUNT:
  48. cFYI(1, "User unmount attempted");
  49. if (cifs_sb->mnt_uid == current_uid())
  50. rc = 0;
  51. else {
  52. rc = -EACCES;
  53. cFYI(1, "uids do not match");
  54. }
  55. break;
  56. #ifdef CONFIG_CIFS_POSIX
  57. case FS_IOC_GETFLAGS:
  58. if (CIFS_UNIX_EXTATTR_CAP & caps) {
  59. if (pSMBFile == NULL)
  60. break;
  61. rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
  62. &ExtAttrBits, &ExtAttrMask);
  63. if (rc == 0)
  64. rc = put_user(ExtAttrBits &
  65. FS_FL_USER_VISIBLE,
  66. (int __user *)arg);
  67. }
  68. break;
  69. case FS_IOC_SETFLAGS:
  70. if (CIFS_UNIX_EXTATTR_CAP & caps) {
  71. if (get_user(ExtAttrBits, (int __user *)arg)) {
  72. rc = -EFAULT;
  73. break;
  74. }
  75. if (pSMBFile == NULL)
  76. break;
  77. /* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid,
  78. extAttrBits, &ExtAttrMask);*/
  79. }
  80. cFYI(1, "set flags not implemented yet");
  81. break;
  82. #endif /* CONFIG_CIFS_POSIX */
  83. default:
  84. cFYI(1, "unsupported ioctl");
  85. break;
  86. }
  87. FreeXid(xid);
  88. return rc;
  89. }