smb1ops.c 29 KB

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