proc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:62k
源码类别:

Linux/Unix编程

开发平台:

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