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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  inode.c
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Volker Lendecke
  5.  *  Modified for big endian by J.F. Chadima and David S. Miller
  6.  *  Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
  7.  *  Modified 1998 Wolfram Pienkoss for NLS
  8.  *
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/module.h>
  12. #include <asm/system.h>
  13. #include <asm/uaccess.h>
  14. #include <asm/byteorder.h>
  15. #include <linux/sched.h>
  16. #include <linux/kernel.h>
  17. #include <linux/mm.h>
  18. #include <linux/string.h>
  19. #include <linux/stat.h>
  20. #include <linux/errno.h>
  21. #include <linux/locks.h>
  22. #include <linux/file.h>
  23. #include <linux/fcntl.h>
  24. #include <linux/slab.h>
  25. #include <linux/vmalloc.h>
  26. #include <linux/init.h>
  27. #include <linux/ncp_fs.h>
  28. #include "ncplib_kernel.h"
  29. static void ncp_delete_inode(struct inode *);
  30. static void ncp_put_super(struct super_block *);
  31. static int  ncp_statfs(struct super_block *, struct statfs *);
  32. static struct super_operations ncp_sops =
  33. {
  34. put_inode: force_delete,
  35. delete_inode: ncp_delete_inode,
  36. put_super: ncp_put_super,
  37. statfs: ncp_statfs,
  38. };
  39. extern struct dentry_operations ncp_root_dentry_operations;
  40. #ifdef CONFIG_NCPFS_EXTRAS
  41. extern struct address_space_operations ncp_symlink_aops;
  42. extern int ncp_symlink(struct inode*, struct dentry*, const char*);
  43. #endif
  44. /*
  45.  * Fill in the ncpfs-specific information in the inode.
  46.  */
  47. void ncp_update_inode(struct inode *inode, struct ncp_entry_info *nwinfo)
  48. {
  49. NCP_FINFO(inode)->DosDirNum = nwinfo->i.DosDirNum;
  50. NCP_FINFO(inode)->dirEntNum = nwinfo->i.dirEntNum;
  51. NCP_FINFO(inode)->volNumber = nwinfo->i.volNumber;
  52. #ifdef CONFIG_NCPFS_STRONG
  53. NCP_FINFO(inode)->nwattr = nwinfo->i.attributes;
  54. #endif
  55. NCP_FINFO(inode)->access = nwinfo->access;
  56. NCP_FINFO(inode)->server_file_handle = nwinfo->server_file_handle;
  57. memcpy(NCP_FINFO(inode)->file_handle, nwinfo->file_handle,
  58. sizeof(nwinfo->file_handle));
  59. DPRINTK("ncp_update_inode: updated %s, volnum=%d, dirent=%un",
  60. nwinfo->i.entryName, NCP_FINFO(inode)->volNumber,
  61. NCP_FINFO(inode)->dirEntNum);
  62. }
  63. void ncp_update_inode2(struct inode* inode, struct ncp_entry_info *nwinfo)
  64. {
  65. struct nw_info_struct *nwi = &nwinfo->i;
  66. struct ncp_server *server = NCP_SERVER(inode);
  67. if (!atomic_read(&NCP_FINFO(inode)->opened)) {
  68. #ifdef CONFIG_NCPFS_STRONG
  69. NCP_FINFO(inode)->nwattr = nwi->attributes;
  70. #endif
  71. if (nwi->attributes & aDIR) {
  72. inode->i_mode = server->m.dir_mode;
  73. inode->i_size = NCP_BLOCK_SIZE;
  74. } else {
  75. inode->i_mode = server->m.file_mode;
  76. inode->i_size = le32_to_cpu(nwi->dataStreamSize);
  77. #ifdef CONFIG_NCPFS_EXTRAS
  78. if ((server->m.flags & (NCP_MOUNT_EXTRAS|NCP_MOUNT_SYMLINKS)) && (nwi->attributes & aSHARED)) {
  79. switch (nwi->attributes & (aHIDDEN|aSYSTEM)) {
  80. case aHIDDEN:
  81. if (server->m.flags & NCP_MOUNT_SYMLINKS) {
  82. if ( /* (inode->i_size >= NCP_MIN_SYMLINK_SIZE)
  83.  && */ (inode->i_size <= NCP_MAX_SYMLINK_SIZE)) {
  84. inode->i_mode = (inode->i_mode & ~S_IFMT) | S_IFLNK;
  85. break;
  86. }
  87. }
  88. /* FALLTHROUGH */
  89. case 0:
  90. if (server->m.flags & NCP_MOUNT_EXTRAS)
  91. inode->i_mode |= 0444;
  92. break;
  93. case aSYSTEM:
  94. if (server->m.flags & NCP_MOUNT_EXTRAS)
  95. inode->i_mode |= (inode->i_mode >> 2) & 0111;
  96. break;
  97. /* case aSYSTEM|aHIDDEN: */
  98. default:
  99. /* reserved combination */
  100. break;
  101. }
  102. }
  103. #endif
  104. }
  105. if (nwi->attributes & aRONLY) inode->i_mode &= ~0222;
  106. }
  107. inode->i_blocks = (inode->i_size + NCP_BLOCK_SIZE - 1) >> NCP_BLOCK_SHIFT;
  108. inode->i_mtime = ncp_date_dos2unix(le16_to_cpu(nwi->modifyTime),
  109.    le16_to_cpu(nwi->modifyDate));
  110. inode->i_ctime = ncp_date_dos2unix(le16_to_cpu(nwi->creationTime),
  111.    le16_to_cpu(nwi->creationDate));
  112. inode->i_atime = ncp_date_dos2unix(0, le16_to_cpu(nwi->lastAccessDate));
  113. NCP_FINFO(inode)->DosDirNum = nwi->DosDirNum;
  114. NCP_FINFO(inode)->dirEntNum = nwi->dirEntNum;
  115. NCP_FINFO(inode)->volNumber = nwi->volNumber;
  116. }
  117. /*
  118.  * Fill in the inode based on the ncp_entry_info structure.
  119.  */
  120. static void ncp_set_attr(struct inode *inode, struct ncp_entry_info *nwinfo)
  121. {
  122. struct nw_info_struct *nwi = &nwinfo->i;
  123. struct ncp_server *server = NCP_SERVER(inode);
  124. if (nwi->attributes & aDIR) {
  125. inode->i_mode = server->m.dir_mode;
  126. /* for directories dataStreamSize seems to be some
  127.    Object ID ??? */
  128. inode->i_size = NCP_BLOCK_SIZE;
  129. } else {
  130. inode->i_mode = server->m.file_mode;
  131. inode->i_size = le32_to_cpu(nwi->dataStreamSize);
  132. #ifdef CONFIG_NCPFS_EXTRAS
  133. if ((server->m.flags & (NCP_MOUNT_EXTRAS|NCP_MOUNT_SYMLINKS)) 
  134.  && (nwi->attributes & aSHARED)) {
  135. switch (nwi->attributes & (aHIDDEN|aSYSTEM)) {
  136. case aHIDDEN:
  137. if (server->m.flags & NCP_MOUNT_SYMLINKS) {
  138. if (/* (inode->i_size >= NCP_MIN_SYMLINK_SIZE)
  139.  && */ (inode->i_size <= NCP_MAX_SYMLINK_SIZE)) {
  140. inode->i_mode = (inode->i_mode & ~S_IFMT) | S_IFLNK;
  141. break;
  142. }
  143. }
  144. /* FALLTHROUGH */
  145. case 0:
  146. if (server->m.flags & NCP_MOUNT_EXTRAS)
  147. inode->i_mode |= 0444;
  148. break;
  149. case aSYSTEM:
  150. if (server->m.flags & NCP_MOUNT_EXTRAS)
  151. inode->i_mode |= (inode->i_mode >> 2) & 0111;
  152. break;
  153. /* case aSYSTEM|aHIDDEN: */
  154. default:
  155. /* reserved combination */
  156. break;
  157. }
  158. }
  159. #endif
  160. }
  161. if (nwi->attributes & aRONLY) inode->i_mode &= ~0222;
  162. DDPRINTK("ncp_read_inode: inode->i_mode = %un", inode->i_mode);
  163. inode->i_nlink = 1;
  164. inode->i_uid = server->m.uid;
  165. inode->i_gid = server->m.gid;
  166. inode->i_rdev = 0;
  167. inode->i_blksize = NCP_BLOCK_SIZE;
  168. inode->i_blocks = (inode->i_size + NCP_BLOCK_SIZE - 1) >> NCP_BLOCK_SHIFT;
  169. inode->i_mtime = ncp_date_dos2unix(le16_to_cpu(nwi->modifyTime),
  170.       le16_to_cpu(nwi->modifyDate));
  171. inode->i_ctime = ncp_date_dos2unix(le16_to_cpu(nwi->creationTime),
  172.         le16_to_cpu(nwi->creationDate));
  173. inode->i_atime = ncp_date_dos2unix(0,
  174.    le16_to_cpu(nwi->lastAccessDate));
  175. ncp_update_inode(inode, nwinfo);
  176. }
  177. static struct inode_operations ncp_symlink_inode_operations = {
  178. readlink: page_readlink,
  179. follow_link: page_follow_link,
  180. setattr: ncp_notify_change,
  181. };
  182. /*
  183.  * Get a new inode.
  184.  */
  185. struct inode * 
  186. ncp_iget(struct super_block *sb, struct ncp_entry_info *info)
  187. {
  188. struct inode *inode;
  189. if (info == NULL) {
  190. printk(KERN_ERR "ncp_iget: info is NULLn");
  191. return NULL;
  192. }
  193. inode = new_inode(sb);
  194. if (inode) {
  195. init_MUTEX(&NCP_FINFO(inode)->open_sem);
  196. atomic_set(&NCP_FINFO(inode)->opened, info->opened);
  197. inode->i_ino = info->ino;
  198. ncp_set_attr(inode, info);
  199. if (S_ISREG(inode->i_mode)) {
  200. inode->i_op = &ncp_file_inode_operations;
  201. inode->i_fop = &ncp_file_operations;
  202. } else if (S_ISDIR(inode->i_mode)) {
  203. inode->i_op = &ncp_dir_inode_operations;
  204. inode->i_fop = &ncp_dir_operations;
  205. #ifdef CONFIG_NCPFS_EXTRAS
  206. } else if (S_ISLNK(inode->i_mode)) {
  207. inode->i_op = &ncp_symlink_inode_operations;
  208. inode->i_data.a_ops = &ncp_symlink_aops;
  209. #endif
  210. }
  211. insert_inode_hash(inode);
  212. } else
  213. printk(KERN_ERR "ncp_iget: iget failed!n");
  214. return inode;
  215. }
  216. static void
  217. ncp_delete_inode(struct inode *inode)
  218. {
  219. if (S_ISDIR(inode->i_mode)) {
  220. DDPRINTK("ncp_delete_inode: put directory %ldn", inode->i_ino);
  221. }
  222. if (ncp_make_closed(inode) != 0) {
  223. /* We can't do anything but complain. */
  224. printk(KERN_ERR "ncp_delete_inode: could not closen");
  225. }
  226. clear_inode(inode);
  227. }
  228. struct super_block *
  229. ncp_read_super(struct super_block *sb, void *raw_data, int silent)
  230. {
  231. struct ncp_mount_data_kernel data;
  232. struct ncp_server *server;
  233. struct file *ncp_filp;
  234. struct inode *root_inode;
  235. struct inode *sock_inode;
  236. struct socket *sock;
  237. int error;
  238. int default_bufsize;
  239. #ifdef CONFIG_NCPFS_PACKET_SIGNING
  240. int options;
  241. #endif
  242. struct ncp_entry_info finfo;
  243. if (raw_data == NULL)
  244. goto out_no_data;
  245. switch (*(int*)raw_data) {
  246. case NCP_MOUNT_VERSION:
  247. {
  248. struct ncp_mount_data* md = (struct ncp_mount_data*)raw_data;
  249. data.flags = md->flags;
  250. data.int_flags = NCP_IMOUNT_LOGGEDIN_POSSIBLE;
  251. data.mounted_uid = md->mounted_uid;
  252. data.wdog_pid = md->wdog_pid;
  253. data.ncp_fd = md->ncp_fd;
  254. data.time_out = md->time_out;
  255. data.retry_count = md->retry_count;
  256. data.uid = md->uid;
  257. data.gid = md->gid;
  258. data.file_mode = md->file_mode;
  259. data.dir_mode = md->dir_mode;
  260. memcpy(data.mounted_vol, md->mounted_vol,
  261. NCP_VOLNAME_LEN+1);
  262. }
  263. break;
  264. case NCP_MOUNT_VERSION_V4:
  265. {
  266. struct ncp_mount_data_v4* md = (struct ncp_mount_data_v4*)raw_data;
  267. data.flags = md->flags;
  268. data.int_flags = 0;
  269. data.mounted_uid = md->mounted_uid;
  270. data.wdog_pid = md->wdog_pid;
  271. data.ncp_fd = md->ncp_fd;
  272. data.time_out = md->time_out;
  273. data.retry_count = md->retry_count;
  274. data.uid = md->uid;
  275. data.gid = md->gid;
  276. data.file_mode = md->file_mode;
  277. data.dir_mode = md->dir_mode;
  278. data.mounted_vol[0] = 0;
  279. }
  280. break;
  281. default:
  282. goto out_bad_mount;
  283. }
  284. ncp_filp = fget(data.ncp_fd);
  285. if (!ncp_filp)
  286. goto out_bad_file;
  287. sock_inode = ncp_filp->f_dentry->d_inode;
  288. if (!S_ISSOCK(sock_inode->i_mode))
  289. goto out_bad_file2;
  290. sock = &sock_inode->u.socket_i;
  291. if (!sock)
  292. goto out_bad_file2;
  293. if (sock->type == SOCK_STREAM)
  294. default_bufsize = 61440;
  295. else
  296. default_bufsize = 1024;
  297. sb->s_blocksize = 1024; /* Eh...  Is this correct? */
  298. sb->s_blocksize_bits = 10;
  299. sb->s_magic = NCP_SUPER_MAGIC;
  300. sb->s_op = &ncp_sops;
  301. server = NCP_SBP(sb);
  302. memset(server, 0, sizeof(*server));
  303. server->ncp_filp = ncp_filp;
  304. /* server->lock = 0; */
  305. init_MUTEX(&server->sem);
  306. server->packet = NULL;
  307. /* server->buffer_size = 0; */
  308. /* server->conn_status = 0; */
  309. /* server->root_dentry = NULL; */
  310. /* server->root_setuped = 0; */
  311. #ifdef CONFIG_NCPFS_PACKET_SIGNING
  312. /* server->sign_wanted = 0; */
  313. /* server->sign_active = 0; */
  314. #endif
  315. server->auth.auth_type = NCP_AUTH_NONE;
  316. /* server->auth.object_name_len = 0; */
  317. /* server->auth.object_name = NULL; */
  318. /* server->auth.object_type = 0; */
  319. /* server->priv.len = 0; */
  320. /* server->priv.data = NULL; */
  321. server->m = data;
  322. /* Althought anything producing this is buggy, it happens
  323.    now because of PATH_MAX changes.. */
  324. if (server->m.time_out < 1) {
  325. server->m.time_out = 10;
  326. printk(KERN_INFO "You need to recompile your ncpfs utils..n");
  327. }
  328. server->m.time_out = server->m.time_out * HZ / 100;
  329. server->m.file_mode = (server->m.file_mode &
  330.        (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG;
  331. server->m.dir_mode = (server->m.dir_mode &
  332.       (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFDIR;
  333. #ifdef CONFIG_NCPFS_NLS
  334. /* load the default NLS charsets */
  335. server->nls_vol = load_nls_default();
  336. server->nls_io = load_nls_default();
  337. #endif /* CONFIG_NCPFS_NLS */
  338. server->dentry_ttl = 0; /* no caching */
  339. #undef NCP_PACKET_SIZE
  340. #define NCP_PACKET_SIZE 65536
  341. server->packet_size = NCP_PACKET_SIZE;
  342. server->packet = vmalloc(NCP_PACKET_SIZE);
  343. if (server->packet == NULL)
  344. goto out_no_packet;
  345. ncp_lock_server(server);
  346. error = ncp_connect(server);
  347. ncp_unlock_server(server);
  348. if (error < 0)
  349. goto out_no_connect;
  350. DPRINTK("ncp_read_super: NCP_SBP(sb) = %xn", (int) NCP_SBP(sb));
  351. #ifdef CONFIG_NCPFS_PACKET_SIGNING
  352. if (ncp_negotiate_size_and_options(server, default_bufsize,
  353. NCP_DEFAULT_OPTIONS, &(server->buffer_size), &options) == 0)
  354. {
  355. if (options != NCP_DEFAULT_OPTIONS)
  356. {
  357. if (ncp_negotiate_size_and_options(server, 
  358. default_bufsize,
  359. options & 2, 
  360. &(server->buffer_size), &options) != 0)
  361. {
  362. goto out_no_bufsize;
  363. }
  364. }
  365. if (options & 2)
  366. server->sign_wanted = 1;
  367. }
  368. else 
  369. #endif /* CONFIG_NCPFS_PACKET_SIGNING */
  370. if (ncp_negotiate_buffersize(server, default_bufsize,
  371.         &(server->buffer_size)) != 0)
  372. goto out_no_bufsize;
  373. DPRINTK("ncpfs: bufsize = %dn", server->buffer_size);
  374. memset(&finfo, 0, sizeof(finfo));
  375. finfo.i.attributes = aDIR;
  376. finfo.i.dataStreamSize = NCP_BLOCK_SIZE;
  377. finfo.i.dirEntNum = 0;
  378. finfo.i.DosDirNum = 0;
  379. #ifdef CONFIG_NCPFS_SMALLDOS
  380. finfo.i.NSCreator = NW_NS_DOS;
  381. #endif
  382. finfo.i.volNumber = NCP_NUMBER_OF_VOLUMES + 1; /* illegal volnum */
  383. /* set dates of mountpoint to Jan 1, 1986; 00:00 */
  384. finfo.i.creationTime = finfo.i.modifyTime
  385. = cpu_to_le16(0x0000);
  386. finfo.i.creationDate = finfo.i.modifyDate
  387. = finfo.i.lastAccessDate
  388. = cpu_to_le16(0x0C21);
  389. finfo.i.nameLen = 0;
  390. finfo.i.entryName[0] = '';
  391. finfo.opened = 0;
  392. finfo.ino = 2; /* tradition */
  393. server->name_space[finfo.i.volNumber] = NW_NS_DOS;
  394.         root_inode = ncp_iget(sb, &finfo);
  395.         if (!root_inode)
  396. goto out_no_root;
  397. DPRINTK("ncp_read_super: root vol=%dn", NCP_FINFO(root_inode)->volNumber);
  398. sb->s_root = d_alloc_root(root_inode);
  399.         if (!sb->s_root)
  400. goto out_no_root;
  401. sb->s_root->d_op = &ncp_root_dentry_operations;
  402. return sb;
  403. out_no_root:
  404. printk(KERN_ERR "ncp_read_super: get root inode failedn");
  405. iput(root_inode);
  406. goto out_disconnect;
  407. out_no_bufsize:
  408. printk(KERN_ERR "ncp_read_super: could not get bufsizen");
  409. out_disconnect:
  410. ncp_lock_server(server);
  411. ncp_disconnect(server);
  412. ncp_unlock_server(server);
  413. goto out_free_packet;
  414. out_no_connect:
  415. printk(KERN_ERR "ncp_read_super: Failed connection, error=%dn", error);
  416. out_free_packet:
  417. vfree(server->packet);
  418. goto out_free_server;
  419. out_no_packet:
  420. printk(KERN_ERR "ncp_read_super: could not alloc packetn");
  421. out_free_server:
  422. #ifdef CONFIG_NCPFS_NLS
  423. unload_nls(server->nls_io);
  424. unload_nls(server->nls_vol);
  425. #endif
  426. /* 23/12/1998 Marcin Dalecki <dalecki@cs.net.pl>:
  427.  * 
  428.  * The previously used put_filp(ncp_filp); was bogous, since
  429.  * it doesn't proper unlocking.
  430.  */
  431. fput(ncp_filp);
  432. goto out;
  433. out_bad_file2:
  434. fput(ncp_filp);
  435. out_bad_file:
  436. printk(KERN_ERR "ncp_read_super: invalid ncp socketn");
  437. goto out;
  438. out_bad_mount:
  439. printk(KERN_INFO "ncp_read_super: kernel requires mount version %dn",
  440. NCP_MOUNT_VERSION);
  441. goto out;
  442. out_no_data:
  443. printk(KERN_ERR "ncp_read_super: missing data argumentn");
  444. out:
  445. return NULL;
  446. }
  447. static void ncp_put_super(struct super_block *sb)
  448. {
  449. struct ncp_server *server = NCP_SBP(sb);
  450. ncp_lock_server(server);
  451. ncp_disconnect(server);
  452. ncp_unlock_server(server);
  453. #ifdef CONFIG_NCPFS_NLS
  454. /* unload the NLS charsets */
  455. if (server->nls_vol)
  456. {
  457. unload_nls(server->nls_vol);
  458. server->nls_vol = NULL;
  459. }
  460. if (server->nls_io)
  461. {
  462. unload_nls(server->nls_io);
  463. server->nls_io = NULL;
  464. }
  465. #endif /* CONFIG_NCPFS_NLS */
  466. fput(server->ncp_filp);
  467. kill_proc(server->m.wdog_pid, SIGTERM, 1);
  468. if (server->priv.data) 
  469. ncp_kfree_s(server->priv.data, server->priv.len);
  470. if (server->auth.object_name)
  471. ncp_kfree_s(server->auth.object_name, server->auth.object_name_len);
  472. vfree(server->packet);
  473. }
  474. static int ncp_statfs(struct super_block *sb, struct statfs *buf)
  475. {
  476. /* We cannot say how much disk space is left on a mounted
  477.    NetWare Server, because free space is distributed over
  478.    volumes, and the current user might have disk quotas. So
  479.    free space is not that simple to determine. Our decision
  480.    here is to err conservatively. */
  481. buf->f_type = NCP_SUPER_MAGIC;
  482. buf->f_bsize = NCP_BLOCK_SIZE;
  483. buf->f_blocks = 0;
  484. buf->f_bfree = 0;
  485. buf->f_bavail = 0;
  486. buf->f_namelen = 12;
  487. return 0;
  488. }
  489. int ncp_notify_change(struct dentry *dentry, struct iattr *attr)
  490. {
  491. struct inode *inode = dentry->d_inode;
  492. int result = 0;
  493. int info_mask;
  494. struct nw_modify_dos_info info;
  495. struct ncp_server *server;
  496. result = -EIO;
  497. server = NCP_SERVER(inode);
  498. if ((!server) || !ncp_conn_valid(server))
  499. goto out;
  500. /* ageing the dentry to force validation */
  501. ncp_age_dentry(server, dentry);
  502. result = inode_change_ok(inode, attr);
  503. if (result < 0)
  504. goto out;
  505. result = -EPERM;
  506. if (((attr->ia_valid & ATTR_UID) &&
  507.      (attr->ia_uid != server->m.uid)))
  508. goto out;
  509. if (((attr->ia_valid & ATTR_GID) &&
  510.      (attr->ia_gid != server->m.gid)))
  511. goto out;
  512. if (((attr->ia_valid & ATTR_MODE) &&
  513.      (attr->ia_mode &
  514.       ~(S_IFREG | S_IFDIR | S_IRWXU | S_IRWXG | S_IRWXO))))
  515. goto out;
  516. info_mask = 0;
  517. memset(&info, 0, sizeof(info));
  518. #if 1 
  519.         if ((attr->ia_valid & ATTR_MODE) != 0)
  520.         {
  521.                 if (S_ISDIR(inode->i_mode)) {
  522.                  umode_t newmode;
  523.                  info_mask |= DM_ATTRIBUTES;
  524.                  newmode = attr->ia_mode;
  525.                  newmode &= NCP_SERVER(inode)->m.dir_mode;
  526.                  if (newmode & 0222)
  527.                  info.attributes &= ~(aRONLY|aRENAMEINHIBIT|aDELETEINHIBIT);
  528.                  else
  529. info.attributes |=  (aRONLY|aRENAMEINHIBIT|aDELETEINHIBIT);
  530.                 } else if (!S_ISREG(inode->i_mode))
  531.                 {
  532.                         return -EPERM;
  533.                 }
  534.                 else
  535.                 {
  536. umode_t newmode;
  537. #ifdef CONFIG_NCPFS_EXTRAS
  538. int extras;
  539. extras = server->m.flags & NCP_MOUNT_EXTRAS;
  540. #endif
  541.                         info_mask |= DM_ATTRIBUTES;
  542.                         newmode=attr->ia_mode;
  543. #ifdef CONFIG_NCPFS_EXTRAS
  544. if (!extras)
  545. #endif
  546.                         newmode &= server->m.file_mode;
  547.                         if (newmode & 0222) /* any write bit set */
  548.                         {
  549.                                 info.attributes &= ~(aRONLY|aRENAMEINHIBIT|aDELETEINHIBIT);
  550.                         }
  551.                         else
  552.                         {
  553.                                 info.attributes |=  (aRONLY|aRENAMEINHIBIT|aDELETEINHIBIT);
  554.                         }
  555. #ifdef CONFIG_NCPFS_EXTRAS
  556. if (extras) {
  557. if (newmode & 0111) /* any execute bit set */
  558. info.attributes |= aSHARED | aSYSTEM;
  559. /* read for group/world and not in default file_mode */
  560. else if (newmode & ~server->m.file_mode & 0444)
  561. info.attributes |= aSHARED;
  562. }
  563. #endif
  564.                 }
  565.         }
  566. #endif
  567. if ((attr->ia_valid & ATTR_CTIME) != 0) {
  568. info_mask |= (DM_CREATE_TIME | DM_CREATE_DATE);
  569. ncp_date_unix2dos(attr->ia_ctime,
  570.      &(info.creationTime), &(info.creationDate));
  571. info.creationTime = le16_to_cpu(info.creationTime);
  572. info.creationDate = le16_to_cpu(info.creationDate);
  573. }
  574. if ((attr->ia_valid & ATTR_MTIME) != 0) {
  575. info_mask |= (DM_MODIFY_TIME | DM_MODIFY_DATE);
  576. ncp_date_unix2dos(attr->ia_mtime,
  577.   &(info.modifyTime), &(info.modifyDate));
  578. info.modifyTime = le16_to_cpu(info.modifyTime);
  579. info.modifyDate = le16_to_cpu(info.modifyDate);
  580. }
  581. if ((attr->ia_valid & ATTR_ATIME) != 0) {
  582. __u16 dummy;
  583. info_mask |= (DM_LAST_ACCESS_DATE);
  584. ncp_date_unix2dos(attr->ia_ctime,
  585.   &(dummy), &(info.lastAccessDate));
  586. info.lastAccessDate = le16_to_cpu(info.lastAccessDate);
  587. }
  588. if (info_mask != 0) {
  589. result = ncp_modify_file_or_subdir_dos_info(NCP_SERVER(inode),
  590.       inode, info_mask, &info);
  591. if (result != 0) {
  592. result = -EACCES;
  593. if (info_mask == (DM_CREATE_TIME | DM_CREATE_DATE)) {
  594. /* NetWare seems not to allow this. I
  595.    do not know why. So, just tell the
  596.    user everything went fine. This is
  597.    a terrible hack, but I do not know
  598.    how to do this correctly. */
  599. result = 0;
  600. }
  601. }
  602. #ifdef CONFIG_NCPFS_STRONG
  603. if ((!result) && (info_mask & DM_ATTRIBUTES))
  604. NCP_FINFO(inode)->nwattr = info.attributes;
  605. #endif
  606. }
  607. if ((attr->ia_valid & ATTR_SIZE) != 0) {
  608. int written;
  609. DPRINTK("ncpfs: trying to change size to %ldn",
  610. attr->ia_size);
  611. if ((result = ncp_make_open(inode, O_WRONLY)) < 0) {
  612. return -EACCES;
  613. }
  614. ncp_write_kernel(NCP_SERVER(inode), NCP_FINFO(inode)->file_handle,
  615.   attr->ia_size, 0, "", &written);
  616. /* According to ndir, the changes only take effect after
  617.    closing the file */
  618. ncp_inode_close(inode);
  619. result = ncp_make_closed(inode);
  620. if (!result)
  621. result = vmtruncate(inode, attr->ia_size);
  622. }
  623. out:
  624. return result;
  625. }
  626. #ifdef DEBUG_NCP_MALLOC
  627. int ncp_malloced;
  628. int ncp_current_malloced;
  629. #endif
  630. static DECLARE_FSTYPE(ncp_fs_type, "ncpfs", ncp_read_super, 0);
  631. static int __init init_ncp_fs(void)
  632. {
  633. DPRINTK("ncpfs: init_module calledn");
  634. #ifdef DEBUG_NCP_MALLOC
  635. ncp_malloced = 0;
  636. ncp_current_malloced = 0;
  637. #endif
  638. return register_filesystem(&ncp_fs_type);
  639. }
  640. static void __exit exit_ncp_fs(void)
  641. {
  642. DPRINTK("ncpfs: cleanup_module calledn");
  643. unregister_filesystem(&ncp_fs_type);
  644. #ifdef DEBUG_NCP_MALLOC
  645. PRINTK("ncp_malloced: %dn", ncp_malloced);
  646. PRINTK("ncp_current_malloced: %dn", ncp_current_malloced);
  647. #endif
  648. }
  649. EXPORT_NO_SYMBOLS;
  650. module_init(init_ncp_fs)
  651. module_exit(exit_ncp_fs)
  652. MODULE_LICENSE("GPL");