ioctl.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. */
  23. #include <linux/fs.h>
  24. #include <linux/ext2_fs.h>
  25. #include "cifspdu.h"
  26. #include "cifsglob.h"
  27. #include "cifsproto.h"
  28. #include "cifs_debug.h"
  29. #include "cifsfs.h"
  30. #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
  31. int cifs_ioctl (struct inode * inode, struct file * filep,
  32. unsigned int command, unsigned long arg)
  33. {
  34. int rc = -ENOTTY; /* strange error - but the precedent */
  35. int xid;
  36. struct cifs_sb_info *cifs_sb;
  37. #ifdef CONFIG_CIFS_POSIX
  38. __u64 ExtAttrBits = 0;
  39. __u64 ExtAttrMask = 0;
  40. __u64 caps;
  41. struct cifsTconInfo *tcon;
  42. struct cifsFileInfo *pSMBFile =
  43. (struct cifsFileInfo *)filep->private_data;
  44. #endif /* CONFIG_CIFS_POSIX */
  45. xid = GetXid();
  46. cFYI(1,("ioctl file %p cmd %u arg %lu",filep,command,arg));
  47. cifs_sb = CIFS_SB(inode->i_sb);
  48. #ifdef CONFIG_CIFS_POSIX
  49. tcon = cifs_sb->tcon;
  50. if(tcon)
  51. caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
  52. else {
  53. rc = -EIO;
  54. FreeXid(xid);
  55. return -EIO;
  56. }
  57. #endif /* CONFIG_CIFS_POSIX */
  58. switch(command) {
  59. case CIFS_IOC_CHECKUMOUNT:
  60. cFYI(1,("User unmount attempted"));
  61. if(cifs_sb->mnt_uid == current->uid)
  62. rc = 0;
  63. else {
  64. rc = -EACCES;
  65. cFYI(1,("uids do not match"));
  66. }
  67. break;
  68. #ifdef CONFIG_CIFS_POSIX
  69. case EXT2_IOC_GETFLAGS:
  70. if(CIFS_UNIX_EXTATTR_CAP & caps) {
  71. if (pSMBFile == NULL)
  72. break;
  73. rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
  74. &ExtAttrBits, &ExtAttrMask);
  75. if(rc == 0)
  76. rc = put_user(ExtAttrBits &
  77. EXT2_FL_USER_VISIBLE,
  78. (int __user *)arg);
  79. }
  80. break;
  81. case EXT2_IOC_SETFLAGS:
  82. if(CIFS_UNIX_EXTATTR_CAP & caps) {
  83. if(get_user(ExtAttrBits,(int __user *)arg)) {
  84. rc = -EFAULT;
  85. break;
  86. }
  87. if (pSMBFile == NULL)
  88. break;
  89. /* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid,
  90. extAttrBits, &ExtAttrMask);*/
  91. }
  92. cFYI(1,("set flags not implemented yet"));
  93. break;
  94. #endif /* CONFIG_CIFS_POSIX */
  95. default:
  96. cFYI(1,("unsupported ioctl"));
  97. break;
  98. }
  99. FreeXid(xid);
  100. return rc;
  101. }