smb1ops.c 32 KB

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