proc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:62k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  proc.c
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
  5.  *  Copyright (C) 1997 by Volker Lendecke
  6.  *
  7.  *  Please add a note about your changes to smbfs in the ChangeLog file.
  8.  */
  9. #include <linux/types.h>
  10. #include <linux/errno.h>
  11. #include <linux/slab.h>
  12. #include <linux/fs.h>
  13. #include <linux/file.h>
  14. #include <linux/stat.h>
  15. #include <linux/fcntl.h>
  16. #include <linux/dcache.h>
  17. #include <linux/dirent.h>
  18. #include <linux/nls.h>
  19. #include <linux/smb_fs.h>
  20. #include <linux/smbno.h>
  21. #include <linux/smb_mount.h>
  22. #include <asm/string.h>
  23. #include <asm/div64.h>
  24. #include "smb_debug.h"
  25. #include "proto.h"
  26. /* Features. Undefine if they cause problems, this should perhaps be a
  27.    config option. */
  28. #define SMBFS_POSIX_UNLINK 1
  29. /* Allow smb_retry to be interrupted. */
  30. #define SMB_RETRY_INTR
  31. #define SMB_VWV(packet)  ((packet) + SMB_HEADER_LEN)
  32. #define SMB_CMD(packet)  (*(packet+8))
  33. #define SMB_WCT(packet)  (*(packet+SMB_HEADER_LEN - 1))
  34. #define SMB_BCC(packet)  smb_bcc(packet)
  35. #define SMB_BUF(packet)  ((packet) + SMB_HEADER_LEN + SMB_WCT(packet) * 2 + 2)
  36. #define SMB_DIRINFO_SIZE 43
  37. #define SMB_STATUS_SIZE  21
  38. #define SMB_ST_BLKSIZE (PAGE_SIZE)
  39. #define SMB_ST_BLKSHIFT (PAGE_SHIFT)
  40. static int
  41. smb_proc_setattr_ext(struct smb_sb_info *, struct inode *,
  42.      struct smb_fattr *);
  43. static int
  44. smb_proc_setattr_core(struct smb_sb_info *server, struct dentry *dentry,
  45.                       __u16 attr);
  46. static int
  47. smb_proc_do_getattr(struct smb_sb_info *server, struct dentry *dir,
  48.     struct smb_fattr *fattr);
  49. static void
  50. str_upper(char *name, int len)
  51. {
  52. while (len--)
  53. {
  54. if (*name >= 'a' && *name <= 'z')
  55. *name -= ('a' - 'A');
  56. name++;
  57. }
  58. }
  59. #if 0
  60. static void
  61. str_lower(char *name, int len)
  62. {
  63. while (len--)
  64. {
  65. if (*name >= 'A' && *name <= 'Z')
  66. *name += ('a' - 'A');
  67. name++;
  68. }
  69. }
  70. #endif
  71. /* reverse a string inline. This is used by the dircache walking routines */
  72. static void reverse_string(char *buf, int len)
  73. {
  74. char c;
  75. char *end = buf+len-1;
  76. while(buf < end) {
  77. c = *buf;
  78. *(buf++) = *end;
  79. *(end--) = c;
  80. }
  81. }
  82. /* no conversion, just a wrapper for memcpy. */
  83. static int convert_memcpy(char *output, int olen,
  84.   const char *input, int ilen,
  85.   struct nls_table *nls_from,
  86.   struct nls_table *nls_to)
  87. {
  88. if (olen < ilen)
  89. return -ENAMETOOLONG;
  90. memcpy(output, input, ilen);
  91. return ilen;
  92. }
  93. /* convert from one "codepage" to another (possibly being utf8). */
  94. static int convert_cp(char *output, int olen,
  95.       const char *input, int ilen,
  96.       struct nls_table *nls_from,
  97.       struct nls_table *nls_to)
  98. {
  99. int len = 0;
  100. int n;
  101. wchar_t ch;
  102. if (!nls_from || !nls_to) {
  103. PARANOIA("nls_from=%p, nls_to=%pn", nls_from, nls_to);
  104. return convert_memcpy(output, olen, input, ilen, NULL, NULL);
  105. }
  106. while (ilen > 0) {
  107. /* convert by changing to unicode and back to the new cp */
  108. n = nls_from->char2uni((unsigned char *)input, ilen, &ch);
  109. if (n < 0)
  110. goto fail;
  111. input += n;
  112. ilen -= n;
  113. n = nls_to->uni2char(ch, output, olen);
  114. if (n < 0)
  115. goto fail;
  116. output += n;
  117. olen -= n;
  118. len += n;
  119. }
  120. return len;
  121. fail:
  122. return n;
  123. }
  124. static int setcodepage(struct nls_table **p, char *name)
  125. {
  126. struct nls_table *nls;
  127. if (!name || !*name) {
  128. nls = NULL;
  129. } else if ( (nls = load_nls(name)) == NULL) {
  130. printk (KERN_ERR "smbfs: failed to load nls '%s'n", name);
  131. return -EINVAL;
  132. }
  133. /* if already set, unload the previous one. */
  134. if (*p)
  135. unload_nls(*p);
  136. *p = nls;
  137. return 0;
  138. }
  139. /* Handles all changes to codepage settings. */
  140. int smb_setcodepage(struct smb_sb_info *server, struct smb_nls_codepage *cp)
  141. {
  142. int n = 0;
  143. smb_lock_server(server);
  144. /* Don't load any nls_* at all, if no remote is requested */
  145. if (!*cp->remote_name)
  146. goto out;
  147. n = setcodepage(&server->local_nls, cp->local_name);
  148. if (n != 0)
  149. goto out;
  150. n = setcodepage(&server->remote_nls, cp->remote_name);
  151. if (n != 0)
  152. setcodepage(&server->local_nls, NULL);
  153. out:
  154. if (server->local_nls != NULL && server->remote_nls != NULL)
  155. server->convert = convert_cp;
  156. else
  157. server->convert = convert_memcpy;
  158. smb_unlock_server(server);
  159. return n;
  160. }
  161. /*****************************************************************************/
  162. /*                                                                           */
  163. /*  Encoding/Decoding section                                                */
  164. /*                                                                           */
  165. /*****************************************************************************/
  166. static __u8 *
  167. smb_encode_smb_length(__u8 * p, __u32 len)
  168. {
  169. *p = 0;
  170. *(p+1) = 0;
  171. *(p+2) = (len & 0xFF00) >> 8;
  172. *(p+3) = (len & 0xFF);
  173. if (len > 0xFFFF)
  174. {
  175. *(p+1) = 1;
  176. }
  177. return p + 4;
  178. }
  179. /*
  180.  * smb_build_path: build the path to entry and name storing it in buf.
  181.  * The path returned will have the trailing ''.
  182.  */
  183. static int smb_build_path(struct smb_sb_info *server, char * buf, int maxlen,
  184.   struct dentry * entry, struct qstr * name)
  185. {
  186. char *path = buf;
  187. int len;
  188. if (maxlen < 2)
  189. return -ENAMETOOLONG;
  190. if (maxlen > SMB_MAXNAMELEN + 1)
  191. maxlen = SMB_MAXNAMELEN + 1;
  192. if (entry == NULL)
  193. goto test_name_and_out;
  194. /*
  195.  * If IS_ROOT, we have to do no walking at all.
  196.  */
  197. if (IS_ROOT(entry) && !name) {
  198. *path++ = '\';
  199. *path++ = '';
  200. return 2;
  201. }
  202. /*
  203.  * Build the path string walking the tree backward from end to ROOT
  204.  * and store it in reversed order [see reverse_string()]
  205.  */
  206. while (!IS_ROOT(entry)) {
  207. if (maxlen < 3)
  208. return -ENAMETOOLONG;
  209. len = server->convert(path, maxlen-2, 
  210.       entry->d_name.name, entry->d_name.len,
  211.       server->local_nls, server->remote_nls);
  212. if (len < 0)
  213. return len;
  214. reverse_string(path, len);
  215. path += len;
  216. *path++ = '\';
  217. maxlen -= len+1;
  218. entry = entry->d_parent;
  219. if (IS_ROOT(entry))
  220. break;
  221. }
  222. reverse_string(buf, path-buf);
  223. /* maxlen is at least 1 */
  224. test_name_and_out:
  225. if (name) {
  226. if (maxlen < 3)
  227. return -ENAMETOOLONG;
  228. *path++ = '\';
  229. len = server->convert(path, maxlen-2, 
  230.       name->name, name->len,
  231.       server->local_nls, server->remote_nls);
  232. if (len < 0)
  233. return len;
  234. path += len;
  235. maxlen -= len+1;
  236. }
  237. /* maxlen is at least 1 */
  238. *path++ = '';
  239. return path-buf;
  240. }
  241. static int smb_encode_path(struct smb_sb_info *server, char *buf, int maxlen,
  242.    struct dentry *dir, struct qstr *name)
  243. {
  244. int result;
  245. result = smb_build_path(server, buf, maxlen, dir, name);
  246. if (result < 0)
  247. goto out;
  248. if (server->opt.protocol <= SMB_PROTOCOL_COREPLUS)
  249. str_upper(buf, result);
  250. out:
  251. return result;
  252. }
  253. static int smb_simple_encode_path(struct smb_sb_info *server, char **p,
  254.   struct dentry * entry, struct qstr * name)
  255. {
  256. char *s = *p;
  257. int res;
  258. int maxlen = ((char *)server->packet + server->packet_size) - s;
  259. if (!maxlen)
  260. return -ENAMETOOLONG;
  261. *s++ = 4;
  262. res = smb_encode_path(server, s, maxlen-1, entry, name);
  263. if (res < 0)
  264. return res;
  265. *p = s + res;
  266. return 0;
  267. }
  268. /* The following are taken directly from msdos-fs */
  269. /* Linear day numbers of the respective 1sts in non-leap years. */
  270. static int day_n[] =
  271. {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 0, 0, 0, 0};
  272.   /* JanFebMarApr May Jun Jul Aug Sep Oct Nov Dec */
  273. static time_t
  274. utc2local(struct smb_sb_info *server, time_t time)
  275. {
  276. return time - server->opt.serverzone*60;
  277. }
  278. static time_t
  279. local2utc(struct smb_sb_info *server, time_t time)
  280. {
  281. return time + server->opt.serverzone*60;
  282. }
  283. /* Convert a MS-DOS time/date pair to a UNIX date (seconds since 1 1 70). */
  284. static time_t
  285. date_dos2unix(struct smb_sb_info *server, __u16 date, __u16 time)
  286. {
  287. int month, year;
  288. time_t secs;
  289. /* first subtract and mask after that... Otherwise, if
  290.    date == 0, bad things happen */
  291. month = ((date >> 5) - 1) & 15;
  292. year = date >> 9;
  293. secs = (time & 31) * 2 + 60 * ((time >> 5) & 63) + (time >> 11) * 3600 + 86400 *
  294.     ((date & 31) - 1 + day_n[month] + (year / 4) + year * 365 - ((year & 3) == 0 &&
  295.    month < 2 ? 1 : 0) + 3653);
  296. /* days since 1.1.70 plus 80's leap day */
  297. return local2utc(server, secs);
  298. }
  299. /* Convert linear UNIX date to a MS-DOS time/date pair. */
  300. static void
  301. date_unix2dos(struct smb_sb_info *server,
  302.       int unix_date, __u16 *date, __u16 *time)
  303. {
  304. int day, year, nl_day, month;
  305. unix_date = utc2local(server, unix_date);
  306. if (unix_date < 315532800)
  307. unix_date = 315532800;
  308. *time = (unix_date % 60) / 2 +
  309. (((unix_date / 60) % 60) << 5) +
  310. (((unix_date / 3600) % 24) << 11);
  311. day = unix_date / 86400 - 3652;
  312. year = day / 365;
  313. if ((year + 3) / 4 + 365 * year > day)
  314. year--;
  315. day -= (year + 3) / 4 + 365 * year;
  316. if (day == 59 && !(year & 3)) {
  317. nl_day = day;
  318. month = 2;
  319. } else {
  320. nl_day = (year & 3) || day <= 59 ? day : day - 1;
  321. for (month = 0; month < 12; month++)
  322. if (day_n[month] > nl_day)
  323. break;
  324. }
  325. *date = nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9);
  326. }
  327. /* The following are taken from fs/ntfs/util.c */
  328. #define NTFS_TIME_OFFSET ((u64)(369*365 + 89) * 24 * 3600 * 10000000)
  329. /*
  330.  * Convert the NT UTC (based 1601-01-01, in hundred nanosecond units)
  331.  * into Unix UTC (based 1970-01-01, in seconds).
  332.  */
  333. static time_t
  334. smb_ntutc2unixutc(u64 ntutc)
  335. {
  336. /* FIXME: what about the timezone difference? */
  337. /* Subtract the NTFS time offset, then convert to 1s intervals. */
  338. u64 t = ntutc - NTFS_TIME_OFFSET;
  339. do_div(t, 10000000);
  340. return (time_t)t;
  341. }
  342. #if 0
  343. /* Convert the Unix UTC into NT time */
  344. static u64
  345. smb_unixutc2ntutc(struct smb_sb_info *server, time_t t)
  346. {
  347. /* Note: timezone conversion is probably wrong. */
  348. return ((u64)utc2local(server, t)) * 10000000 + NTFS_TIME_OFFSET;
  349. }
  350. #endif
  351. /*****************************************************************************/
  352. /*                                                                           */
  353. /*  Support section.                                                         */
  354. /*                                                                           */
  355. /*****************************************************************************/
  356. __u32
  357. smb_len(__u8 * p)
  358. {
  359. return ((*(p+1) & 0x1) << 16L) | (*(p+2) << 8L) | *(p+3);
  360. }
  361. static __u16
  362. smb_bcc(__u8 * packet)
  363. {
  364. int pos = SMB_HEADER_LEN + SMB_WCT(packet) * sizeof(__u16);
  365. return WVAL(packet, pos);
  366. }
  367. /* smb_valid_packet: We check if packet fulfills the basic
  368.    requirements of a smb packet */
  369. static int
  370. smb_valid_packet(__u8 * packet)
  371. {
  372. return (packet[4] == 0xff
  373. && packet[5] == 'S'
  374. && packet[6] == 'M'
  375. && packet[7] == 'B'
  376. && (smb_len(packet) + 4 == SMB_HEADER_LEN
  377.     + SMB_WCT(packet) * 2 + SMB_BCC(packet)));
  378. }
  379. /* smb_verify: We check if we got the answer we expected, and if we
  380.    got enough data. If bcc == -1, we don't care. */
  381. static int
  382. smb_verify(__u8 * packet, int command, int wct, int bcc)
  383. {
  384. if (SMB_CMD(packet) != command)
  385. goto bad_command;
  386. if (SMB_WCT(packet) < wct)
  387. goto bad_wct;
  388. if (bcc != -1 && SMB_BCC(packet) < bcc)
  389. goto bad_bcc;
  390. return 0;
  391. bad_command:
  392. printk(KERN_ERR "smb_verify: command=%x, SMB_CMD=%x??n",
  393.        command, SMB_CMD(packet));
  394. goto fail;
  395. bad_wct:
  396. printk(KERN_ERR "smb_verify: command=%x, wct=%d, SMB_WCT=%d??n",
  397.        command, wct, SMB_WCT(packet));
  398. goto fail;
  399. bad_bcc:
  400. printk(KERN_ERR "smb_verify: command=%x, bcc=%d, SMB_BCC=%d??n",
  401.        command, bcc, SMB_BCC(packet));
  402. fail:
  403. return -EIO;
  404. }
  405. /*
  406.  * Returns the maximum read or write size for the "payload". Making all of the
  407.  * packet fit within the negotiated max_xmit size.
  408.  *
  409.  * N.B. Since this value is usually computed before locking the server,
  410.  * the server's packet size must never be decreased!
  411.  */
  412. static inline int
  413. smb_get_xmitsize(struct smb_sb_info *server, int overhead)
  414. {
  415. return server->opt.max_xmit - overhead;
  416. }
  417. /*
  418.  * Calculate the maximum read size
  419.  */
  420. int
  421. smb_get_rsize(struct smb_sb_info *server)
  422. {
  423. int overhead = SMB_HEADER_LEN + 5 * sizeof(__u16) + 2 + 1 + 2;
  424. int size = smb_get_xmitsize(server, overhead);
  425. VERBOSE("packet=%d, xmit=%d, size=%dn",
  426. server->packet_size, server->opt.max_xmit, size);
  427. return size;
  428. }
  429. /*
  430.  * Calculate the maximum write size
  431.  */
  432. int
  433. smb_get_wsize(struct smb_sb_info *server)
  434. {
  435. int overhead = SMB_HEADER_LEN + 5 * sizeof(__u16) + 2 + 1 + 2;
  436. int size = smb_get_xmitsize(server, overhead);
  437. VERBOSE("packet=%d, xmit=%d, size=%dn",
  438. server->packet_size, server->opt.max_xmit, size);
  439. return size;
  440. }
  441. /*
  442.  * Convert SMB error codes to -E... errno values.
  443.  */
  444. int
  445. smb_errno(struct smb_sb_info *server)
  446. {
  447. int errcls = server->rcls;
  448. int error  = server->err;
  449. char *class = "Unknown";
  450. VERBOSE("errcls %d  code %d  from command 0x%xn",
  451. errcls, error, SMB_CMD(server->packet));
  452. if (errcls == ERRDOS) {
  453. switch (error) {
  454. case ERRbadfunc:
  455. return -EINVAL;
  456. case ERRbadfile:
  457. case ERRbadpath:
  458. return -ENOENT;
  459. case ERRnofids:
  460. return -EMFILE;
  461. case ERRnoaccess:
  462. return -EACCES;
  463. case ERRbadfid:
  464. return -EBADF;
  465. case ERRbadmcb:
  466. return -EREMOTEIO;
  467. case ERRnomem:
  468. return -ENOMEM;
  469. case ERRbadmem:
  470. return -EFAULT;
  471. case ERRbadenv:
  472. case ERRbadformat:
  473. return -EREMOTEIO;
  474. case ERRbadaccess:
  475. return -EACCES;
  476. case ERRbaddata:
  477. return -E2BIG;
  478. case ERRbaddrive:
  479. return -ENXIO;
  480. case ERRremcd:
  481. return -EREMOTEIO;
  482. case ERRdiffdevice:
  483. return -EXDEV;
  484. case ERRnofiles:
  485. return -ENOENT;
  486. case ERRbadshare:
  487. return -ETXTBSY;
  488. case ERRlock:
  489. return -EDEADLK;
  490. case ERRfilexists:
  491. return -EEXIST;
  492. case ERROR_INVALID_PARAMETER:
  493. return -EINVAL;
  494. case ERROR_DISK_FULL:
  495. return -ENOSPC;
  496. case ERROR_INVALID_NAME:
  497. return -ENOENT;
  498. case ERROR_DIR_NOT_EMPTY:
  499. return -ENOTEMPTY;
  500. case ERROR_NOT_LOCKED:
  501.                        return -ENOLCK;
  502. case ERROR_ALREADY_EXISTS:
  503. return -EEXIST;
  504. default:
  505. class = "ERRDOS";
  506. goto err_unknown;
  507. }
  508. } else if (errcls == ERRSRV) {
  509. switch (error) {
  510. /* N.B. This is wrong ... EIO ? */
  511. case ERRerror:
  512. return -ENFILE;
  513. case ERRbadpw:
  514. return -EINVAL;
  515. case ERRbadtype:
  516. return -EIO;
  517. case ERRaccess:
  518. return -EACCES;
  519. /*
  520.  * This is a fatal error, as it means the "tree ID"
  521.  * for this connection is no longer valid. We map
  522.  * to a special error code and get a new connection.
  523.  */
  524. case ERRinvnid:
  525. return -EBADSLT;
  526. default:
  527. class = "ERRSRV";
  528. goto err_unknown;
  529. }
  530. } else if (errcls == ERRHRD) {
  531. switch (error) {
  532. case ERRnowrite:
  533. return -EROFS;
  534. case ERRbadunit:
  535. return -ENODEV;
  536. case ERRnotready:
  537. return -EUCLEAN;
  538. case ERRbadcmd:
  539. case ERRdata:
  540. return -EIO;
  541. case ERRbadreq:
  542. return -ERANGE;
  543. case ERRbadshare:
  544. return -ETXTBSY;
  545. case ERRlock:
  546. return -EDEADLK;
  547. case ERRdiskfull:
  548. return -ENOSPC;
  549. default:
  550. class = "ERRHRD";
  551. goto err_unknown;
  552. }
  553. } else if (errcls == ERRCMD) {
  554. class = "ERRCMD";
  555. } else if (errcls == SUCCESS) {
  556. return 0; /* This is the only valid 0 return */
  557. }
  558. err_unknown:
  559. printk(KERN_ERR "smb_errno: class %s, code %d from command 0x%xn",
  560.        class, error, SMB_CMD(server->packet));
  561. return -EIO;
  562. }
  563. /*
  564.  * smb_retry: This function should be called when smb_request_ok has
  565.  * indicated an error. If the error was indicated because the
  566.  * connection was killed, we try to reconnect. If smb_retry returns 0,
  567.  * the error was indicated for another reason, so a retry would not be
  568.  * of any use.
  569.  * N.B. The server must be locked for this call.
  570.  */
  571. static int
  572. smb_retry(struct smb_sb_info *server)
  573. {
  574. pid_t pid = server->conn_pid;
  575. int error, result = 0;
  576. if (server->state == CONN_VALID || server->state == CONN_RETRYING)
  577. goto out;
  578. smb_close_socket(server);
  579. if (pid == 0) {
  580. printk(KERN_ERR "smb_retry: no connection processn");
  581. server->state = CONN_RETRIED;
  582. goto out;
  583. }
  584. /*
  585.  * Change state so that only one retry per server will be started.
  586.  */
  587. server->state = CONN_RETRYING;
  588. /*
  589.  * Note: use the "priv" flag, as a user process may need to reconnect.
  590.  */
  591. error = kill_proc(pid, SIGUSR1, 1);
  592. if (error) {
  593. /* FIXME: this is fatal */
  594. printk(KERN_ERR "smb_retry: signal failed, error=%dn", error);
  595. goto out;
  596. }
  597. VERBOSE("signalled pid %d, waiting for new connectionn", pid);
  598. /*
  599.  * Wait for the new connection.
  600.  */
  601. #ifdef SMB_RETRY_INTR
  602. smb_unlock_server(server);
  603. interruptible_sleep_on_timeout(&server->wait,  30*HZ);
  604. smb_lock_server(server);
  605. if (signal_pending(current))
  606. printk(KERN_INFO "smb_retry: caught signaln");
  607. #else
  608. /*
  609.  * We don't want to be interrupted. For example, what if 'current'
  610.  * already has received a signal? sleep_on would terminate immediately
  611.  * and smbmount would not be able to re-establish connection.
  612.  *
  613.  * smbmount should be able to reconnect later, but it can't because
  614.  * it will get an -EIO on attempts to open the mountpoint!
  615.  *
  616.  * FIXME: go back to the interruptable version now that smbmount
  617.  * can avoid -EIO on the mountpoint when reconnecting?
  618.  */
  619. smb_unlock_server(server);
  620. sleep_on_timeout(&server->wait, 30*HZ);
  621. smb_lock_server(server);
  622. #endif
  623. /*
  624.  * Check for a valid connection.
  625.  */
  626. if (server->state == CONN_VALID) {
  627. /* This should be changed to VERBOSE, except many smbfs
  628.    problems is with the userspace daemon not reconnecting. */
  629. PARANOIA("successful, new pid=%d, generation=%dn",
  630.  server->conn_pid, server->generation);
  631. result = 1;
  632. } else if (server->state == CONN_RETRYING) {
  633. /* allow further attempts later */
  634. server->state = CONN_RETRIED;
  635. }
  636. out:
  637. return result;
  638. }
  639. /* smb_request_ok: We expect the server to be locked. Then we do the
  640.    request and check the answer completely. When smb_request_ok
  641.    returns 0, you can be quite sure that everything went well. When
  642.    the answer is <=0, the returned number is a valid unix errno. */
  643. static int
  644. smb_request_ok(struct smb_sb_info *s, int command, int wct, int bcc)
  645. {
  646. int result = -EIO;
  647. s->rcls = 0;
  648. s->err = 0;
  649. /* Make sure we have a connection */
  650. if (s->state != CONN_VALID) {
  651. if (!smb_retry(s))
  652. goto out;
  653. }
  654. if (smb_request(s) < 0) {
  655. DEBUG1("smb_request failedn");
  656. goto out;
  657. }
  658. if (smb_valid_packet(s->packet) != 0) {
  659. PARANOIA("invalid packet!n");
  660. goto out;
  661. }
  662. /*
  663.  * Check for server errors.
  664.  */
  665. if (s->rcls != 0) {
  666. result = smb_errno(s);
  667. if (!result)
  668. printk(KERN_DEBUG "smb_request_ok: rcls=%d, err=%d mapped to 0n",
  669. s->rcls, s->err);
  670. /*
  671.  * Exit now even if the error was squashed ...
  672.  * packet verify will fail anyway.
  673.  */
  674. goto out;
  675. }
  676. result = smb_verify(s->packet, command, wct, bcc);
  677. out:
  678. return result;
  679. }
  680. /*
  681.  * This implements the NEWCONN ioctl. It installs the server pid,
  682.  * sets server->state to CONN_VALID, and wakes up the waiting process.
  683.  */
  684. int
  685. smb_newconn(struct smb_sb_info *server, struct smb_conn_opt *opt)
  686. {
  687. struct file *filp;
  688. int error;
  689. VERBOSE("fd=%d, pid=%dn", opt->fd, current->pid);
  690. smb_lock_server(server);
  691. /*
  692.  * Make sure we don't already have a valid connection ...
  693.  */
  694. error = -EINVAL;
  695. if (server->state == CONN_VALID)
  696. goto out;
  697. error = -EACCES;
  698. if (current->uid != server->mnt->mounted_uid && 
  699.     !capable(CAP_SYS_ADMIN))
  700. goto out;
  701. error = -EBADF;
  702. filp = fget(opt->fd);
  703. if (!filp)
  704. goto out;
  705. if (!smb_valid_socket(filp->f_dentry->d_inode))
  706. goto out_putf;
  707. server->sock_file = filp;
  708. server->conn_pid = current->pid;
  709. smb_catch_keepalive(server);
  710. server->opt = *opt;
  711. server->generation += 1;
  712. server->state = CONN_VALID;
  713. error = 0;
  714. /* check if we have an old smbmount that uses seconds for the 
  715.    serverzone */
  716. if (server->opt.serverzone > 12*60 || server->opt.serverzone < -12*60)
  717. server->opt.serverzone /= 60;
  718. /* now that we have an established connection we can detect the server
  719.    type and enable bug workarounds */
  720. if (server->opt.protocol == SMB_PROTOCOL_NT1 &&
  721.     (server->opt.max_xmit < 0x1000) &&
  722.     !(server->opt.capabilities & SMB_CAP_NT_SMBS)) {
  723. server->mnt->flags |= SMB_MOUNT_WIN95;
  724. VERBOSE("smb_newconn: detected WIN95 servern");
  725. }
  726. VERBOSE("protocol=%d, max_xmit=%d, pid=%d capabilities=0x%xn",
  727. server->opt.protocol, server->opt.max_xmit, server->conn_pid,
  728. server->opt.capabilities);
  729. /* Make sure we can fit a message of the negotiated size in our
  730.    packet buffer. */
  731. if (server->opt.max_xmit > server->packet_size) {
  732. int len = smb_round_length(server->opt.max_xmit);
  733. char *buf = smb_vmalloc(len);
  734. if (buf) {
  735. if (server->packet)
  736. smb_vfree(server->packet);
  737. server->packet = buf;
  738. server->packet_size = len;
  739. } else {
  740. /* else continue with the too small buffer? */
  741. PARANOIA("Failed to allocate new packet buffer: "
  742.  "max_xmit=%d, packet_size=%dn",
  743.  server->opt.max_xmit, server->packet_size);
  744. server->opt.max_xmit = server->packet_size;
  745. }
  746. }
  747. out:
  748. smb_unlock_server(server);
  749. smb_wakeup(server);
  750. return error;
  751. out_putf:
  752. fput(filp);
  753. goto out;
  754. }
  755. int
  756. smb_wakeup(struct smb_sb_info *server)
  757. {
  758. #ifdef SMB_RETRY_INTR
  759. wake_up_interruptible(&server->wait);
  760. #else
  761. wake_up(&server->wait);
  762. #endif
  763. return 0;
  764. }
  765. /* smb_setup_header: We completely set up the packet. You only have to
  766.    insert the command-specific fields */
  767. __u8 *
  768. smb_setup_header(struct smb_sb_info * server, __u8 command, __u16 wct, __u16 bcc)
  769. {
  770. __u32 xmit_len = SMB_HEADER_LEN + wct * sizeof(__u16) + bcc + 2;
  771. __u8 *p = server->packet;
  772. __u8 *buf = server->packet;
  773. if (xmit_len > server->packet_size)
  774. printk(KERN_DEBUG "smb_setup_header: "
  775.        "Aieee, xmit len > packet! len=%d, size=%dn",
  776.        xmit_len, server->packet_size);
  777. p = smb_encode_smb_length(p, xmit_len - 4);
  778. *p++ = 0xff;
  779. *p++ = 'S';
  780. *p++ = 'M';
  781. *p++ = 'B';
  782. *p++ = command;
  783. memset(p, '', 19);
  784. p += 19;
  785. p += 8;
  786. WSET(buf, smb_tid, server->opt.tid);
  787. WSET(buf, smb_pid, 1);
  788. WSET(buf, smb_uid, server->opt.server_uid);
  789. WSET(buf, smb_mid, 1);
  790. if (server->opt.protocol > SMB_PROTOCOL_CORE)
  791. {
  792. *(buf+smb_flg) = 0x8;
  793. WSET(buf, smb_flg2, 0x3);
  794. }
  795. *p++ = wct; /* wct */
  796. p += 2 * wct;
  797. WSET(p, 0, bcc);
  798. return p + 2;
  799. }
  800. static void
  801. smb_setup_bcc(struct smb_sb_info *server, __u8 * p)
  802. {
  803. __u8 *packet = server->packet;
  804. __u8 *pbcc = packet + SMB_HEADER_LEN + 2 * SMB_WCT(packet);
  805. __u16 bcc = p - (pbcc + 2);
  806. WSET(pbcc, 0, bcc);
  807. smb_encode_smb_length(packet,
  808.       SMB_HEADER_LEN + 2 * SMB_WCT(packet) - 2 + bcc);
  809. }
  810. /*
  811.  * Called with the server locked
  812.  */
  813. static int
  814. smb_proc_seek(struct smb_sb_info *server, __u16 fileid,
  815.       __u16 mode, off_t offset)
  816. {
  817. int result;
  818. smb_setup_header(server, SMBlseek, 4, 0);
  819. WSET(server->packet, smb_vwv0, fileid);
  820. WSET(server->packet, smb_vwv1, mode);
  821. DSET(server->packet, smb_vwv2, offset);
  822. result = smb_request_ok(server, SMBlseek, 2, 0);
  823. if (result < 0) {
  824. result = 0;
  825. goto out;
  826. }
  827. result = DVAL(server->packet, smb_vwv0);
  828. out:
  829. return result;
  830. }
  831. /*
  832.  * We're called with the server locked, and we leave it that way.
  833.  */
  834. static int
  835. smb_proc_open(struct smb_sb_info *server, struct dentry *dentry, int wish)
  836. {
  837. struct inode *ino = dentry->d_inode;
  838. int mode, read_write = 0x42, read_only = 0x40;
  839. int res;
  840. char *p;
  841. /*
  842.  * Attempt to open r/w, unless there are no write privileges.
  843.  */
  844. mode = read_write;
  845. if (!(ino->i_mode & (S_IWUSR | S_IWGRP | S_IWOTH)))
  846. mode = read_only;
  847. #if 0
  848. /* FIXME: why is this code not in? below we fix it so that a caller
  849.    wanting RO doesn't get RW. smb_revalidate_inode does some 
  850.    optimization based on access mode. tail -f needs it to be correct.
  851.    We must open rw since we don't do the open if called a second time
  852.    with different 'wish'. Is that not supported by smb servers? */
  853. if (!(wish & (O_WRONLY | O_RDWR)))
  854. mode = read_only;
  855. #endif
  856.       retry:
  857. p = smb_setup_header(server, SMBopen, 2, 0);
  858. WSET(server->packet, smb_vwv0, mode);
  859. WSET(server->packet, smb_vwv1, aSYSTEM | aHIDDEN | aDIR);
  860. res = smb_simple_encode_path(server, &p, dentry, NULL);
  861. if (res < 0)
  862. goto out;
  863. smb_setup_bcc(server, p);
  864. res = smb_request_ok(server, SMBopen, 7, 0);
  865. if (res != 0) {
  866. if (smb_retry(server))
  867. goto retry;
  868. if (mode == read_write &&
  869.     (res == -EACCES || res == -ETXTBSY || res == -EROFS))
  870. {
  871. VERBOSE("%s/%s R/W failed, error=%d, retrying R/On",
  872. DENTRY_PATH(dentry), res);
  873. mode = read_only;
  874. goto retry;
  875. }
  876. goto out;
  877. }
  878. /* We should now have data in vwv[0..6]. */
  879. ino->u.smbfs_i.fileid = WVAL(server->packet, smb_vwv0);
  880. ino->u.smbfs_i.attr   = WVAL(server->packet, smb_vwv1);
  881. /* smb_vwv2 has mtime */
  882. /* smb_vwv4 has size  */
  883. ino->u.smbfs_i.access = (WVAL(server->packet, smb_vwv6) & SMB_ACCMASK);
  884. ino->u.smbfs_i.open = server->generation;
  885. out:
  886. return res;
  887. }
  888. /*
  889.  * Make sure the file is open, and check that the access
  890.  * is compatible with the desired access.
  891.  */
  892. int
  893. smb_open(struct dentry *dentry, int wish)
  894. {
  895. struct inode *inode = dentry->d_inode;
  896. int result;
  897. result = -ENOENT;
  898. if (!inode) {
  899. printk(KERN_ERR "smb_open: no inode for dentry %s/%sn",
  900.        DENTRY_PATH(dentry));
  901. goto out;
  902. }
  903. if (!smb_is_open(inode)) {
  904. struct smb_sb_info *server = server_from_inode(inode);
  905. smb_lock_server(server);
  906. result = 0;
  907. if (!smb_is_open(inode))
  908. result = smb_proc_open(server, dentry, wish);
  909. smb_unlock_server(server);
  910. if (result) {
  911. PARANOIA("%s/%s open failed, result=%dn",
  912.  DENTRY_PATH(dentry), result);
  913. goto out;
  914. }
  915. /*
  916.  * A successful open means the path is still valid ...
  917.  */
  918. smb_renew_times(dentry);
  919. }
  920. /*
  921.  * Check whether the access is compatible with the desired mode.
  922.  */
  923. result = 0;
  924. if (inode->u.smbfs_i.access != wish && 
  925.     inode->u.smbfs_i.access != SMB_O_RDWR)
  926. {
  927. PARANOIA("%s/%s access denied, access=%x, wish=%xn",
  928.  DENTRY_PATH(dentry), inode->u.smbfs_i.access, wish);
  929. result = -EACCES;
  930. }
  931. out:
  932. return result;
  933. }
  934. /* We're called with the server locked */
  935. static int 
  936. smb_proc_close(struct smb_sb_info *server, __u16 fileid, __u32 mtime)
  937. {
  938. smb_setup_header(server, SMBclose, 3, 0);
  939. WSET(server->packet, smb_vwv0, fileid);
  940. DSET(server->packet, smb_vwv1, utc2local(server, mtime));
  941. return smb_request_ok(server, SMBclose, 0, 0);
  942. }
  943. /*
  944.  * Called with the server locked.
  945.  *
  946.  * Win NT 4.0 has an apparent bug in that it fails to update the
  947.  * modify time when writing to a file. As a workaround, we update
  948.  * both modify and access time locally, and post the times to the
  949.  * server when closing the file.
  950.  */
  951. static int 
  952. smb_proc_close_inode(struct smb_sb_info *server, struct inode * ino)
  953. {
  954. int result = 0;
  955. if (smb_is_open(ino))
  956. {
  957. /*
  958.  * We clear the open flag in advance, in case another
  959.    * process observes the value while we block below.
  960.  */
  961. ino->u.smbfs_i.open = 0;
  962. /*
  963.  * Kludge alert: SMB timestamps are accurate only to
  964.  * two seconds ... round the times to avoid needless
  965.  * cache invalidations!
  966.  */
  967. if (ino->i_mtime & 1)
  968. ino->i_mtime--;
  969. if (ino->i_atime & 1)
  970. ino->i_atime--;
  971. /*
  972.  * If the file is open with write permissions,
  973.  * update the time stamps to sync mtime and atime.
  974.  */
  975. if ((server->opt.protocol >= SMB_PROTOCOL_LANMAN2) &&
  976.     !(ino->u.smbfs_i.access == SMB_O_RDONLY))
  977. {
  978. struct smb_fattr fattr;
  979. smb_get_inode_attr(ino, &fattr);
  980. smb_proc_setattr_ext(server, ino, &fattr);
  981. }
  982. result = smb_proc_close(server, ino->u.smbfs_i.fileid,
  983. ino->i_mtime);
  984. /*
  985.  * Force a revalidation after closing ... some servers
  986.  * don't post the size until the file has been closed.
  987.  */
  988. if (server->opt.protocol < SMB_PROTOCOL_NT1)
  989. ino->u.smbfs_i.oldmtime = 0;
  990. ino->u.smbfs_i.closed = jiffies;
  991. }
  992. return result;
  993. }
  994. int
  995. smb_close(struct inode *ino)
  996. {
  997. int result = 0;
  998. if (smb_is_open(ino)) {
  999. struct smb_sb_info *server = server_from_inode(ino);
  1000. smb_lock_server(server);
  1001. result = smb_proc_close_inode(server, ino);
  1002. smb_unlock_server(server);
  1003. }
  1004. return result;
  1005. }
  1006. /*
  1007.  * This is used to close a file following a failed instantiate.
  1008.  * Since we don't have an inode, we can't use any of the above.
  1009.  */
  1010. int
  1011. smb_close_fileid(struct dentry *dentry, __u16 fileid)
  1012. {
  1013. struct smb_sb_info *server = server_from_dentry(dentry);
  1014. int result;
  1015. smb_lock_server(server);
  1016. result = smb_proc_close(server, fileid, CURRENT_TIME);
  1017. smb_unlock_server(server);
  1018. return result;
  1019. }
  1020. /* In smb_proc_read and smb_proc_write we do not retry, because the
  1021.    file-id would not be valid after a reconnection. */
  1022. int
  1023. smb_proc_read(struct inode *inode, off_t offset, int count, char *data)
  1024. {
  1025. struct smb_sb_info *server = server_from_inode(inode);
  1026. __u16 returned_count, data_len;
  1027. unsigned char *buf;
  1028. int result;
  1029. smb_lock_server(server);
  1030. smb_setup_header(server, SMBread, 5, 0);
  1031. buf = server->packet;
  1032. WSET(buf, smb_vwv0, inode->u.smbfs_i.fileid);
  1033. WSET(buf, smb_vwv1, count);
  1034. DSET(buf, smb_vwv2, offset);
  1035. WSET(buf, smb_vwv4, 0);
  1036. result = smb_request_ok(server, SMBread, 5, -1);
  1037. if (result < 0)
  1038. goto out;
  1039. returned_count = WVAL(server->packet, smb_vwv0);
  1040. buf = SMB_BUF(server->packet);
  1041. data_len = WVAL(buf, 1);
  1042. /* we can NOT simply trust the data_len given by the server ... */
  1043. if (data_len > server->packet_size - (buf+3 - server->packet)) {
  1044. printk(KERN_ERR "smb_proc_read: invalid data length!! "
  1045.        "%d > %d - (%p - %p)n",
  1046.        data_len, server->packet_size, buf+3, server->packet);
  1047. result = -EIO;
  1048. goto out;
  1049. }
  1050. memcpy(data, buf+3, data_len);
  1051. if (returned_count != data_len) {
  1052. printk(KERN_NOTICE "smb_proc_read: returned != data_lenn");
  1053. printk(KERN_NOTICE "smb_proc_read: ret_c=%d, data_len=%dn",
  1054.        returned_count, data_len);
  1055. }
  1056. result = data_len;
  1057. out:
  1058. VERBOSE("ino=%ld, fileid=%d, count=%d, result=%dn",
  1059. inode->i_ino, inode->u.smbfs_i.fileid, count, result);
  1060. smb_unlock_server(server);
  1061. return result;
  1062. }
  1063. int
  1064. smb_proc_write(struct inode *inode, off_t offset, int count, const char *data)
  1065. {
  1066. struct smb_sb_info *server = server_from_inode(inode);
  1067. int result;
  1068. __u8 *p;
  1069. __u16 fileid = inode->u.smbfs_i.fileid;
  1070. VERBOSE("ino=%ld, fileid=%d, count=%d@%ld, packet_size=%dn",
  1071. inode->i_ino, inode->u.smbfs_i.fileid, count, offset,
  1072. server->packet_size);
  1073. smb_lock_server(server);
  1074. p = smb_setup_header(server, SMBwrite, 5, count + 3);
  1075. WSET(server->packet, smb_vwv0, fileid);
  1076. WSET(server->packet, smb_vwv1, count);
  1077. DSET(server->packet, smb_vwv2, offset);
  1078. WSET(server->packet, smb_vwv4, 0);
  1079. *p++ = 1;
  1080. WSET(p, 0, count);
  1081. memcpy(p+2, data, count);
  1082. result = smb_request_ok(server, SMBwrite, 1, 0);
  1083. if (result >= 0)
  1084. result = WVAL(server->packet, smb_vwv0);
  1085. smb_unlock_server(server);
  1086. return result;
  1087. }
  1088. int
  1089. smb_proc_create(struct dentry *dentry, __u16 attr, time_t ctime, __u16 *fileid)
  1090. {
  1091. struct smb_sb_info *server = server_from_dentry(dentry);
  1092. char *p;
  1093. int result;
  1094. smb_lock_server(server);
  1095.       retry:
  1096. p = smb_setup_header(server, SMBcreate, 3, 0);
  1097. WSET(server->packet, smb_vwv0, attr);
  1098. DSET(server->packet, smb_vwv1, utc2local(server, ctime));
  1099. result = smb_simple_encode_path(server, &p, dentry, NULL);
  1100. if (result < 0)
  1101. goto out;
  1102. smb_setup_bcc(server, p);
  1103. result = smb_request_ok(server, SMBcreate, 1, 0);
  1104. if (result < 0) {
  1105. if (smb_retry(server))
  1106. goto retry;
  1107. goto out;
  1108. }
  1109. *fileid = WVAL(server->packet, smb_vwv0);
  1110. result = 0;
  1111. out:
  1112. smb_unlock_server(server);
  1113. return result;
  1114. }
  1115. int
  1116. smb_proc_mv(struct dentry *old_dentry, struct dentry *new_dentry)
  1117. {
  1118. struct smb_sb_info *server = server_from_dentry(old_dentry);
  1119. char *p;
  1120. int result;
  1121. smb_lock_server(server);
  1122.       retry:
  1123. p = smb_setup_header(server, SMBmv, 1, 0);
  1124. WSET(server->packet, smb_vwv0, aSYSTEM | aHIDDEN | aDIR);
  1125. result = smb_simple_encode_path(server, &p, old_dentry, NULL);
  1126. if (result < 0)
  1127. goto out;
  1128. result = smb_simple_encode_path(server, &p, new_dentry, NULL);
  1129. if (result < 0)
  1130. goto out;
  1131. smb_setup_bcc(server, p);
  1132. if ((result = smb_request_ok(server, SMBmv, 0, 0)) < 0) {
  1133. if (smb_retry(server))
  1134. goto retry;
  1135. goto out;
  1136. }
  1137. result = 0;
  1138. out:
  1139. smb_unlock_server(server);
  1140. return result;
  1141. }
  1142. /*
  1143.  * Code common to mkdir and rmdir.
  1144.  */
  1145. static int
  1146. smb_proc_generic_command(struct dentry *dentry, __u8 command)
  1147. {
  1148. struct smb_sb_info *server = server_from_dentry(dentry);
  1149. char *p;
  1150. int result;
  1151. smb_lock_server(server);
  1152.       retry:
  1153. p = smb_setup_header(server, command, 0, 0);
  1154. result = smb_simple_encode_path(server, &p, dentry, NULL);
  1155. if (result < 0)
  1156. goto out;
  1157. smb_setup_bcc(server, p);
  1158. result = smb_request_ok(server, command, 0, 0);
  1159. if (result < 0) {
  1160. if (smb_retry(server))
  1161. goto retry;
  1162. goto out;
  1163. }
  1164. result = 0;
  1165. out:
  1166. smb_unlock_server(server);
  1167. return result;
  1168. }
  1169. int
  1170. smb_proc_mkdir(struct dentry *dentry)
  1171. {
  1172. return smb_proc_generic_command(dentry, SMBmkdir);
  1173. }
  1174. int
  1175. smb_proc_rmdir(struct dentry *dentry)
  1176. {
  1177. return smb_proc_generic_command(dentry, SMBrmdir);
  1178. }
  1179. #if SMBFS_POSIX_UNLINK
  1180. /*
  1181.  * Removes readonly attribute from a file. Used by unlink to give posix
  1182.  * semantics.
  1183.  * Note: called with the server locked.
  1184.  */
  1185. static int
  1186. smb_set_rw(struct dentry *dentry,struct smb_sb_info *server)
  1187. {
  1188. int result;
  1189. struct smb_fattr fattr;
  1190. /* first get current attribute */
  1191. result = smb_proc_do_getattr(server, dentry, &fattr);
  1192. if (result < 0)
  1193. return result;
  1194. /* if RONLY attribute is set, remove it */
  1195. if (fattr.attr & aRONLY) {  /* read only attribute is set */
  1196. fattr.attr &= ~aRONLY;
  1197. result = smb_proc_setattr_core(server, dentry, fattr.attr);
  1198. }
  1199. return result;
  1200. }
  1201. #endif
  1202. int
  1203. smb_proc_unlink(struct dentry *dentry)
  1204. {
  1205. struct smb_sb_info *server = server_from_dentry(dentry);
  1206. int flag = 0;
  1207. char *p;
  1208. int result;
  1209. smb_lock_server(server);
  1210.       retry:
  1211. p = smb_setup_header(server, SMBunlink, 1, 0);
  1212. WSET(server->packet, smb_vwv0, aSYSTEM | aHIDDEN);
  1213. result = smb_simple_encode_path(server, &p, dentry, NULL);
  1214. if (result < 0)
  1215. goto out;
  1216. smb_setup_bcc(server, p);
  1217. if ((result = smb_request_ok(server, SMBunlink, 0, 0)) < 0) {
  1218. #if SMBFS_POSIX_UNLINK
  1219. if (result == -EACCES && !flag) {
  1220. /* Posix semantics is for the read-only state
  1221.    of a file to be ignored in unlink(). In the
  1222.    SMB world a unlink() is refused on a
  1223.    read-only file. To make things easier for
  1224.    unix users we try to override the files
  1225.    permission if the unlink fails with the
  1226.    right error.
  1227.    This introduces a race condition that could
  1228.    lead to a file being written by someone who
  1229.    shouldn't have access, but as far as I can
  1230.    tell that is unavoidable */
  1231. /* remove RONLY attribute and try again */
  1232. result = smb_set_rw(dentry,server);
  1233. if (result == 0) {
  1234. flag = 1;
  1235. goto retry;
  1236. }
  1237. }
  1238. #endif
  1239. if (smb_retry(server))
  1240. goto retry;
  1241. goto out;
  1242. }
  1243. result = 0;
  1244. out:
  1245. smb_unlock_server(server);
  1246. return result;
  1247. }
  1248. /*
  1249.  * Called with the server locked
  1250.  */
  1251. int
  1252. smb_proc_flush(struct smb_sb_info *server, __u16 fileid)
  1253. {
  1254. smb_setup_header(server, SMBflush, 1, 0);
  1255. WSET(server->packet, smb_vwv0, fileid);
  1256. return smb_request_ok(server, SMBflush, 0, 0);
  1257. }
  1258. int
  1259. smb_proc_trunc(struct smb_sb_info *server, __u16 fid, __u32 length)
  1260. {
  1261. char *p;
  1262. int result;
  1263. smb_lock_server(server);
  1264. retry:
  1265. p = smb_setup_header(server, SMBwrite, 5, 3);
  1266. WSET(server->packet, smb_vwv0, fid);
  1267. WSET(server->packet, smb_vwv1, 0);
  1268. DSET(server->packet, smb_vwv2, length);
  1269. WSET(server->packet, smb_vwv4, 0);
  1270. *p++ = 1;
  1271. WSET(p, 0, 0);
  1272. if ((result = smb_request_ok(server, SMBwrite, 1, 0)) < 0) {
  1273. if (smb_retry(server))
  1274. goto retry;
  1275. goto out;
  1276. }
  1277. /*
  1278.  * win9x doesn't appear to update the size immediately.
  1279.  * It will return the old file size after the truncate,
  1280.  * confusing smbfs.
  1281.  * NT and Samba return the new value immediately.
  1282.  */
  1283. if (server->mnt->flags & SMB_MOUNT_WIN95)
  1284. smb_proc_flush(server, fid);
  1285. out:
  1286. smb_unlock_server(server);
  1287. return result;
  1288. }
  1289. static void
  1290. smb_init_dirent(struct smb_sb_info *server, struct smb_fattr *fattr)
  1291. {
  1292. memset(fattr, 0, sizeof(*fattr));
  1293. fattr->f_nlink = 1;
  1294. fattr->f_uid = server->mnt->uid;
  1295. fattr->f_gid = server->mnt->gid;
  1296. fattr->f_blksize = SMB_ST_BLKSIZE;
  1297. }
  1298. static void
  1299. smb_finish_dirent(struct smb_sb_info *server, struct smb_fattr *fattr)
  1300. {
  1301. fattr->f_mode = server->mnt->file_mode;
  1302. if (fattr->attr & aDIR)
  1303. {
  1304. fattr->f_mode = server->mnt->dir_mode;
  1305. fattr->f_size = SMB_ST_BLKSIZE;
  1306. }
  1307. /* Check the read-only flag */
  1308. if (fattr->attr & aRONLY)
  1309. fattr->f_mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH);
  1310. /* How many 512 byte blocks do we need for this file? */
  1311. fattr->f_blocks = 0;
  1312. if (fattr->f_size != 0)
  1313. fattr->f_blocks = 1 + ((fattr->f_size-1) >> 9);
  1314. return;
  1315. }
  1316. void
  1317. smb_init_root_dirent(struct smb_sb_info *server, struct smb_fattr *fattr)
  1318. {
  1319. smb_init_dirent(server, fattr);
  1320. fattr->attr = aDIR;
  1321. fattr->f_ino = 2; /* traditional root inode number */
  1322. fattr->f_mtime = CURRENT_TIME;
  1323. smb_finish_dirent(server, fattr);
  1324. }
  1325. /*
  1326.  * Decode a dirent for old protocols
  1327.  *
  1328.  * qname is filled with the decoded, and possibly translated, name.
  1329.  * fattr receives decoded attributes
  1330.  *
  1331.  * Bugs Noted:
  1332.  * (1) Pathworks servers may pad the name with extra spaces.
  1333.  */
  1334. static char *
  1335. smb_decode_short_dirent(struct smb_sb_info *server, char *p,
  1336. struct qstr *qname, struct smb_fattr *fattr)
  1337. {
  1338. int len;
  1339. /*
  1340.  * SMB doesn't have a concept of inode numbers ...
  1341.  */
  1342. smb_init_dirent(server, fattr);
  1343. fattr->f_ino = 0; /* FIXME: do we need this? */
  1344. p += SMB_STATUS_SIZE; /* reserved (search_status) */
  1345. fattr->attr = *p;
  1346. fattr->f_mtime = date_dos2unix(server, WVAL(p, 3), WVAL(p, 1));
  1347. fattr->f_size = DVAL(p, 5);
  1348. fattr->f_ctime = fattr->f_mtime;
  1349. fattr->f_atime = fattr->f_mtime;
  1350. qname->name = p + 9;
  1351. len = strnlen(qname->name, 12);
  1352. /*
  1353.  * Trim trailing blanks for Pathworks servers
  1354.  */
  1355. while (len > 2 && qname->name[len-1] == ' ')
  1356. len--;
  1357. qname->len = len;
  1358. smb_finish_dirent(server, fattr);
  1359. #if 0
  1360. /* FIXME: These only work for ascii chars, and recent smbmount doesn't
  1361.    allow the flag to be set anyway. It kills const. Remove? */
  1362. switch (server->opt.case_handling) {
  1363. case SMB_CASE_UPPER:
  1364. str_upper(entry->name, len);
  1365. break;
  1366. case SMB_CASE_LOWER:
  1367. str_lower(entry->name, len);
  1368. break;
  1369. default:
  1370. break;
  1371. }
  1372. #endif
  1373. qname->len = server->convert(server->name_buf, SMB_MAXNAMELEN,
  1374.      qname->name, len,
  1375.      server->remote_nls, server->local_nls);
  1376. qname->name = server->name_buf;
  1377. DEBUG1("len=%d, name=%.*sn", qname->len, qname->len, qname->name);
  1378. return p + 22;
  1379. }
  1380. /*
  1381.  * This routine is used to read in directory entries from the network.
  1382.  * Note that it is for short directory name seeks, i.e.: protocol <
  1383.  * SMB_PROTOCOL_LANMAN2
  1384.  */
  1385. static int
  1386. smb_proc_readdir_short(struct file *filp, void *dirent, filldir_t filldir,
  1387.        struct smb_cache_control *ctl)
  1388. {
  1389. struct dentry *dir = filp->f_dentry;
  1390. struct smb_sb_info *server = server_from_dentry(dir);
  1391. struct qstr qname;
  1392. struct smb_fattr fattr;
  1393. char *p;
  1394. int result;
  1395. int i, first, entries_seen, entries;
  1396. int entries_asked = (server->opt.max_xmit - 100) / SMB_DIRINFO_SIZE;
  1397. __u16 bcc;
  1398. __u16 count;
  1399. char status[SMB_STATUS_SIZE];
  1400. static struct qstr mask = { "*.*", 3, 0 };
  1401. unsigned char *last_status;
  1402. VERBOSE("%s/%sn", DENTRY_PATH(dir));
  1403. smb_lock_server(server);
  1404. first = 1;
  1405. entries = 0;
  1406. entries_seen = 2; /* implicit . and .. */
  1407. while (1) {
  1408. p = smb_setup_header(server, SMBsearch, 2, 0);
  1409. WSET(server->packet, smb_vwv0, entries_asked);
  1410. WSET(server->packet, smb_vwv1, aDIR);
  1411. if (first == 1) {
  1412. result = smb_simple_encode_path(server, &p, dir, &mask);
  1413. if (result < 0)
  1414. goto unlock_return;
  1415. if (p + 3 > (char*)server->packet+server->packet_size) {
  1416. result = -ENAMETOOLONG;
  1417. goto unlock_return;
  1418. }
  1419. *p++ = 5;
  1420. WSET(p, 0, 0);
  1421. p += 2;
  1422. first = 0;
  1423. } else {
  1424. if (p + 5 + SMB_STATUS_SIZE >
  1425.     (char*)server->packet + server->packet_size) {
  1426. result = -ENAMETOOLONG;
  1427. goto unlock_return;
  1428. }
  1429. *p++ = 4;
  1430. *p++ = 0;
  1431. *p++ = 5;
  1432. WSET(p, 0, SMB_STATUS_SIZE);
  1433. p += 2;
  1434. memcpy(p, status, SMB_STATUS_SIZE);
  1435. p += SMB_STATUS_SIZE;
  1436. }
  1437. smb_setup_bcc(server, p);
  1438. result = smb_request_ok(server, SMBsearch, 1, -1);
  1439. if (result < 0) {
  1440. if ((server->rcls == ERRDOS) && 
  1441.     (server->err  == ERRnofiles))
  1442. break;
  1443. if (smb_retry(server)) {
  1444. ctl->idx = -1; /* retry */
  1445. result = 0;
  1446. }
  1447. goto unlock_return;
  1448. }
  1449. p = SMB_VWV(server->packet);
  1450. count = WVAL(p, 0);
  1451. if (count <= 0)
  1452. break;
  1453. result = -EIO;
  1454. bcc = WVAL(p, 2);
  1455. if (bcc != count * SMB_DIRINFO_SIZE + 3)
  1456. goto unlock_return;
  1457. p += 7;
  1458. /* Make sure the response fits in the buffer. Fixed sized 
  1459.    entries means we don't have to check in the decode loop. */
  1460. last_status = SMB_BUF(server->packet) + 3 + (count - 1) *
  1461. SMB_DIRINFO_SIZE;
  1462. if (last_status + SMB_DIRINFO_SIZE >=
  1463.     server->packet + server->packet_size) {
  1464. printk(KERN_ERR "smb_proc_readdir_short: "
  1465.        "last dir entry outside buffer! "
  1466.        "%d@%p  %d@%pn", SMB_DIRINFO_SIZE, last_status,
  1467.        server->packet_size, server->packet);
  1468. goto unlock_return;
  1469. }
  1470. /* Read the last entry into the status field. */
  1471. memcpy(status, last_status, SMB_STATUS_SIZE);
  1472. /* Now we are ready to parse smb directory entries. */
  1473. for (i = 0; i < count; i++) {
  1474. p = smb_decode_short_dirent(server, p, 
  1475.     &qname, &fattr);
  1476. if (entries_seen == 2 && qname.name[0] == '.') {
  1477. if (qname.len == 1)
  1478. continue;
  1479. if (qname.name[1] == '.' && qname.len == 2)
  1480. continue;
  1481. }
  1482. if (!smb_fill_cache(filp, dirent, filldir, ctl, 
  1483.     &qname, &fattr))
  1484. ; /* stop reading? */
  1485. entries_seen++;
  1486. }
  1487. }
  1488. result = entries;
  1489. unlock_return:
  1490. smb_unlock_server(server);
  1491. return result;
  1492. }
  1493. /*
  1494.  * Interpret a long filename structure using the specified info level:
  1495.  *   level 1 for anything below NT1 protocol
  1496.  *   level 260 for NT1 protocol
  1497.  *
  1498.  * qname is filled with the decoded, and possibly translated, name
  1499.  * fattr receives decoded attributes.
  1500.  *
  1501.  * Bugs Noted:
  1502.  * (1) Win NT 4.0 appends a null byte to names and counts it in the length!
  1503.  */
  1504. static char *
  1505. smb_decode_long_dirent(struct smb_sb_info *server, char *p, int level,
  1506.        struct qstr *qname, struct smb_fattr *fattr)
  1507. {
  1508. char *result;
  1509. unsigned int len = 0;
  1510. __u16 date, time;
  1511. /*
  1512.  * SMB doesn't have a concept of inode numbers ...
  1513.  */
  1514. smb_init_dirent(server, fattr);
  1515. fattr->f_ino = 0; /* FIXME: do we need this? */
  1516. switch (level) {
  1517. case 1:
  1518. len = *((unsigned char *) p + 22);
  1519. qname->name = p + 23;
  1520. result = p + 24 + len;
  1521. date = WVAL(p, 0);
  1522. time = WVAL(p, 2);
  1523. fattr->f_ctime = date_dos2unix(server, date, time);
  1524. date = WVAL(p, 4);
  1525. time = WVAL(p, 6);
  1526. fattr->f_atime = date_dos2unix(server, date, time);
  1527. date = WVAL(p, 8);
  1528. time = WVAL(p, 10);
  1529. fattr->f_mtime = date_dos2unix(server, date, time);
  1530. fattr->f_size = DVAL(p, 12);
  1531. /* ULONG allocation size */
  1532. fattr->attr = WVAL(p, 20);
  1533. VERBOSE("info 1 at %p, len=%d, name=%.*sn",
  1534. p, len, len, qname->name);
  1535. break;
  1536. case 260:
  1537. result = p + WVAL(p, 0);
  1538. len = DVAL(p, 60);
  1539. if (len > 255) len = 255;
  1540. /* NT4 null terminates */
  1541. qname->name = p + 94;
  1542. if (len && qname->name[len-1] == '')
  1543. len--;
  1544. fattr->f_ctime = smb_ntutc2unixutc(LVAL(p, 8));
  1545. fattr->f_atime = smb_ntutc2unixutc(LVAL(p, 16));
  1546. fattr->f_mtime = smb_ntutc2unixutc(LVAL(p, 24));
  1547. /* change time (32) */
  1548. fattr->f_size = DVAL(p, 40);
  1549. /* alloc size (48) */
  1550. fattr->attr = DVAL(p, 56);
  1551. VERBOSE("info 260 at %p, len=%d, name=%.*sn",
  1552. p, len, len, qname->name);
  1553. break;
  1554. default:
  1555. PARANOIA("Unknown info level %dn", level);
  1556. result = p + WVAL(p, 0);
  1557. goto out;
  1558. }
  1559. smb_finish_dirent(server, fattr);
  1560. #if 0
  1561. /* FIXME: These only work for ascii chars, and recent smbmount doesn't
  1562.    allow the flag to be set anyway. Remove? */
  1563. switch (server->opt.case_handling) {
  1564. case SMB_CASE_UPPER:
  1565. str_upper(qname->name, len);
  1566. break;
  1567. case SMB_CASE_LOWER:
  1568. str_lower(qname->name, len);
  1569. break;
  1570. default:
  1571. break;
  1572. }
  1573. #endif
  1574. qname->len = server->convert(server->name_buf, SMB_MAXNAMELEN,
  1575.      qname->name, len,
  1576.      server->remote_nls, server->local_nls);
  1577. qname->name = server->name_buf;
  1578. out:
  1579. return result;
  1580. }
  1581. /* findfirst/findnext flags */
  1582. #define SMB_CLOSE_AFTER_FIRST (1<<0)
  1583. #define SMB_CLOSE_IF_END (1<<1)
  1584. #define SMB_REQUIRE_RESUME_KEY (1<<2)
  1585. #define SMB_CONTINUE_BIT (1<<3)
  1586. /*
  1587.  * Note: samba-2.0.7 (at least) has a very similar routine, cli_list, in
  1588.  * source/libsmb/clilist.c. When looking for smb bugs in the readdir code,
  1589.  * go there for advise.
  1590.  *
  1591.  * Bugs Noted:
  1592.  * (1) When using Info Level 1 Win NT 4.0 truncates directory listings 
  1593.  * for certain patterns of names and/or lengths. The breakage pattern
  1594.  * is completely reproducible and can be toggled by the creation of a
  1595.  * single file. (E.g. echo hi >foo breaks, rm -f foo works.)
  1596.  */
  1597. static int
  1598. smb_proc_readdir_long(struct file *filp, void *dirent, filldir_t filldir,
  1599.       struct smb_cache_control *ctl)
  1600. {
  1601. struct dentry *dir = filp->f_dentry;
  1602. struct smb_sb_info *server = server_from_dentry(dir);
  1603. struct qstr qname;
  1604. struct smb_fattr fattr;
  1605. unsigned char *p, *lastname;
  1606. char *mask, *param = server->temp_buf;
  1607. __u16 command;
  1608. int first, entries_seen;
  1609. /* Both NT and OS/2 accept info level 1 (but see note below). */
  1610. int info_level = 260;
  1611. const int max_matches = 512;
  1612. unsigned char *resp_data = NULL;
  1613. unsigned char *resp_param = NULL;
  1614. int resp_data_len = 0;
  1615. int resp_param_len = 0;
  1616. int ff_searchcount = 0;
  1617. int ff_eos = 0;
  1618. int ff_lastname = 0;
  1619. int ff_dir_handle = 0;
  1620. int loop_count = 0;
  1621. int mask_len, i, result;
  1622. static struct qstr star = { "*", 1, 0 };
  1623. /*
  1624.  * use info level 1 for older servers that don't do 260
  1625.  */
  1626. if (server->opt.protocol < SMB_PROTOCOL_NT1)
  1627. info_level = 1;
  1628. smb_lock_server(server);
  1629. /*
  1630.  * Encode the initial path
  1631.  */
  1632. mask = param + 12;
  1633. mask_len = smb_encode_path(server, mask, SMB_MAXNAMELEN+1, dir, &star);
  1634. if (mask_len < 0) {
  1635. result = mask_len;
  1636. goto unlock_return;
  1637. }
  1638. mask_len--; /* mask_len is strlen, not #bytes */
  1639. first = 1;
  1640. VERBOSE("starting mask_len=%d, mask=%sn", mask_len, mask);
  1641. result = 0;
  1642. entries_seen = 2;
  1643. ff_eos = 0;
  1644. while (ff_eos == 0) {
  1645. loop_count += 1;
  1646. if (loop_count > 10) {
  1647. printk(KERN_WARNING "smb_proc_readdir_long: "
  1648.        "Looping in FIND_NEXT??n");
  1649. result = -EIO;
  1650. break;
  1651. }
  1652. if (first != 0) {
  1653. command = TRANSACT2_FINDFIRST;
  1654. WSET(param, 0, aSYSTEM | aHIDDEN | aDIR);
  1655. WSET(param, 2, max_matches); /* max count */
  1656. WSET(param, 4, SMB_CLOSE_IF_END);
  1657. WSET(param, 6, info_level);
  1658. DSET(param, 8, 0);
  1659. } else {
  1660. command = TRANSACT2_FINDNEXT;
  1661. VERBOSE("handle=0x%X, lastname=%d, mask=%sn",
  1662. ff_dir_handle, ff_lastname, mask);
  1663. WSET(param, 0, ff_dir_handle); /* search handle */
  1664. WSET(param, 2, max_matches); /* max count */
  1665. WSET(param, 4, info_level);
  1666. DSET(param, 6, 0);
  1667. WSET(param, 10, SMB_CONTINUE_BIT|SMB_CLOSE_IF_END);
  1668. }
  1669. result = smb_trans2_request(server, command,
  1670.     0, NULL, 12 + mask_len + 1, param,
  1671.     &resp_data_len, &resp_data,
  1672.     &resp_param_len, &resp_param);
  1673. if (result < 0) {
  1674. if (smb_retry(server)) {
  1675. PARANOIA("error=%d, retryingn", result);
  1676. ctl->idx = -1; /* retry */
  1677. result = 0;
  1678. goto unlock_return;
  1679. }
  1680. PARANOIA("error=%d, breakingn", result);
  1681. break;
  1682. }
  1683. if (server->rcls == ERRSRV && server->err == ERRerror) {
  1684. /* a damn Win95 bug - sometimes it clags if you 
  1685.    ask it too fast */
  1686. current->state = TASK_INTERRUPTIBLE;
  1687. schedule_timeout(HZ/5);
  1688. continue;
  1689.                 }
  1690. if (server->rcls != 0) {
  1691. result = smb_errno(server);
  1692. PARANOIA("name=%s, result=%d, rcls=%d, err=%dn",
  1693.  mask, result, server->rcls, server->err);
  1694. break;
  1695. }
  1696. /* parse out some important return info */
  1697. if (first != 0) {
  1698. ff_dir_handle = WVAL(resp_param, 0);
  1699. ff_searchcount = WVAL(resp_param, 2);
  1700. ff_eos = WVAL(resp_param, 4);
  1701. ff_lastname = WVAL(resp_param, 8);
  1702. } else {
  1703. ff_searchcount = WVAL(resp_param, 0);
  1704. ff_eos = WVAL(resp_param, 2);
  1705. ff_lastname = WVAL(resp_param, 6);
  1706. }
  1707. if (ff_searchcount == 0)
  1708. break;
  1709. /*
  1710.  * We might need the lastname for continuations.
  1711.  *
  1712.  * Note that some servers (win95?) point to the filename and
  1713.  * others (NT4, Samba using NT1) to the dir entry. We assume
  1714.  * here that those who do not point to a filename do not need
  1715.  * this info to continue the listing.
  1716.  *
  1717.  * OS/2 needs this and talks infolevel 1
  1718.  * NetApps want lastname with infolevel 260
  1719.  *
  1720.  * Both are happy if we return the data they point to. So we do.
  1721.  */
  1722. mask_len = 0;
  1723. if (ff_lastname > 0 && ff_lastname < resp_data_len) {
  1724. lastname = resp_data + ff_lastname;
  1725. switch (info_level) {
  1726. case 260:
  1727. mask_len = resp_data_len - ff_lastname;
  1728. break;
  1729. case 1:
  1730. /* lastname points to a length byte */
  1731. mask_len = *lastname++;
  1732. if (ff_lastname + 1 + mask_len > resp_data_len)
  1733. mask_len = resp_data_len - ff_lastname - 1;
  1734. break;
  1735. }
  1736. /*
  1737.  * Update the mask string for the next message.
  1738.  */
  1739. if (mask_len < 0)
  1740. mask_len = 0;
  1741. if (mask_len > 255)
  1742. mask_len = 255;
  1743. if (mask_len)
  1744. strncpy(mask, lastname, mask_len);
  1745. }
  1746. mask_len = strnlen(mask, mask_len);
  1747. VERBOSE("new mask, len=%d@%d of %d, mask=%.*sn",
  1748. mask_len, ff_lastname, resp_data_len, mask_len, mask);
  1749. /* Now we are ready to parse smb directory entries. */
  1750. /* point to the data bytes */
  1751. p = resp_data;
  1752. for (i = 0; i < ff_searchcount; i++) {
  1753. /* make sure we stay within the buffer */
  1754. if (p >= resp_data + resp_data_len) {
  1755. printk(KERN_ERR "smb_proc_readdir_long: "
  1756.        "dirent pointer outside buffer! "
  1757.        "%p  %d@%p  %d@%pn",
  1758.        p, resp_data_len, resp_data,
  1759.        server->packet_size, server->packet);
  1760. result = -EIO; /* always a comm. error? */
  1761. goto unlock_return;
  1762. }
  1763. p = smb_decode_long_dirent(server, p, info_level,
  1764.    &qname, &fattr);
  1765. /* ignore . and .. from the server */
  1766. if (entries_seen == 2 && qname.name[0] == '.') {
  1767. if (qname.len == 1)
  1768. continue;
  1769. if (qname.name[1] == '.' && qname.len == 2)
  1770. continue;
  1771. }
  1772. if (!smb_fill_cache(filp, dirent, filldir, ctl, 
  1773.     &qname, &fattr))
  1774. ; /* stop reading? */
  1775. entries_seen++;
  1776. }
  1777. VERBOSE("received %d entries, eos=%dn", ff_searchcount,ff_eos);
  1778. first = 0;
  1779. loop_count = 0;
  1780. }
  1781. unlock_return:
  1782. smb_unlock_server(server);
  1783. return result;
  1784. }
  1785. int
  1786. smb_proc_readdir(struct file *filp, void *dirent, filldir_t filldir,
  1787.  struct smb_cache_control *ctl)
  1788. {
  1789. struct smb_sb_info *server = server_from_dentry(filp->f_dentry);
  1790. if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2)
  1791. return smb_proc_readdir_long(filp, dirent, filldir, ctl);
  1792. else
  1793. return smb_proc_readdir_short(filp, dirent, filldir, ctl);
  1794. }
  1795. /*
  1796.  * This version uses the trans2 TRANSACT2_FINDFIRST message 
  1797.  * to get the attribute data.
  1798.  * Note: called with the server locked.
  1799.  *
  1800.  * Bugs Noted:
  1801.  */
  1802. static int
  1803. smb_proc_getattr_ff(struct smb_sb_info *server, struct dentry *dentry,
  1804. struct smb_fattr *fattr)
  1805. {
  1806. char *param = server->temp_buf, *mask = param + 12;
  1807. __u16 date, time;
  1808. unsigned char *resp_data = NULL;
  1809. unsigned char *resp_param = NULL;
  1810. int resp_data_len = 0;
  1811. int resp_param_len = 0;
  1812. int mask_len, result;
  1813. retry:
  1814. mask_len = smb_encode_path(server, mask, SMB_MAXNAMELEN+1, dentry, NULL);
  1815. if (mask_len < 0) {
  1816. result = mask_len;
  1817. goto out;
  1818. }
  1819. VERBOSE("name=%s, len=%dn", mask, mask_len);
  1820. WSET(param, 0, aSYSTEM | aHIDDEN | aDIR);
  1821. WSET(param, 2, 1); /* max count */
  1822. WSET(param, 4, 1); /* close after this call */
  1823. WSET(param, 6, 1); /* info_level */
  1824. DSET(param, 8, 0);
  1825. result = smb_trans2_request(server, TRANSACT2_FINDFIRST,
  1826.     0, NULL, 12 + mask_len, param,
  1827.     &resp_data_len, &resp_data,
  1828.     &resp_param_len, &resp_param);
  1829. if (result < 0)
  1830. {
  1831. if (smb_retry(server))
  1832. goto retry;
  1833. goto out;
  1834. }
  1835. if (server->rcls != 0)
  1836. result = smb_errno(server);
  1837. #ifdef SMBFS_PARANOIA
  1838. if (result != -ENOENT)
  1839. PARANOIA("error for %s, rcls=%d, err=%dn",
  1840.  mask, server->rcls, server->err);
  1841. #endif
  1842. goto out;
  1843. }
  1844. /* Make sure we got enough data ... */
  1845. result = -EINVAL;
  1846. if (resp_data_len < 22 || WVAL(resp_param, 2) != 1)
  1847. {
  1848. PARANOIA("bad result for %s, len=%d, count=%dn",
  1849.  mask, resp_data_len, WVAL(resp_param, 2));
  1850. goto out;
  1851. }
  1852. /*
  1853.  * Decode the response into the fattr ...
  1854.  */
  1855. date = WVAL(resp_data, 0);
  1856. time = WVAL(resp_data, 2);
  1857. fattr->f_ctime = date_dos2unix(server, date, time);
  1858. date = WVAL(resp_data, 4);
  1859. time = WVAL(resp_data, 6);
  1860. fattr->f_atime = date_dos2unix(server, date, time);
  1861. date = WVAL(resp_data, 8);
  1862. time = WVAL(resp_data, 10);
  1863. fattr->f_mtime = date_dos2unix(server, date, time);
  1864. VERBOSE("name=%s, date=%x, time=%x, mtime=%ldn",
  1865. mask, date, time, fattr->f_mtime);
  1866. fattr->f_size = DVAL(resp_data, 12);
  1867. /* ULONG allocation size */
  1868. fattr->attr = WVAL(resp_data, 20);
  1869. result = 0;
  1870. out:
  1871. return result;
  1872. }
  1873. /*
  1874.  * Note: called with the server locked.
  1875.  */
  1876. static int
  1877. smb_proc_getattr_core(struct smb_sb_info *server, struct dentry *dir,
  1878.       struct smb_fattr *fattr)
  1879. {
  1880. int result;
  1881. char *p;
  1882.       retry:
  1883. p = smb_setup_header(server, SMBgetatr, 0, 0);
  1884. result = smb_simple_encode_path(server, &p, dir, NULL);
  1885. if (result < 0)
  1886. goto out;
  1887. smb_setup_bcc(server, p);
  1888. if ((result = smb_request_ok(server, SMBgetatr, 10, 0)) < 0)
  1889. {
  1890. if (smb_retry(server))
  1891. goto retry;
  1892. goto out;
  1893. }
  1894. fattr->attr    = WVAL(server->packet, smb_vwv0);
  1895. fattr->f_mtime = local2utc(server, DVAL(server->packet, smb_vwv1));
  1896. fattr->f_size  = DVAL(server->packet, smb_vwv3);
  1897. fattr->f_ctime = fattr->f_mtime; 
  1898. fattr->f_atime = fattr->f_mtime; 
  1899. #ifdef SMBFS_DEBUG_TIMESTAMP
  1900. printk("getattr_core: %s/%s, mtime=%ldn",
  1901.        DENTRY_PATH(dir), fattr->f_mtime);
  1902. #endif
  1903. result = 0;
  1904. out:
  1905. return result;
  1906. }
  1907. /*
  1908.  * Note: called with the server locked.
  1909.  *
  1910.  * Bugs Noted:
  1911.  * (1) Win 95 swaps the date and time fields in the standard info level.
  1912.  */
  1913. static int
  1914. smb_proc_getattr_trans2(struct smb_sb_info *server, struct dentry *dir,
  1915. struct smb_fattr *attr)
  1916. {
  1917. char *p, *param = server->temp_buf;
  1918. __u16 date, time;
  1919. int off_date = 0, off_time = 2;
  1920. unsigned char *resp_data = NULL;
  1921. unsigned char *resp_param = NULL;
  1922. int resp_data_len = 0;
  1923. int resp_param_len = 0;
  1924. int result;
  1925.       retry:
  1926. WSET(param, 0, 1); /* Info level SMB_INFO_STANDARD */
  1927. DSET(param, 2, 0);
  1928. result = smb_encode_path(server, param+6, SMB_MAXNAMELEN+1, dir, NULL);
  1929. if (result < 0)
  1930. goto out;
  1931. p = param + 6 + result;
  1932. result = smb_trans2_request(server, TRANSACT2_QPATHINFO,
  1933.     0, NULL, p - param, param,
  1934.     &resp_data_len, &resp_data,
  1935.     &resp_param_len, &resp_param);
  1936. if (result < 0)
  1937. {
  1938. if (smb_retry(server))
  1939. goto retry;
  1940. goto out;
  1941. }
  1942. if (server->rcls != 0)
  1943. {
  1944. VERBOSE("for %s: result=%d, rcls=%d, err=%dn",
  1945. &param[6], result, server->rcls, server->err);
  1946. result = smb_errno(server);
  1947. goto out;
  1948. }
  1949. result = -ENOENT;
  1950. if (resp_data_len < 22)
  1951. {
  1952. PARANOIA("not enough data for %s, len=%dn",
  1953.  &param[6], resp_data_len);
  1954. goto out;
  1955. }
  1956. /*
  1957.  * Kludge alert: Win 95 swaps the date and time field,
  1958.  * contrary to the CIFS docs and Win NT practice.
  1959.  */
  1960. if (server->mnt->flags & SMB_MOUNT_WIN95) {
  1961. off_date = 2;
  1962. off_time = 0;
  1963. }
  1964. date = WVAL(resp_data, off_date);
  1965. time = WVAL(resp_data, off_time);
  1966. attr->f_ctime = date_dos2unix(server, date, time);
  1967. date = WVAL(resp_data, 4 + off_date);
  1968. time = WVAL(resp_data, 4 + off_time);
  1969. attr->f_atime = date_dos2unix(server, date, time);
  1970. date = WVAL(resp_data, 8 + off_date);
  1971. time = WVAL(resp_data, 8 + off_time);
  1972. attr->f_mtime = date_dos2unix(server, date, time);
  1973. #ifdef SMBFS_DEBUG_TIMESTAMP
  1974. printk(KERN_DEBUG "getattr_trans2: %s/%s, date=%x, time=%x, mtime=%ldn",
  1975.        DENTRY_PATH(dir), date, time, attr->f_mtime);
  1976. #endif
  1977. attr->f_size = DVAL(resp_data, 12);
  1978. attr->attr = WVAL(resp_data, 20);
  1979. result = 0;
  1980. out:
  1981. return result;
  1982. }
  1983. /*
  1984.  * Note: called with the server locked
  1985.  */
  1986. static int
  1987. smb_proc_do_getattr(struct smb_sb_info *server, struct dentry *dir,
  1988.     struct smb_fattr *fattr)
  1989. {
  1990. int result;
  1991. struct inode *inode = dir->d_inode;
  1992. smb_init_dirent(server, fattr);
  1993. /*
  1994.  * Select whether to use core or trans2 getattr.
  1995.  * Win 95 appears to break with the trans2 getattr.
  1996.    */
  1997. if (server->opt.protocol < SMB_PROTOCOL_LANMAN2 ||
  1998.     (server->mnt->flags & (SMB_MOUNT_OLDATTR|SMB_MOUNT_WIN95)) ) {
  1999. result = smb_proc_getattr_core(server, dir, fattr);
  2000. } else {
  2001. if (server->mnt->flags & SMB_MOUNT_DIRATTR)
  2002. result = smb_proc_getattr_ff(server, dir, fattr);
  2003. else
  2004. result = smb_proc_getattr_trans2(server, dir, fattr);
  2005. }
  2006. /*
  2007.  * None of the getattr versions here can make win9x return the right
  2008.  * filesize if there are changes made to an open file.
  2009.  * A seek-to-end does return the right size, but we only need to do
  2010.  * that on files we have written.
  2011.  */
  2012. if (server->mnt->flags & SMB_MOUNT_WIN95 &&
  2013.     inode &&
  2014.     inode->u.smbfs_i.flags & SMB_F_LOCALWRITE &&
  2015.     smb_is_open(inode))
  2016. {
  2017. __u16 fileid = inode->u.smbfs_i.fileid;
  2018. fattr->f_size = smb_proc_seek(server, fileid, 2, 0);
  2019. }
  2020. smb_finish_dirent(server, fattr);
  2021. return result;
  2022. }
  2023. int
  2024. smb_proc_getattr(struct dentry *dir, struct smb_fattr *fattr)
  2025. {
  2026. struct smb_sb_info *server = server_from_dentry(dir);
  2027. int result;
  2028. smb_lock_server(server);
  2029. result = smb_proc_do_getattr(server, dir, fattr);
  2030. smb_unlock_server(server);
  2031. return result;
  2032. }
  2033. /*
  2034.  * Called with the server locked. Because of bugs in the
  2035.  * core protocol, we use this only to set attributes. See
  2036.  * smb_proc_settime() below for timestamp handling.
  2037.  *
  2038.  * Bugs Noted:
  2039.  * (1) If mtime is non-zero, both Win 3.1 and Win 95 fail
  2040.  * with an undocumented error (ERRDOS code 50). Setting
  2041.  * mtime to 0 allows the attributes to be set.
  2042.  * (2) The extra parameters following the name string aren't
  2043.  * in the CIFS docs, but seem to be necessary for operation.
  2044.  */
  2045. static int
  2046. smb_proc_setattr_core(struct smb_sb_info *server, struct dentry *dentry,
  2047.       __u16 attr)
  2048. {
  2049. char *p;
  2050. int result;
  2051.       retry:
  2052. p = smb_setup_header(server, SMBsetatr, 8, 0);
  2053. WSET(server->packet, smb_vwv0, attr);
  2054. DSET(server->packet, smb_vwv1, 0); /* mtime */
  2055. WSET(server->packet, smb_vwv3, 0); /* reserved values */
  2056. WSET(server->packet, smb_vwv4, 0);
  2057. WSET(server->packet, smb_vwv5, 0);
  2058. WSET(server->packet, smb_vwv6, 0);
  2059. WSET(server->packet, smb_vwv7, 0);
  2060. result = smb_simple_encode_path(server, &p, dentry, NULL);
  2061. if (result < 0)
  2062. goto out;
  2063. if (p + 2 > (char *)server->packet + server->packet_size) {
  2064. result = -ENAMETOOLONG;
  2065. goto out;
  2066. }
  2067. *p++ = 4;
  2068. *p++ = 0;
  2069. smb_setup_bcc(server, p);
  2070. result = smb_request_ok(server, SMBsetatr, 0, 0);
  2071. if (result < 0) {
  2072. if (smb_retry(server))
  2073. goto retry;
  2074. goto out;
  2075. }
  2076. result = 0;
  2077. out:
  2078. return result;
  2079. }
  2080. /*
  2081.  * Because of bugs in the trans2 setattr messages, we must set
  2082.  * attributes and timestamps separately. The core SMBsetatr
  2083.  * message seems to be the only reliable way to set attributes.
  2084.  */
  2085. int
  2086. smb_proc_setattr(struct dentry *dir, struct smb_fattr *fattr)
  2087. {
  2088. struct smb_sb_info *server = server_from_dentry(dir);
  2089. int result;
  2090. VERBOSE("setting %s/%s, open=%dn", 
  2091. DENTRY_PATH(dir), smb_is_open(dir->d_inode));
  2092. smb_lock_server(server);
  2093. result = smb_proc_setattr_core(server, dir, fattr->attr);
  2094. smb_unlock_server(server);
  2095. return result;
  2096. }
  2097. /*
  2098.  * Called with the server locked. Sets the timestamps for an
  2099.  * file open with write permissions.
  2100.  */
  2101. static int
  2102. smb_proc_setattr_ext(struct smb_sb_info *server,
  2103.       struct inode *inode, struct smb_fattr *fattr)
  2104. {
  2105. __u16 date, time;
  2106. int result;
  2107.       retry:
  2108. smb_setup_header(server, SMBsetattrE, 7, 0);
  2109. WSET(server->packet, smb_vwv0, inode->u.smbfs_i.fileid);
  2110. /* We don't change the creation time */
  2111. WSET(server->packet, smb_vwv1, 0);
  2112. WSET(server->packet, smb_vwv2, 0);
  2113. date_unix2dos(server, fattr->f_atime, &date, &time);
  2114. WSET(server->packet, smb_vwv3, date);
  2115. WSET(server->packet, smb_vwv4, time);
  2116. date_unix2dos(server, fattr->f_mtime, &date, &time);
  2117. WSET(server->packet, smb_vwv5, date);
  2118. WSET(server->packet, smb_vwv6, time);
  2119. #ifdef SMBFS_DEBUG_TIMESTAMP
  2120. printk(KERN_DEBUG "smb_proc_setattr_ext: date=%d, time=%d, mtime=%ldn",
  2121.        date, time, fattr->f_mtime);
  2122. #endif
  2123. result = smb_request_ok(server, SMBsetattrE, 0, 0);
  2124. if (result < 0) {
  2125. if (smb_retry(server))
  2126. goto retry;
  2127. goto out;
  2128. }
  2129. result = 0;
  2130. out:
  2131. return result;
  2132. }
  2133. /*
  2134.  * Note: called with the server locked.
  2135.  *
  2136.  * Bugs Noted:
  2137.  * (1) The TRANSACT2_SETPATHINFO message under Win NT 4.0 doesn't
  2138.  * set the file's attribute flags.
  2139.  */
  2140. static int
  2141. smb_proc_setattr_trans2(struct smb_sb_info *server,
  2142. struct dentry *dir, struct smb_fattr *fattr)
  2143. {
  2144. __u16 date, time;
  2145. char *p, *param = server->temp_buf;
  2146. unsigned char *resp_data = NULL;
  2147. unsigned char *resp_param = NULL;
  2148. int resp_data_len = 0;
  2149. int resp_param_len = 0;
  2150. int result;
  2151. char data[26];
  2152.       retry:
  2153. WSET(param, 0, 1); /* Info level SMB_INFO_STANDARD */
  2154. DSET(param, 2, 0);
  2155. result = smb_encode_path(server, param+6, SMB_MAXNAMELEN+1, dir, NULL);
  2156. if (result < 0)
  2157. goto out;
  2158. p = param + 6 + result;
  2159. WSET(data, 0, 0); /* creation time */
  2160. WSET(data, 2, 0);
  2161. date_unix2dos(server, fattr->f_atime, &date, &time);
  2162. WSET(data, 4, date);
  2163. WSET(data, 6, time);
  2164. date_unix2dos(server, fattr->f_mtime, &date, &time);
  2165. WSET(data, 8, date);
  2166. WSET(data, 10, time);
  2167. #ifdef SMBFS_DEBUG_TIMESTAMP
  2168. printk(KERN_DEBUG "setattr_trans2: %s/%s, date=%x, time=%x, mtime=%ldn", 
  2169.        DENTRY_PATH(dir), date, time, fattr->f_mtime);
  2170. #endif
  2171. DSET(data, 12, 0); /* size */
  2172. DSET(data, 16, 0); /* blksize */
  2173. WSET(data, 20, 0); /* attr */
  2174. DSET(data, 22, 0); /* ULONG EA size */
  2175. result = smb_trans2_request(server, TRANSACT2_SETPATHINFO,
  2176.     26, data, p - param, param,
  2177.     &resp_data_len, &resp_data,
  2178.     &resp_param_len, &resp_param);
  2179. if (result < 0)
  2180. {
  2181. if (smb_retry(server))
  2182. goto retry;
  2183. goto out;
  2184. }
  2185. result = 0;
  2186. if (server->rcls != 0)
  2187. result = smb_errno(server);
  2188. out:
  2189. return result;
  2190. }
  2191. /*
  2192.  * Set the modify and access timestamps for a file.
  2193.  *
  2194.  * Incredibly enough, in all of SMB there is no message to allow
  2195.  * setting both attributes and timestamps at once. 
  2196.  *
  2197.  * Bugs Noted:
  2198.  * (1) Win 95 doesn't support the TRANSACT2_SETFILEINFO message 
  2199.  * with info level 1 (INFO_STANDARD).
  2200.  * (2) Win 95 seems not to support setting directory timestamps.
  2201.  * (3) Under the core protocol apparently the only way to set the
  2202.  * timestamp is to open and close the file.
  2203.  */
  2204. int
  2205. smb_proc_settime(struct dentry *dentry, struct smb_fattr *fattr)
  2206. {
  2207. struct smb_sb_info *server = server_from_dentry(dentry);
  2208. struct inode *inode = dentry->d_inode;
  2209. int result;
  2210. VERBOSE("setting %s/%s, open=%dn",
  2211. DENTRY_PATH(dentry), smb_is_open(inode));
  2212. smb_lock_server(server);
  2213. /* setting the time on a Win95 server fails (tridge) */
  2214. if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2 && 
  2215.     !(server->mnt->flags & SMB_MOUNT_WIN95)) {
  2216. if (smb_is_open(inode) &&
  2217.     inode->u.smbfs_i.access != SMB_O_RDONLY)
  2218. result = smb_proc_setattr_ext(server, inode, fattr);
  2219. else
  2220. result = smb_proc_setattr_trans2(server, dentry, fattr);
  2221. } else {
  2222. /*
  2223.  * Fail silently on directories ... timestamp can't be set?
  2224.  */
  2225. result = 0;
  2226. if (S_ISREG(inode->i_mode)) {
  2227. /*
  2228.  * Set the mtime by opening and closing the file.
  2229.  * Note that the file is opened read-only, but this
  2230.  * still allows us to set the date (tridge)
  2231.  */
  2232. result = -EACCES;
  2233. if (!smb_is_open(inode))
  2234. smb_proc_open(server, dentry, SMB_O_RDONLY);
  2235. if (smb_is_open(inode)) {
  2236. inode->i_mtime = fattr->f_mtime;
  2237. result = smb_proc_close_inode(server, inode);
  2238. }
  2239. }
  2240. }
  2241. smb_unlock_server(server);
  2242. return result;
  2243. }
  2244. int
  2245. smb_proc_dskattr(struct super_block *sb, struct statfs *attr)
  2246. {
  2247. struct smb_sb_info *server = &(sb->u.smbfs_sb);
  2248. int result;
  2249. char *p;
  2250. long unit;
  2251. smb_lock_server(server);
  2252.       retry:
  2253. smb_setup_header(server, SMBdskattr, 0, 0);
  2254. if ((result = smb_request_ok(server, SMBdskattr, 5, 0)) < 0) {
  2255. if (smb_retry(server))
  2256. goto retry;
  2257. goto out;
  2258. }
  2259. p = SMB_VWV(server->packet);
  2260. unit = (WVAL(p, 2) * WVAL(p, 4)) >> SMB_ST_BLKSHIFT;
  2261. attr->f_blocks = WVAL(p, 0) * unit;
  2262. attr->f_bsize  = SMB_ST_BLKSIZE;
  2263. attr->f_bavail = attr->f_bfree = WVAL(p, 6) * unit;
  2264. result = 0;
  2265. out:
  2266. smb_unlock_server(server);
  2267. return result;
  2268. }