smb2file.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*
  2. * fs/cifs/smb2file.c
  3. *
  4. * Copyright (C) International Business Machines Corp., 2002, 2011
  5. * Author(s): Steve French (sfrench@us.ibm.com),
  6. * Pavel Shilovsky ((pshilovsky@samba.org) 2012
  7. *
  8. * This library is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published
  10. * by the Free Software Foundation; either version 2.1 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  16. * the GNU Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public License
  19. * along with this library; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #include <linux/fs.h>
  23. #include <linux/stat.h>
  24. #include <linux/slab.h>
  25. #include <linux/pagemap.h>
  26. #include <asm/div64.h>
  27. #include "cifsfs.h"
  28. #include "cifspdu.h"
  29. #include "cifsglob.h"
  30. #include "cifsproto.h"
  31. #include "cifs_debug.h"
  32. #include "cifs_fs_sb.h"
  33. #include "cifs_unicode.h"
  34. #include "fscache.h"
  35. #include "smb2proto.h"
  36. int
  37. smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms,
  38. __u32 *oplock, FILE_ALL_INFO *buf)
  39. {
  40. int rc;
  41. __le16 *smb2_path;
  42. struct smb2_file_all_info *smb2_data = NULL;
  43. __u8 smb2_oplock[17];
  44. struct cifs_fid *fid = oparms->fid;
  45. struct network_resiliency_req nr_ioctl_req;
  46. smb2_path = cifs_convert_path_to_utf16(oparms->path, oparms->cifs_sb);
  47. if (smb2_path == NULL) {
  48. rc = -ENOMEM;
  49. goto out;
  50. }
  51. smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
  52. GFP_KERNEL);
  53. if (smb2_data == NULL) {
  54. rc = -ENOMEM;
  55. goto out;
  56. }
  57. oparms->desired_access |= FILE_READ_ATTRIBUTES;
  58. *smb2_oplock = SMB2_OPLOCK_LEVEL_BATCH;
  59. if (oparms->tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING)
  60. memcpy(smb2_oplock + 1, fid->lease_key, SMB2_LEASE_KEY_SIZE);
  61. rc = SMB2_open(xid, oparms, smb2_path, smb2_oplock, smb2_data, NULL);
  62. if (rc)
  63. goto out;
  64. if (oparms->tcon->use_resilient) {
  65. nr_ioctl_req.Timeout = 0; /* use server default (120 seconds) */
  66. nr_ioctl_req.Reserved = 0;
  67. rc = SMB2_ioctl(xid, oparms->tcon, fid->persistent_fid,
  68. fid->volatile_fid, FSCTL_LMR_REQUEST_RESILIENCY, true,
  69. (char *)&nr_ioctl_req, sizeof(nr_ioctl_req),
  70. NULL, NULL /* no return info */);
  71. if (rc == -EOPNOTSUPP) {
  72. cifs_dbg(VFS,
  73. "resiliency not supported by server, disabling\n");
  74. oparms->tcon->use_resilient = false;
  75. } else if (rc)
  76. cifs_dbg(FYI, "error %d setting resiliency\n", rc);
  77. rc = 0;
  78. }
  79. if (buf) {
  80. /* open response does not have IndexNumber field - get it */
  81. rc = SMB2_get_srv_num(xid, oparms->tcon, fid->persistent_fid,
  82. fid->volatile_fid,
  83. &smb2_data->IndexNumber);
  84. if (rc) {
  85. /* let get_inode_info disable server inode numbers */
  86. smb2_data->IndexNumber = 0;
  87. rc = 0;
  88. }
  89. move_smb2_info_to_cifs(buf, smb2_data);
  90. }
  91. *oplock = *smb2_oplock;
  92. out:
  93. kfree(smb2_data);
  94. kfree(smb2_path);
  95. return rc;
  96. }
  97. int
  98. smb2_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock,
  99. const unsigned int xid)
  100. {
  101. int rc = 0, stored_rc;
  102. unsigned int max_num, num = 0, max_buf;
  103. struct smb2_lock_element *buf, *cur;
  104. struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
  105. struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry));
  106. struct cifsLockInfo *li, *tmp;
  107. __u64 length = 1 + flock->fl_end - flock->fl_start;
  108. struct list_head tmp_llist;
  109. INIT_LIST_HEAD(&tmp_llist);
  110. /*
  111. * Accessing maxBuf is racy with cifs_reconnect - need to store value
  112. * and check it for zero before using.
  113. */
  114. max_buf = tcon->ses->server->maxBuf;
  115. if (!max_buf)
  116. return -EINVAL;
  117. max_num = max_buf / sizeof(struct smb2_lock_element);
  118. buf = kcalloc(max_num, sizeof(struct smb2_lock_element), GFP_KERNEL);
  119. if (!buf)
  120. return -ENOMEM;
  121. cur = buf;
  122. down_write(&cinode->lock_sem);
  123. list_for_each_entry_safe(li, tmp, &cfile->llist->locks, llist) {
  124. if (flock->fl_start > li->offset ||
  125. (flock->fl_start + length) <
  126. (li->offset + li->length))
  127. continue;
  128. if (current->tgid != li->pid)
  129. continue;
  130. if (cinode->can_cache_brlcks) {
  131. /*
  132. * We can cache brlock requests - simply remove a lock
  133. * from the file's list.
  134. */
  135. list_del(&li->llist);
  136. cifs_del_lock_waiters(li);
  137. kfree(li);
  138. continue;
  139. }
  140. cur->Length = cpu_to_le64(li->length);
  141. cur->Offset = cpu_to_le64(li->offset);
  142. cur->Flags = cpu_to_le32(SMB2_LOCKFLAG_UNLOCK);
  143. /*
  144. * We need to save a lock here to let us add it again to the
  145. * file's list if the unlock range request fails on the server.
  146. */
  147. list_move(&li->llist, &tmp_llist);
  148. if (++num == max_num) {
  149. stored_rc = smb2_lockv(xid, tcon,
  150. cfile->fid.persistent_fid,
  151. cfile->fid.volatile_fid,
  152. current->tgid, num, buf);
  153. if (stored_rc) {
  154. /*
  155. * We failed on the unlock range request - add
  156. * all locks from the tmp list to the head of
  157. * the file's list.
  158. */
  159. cifs_move_llist(&tmp_llist,
  160. &cfile->llist->locks);
  161. rc = stored_rc;
  162. } else
  163. /*
  164. * The unlock range request succeed - free the
  165. * tmp list.
  166. */
  167. cifs_free_llist(&tmp_llist);
  168. cur = buf;
  169. num = 0;
  170. } else
  171. cur++;
  172. }
  173. if (num) {
  174. stored_rc = smb2_lockv(xid, tcon, cfile->fid.persistent_fid,
  175. cfile->fid.volatile_fid, current->tgid,
  176. num, buf);
  177. if (stored_rc) {
  178. cifs_move_llist(&tmp_llist, &cfile->llist->locks);
  179. rc = stored_rc;
  180. } else
  181. cifs_free_llist(&tmp_llist);
  182. }
  183. up_write(&cinode->lock_sem);
  184. kfree(buf);
  185. return rc;
  186. }
  187. static int
  188. smb2_push_mand_fdlocks(struct cifs_fid_locks *fdlocks, const unsigned int xid,
  189. struct smb2_lock_element *buf, unsigned int max_num)
  190. {
  191. int rc = 0, stored_rc;
  192. struct cifsFileInfo *cfile = fdlocks->cfile;
  193. struct cifsLockInfo *li;
  194. unsigned int num = 0;
  195. struct smb2_lock_element *cur = buf;
  196. struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
  197. list_for_each_entry(li, &fdlocks->locks, llist) {
  198. cur->Length = cpu_to_le64(li->length);
  199. cur->Offset = cpu_to_le64(li->offset);
  200. cur->Flags = cpu_to_le32(li->type |
  201. SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
  202. if (++num == max_num) {
  203. stored_rc = smb2_lockv(xid, tcon,
  204. cfile->fid.persistent_fid,
  205. cfile->fid.volatile_fid,
  206. current->tgid, num, buf);
  207. if (stored_rc)
  208. rc = stored_rc;
  209. cur = buf;
  210. num = 0;
  211. } else
  212. cur++;
  213. }
  214. if (num) {
  215. stored_rc = smb2_lockv(xid, tcon,
  216. cfile->fid.persistent_fid,
  217. cfile->fid.volatile_fid,
  218. current->tgid, num, buf);
  219. if (stored_rc)
  220. rc = stored_rc;
  221. }
  222. return rc;
  223. }
  224. int
  225. smb2_push_mandatory_locks(struct cifsFileInfo *cfile)
  226. {
  227. int rc = 0, stored_rc;
  228. unsigned int xid;
  229. unsigned int max_num, max_buf;
  230. struct smb2_lock_element *buf;
  231. struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry));
  232. struct cifs_fid_locks *fdlocks;
  233. xid = get_xid();
  234. /*
  235. * Accessing maxBuf is racy with cifs_reconnect - need to store value
  236. * and check it for zero before using.
  237. */
  238. max_buf = tlink_tcon(cfile->tlink)->ses->server->maxBuf;
  239. if (max_buf < sizeof(struct smb2_lock_element)) {
  240. free_xid(xid);
  241. return -EINVAL;
  242. }
  243. max_num = max_buf / sizeof(struct smb2_lock_element);
  244. buf = kcalloc(max_num, sizeof(struct smb2_lock_element), GFP_KERNEL);
  245. if (!buf) {
  246. free_xid(xid);
  247. return -ENOMEM;
  248. }
  249. list_for_each_entry(fdlocks, &cinode->llist, llist) {
  250. stored_rc = smb2_push_mand_fdlocks(fdlocks, xid, buf, max_num);
  251. if (stored_rc)
  252. rc = stored_rc;
  253. }
  254. kfree(buf);
  255. free_xid(xid);
  256. return rc;
  257. }