smb1ops.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964
  1. /*
  2. * SMB1 (CIFS) version specific operations
  3. *
  4. * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
  5. *
  6. * This library is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License v2 as published
  8. * by the Free Software Foundation.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  13. * the GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/pagemap.h>
  20. #include <linux/vfs.h>
  21. #include "cifsglob.h"
  22. #include "cifsproto.h"
  23. #include "cifs_debug.h"
  24. #include "cifspdu.h"
  25. /*
  26. * An NT cancel request header looks just like the original request except:
  27. *
  28. * The Command is SMB_COM_NT_CANCEL
  29. * The WordCount is zeroed out
  30. * The ByteCount is zeroed out
  31. *
  32. * This function mangles an existing request buffer into a
  33. * SMB_COM_NT_CANCEL request and then sends it.
  34. */
  35. static int
  36. send_nt_cancel(struct TCP_Server_Info *server, void *buf,
  37. struct mid_q_entry *mid)
  38. {
  39. int rc = 0;
  40. struct smb_hdr *in_buf = (struct smb_hdr *)buf;
  41. /* -4 for RFC1001 length and +2 for BCC field */
  42. in_buf->smb_buf_length = cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2);
  43. in_buf->Command = SMB_COM_NT_CANCEL;
  44. in_buf->WordCount = 0;
  45. put_bcc(0, in_buf);
  46. mutex_lock(&server->srv_mutex);
  47. rc = cifs_sign_smb(in_buf, server, &mid->sequence_number);
  48. if (rc) {
  49. mutex_unlock(&server->srv_mutex);
  50. return rc;
  51. }
  52. /*
  53. * The response to this call was already factored into the sequence
  54. * number when the call went out, so we must adjust it back downward
  55. * after signing here.
  56. */
  57. --server->sequence_number;
  58. rc = smb_send(server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
  59. mutex_unlock(&server->srv_mutex);
  60. cifs_dbg(FYI, "issued NT_CANCEL for mid %u, rc = %d\n",
  61. in_buf->Mid, rc);
  62. return rc;
  63. }
  64. static bool
  65. cifs_compare_fids(struct cifsFileInfo *ob1, struct cifsFileInfo *ob2)
  66. {
  67. return ob1->fid.netfid == ob2->fid.netfid;
  68. }
  69. static unsigned int
  70. cifs_read_data_offset(char *buf)
  71. {
  72. READ_RSP *rsp = (READ_RSP *)buf;
  73. return le16_to_cpu(rsp->DataOffset);
  74. }
  75. static unsigned int
  76. cifs_read_data_length(char *buf)
  77. {
  78. READ_RSP *rsp = (READ_RSP *)buf;
  79. return (le16_to_cpu(rsp->DataLengthHigh) << 16) +
  80. le16_to_cpu(rsp->DataLength);
  81. }
  82. static struct mid_q_entry *
  83. cifs_find_mid(struct TCP_Server_Info *server, char *buffer)
  84. {
  85. struct smb_hdr *buf = (struct smb_hdr *)buffer;
  86. struct mid_q_entry *mid;
  87. spin_lock(&GlobalMid_Lock);
  88. list_for_each_entry(mid, &server->pending_mid_q, qhead) {
  89. if (mid->mid == buf->Mid &&
  90. mid->mid_state == MID_REQUEST_SUBMITTED &&
  91. le16_to_cpu(mid->command) == buf->Command) {
  92. spin_unlock(&GlobalMid_Lock);
  93. return mid;
  94. }
  95. }
  96. spin_unlock(&GlobalMid_Lock);
  97. return NULL;
  98. }
  99. static void
  100. cifs_add_credits(struct TCP_Server_Info *server, const unsigned int add,
  101. const int optype)
  102. {
  103. spin_lock(&server->req_lock);
  104. server->credits += add;
  105. server->in_flight--;
  106. spin_unlock(&server->req_lock);
  107. wake_up(&server->request_q);
  108. }
  109. static void
  110. cifs_set_credits(struct TCP_Server_Info *server, const int val)
  111. {
  112. spin_lock(&server->req_lock);
  113. server->credits = val;
  114. server->oplocks = val > 1 ? enable_oplocks : false;
  115. spin_unlock(&server->req_lock);
  116. }
  117. static int *
  118. cifs_get_credits_field(struct TCP_Server_Info *server, const int optype)
  119. {
  120. return &server->credits;
  121. }
  122. static unsigned int
  123. cifs_get_credits(struct mid_q_entry *mid)
  124. {
  125. return 1;
  126. }
  127. /*
  128. * Find a free multiplex id (SMB mid). Otherwise there could be
  129. * mid collisions which might cause problems, demultiplexing the
  130. * wrong response to this request. Multiplex ids could collide if
  131. * one of a series requests takes much longer than the others, or
  132. * if a very large number of long lived requests (byte range
  133. * locks or FindNotify requests) are pending. No more than
  134. * 64K-1 requests can be outstanding at one time. If no
  135. * mids are available, return zero. A future optimization
  136. * could make the combination of mids and uid the key we use
  137. * to demultiplex on (rather than mid alone).
  138. * In addition to the above check, the cifs demultiplex
  139. * code already used the command code as a secondary
  140. * check of the frame and if signing is negotiated the
  141. * response would be discarded if the mid were the same
  142. * but the signature was wrong. Since the mid is not put in the
  143. * pending queue until later (when it is about to be dispatched)
  144. * we do have to limit the number of outstanding requests
  145. * to somewhat less than 64K-1 although it is hard to imagine
  146. * so many threads being in the vfs at one time.
  147. */
  148. static __u64
  149. cifs_get_next_mid(struct TCP_Server_Info *server)
  150. {
  151. __u64 mid = 0;
  152. __u16 last_mid, cur_mid;
  153. bool collision;
  154. spin_lock(&GlobalMid_Lock);
  155. /* mid is 16 bit only for CIFS/SMB */
  156. cur_mid = (__u16)((server->CurrentMid) & 0xffff);
  157. /* we do not want to loop forever */
  158. last_mid = cur_mid;
  159. cur_mid++;
  160. /*
  161. * This nested loop looks more expensive than it is.
  162. * In practice the list of pending requests is short,
  163. * fewer than 50, and the mids are likely to be unique
  164. * on the first pass through the loop unless some request
  165. * takes longer than the 64 thousand requests before it
  166. * (and it would also have to have been a request that
  167. * did not time out).
  168. */
  169. while (cur_mid != last_mid) {
  170. struct mid_q_entry *mid_entry;
  171. unsigned int num_mids;
  172. collision = false;
  173. if (cur_mid == 0)
  174. cur_mid++;
  175. num_mids = 0;
  176. list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) {
  177. ++num_mids;
  178. if (mid_entry->mid == cur_mid &&
  179. mid_entry->mid_state == MID_REQUEST_SUBMITTED) {
  180. /* This mid is in use, try a different one */
  181. collision = true;
  182. break;
  183. }
  184. }
  185. /*
  186. * if we have more than 32k mids in the list, then something
  187. * is very wrong. Possibly a local user is trying to DoS the
  188. * box by issuing long-running calls and SIGKILL'ing them. If
  189. * we get to 2^16 mids then we're in big trouble as this
  190. * function could loop forever.
  191. *
  192. * Go ahead and assign out the mid in this situation, but force
  193. * an eventual reconnect to clean out the pending_mid_q.
  194. */
  195. if (num_mids > 32768)
  196. server->tcpStatus = CifsNeedReconnect;
  197. if (!collision) {
  198. mid = (__u64)cur_mid;
  199. server->CurrentMid = mid;
  200. break;
  201. }
  202. cur_mid++;
  203. }
  204. spin_unlock(&GlobalMid_Lock);
  205. return mid;
  206. }
  207. /*
  208. return codes:
  209. 0 not a transact2, or all data present
  210. >0 transact2 with that much data missing
  211. -EINVAL invalid transact2
  212. */
  213. static int
  214. check2ndT2(char *buf)
  215. {
  216. struct smb_hdr *pSMB = (struct smb_hdr *)buf;
  217. struct smb_t2_rsp *pSMBt;
  218. int remaining;
  219. __u16 total_data_size, data_in_this_rsp;
  220. if (pSMB->Command != SMB_COM_TRANSACTION2)
  221. return 0;
  222. /* check for plausible wct, bcc and t2 data and parm sizes */
  223. /* check for parm and data offset going beyond end of smb */
  224. if (pSMB->WordCount != 10) { /* coalesce_t2 depends on this */
  225. cifs_dbg(FYI, "invalid transact2 word count\n");
  226. return -EINVAL;
  227. }
  228. pSMBt = (struct smb_t2_rsp *)pSMB;
  229. total_data_size = get_unaligned_le16(&pSMBt->t2_rsp.TotalDataCount);
  230. data_in_this_rsp = get_unaligned_le16(&pSMBt->t2_rsp.DataCount);
  231. if (total_data_size == data_in_this_rsp)
  232. return 0;
  233. else if (total_data_size < data_in_this_rsp) {
  234. cifs_dbg(FYI, "total data %d smaller than data in frame %d\n",
  235. total_data_size, data_in_this_rsp);
  236. return -EINVAL;
  237. }
  238. remaining = total_data_size - data_in_this_rsp;
  239. cifs_dbg(FYI, "missing %d bytes from transact2, check next response\n",
  240. remaining);
  241. if (total_data_size > CIFSMaxBufSize) {
  242. cifs_dbg(VFS, "TotalDataSize %d is over maximum buffer %d\n",
  243. total_data_size, CIFSMaxBufSize);
  244. return -EINVAL;
  245. }
  246. return remaining;
  247. }
  248. static int
  249. coalesce_t2(char *second_buf, struct smb_hdr *target_hdr)
  250. {
  251. struct smb_t2_rsp *pSMBs = (struct smb_t2_rsp *)second_buf;
  252. struct smb_t2_rsp *pSMBt = (struct smb_t2_rsp *)target_hdr;
  253. char *data_area_of_tgt;
  254. char *data_area_of_src;
  255. int remaining;
  256. unsigned int byte_count, total_in_tgt;
  257. __u16 tgt_total_cnt, src_total_cnt, total_in_src;
  258. src_total_cnt = get_unaligned_le16(&pSMBs->t2_rsp.TotalDataCount);
  259. tgt_total_cnt = get_unaligned_le16(&pSMBt->t2_rsp.TotalDataCount);
  260. if (tgt_total_cnt != src_total_cnt)
  261. cifs_dbg(FYI, "total data count of primary and secondary t2 differ source=%hu target=%hu\n",
  262. src_total_cnt, tgt_total_cnt);
  263. total_in_tgt = get_unaligned_le16(&pSMBt->t2_rsp.DataCount);
  264. remaining = tgt_total_cnt - total_in_tgt;
  265. if (remaining < 0) {
  266. cifs_dbg(FYI, "Server sent too much data. tgt_total_cnt=%hu total_in_tgt=%hu\n",
  267. tgt_total_cnt, total_in_tgt);
  268. return -EPROTO;
  269. }
  270. if (remaining == 0) {
  271. /* nothing to do, ignore */
  272. cifs_dbg(FYI, "no more data remains\n");
  273. return 0;
  274. }
  275. total_in_src = get_unaligned_le16(&pSMBs->t2_rsp.DataCount);
  276. if (remaining < total_in_src)
  277. cifs_dbg(FYI, "transact2 2nd response contains too much data\n");
  278. /* find end of first SMB data area */
  279. data_area_of_tgt = (char *)&pSMBt->hdr.Protocol +
  280. get_unaligned_le16(&pSMBt->t2_rsp.DataOffset);
  281. /* validate target area */
  282. data_area_of_src = (char *)&pSMBs->hdr.Protocol +
  283. get_unaligned_le16(&pSMBs->t2_rsp.DataOffset);
  284. data_area_of_tgt += total_in_tgt;
  285. total_in_tgt += total_in_src;
  286. /* is the result too big for the field? */
  287. if (total_in_tgt > USHRT_MAX) {
  288. cifs_dbg(FYI, "coalesced DataCount too large (%u)\n",
  289. total_in_tgt);
  290. return -EPROTO;
  291. }
  292. put_unaligned_le16(total_in_tgt, &pSMBt->t2_rsp.DataCount);
  293. /* fix up the BCC */
  294. byte_count = get_bcc(target_hdr);
  295. byte_count += total_in_src;
  296. /* is the result too big for the field? */
  297. if (byte_count > USHRT_MAX) {
  298. cifs_dbg(FYI, "coalesced BCC too large (%u)\n", byte_count);
  299. return -EPROTO;
  300. }
  301. put_bcc(byte_count, target_hdr);
  302. byte_count = be32_to_cpu(target_hdr->smb_buf_length);
  303. byte_count += total_in_src;
  304. /* don't allow buffer to overflow */
  305. if (byte_count > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
  306. cifs_dbg(FYI, "coalesced BCC exceeds buffer size (%u)\n",
  307. byte_count);
  308. return -ENOBUFS;
  309. }
  310. target_hdr->smb_buf_length = cpu_to_be32(byte_count);
  311. /* copy second buffer into end of first buffer */
  312. memcpy(data_area_of_tgt, data_area_of_src, total_in_src);
  313. if (remaining != total_in_src) {
  314. /* more responses to go */
  315. cifs_dbg(FYI, "waiting for more secondary responses\n");
  316. return 1;
  317. }
  318. /* we are done */
  319. cifs_dbg(FYI, "found the last secondary response\n");
  320. return 0;
  321. }
  322. static bool
  323. cifs_check_trans2(struct mid_q_entry *mid, struct TCP_Server_Info *server,
  324. char *buf, int malformed)
  325. {
  326. if (malformed)
  327. return false;
  328. if (check2ndT2(buf) <= 0)
  329. return false;
  330. mid->multiRsp = true;
  331. if (mid->resp_buf) {
  332. /* merge response - fix up 1st*/
  333. malformed = coalesce_t2(buf, mid->resp_buf);
  334. if (malformed > 0)
  335. return true;
  336. /* All parts received or packet is malformed. */
  337. mid->multiEnd = true;
  338. dequeue_mid(mid, malformed);
  339. return true;
  340. }
  341. if (!server->large_buf) {
  342. /*FIXME: switch to already allocated largebuf?*/
  343. cifs_dbg(VFS, "1st trans2 resp needs bigbuf\n");
  344. } else {
  345. /* Have first buffer */
  346. mid->resp_buf = buf;
  347. mid->large_buf = true;
  348. server->bigbuf = NULL;
  349. }
  350. return true;
  351. }
  352. static bool
  353. cifs_need_neg(struct TCP_Server_Info *server)
  354. {
  355. return server->maxBuf == 0;
  356. }
  357. static int
  358. cifs_negotiate(const unsigned int xid, struct cifs_ses *ses)
  359. {
  360. int rc;
  361. rc = CIFSSMBNegotiate(xid, ses);
  362. if (rc == -EAGAIN) {
  363. /* retry only once on 1st time connection */
  364. set_credits(ses->server, 1);
  365. rc = CIFSSMBNegotiate(xid, ses);
  366. if (rc == -EAGAIN)
  367. rc = -EHOSTDOWN;
  368. }
  369. return rc;
  370. }
  371. static unsigned int
  372. cifs_negotiate_wsize(struct cifs_tcon *tcon, struct smb_vol *volume_info)
  373. {
  374. __u64 unix_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
  375. struct TCP_Server_Info *server = tcon->ses->server;
  376. unsigned int wsize;
  377. /* start with specified wsize, or default */
  378. if (volume_info->wsize)
  379. wsize = volume_info->wsize;
  380. else if (tcon->unix_ext && (unix_cap & CIFS_UNIX_LARGE_WRITE_CAP))
  381. wsize = CIFS_DEFAULT_IOSIZE;
  382. else
  383. wsize = CIFS_DEFAULT_NON_POSIX_WSIZE;
  384. /* can server support 24-bit write sizes? (via UNIX extensions) */
  385. if (!tcon->unix_ext || !(unix_cap & CIFS_UNIX_LARGE_WRITE_CAP))
  386. wsize = min_t(unsigned int, wsize, CIFS_MAX_RFC1002_WSIZE);
  387. /*
  388. * no CAP_LARGE_WRITE_X or is signing enabled without CAP_UNIX set?
  389. * Limit it to max buffer offered by the server, minus the size of the
  390. * WRITEX header, not including the 4 byte RFC1001 length.
  391. */
  392. if (!(server->capabilities & CAP_LARGE_WRITE_X) ||
  393. (!(server->capabilities & CAP_UNIX) &&
  394. (server->sec_mode & (SECMODE_SIGN_ENABLED|SECMODE_SIGN_REQUIRED))))
  395. wsize = min_t(unsigned int, wsize,
  396. server->maxBuf - sizeof(WRITE_REQ) + 4);
  397. /* hard limit of CIFS_MAX_WSIZE */
  398. wsize = min_t(unsigned int, wsize, CIFS_MAX_WSIZE);
  399. return wsize;
  400. }
  401. static unsigned int
  402. cifs_negotiate_rsize(struct cifs_tcon *tcon, struct smb_vol *volume_info)
  403. {
  404. __u64 unix_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
  405. struct TCP_Server_Info *server = tcon->ses->server;
  406. unsigned int rsize, defsize;
  407. /*
  408. * Set default value...
  409. *
  410. * HACK alert! Ancient servers have very small buffers. Even though
  411. * MS-CIFS indicates that servers are only limited by the client's
  412. * bufsize for reads, testing against win98se shows that it throws
  413. * INVALID_PARAMETER errors if you try to request too large a read.
  414. * OS/2 just sends back short reads.
  415. *
  416. * If the server doesn't advertise CAP_LARGE_READ_X, then assume that
  417. * it can't handle a read request larger than its MaxBufferSize either.
  418. */
  419. if (tcon->unix_ext && (unix_cap & CIFS_UNIX_LARGE_READ_CAP))
  420. defsize = CIFS_DEFAULT_IOSIZE;
  421. else if (server->capabilities & CAP_LARGE_READ_X)
  422. defsize = CIFS_DEFAULT_NON_POSIX_RSIZE;
  423. else
  424. defsize = server->maxBuf - sizeof(READ_RSP);
  425. rsize = volume_info->rsize ? volume_info->rsize : defsize;
  426. /*
  427. * no CAP_LARGE_READ_X? Then MS-CIFS states that we must limit this to
  428. * the client's MaxBufferSize.
  429. */
  430. if (!(server->capabilities & CAP_LARGE_READ_X))
  431. rsize = min_t(unsigned int, CIFSMaxBufSize, rsize);
  432. /* hard limit of CIFS_MAX_RSIZE */
  433. rsize = min_t(unsigned int, rsize, CIFS_MAX_RSIZE);
  434. return rsize;
  435. }
  436. static void
  437. cifs_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon)
  438. {
  439. CIFSSMBQFSDeviceInfo(xid, tcon);
  440. CIFSSMBQFSAttributeInfo(xid, tcon);
  441. }
  442. static int
  443. cifs_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon,
  444. struct cifs_sb_info *cifs_sb, const char *full_path)
  445. {
  446. int rc;
  447. FILE_ALL_INFO *file_info;
  448. file_info = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
  449. if (file_info == NULL)
  450. return -ENOMEM;
  451. rc = CIFSSMBQPathInfo(xid, tcon, full_path, file_info,
  452. 0 /* not legacy */, cifs_sb->local_nls,
  453. cifs_sb->mnt_cifs_flags &
  454. CIFS_MOUNT_MAP_SPECIAL_CHR);
  455. if (rc == -EOPNOTSUPP || rc == -EINVAL)
  456. rc = SMBQueryInformation(xid, tcon, full_path, file_info,
  457. cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
  458. CIFS_MOUNT_MAP_SPECIAL_CHR);
  459. kfree(file_info);
  460. return rc;
  461. }
  462. static int
  463. cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon,
  464. struct cifs_sb_info *cifs_sb, const char *full_path,
  465. FILE_ALL_INFO *data, bool *adjustTZ)
  466. {
  467. int rc;
  468. /* could do find first instead but this returns more info */
  469. rc = CIFSSMBQPathInfo(xid, tcon, full_path, data, 0 /* not legacy */,
  470. cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
  471. CIFS_MOUNT_MAP_SPECIAL_CHR);
  472. /*
  473. * BB optimize code so we do not make the above call when server claims
  474. * no NT SMB support and the above call failed at least once - set flag
  475. * in tcon or mount.
  476. */
  477. if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
  478. rc = SMBQueryInformation(xid, tcon, full_path, data,
  479. cifs_sb->local_nls,
  480. cifs_sb->mnt_cifs_flags &
  481. CIFS_MOUNT_MAP_SPECIAL_CHR);
  482. *adjustTZ = true;
  483. }
  484. return rc;
  485. }
  486. static int
  487. cifs_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon,
  488. struct cifs_sb_info *cifs_sb, const char *full_path,
  489. u64 *uniqueid, FILE_ALL_INFO *data)
  490. {
  491. /*
  492. * We can not use the IndexNumber field by default from Windows or
  493. * Samba (in ALL_INFO buf) but we can request it explicitly. The SNIA
  494. * CIFS spec claims that this value is unique within the scope of a
  495. * share, and the windows docs hint that it's actually unique
  496. * per-machine.
  497. *
  498. * There may be higher info levels that work but are there Windows
  499. * server or network appliances for which IndexNumber field is not
  500. * guaranteed unique?
  501. */
  502. return CIFSGetSrvInodeNumber(xid, tcon, full_path, uniqueid,
  503. cifs_sb->local_nls,
  504. cifs_sb->mnt_cifs_flags &
  505. CIFS_MOUNT_MAP_SPECIAL_CHR);
  506. }
  507. static int
  508. cifs_query_file_info(const unsigned int xid, struct cifs_tcon *tcon,
  509. struct cifs_fid *fid, FILE_ALL_INFO *data)
  510. {
  511. return CIFSSMBQFileInfo(xid, tcon, fid->netfid, data);
  512. }
  513. static void
  514. cifs_clear_stats(struct cifs_tcon *tcon)
  515. {
  516. #ifdef CONFIG_CIFS_STATS
  517. atomic_set(&tcon->stats.cifs_stats.num_writes, 0);
  518. atomic_set(&tcon->stats.cifs_stats.num_reads, 0);
  519. atomic_set(&tcon->stats.cifs_stats.num_flushes, 0);
  520. atomic_set(&tcon->stats.cifs_stats.num_oplock_brks, 0);
  521. atomic_set(&tcon->stats.cifs_stats.num_opens, 0);
  522. atomic_set(&tcon->stats.cifs_stats.num_posixopens, 0);
  523. atomic_set(&tcon->stats.cifs_stats.num_posixmkdirs, 0);
  524. atomic_set(&tcon->stats.cifs_stats.num_closes, 0);
  525. atomic_set(&tcon->stats.cifs_stats.num_deletes, 0);
  526. atomic_set(&tcon->stats.cifs_stats.num_mkdirs, 0);
  527. atomic_set(&tcon->stats.cifs_stats.num_rmdirs, 0);
  528. atomic_set(&tcon->stats.cifs_stats.num_renames, 0);
  529. atomic_set(&tcon->stats.cifs_stats.num_t2renames, 0);
  530. atomic_set(&tcon->stats.cifs_stats.num_ffirst, 0);
  531. atomic_set(&tcon->stats.cifs_stats.num_fnext, 0);
  532. atomic_set(&tcon->stats.cifs_stats.num_fclose, 0);
  533. atomic_set(&tcon->stats.cifs_stats.num_hardlinks, 0);
  534. atomic_set(&tcon->stats.cifs_stats.num_symlinks, 0);
  535. atomic_set(&tcon->stats.cifs_stats.num_locks, 0);
  536. atomic_set(&tcon->stats.cifs_stats.num_acl_get, 0);
  537. atomic_set(&tcon->stats.cifs_stats.num_acl_set, 0);
  538. #endif
  539. }
  540. static void
  541. cifs_print_stats(struct seq_file *m, struct cifs_tcon *tcon)
  542. {
  543. #ifdef CONFIG_CIFS_STATS
  544. seq_printf(m, " Oplocks breaks: %d",
  545. atomic_read(&tcon->stats.cifs_stats.num_oplock_brks));
  546. seq_printf(m, "\nReads: %d Bytes: %llu",
  547. atomic_read(&tcon->stats.cifs_stats.num_reads),
  548. (long long)(tcon->bytes_read));
  549. seq_printf(m, "\nWrites: %d Bytes: %llu",
  550. atomic_read(&tcon->stats.cifs_stats.num_writes),
  551. (long long)(tcon->bytes_written));
  552. seq_printf(m, "\nFlushes: %d",
  553. atomic_read(&tcon->stats.cifs_stats.num_flushes));
  554. seq_printf(m, "\nLocks: %d HardLinks: %d Symlinks: %d",
  555. atomic_read(&tcon->stats.cifs_stats.num_locks),
  556. atomic_read(&tcon->stats.cifs_stats.num_hardlinks),
  557. atomic_read(&tcon->stats.cifs_stats.num_symlinks));
  558. seq_printf(m, "\nOpens: %d Closes: %d Deletes: %d",
  559. atomic_read(&tcon->stats.cifs_stats.num_opens),
  560. atomic_read(&tcon->stats.cifs_stats.num_closes),
  561. atomic_read(&tcon->stats.cifs_stats.num_deletes));
  562. seq_printf(m, "\nPosix Opens: %d Posix Mkdirs: %d",
  563. atomic_read(&tcon->stats.cifs_stats.num_posixopens),
  564. atomic_read(&tcon->stats.cifs_stats.num_posixmkdirs));
  565. seq_printf(m, "\nMkdirs: %d Rmdirs: %d",
  566. atomic_read(&tcon->stats.cifs_stats.num_mkdirs),
  567. atomic_read(&tcon->stats.cifs_stats.num_rmdirs));
  568. seq_printf(m, "\nRenames: %d T2 Renames %d",
  569. atomic_read(&tcon->stats.cifs_stats.num_renames),
  570. atomic_read(&tcon->stats.cifs_stats.num_t2renames));
  571. seq_printf(m, "\nFindFirst: %d FNext %d FClose %d",
  572. atomic_read(&tcon->stats.cifs_stats.num_ffirst),
  573. atomic_read(&tcon->stats.cifs_stats.num_fnext),
  574. atomic_read(&tcon->stats.cifs_stats.num_fclose));
  575. #endif
  576. }
  577. static void
  578. cifs_mkdir_setinfo(struct inode *inode, const char *full_path,
  579. struct cifs_sb_info *cifs_sb, struct cifs_tcon *tcon,
  580. const unsigned int xid)
  581. {
  582. FILE_BASIC_INFO info;
  583. struct cifsInodeInfo *cifsInode;
  584. u32 dosattrs;
  585. int rc;
  586. memset(&info, 0, sizeof(info));
  587. cifsInode = CIFS_I(inode);
  588. dosattrs = cifsInode->cifsAttrs|ATTR_READONLY;
  589. info.Attributes = cpu_to_le32(dosattrs);
  590. rc = CIFSSMBSetPathInfo(xid, tcon, full_path, &info, cifs_sb->local_nls,
  591. cifs_sb->mnt_cifs_flags &
  592. CIFS_MOUNT_MAP_SPECIAL_CHR);
  593. if (rc == 0)
  594. cifsInode->cifsAttrs = dosattrs;
  595. }
  596. static int
  597. cifs_open_file(const unsigned int xid, struct cifs_tcon *tcon, const char *path,
  598. int disposition, int desired_access, int create_options,
  599. struct cifs_fid *fid, __u32 *oplock, FILE_ALL_INFO *buf,
  600. struct cifs_sb_info *cifs_sb)
  601. {
  602. if (!(tcon->ses->capabilities & CAP_NT_SMBS))
  603. return SMBLegacyOpen(xid, tcon, path, disposition,
  604. desired_access, create_options,
  605. &fid->netfid, oplock, buf,
  606. cifs_sb->local_nls, cifs_sb->mnt_cifs_flags
  607. & CIFS_MOUNT_MAP_SPECIAL_CHR);
  608. return CIFSSMBOpen(xid, tcon, path, disposition, desired_access,
  609. create_options, &fid->netfid, oplock, buf,
  610. cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
  611. CIFS_MOUNT_MAP_SPECIAL_CHR);
  612. }
  613. static void
  614. cifs_set_fid(struct cifsFileInfo *cfile, struct cifs_fid *fid, __u32 oplock)
  615. {
  616. struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
  617. cfile->fid.netfid = fid->netfid;
  618. cifs_set_oplock_level(cinode, oplock);
  619. cinode->can_cache_brlcks = cinode->clientCanCacheAll;
  620. }
  621. static void
  622. cifs_close_file(const unsigned int xid, struct cifs_tcon *tcon,
  623. struct cifs_fid *fid)
  624. {
  625. CIFSSMBClose(xid, tcon, fid->netfid);
  626. }
  627. static int
  628. cifs_flush_file(const unsigned int xid, struct cifs_tcon *tcon,
  629. struct cifs_fid *fid)
  630. {
  631. return CIFSSMBFlush(xid, tcon, fid->netfid);
  632. }
  633. static int
  634. cifs_sync_read(const unsigned int xid, struct cifsFileInfo *cfile,
  635. struct cifs_io_parms *parms, unsigned int *bytes_read,
  636. char **buf, int *buf_type)
  637. {
  638. parms->netfid = cfile->fid.netfid;
  639. return CIFSSMBRead(xid, parms, bytes_read, buf, buf_type);
  640. }
  641. static int
  642. cifs_sync_write(const unsigned int xid, struct cifsFileInfo *cfile,
  643. struct cifs_io_parms *parms, unsigned int *written,
  644. struct kvec *iov, unsigned long nr_segs)
  645. {
  646. parms->netfid = cfile->fid.netfid;
  647. return CIFSSMBWrite2(xid, parms, written, iov, nr_segs);
  648. }
  649. static int
  650. smb_set_file_info(struct inode *inode, const char *full_path,
  651. FILE_BASIC_INFO *buf, const unsigned int xid)
  652. {
  653. int oplock = 0;
  654. int rc;
  655. __u16 netfid;
  656. __u32 netpid;
  657. struct cifsFileInfo *open_file;
  658. struct cifsInodeInfo *cinode = CIFS_I(inode);
  659. struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
  660. struct tcon_link *tlink = NULL;
  661. struct cifs_tcon *tcon;
  662. /* if the file is already open for write, just use that fileid */
  663. open_file = find_writable_file(cinode, true);
  664. if (open_file) {
  665. netfid = open_file->fid.netfid;
  666. netpid = open_file->pid;
  667. tcon = tlink_tcon(open_file->tlink);
  668. goto set_via_filehandle;
  669. }
  670. tlink = cifs_sb_tlink(cifs_sb);
  671. if (IS_ERR(tlink)) {
  672. rc = PTR_ERR(tlink);
  673. tlink = NULL;
  674. goto out;
  675. }
  676. tcon = tlink_tcon(tlink);
  677. /*
  678. * NT4 apparently returns success on this call, but it doesn't really
  679. * work.
  680. */
  681. if (!(tcon->ses->flags & CIFS_SES_NT4)) {
  682. rc = CIFSSMBSetPathInfo(xid, tcon, full_path, buf,
  683. cifs_sb->local_nls,
  684. cifs_sb->mnt_cifs_flags &
  685. CIFS_MOUNT_MAP_SPECIAL_CHR);
  686. if (rc == 0) {
  687. cinode->cifsAttrs = le32_to_cpu(buf->Attributes);
  688. goto out;
  689. } else if (rc != -EOPNOTSUPP && rc != -EINVAL)
  690. goto out;
  691. }
  692. cifs_dbg(FYI, "calling SetFileInfo since SetPathInfo for times not supported by this server\n");
  693. rc = CIFSSMBOpen(xid, tcon, full_path, FILE_OPEN,
  694. SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, CREATE_NOT_DIR,
  695. &netfid, &oplock, NULL, cifs_sb->local_nls,
  696. cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
  697. if (rc != 0) {
  698. if (rc == -EIO)
  699. rc = -EINVAL;
  700. goto out;
  701. }
  702. netpid = current->tgid;
  703. set_via_filehandle:
  704. rc = CIFSSMBSetFileInfo(xid, tcon, buf, netfid, netpid);
  705. if (!rc)
  706. cinode->cifsAttrs = le32_to_cpu(buf->Attributes);
  707. if (open_file == NULL)
  708. CIFSSMBClose(xid, tcon, netfid);
  709. else
  710. cifsFileInfo_put(open_file);
  711. out:
  712. if (tlink != NULL)
  713. cifs_put_tlink(tlink);
  714. return rc;
  715. }
  716. static int
  717. cifs_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon,
  718. const char *path, struct cifs_sb_info *cifs_sb,
  719. struct cifs_fid *fid, __u16 search_flags,
  720. struct cifs_search_info *srch_inf)
  721. {
  722. return CIFSFindFirst(xid, tcon, path, cifs_sb,
  723. &fid->netfid, search_flags, srch_inf, true);
  724. }
  725. static int
  726. cifs_query_dir_next(const unsigned int xid, struct cifs_tcon *tcon,
  727. struct cifs_fid *fid, __u16 search_flags,
  728. struct cifs_search_info *srch_inf)
  729. {
  730. return CIFSFindNext(xid, tcon, fid->netfid, search_flags, srch_inf);
  731. }
  732. static int
  733. cifs_close_dir(const unsigned int xid, struct cifs_tcon *tcon,
  734. struct cifs_fid *fid)
  735. {
  736. return CIFSFindClose(xid, tcon, fid->netfid);
  737. }
  738. static int
  739. cifs_oplock_response(struct cifs_tcon *tcon, struct cifs_fid *fid,
  740. struct cifsInodeInfo *cinode)
  741. {
  742. return CIFSSMBLock(0, tcon, fid->netfid, current->tgid, 0, 0, 0, 0,
  743. LOCKING_ANDX_OPLOCK_RELEASE, false,
  744. cinode->clientCanCacheRead ? 1 : 0);
  745. }
  746. static int
  747. cifs_queryfs(const unsigned int xid, struct cifs_tcon *tcon,
  748. struct kstatfs *buf)
  749. {
  750. int rc = -EOPNOTSUPP;
  751. buf->f_type = CIFS_MAGIC_NUMBER;
  752. /*
  753. * We could add a second check for a QFS Unix capability bit
  754. */
  755. if ((tcon->ses->capabilities & CAP_UNIX) &&
  756. (CIFS_POSIX_EXTENSIONS & le64_to_cpu(tcon->fsUnixInfo.Capability)))
  757. rc = CIFSSMBQFSPosixInfo(xid, tcon, buf);
  758. /*
  759. * Only need to call the old QFSInfo if failed on newer one,
  760. * e.g. by OS/2.
  761. **/
  762. if (rc && (tcon->ses->capabilities & CAP_NT_SMBS))
  763. rc = CIFSSMBQFSInfo(xid, tcon, buf);
  764. /*
  765. * Some old Windows servers also do not support level 103, retry with
  766. * older level one if old server failed the previous call or we
  767. * bypassed it because we detected that this was an older LANMAN sess
  768. */
  769. if (rc)
  770. rc = SMBOldQFSInfo(xid, tcon, buf);
  771. return rc;
  772. }
  773. static int
  774. cifs_mand_lock(const unsigned int xid, struct cifsFileInfo *cfile, __u64 offset,
  775. __u64 length, __u32 type, int lock, int unlock, bool wait)
  776. {
  777. return CIFSSMBLock(xid, tlink_tcon(cfile->tlink), cfile->fid.netfid,
  778. current->tgid, length, offset, unlock, lock,
  779. (__u8)type, wait, 0);
  780. }
  781. struct smb_version_operations smb1_operations = {
  782. .send_cancel = send_nt_cancel,
  783. .compare_fids = cifs_compare_fids,
  784. .setup_request = cifs_setup_request,
  785. .setup_async_request = cifs_setup_async_request,
  786. .check_receive = cifs_check_receive,
  787. .add_credits = cifs_add_credits,
  788. .set_credits = cifs_set_credits,
  789. .get_credits_field = cifs_get_credits_field,
  790. .get_credits = cifs_get_credits,
  791. .get_next_mid = cifs_get_next_mid,
  792. .read_data_offset = cifs_read_data_offset,
  793. .read_data_length = cifs_read_data_length,
  794. .map_error = map_smb_to_linux_error,
  795. .find_mid = cifs_find_mid,
  796. .check_message = checkSMB,
  797. .dump_detail = cifs_dump_detail,
  798. .clear_stats = cifs_clear_stats,
  799. .print_stats = cifs_print_stats,
  800. .is_oplock_break = is_valid_oplock_break,
  801. .check_trans2 = cifs_check_trans2,
  802. .need_neg = cifs_need_neg,
  803. .negotiate = cifs_negotiate,
  804. .negotiate_wsize = cifs_negotiate_wsize,
  805. .negotiate_rsize = cifs_negotiate_rsize,
  806. .sess_setup = CIFS_SessSetup,
  807. .logoff = CIFSSMBLogoff,
  808. .tree_connect = CIFSTCon,
  809. .tree_disconnect = CIFSSMBTDis,
  810. .get_dfs_refer = CIFSGetDFSRefer,
  811. .qfs_tcon = cifs_qfs_tcon,
  812. .is_path_accessible = cifs_is_path_accessible,
  813. .query_path_info = cifs_query_path_info,
  814. .query_file_info = cifs_query_file_info,
  815. .get_srv_inum = cifs_get_srv_inum,
  816. .set_path_size = CIFSSMBSetEOF,
  817. .set_file_size = CIFSSMBSetFileSize,
  818. .set_file_info = smb_set_file_info,
  819. .echo = CIFSSMBEcho,
  820. .mkdir = CIFSSMBMkDir,
  821. .mkdir_setinfo = cifs_mkdir_setinfo,
  822. .rmdir = CIFSSMBRmDir,
  823. .unlink = CIFSSMBDelFile,
  824. .rename_pending_delete = cifs_rename_pending_delete,
  825. .rename = CIFSSMBRename,
  826. .create_hardlink = CIFSCreateHardLink,
  827. .open = cifs_open_file,
  828. .set_fid = cifs_set_fid,
  829. .close = cifs_close_file,
  830. .flush = cifs_flush_file,
  831. .async_readv = cifs_async_readv,
  832. .async_writev = cifs_async_writev,
  833. .sync_read = cifs_sync_read,
  834. .sync_write = cifs_sync_write,
  835. .query_dir_first = cifs_query_dir_first,
  836. .query_dir_next = cifs_query_dir_next,
  837. .close_dir = cifs_close_dir,
  838. .calc_smb_size = smbCalcSize,
  839. .oplock_response = cifs_oplock_response,
  840. .queryfs = cifs_queryfs,
  841. .mand_lock = cifs_mand_lock,
  842. .mand_unlock_range = cifs_unlock_range,
  843. .push_mand_locks = cifs_push_mandatory_locks,
  844. };
  845. struct smb_version_values smb1_values = {
  846. .version_string = SMB1_VERSION_STRING,
  847. .large_lock_type = LOCKING_ANDX_LARGE_FILES,
  848. .exclusive_lock_type = 0,
  849. .shared_lock_type = LOCKING_ANDX_SHARED_LOCK,
  850. .unlock_lock_type = 0,
  851. .header_size = sizeof(struct smb_hdr),
  852. .max_header_size = MAX_CIFS_HDR_SIZE,
  853. .read_rsp_size = sizeof(READ_RSP),
  854. .lock_cmd = cpu_to_le16(SMB_COM_LOCKING_ANDX),
  855. .cap_unix = CAP_UNIX,
  856. .cap_nt_find = CAP_NT_SMBS | CAP_NT_FIND,
  857. .cap_large_files = CAP_LARGE_FILES,
  858. .oplock_read = OPLOCK_READ,
  859. };