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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/nfs/inode.c
  3.  *
  4.  *  Copyright (C) 1992  Rick Sladkey
  5.  *
  6.  *  nfs inode and superblock handling functions
  7.  *
  8.  *  Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some
  9.  *  experimental NFS changes. Modularisation taken straight from SYS5 fs.
  10.  *
  11.  *  Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
  12.  *  J.S.Peatfield@damtp.cam.ac.uk
  13.  *
  14.  */
  15. #include <linux/config.h>
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/sched.h>
  19. #include <linux/kernel.h>
  20. #include <linux/mm.h>
  21. #include <linux/string.h>
  22. #include <linux/stat.h>
  23. #include <linux/errno.h>
  24. #include <linux/locks.h>
  25. #include <linux/unistd.h>
  26. #include <linux/sunrpc/clnt.h>
  27. #include <linux/sunrpc/stats.h>
  28. #include <linux/nfs_fs.h>
  29. #include <linux/nfs_mount.h>
  30. #include <linux/nfs_flushd.h>
  31. #include <linux/lockd/bind.h>
  32. #include <linux/smp_lock.h>
  33. #include <linux/seq_file.h>
  34. #include <asm/system.h>
  35. #include <asm/uaccess.h>
  36. #define CONFIG_NFS_SNAPSHOT 1
  37. #define NFSDBG_FACILITY NFSDBG_VFS
  38. #define NFS_PARANOIA 1
  39. static struct inode * __nfs_fhget(struct super_block *, struct nfs_fh *, struct nfs_fattr *);
  40. void nfs_zap_caches(struct inode *);
  41. static void nfs_invalidate_inode(struct inode *);
  42. static void nfs_read_inode(struct inode *);
  43. static void nfs_write_inode(struct inode *,int);
  44. static void nfs_delete_inode(struct inode *);
  45. static void nfs_put_super(struct super_block *);
  46. static void nfs_clear_inode(struct inode *);
  47. static void nfs_umount_begin(struct super_block *);
  48. static int  nfs_statfs(struct super_block *, struct statfs *);
  49. static int  nfs_show_options(struct seq_file *, struct vfsmount *);
  50. static struct super_operations nfs_sops = { 
  51. read_inode: nfs_read_inode,
  52. write_inode: nfs_write_inode,
  53. delete_inode: nfs_delete_inode,
  54. put_super: nfs_put_super,
  55. statfs: nfs_statfs,
  56. clear_inode: nfs_clear_inode,
  57. umount_begin: nfs_umount_begin,
  58. show_options: nfs_show_options,
  59. };
  60. /*
  61.  * RPC cruft for NFS
  62.  */
  63. struct rpc_stat nfs_rpcstat = { &nfs_program };
  64. static struct rpc_version * nfs_version[] = {
  65. NULL,
  66. NULL,
  67. &nfs_version2,
  68. #ifdef CONFIG_NFS_V3
  69. &nfs_version3,
  70. #endif
  71. };
  72. struct rpc_program nfs_program = {
  73. "nfs",
  74. NFS_PROGRAM,
  75. sizeof(nfs_version) / sizeof(nfs_version[0]),
  76. nfs_version,
  77. &nfs_rpcstat,
  78. };
  79. static inline unsigned long
  80. nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
  81. {
  82. return nfs_fileid_to_ino_t(fattr->fileid);
  83. }
  84. /*
  85.  * The "read_inode" function doesn't actually do anything:
  86.  * the real data is filled in later in nfs_fhget. Here we
  87.  * just mark the cache times invalid, and zero out i_mode
  88.  * (the latter makes "nfs_refresh_inode" do the right thing
  89.  * wrt pipe inodes)
  90.  */
  91. static void
  92. nfs_read_inode(struct inode * inode)
  93. {
  94. inode->i_blksize = inode->i_sb->s_blocksize;
  95. inode->i_mode = 0;
  96. inode->i_rdev = 0;
  97. /* We can't support UPDATE_ATIME(), since the server will reset it */
  98. inode->i_flags |= S_NOATIME;
  99. INIT_LIST_HEAD(&inode->u.nfs_i.read);
  100. INIT_LIST_HEAD(&inode->u.nfs_i.dirty);
  101. INIT_LIST_HEAD(&inode->u.nfs_i.commit);
  102. INIT_LIST_HEAD(&inode->u.nfs_i.writeback);
  103. NFS_CACHEINV(inode);
  104. NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
  105. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  106. }
  107. static void
  108. nfs_write_inode(struct inode *inode, int sync)
  109. {
  110. int flags = sync ? FLUSH_WAIT : 0;
  111. nfs_sync_file(inode, NULL, 0, 0, flags);
  112. }
  113. static void
  114. nfs_delete_inode(struct inode * inode)
  115. {
  116. dprintk("NFS: delete_inode(%x/%ld)n", inode->i_dev, inode->i_ino);
  117. /*
  118.  * The following can never actually happen...
  119.  */
  120. if (nfs_have_writebacks(inode) || nfs_have_read(inode)) {
  121. printk(KERN_ERR "nfs_delete_inode: inode %ld has pending RPC requestsn", inode->i_ino);
  122. }
  123. clear_inode(inode);
  124. }
  125. /*
  126.  * For the moment, the only task for the NFS clear_inode method is to
  127.  * release the mmap credential
  128.  */
  129. static void
  130. nfs_clear_inode(struct inode *inode)
  131. {
  132. struct rpc_cred *cred = NFS_I(inode)->mm_cred;
  133. if (cred)
  134. put_rpccred(cred);
  135. }
  136. void
  137. nfs_put_super(struct super_block *sb)
  138. {
  139. struct nfs_server *server = &sb->u.nfs_sb.s_server;
  140. struct rpc_clnt *rpc;
  141. /*
  142.  * First get rid of the request flushing daemon.
  143.  * Relies on rpc_shutdown_client() waiting on all
  144.  * client tasks to finish.
  145.  */
  146. nfs_reqlist_exit(server);
  147. if ((rpc = server->client) != NULL)
  148. rpc_shutdown_client(rpc);
  149. nfs_reqlist_free(server);
  150. if (!(server->flags & NFS_MOUNT_NONLM))
  151. lockd_down(); /* release rpc.lockd */
  152. rpciod_down(); /* release rpciod */
  153. kfree(server->hostname);
  154. }
  155. void
  156. nfs_umount_begin(struct super_block *sb)
  157. {
  158. struct nfs_server *server = &sb->u.nfs_sb.s_server;
  159. struct rpc_clnt *rpc;
  160. /* -EIO all pending I/O */
  161. if ((rpc = server->client) != NULL)
  162. rpc_killall_tasks(rpc);
  163. }
  164. static inline unsigned long
  165. nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
  166. {
  167. /* make sure blocksize is a power of two */
  168. if ((bsize & (bsize - 1)) || nrbitsp) {
  169. unsigned char nrbits;
  170. for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
  171. ;
  172. bsize = 1 << nrbits;
  173. if (nrbitsp)
  174. *nrbitsp = nrbits;
  175. }
  176. return bsize;
  177. }
  178. /*
  179.  * Calculate the number of 512byte blocks used.
  180.  */
  181. static inline unsigned long
  182. nfs_calc_block_size(u64 tsize)
  183. {
  184. loff_t used = (tsize + 511) >> 9;
  185. return (used > ULONG_MAX) ? ULONG_MAX : used;
  186. }
  187. /*
  188.  * Compute and set NFS server blocksize
  189.  */
  190. static inline unsigned long
  191. nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
  192. {
  193. if (bsize < 1024)
  194. bsize = NFS_DEF_FILE_IO_BUFFER_SIZE;
  195. else if (bsize >= NFS_MAX_FILE_IO_BUFFER_SIZE)
  196. bsize = NFS_MAX_FILE_IO_BUFFER_SIZE;
  197. return nfs_block_bits(bsize, nrbitsp);
  198. }
  199. /*
  200.  * Obtain the root inode of the file system.
  201.  */
  202. static struct inode *
  203. nfs_get_root(struct super_block *sb, struct nfs_fh *rootfh)
  204. {
  205. struct nfs_server *server = &sb->u.nfs_sb.s_server;
  206. struct nfs_fattr fattr;
  207. struct inode *inode;
  208. int error;
  209. if ((error = server->rpc_ops->getroot(server, rootfh, &fattr)) < 0) {
  210. printk(KERN_NOTICE "nfs_get_root: getattr error = %dn", -error);
  211. return NULL;
  212. }
  213. inode = __nfs_fhget(sb, rootfh, &fattr);
  214. return inode;
  215. }
  216. /*
  217.  * The way this works is that the mount process passes a structure
  218.  * in the data argument which contains the server's IP address
  219.  * and the root file handle obtained from the server's mount
  220.  * daemon. We stash these away in the private superblock fields.
  221.  */
  222. struct super_block *
  223. nfs_read_super(struct super_block *sb, void *raw_data, int silent)
  224. {
  225. struct nfs_mount_data *data = (struct nfs_mount_data *) raw_data;
  226. struct nfs_server *server;
  227. struct rpc_xprt *xprt = NULL;
  228. struct rpc_clnt *clnt = NULL;
  229. struct nfs_fh *root = &data->root, fh;
  230. struct inode *root_inode = NULL;
  231. unsigned int authflavor;
  232. struct sockaddr_in srvaddr;
  233. struct rpc_timeout timeparms;
  234. struct nfs_fsinfo fsinfo;
  235. int tcp, version, maxlen;
  236. memset(&sb->u.nfs_sb, 0, sizeof(sb->u.nfs_sb));
  237. if (!data)
  238. goto out_miss_args;
  239. memset(&fh, 0, sizeof(fh));
  240. if (data->version != NFS_MOUNT_VERSION) {
  241. printk("nfs warning: mount version %s than kerneln",
  242. data->version < NFS_MOUNT_VERSION ? "older" : "newer");
  243. if (data->version < 2)
  244. data->namlen = 0;
  245. if (data->version < 3)
  246. data->bsize  = 0;
  247. if (data->version < 4) {
  248. data->flags &= ~NFS_MOUNT_VER3;
  249. root = &fh;
  250. root->size = NFS2_FHSIZE;
  251. memcpy(root->data, data->old_root.data, NFS2_FHSIZE);
  252. }
  253. }
  254. /* We now require that the mount process passes the remote address */
  255. memcpy(&srvaddr, &data->addr, sizeof(srvaddr));
  256. if (srvaddr.sin_addr.s_addr == INADDR_ANY)
  257. goto out_no_remote;
  258. sb->s_magic      = NFS_SUPER_MAGIC;
  259. sb->s_op         = &nfs_sops;
  260. sb->s_blocksize_bits = 0;
  261. sb->s_blocksize  = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
  262. server           = &sb->u.nfs_sb.s_server;
  263. server->rsize    = nfs_block_size(data->rsize, NULL);
  264. server->wsize    = nfs_block_size(data->wsize, NULL);
  265. server->flags    = data->flags & NFS_MOUNT_FLAGMASK;
  266. if (data->flags & NFS_MOUNT_NOAC) {
  267. data->acregmin = data->acregmax = 0;
  268. data->acdirmin = data->acdirmax = 0;
  269. sb->s_flags |= MS_SYNCHRONOUS;
  270. }
  271. server->acregmin = data->acregmin*HZ;
  272. server->acregmax = data->acregmax*HZ;
  273. server->acdirmin = data->acdirmin*HZ;
  274. server->acdirmax = data->acdirmax*HZ;
  275. server->namelen  = data->namlen;
  276. server->hostname = kmalloc(strlen(data->hostname) + 1, GFP_KERNEL);
  277. if (!server->hostname)
  278. goto out_unlock;
  279. strcpy(server->hostname, data->hostname);
  280. INIT_LIST_HEAD(&server->lru_read);
  281. INIT_LIST_HEAD(&server->lru_dirty);
  282. INIT_LIST_HEAD(&server->lru_commit);
  283. INIT_LIST_HEAD(&server->lru_busy);
  284.  nfsv3_try_again:
  285. /* Check NFS protocol revision and initialize RPC op vector
  286.  * and file handle pool. */
  287. if (data->flags & NFS_MOUNT_VER3) {
  288. #ifdef CONFIG_NFS_V3
  289. server->rpc_ops = &nfs_v3_clientops;
  290. version = 3;
  291. if (data->version < 4) {
  292. printk(KERN_NOTICE "NFS: NFSv3 not supported by mount program.n");
  293. goto out_unlock;
  294. }
  295. #else
  296. printk(KERN_NOTICE "NFS: NFSv3 not supported.n");
  297. goto out_unlock;
  298. #endif
  299. } else {
  300. server->rpc_ops = &nfs_v2_clientops;
  301. version = 2;
  302.         }
  303. /* Which protocol do we use? */
  304. tcp   = (data->flags & NFS_MOUNT_TCP);
  305. /* Initialize timeout values */
  306. timeparms.to_initval = data->timeo * HZ / 10;
  307. timeparms.to_retries = data->retrans;
  308. timeparms.to_maxval  = tcp? RPC_MAX_TCP_TIMEOUT : RPC_MAX_UDP_TIMEOUT;
  309. timeparms.to_exponential = 1;
  310. if (!timeparms.to_initval)
  311. timeparms.to_initval = (tcp ? 600 : 11) * HZ / 10;
  312. if (!timeparms.to_retries)
  313. timeparms.to_retries = 5;
  314. /* Now create transport and client */
  315. xprt = xprt_create_proto(tcp? IPPROTO_TCP : IPPROTO_UDP,
  316. &srvaddr, &timeparms);
  317. if (xprt == NULL)
  318. goto out_no_xprt;
  319. /* Choose authentication flavor */
  320. authflavor = RPC_AUTH_UNIX;
  321. if (data->flags & NFS_MOUNT_SECURE)
  322. authflavor = RPC_AUTH_DES;
  323. else if (data->flags & NFS_MOUNT_KERBEROS)
  324. authflavor = RPC_AUTH_KRB;
  325. clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
  326.  version, authflavor);
  327. if (clnt == NULL)
  328. goto out_no_client;
  329. clnt->cl_intr     = (data->flags & NFS_MOUNT_INTR)? 1 : 0;
  330. clnt->cl_softrtry = (data->flags & NFS_MOUNT_SOFT)? 1 : 0;
  331. clnt->cl_droppriv = (data->flags & NFS_MOUNT_BROKEN_SUID) ? 1 : 0;
  332. clnt->cl_chatty   = 1;
  333. server->client    = clnt;
  334. /* Fire up rpciod if not yet running */
  335. if (rpciod_up() != 0)
  336. goto out_no_iod;
  337. /*
  338.  * Keep the super block locked while we try to get 
  339.  * the root fh attributes.
  340.  */
  341. /* Did getting the root inode fail? */
  342. if (!(root_inode = nfs_get_root(sb, root))
  343.     && (data->flags & NFS_MOUNT_VER3)) {
  344. data->flags &= ~NFS_MOUNT_VER3;
  345. rpciod_down();
  346. rpc_shutdown_client(server->client);
  347. goto nfsv3_try_again;
  348. }
  349. if (!root_inode)
  350. goto out_no_root;
  351. sb->s_root = d_alloc_root(root_inode);
  352. if (!sb->s_root)
  353. goto out_no_root;
  354. sb->s_root->d_op = &nfs_dentry_operations;
  355. /* Get some general file system info */
  356.         if (server->rpc_ops->statfs(server, root, &fsinfo) >= 0) {
  357. if (server->namelen == 0)
  358. server->namelen = fsinfo.namelen;
  359. } else {
  360. printk(KERN_NOTICE "NFS: cannot retrieve file system info.n");
  361. goto out_no_root;
  362.         }
  363. /* Work out a lot of parameters */
  364. if (data->rsize == 0)
  365. server->rsize = nfs_block_size(fsinfo.rtpref, NULL);
  366. if (data->wsize == 0)
  367. server->wsize = nfs_block_size(fsinfo.wtpref, NULL);
  368. /* NFSv3: we don't have bsize, but rather rtmult and wtmult... */
  369. if (!fsinfo.bsize)
  370. fsinfo.bsize = (fsinfo.rtmult>fsinfo.wtmult) ? fsinfo.rtmult : fsinfo.wtmult;
  371. /* Also make sure we don't go below rsize/wsize since
  372.  * RPC calls are expensive */
  373. if (fsinfo.bsize < server->rsize)
  374. fsinfo.bsize = server->rsize;
  375. if (fsinfo.bsize < server->wsize)
  376. fsinfo.bsize = server->wsize;
  377. if (data->bsize == 0)
  378. sb->s_blocksize = nfs_block_bits(fsinfo.bsize, &sb->s_blocksize_bits);
  379. if (server->rsize > fsinfo.rtmax)
  380. server->rsize = fsinfo.rtmax;
  381. if (server->wsize > fsinfo.wtmax)
  382. server->wsize = fsinfo.wtmax;
  383. server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  384. if (server->rpages > NFS_READ_MAXIOV) {
  385. server->rpages = NFS_READ_MAXIOV;
  386. server->rsize = server->rpages << PAGE_CACHE_SHIFT;
  387. }
  388. server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  389.         if (server->wpages > NFS_WRITE_MAXIOV) {
  390. server->wpages = NFS_WRITE_MAXIOV;
  391.                 server->wsize = server->wpages << PAGE_CACHE_SHIFT;
  392. }
  393. server->dtsize = nfs_block_size(fsinfo.dtpref, NULL);
  394. if (server->dtsize > PAGE_CACHE_SIZE)
  395. server->dtsize = PAGE_CACHE_SIZE;
  396. if (server->dtsize > server->rsize)
  397. server->dtsize = server->rsize;
  398.         maxlen = (version == 2) ? NFS2_MAXNAMLEN : NFS3_MAXNAMLEN;
  399.         if (server->namelen == 0 || server->namelen > maxlen)
  400.                 server->namelen = maxlen;
  401. sb->s_maxbytes = fsinfo.maxfilesize;
  402. if (sb->s_maxbytes > MAX_LFS_FILESIZE) 
  403. sb->s_maxbytes = MAX_LFS_FILESIZE; 
  404. /* Fire up the writeback cache */
  405. if (nfs_reqlist_alloc(server) < 0) {
  406. printk(KERN_NOTICE "NFS: cannot initialize writeback cache.n");
  407. goto failure_kill_reqlist;
  408. }
  409. /* We're airborne Set socket buffersize */
  410. rpc_setbufsize(clnt, server->wsize + 100, server->rsize + 100);
  411. /* Check whether to start the lockd process */
  412. if (!(server->flags & NFS_MOUNT_NONLM))
  413. lockd_up();
  414. return sb;
  415. /* Yargs. It didn't work out. */
  416.  failure_kill_reqlist:
  417. nfs_reqlist_exit(server);
  418. out_no_root:
  419. printk("nfs_read_super: get root inode failedn");
  420. iput(root_inode);
  421. rpciod_down();
  422. goto out_shutdown;
  423. out_no_iod:
  424. printk(KERN_WARNING "NFS: couldn't start rpciod!n");
  425. out_shutdown:
  426. rpc_shutdown_client(server->client);
  427. goto out_free_host;
  428. out_no_client:
  429. printk(KERN_WARNING "NFS: cannot create RPC client.n");
  430. xprt_destroy(xprt);
  431. goto out_free_host;
  432. out_no_xprt:
  433. printk(KERN_WARNING "NFS: cannot create RPC transport.n");
  434. out_free_host:
  435. nfs_reqlist_free(server);
  436. kfree(server->hostname);
  437. out_unlock:
  438. goto out_fail;
  439. out_no_remote:
  440. printk("NFS: mount program didn't pass remote address!n");
  441. goto out_fail;
  442. out_miss_args:
  443. printk("nfs_read_super: missing data argumentn");
  444. out_fail:
  445. return NULL;
  446. }
  447. static int
  448. nfs_statfs(struct super_block *sb, struct statfs *buf)
  449. {
  450. struct nfs_server *server = &sb->u.nfs_sb.s_server;
  451. unsigned char blockbits;
  452. unsigned long blockres;
  453. struct nfs_fsinfo res;
  454. int error;
  455. error = server->rpc_ops->statfs(server, NFS_FH(sb->s_root->d_inode), &res);
  456. buf->f_type = NFS_SUPER_MAGIC;
  457. if (error < 0)
  458. goto out_err;
  459. if (res.bsize == 0)
  460. res.bsize = sb->s_blocksize;
  461. buf->f_bsize = nfs_block_bits(res.bsize, &blockbits);
  462. blockres = (1 << blockbits) - 1;
  463. buf->f_blocks = (res.tbytes + blockres) >> blockbits;
  464. buf->f_bfree = (res.fbytes + blockres) >> blockbits;
  465. buf->f_bavail = (res.abytes + blockres) >> blockbits;
  466. buf->f_files = res.tfiles;
  467. buf->f_ffree = res.afiles;
  468. if (res.namelen == 0 || res.namelen > server->namelen)
  469. res.namelen = server->namelen;
  470. buf->f_namelen = res.namelen;
  471. return 0;
  472.  out_err:
  473. printk("nfs_statfs: statfs error = %dn", -error);
  474. buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
  475. return 0;
  476. }
  477. static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
  478. {
  479. static struct proc_nfs_info {
  480. int flag;
  481. char *str;
  482. char *nostr;
  483. } nfs_info[] = {
  484. { NFS_MOUNT_SOFT, ",soft", ",hard" },
  485. { NFS_MOUNT_INTR, ",intr", "" },
  486. { NFS_MOUNT_POSIX, ",posix", "" },
  487. { NFS_MOUNT_TCP, ",tcp", ",udp" },
  488. { NFS_MOUNT_NOCTO, ",nocto", "" },
  489. { NFS_MOUNT_NOAC, ",noac", "" },
  490. { NFS_MOUNT_NONLM, ",nolock", ",lock" },
  491. { NFS_MOUNT_BROKEN_SUID, ",broken_suid", "" },
  492. { 0, NULL, NULL }
  493. };
  494. struct proc_nfs_info *nfs_infop;
  495. struct nfs_server *nfss = &mnt->mnt_sb->u.nfs_sb.s_server;
  496. seq_printf(m, ",v%d", nfss->rpc_ops->version);
  497. seq_printf(m, ",rsize=%d", nfss->rsize);
  498. seq_printf(m, ",wsize=%d", nfss->wsize);
  499. if (nfss->acregmin != 3*HZ)
  500. seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
  501. if (nfss->acregmax != 60*HZ)
  502. seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
  503. if (nfss->acdirmin != 30*HZ)
  504. seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
  505. if (nfss->acdirmax != 60*HZ)
  506. seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
  507. for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
  508. if (nfss->flags & nfs_infop->flag)
  509. seq_puts(m, nfs_infop->str);
  510. else
  511. seq_puts(m, nfs_infop->nostr);
  512. }
  513. seq_puts(m, ",addr=");
  514. seq_escape(m, nfss->hostname, " tn\");
  515. return 0;
  516. }
  517. /*
  518.  * Invalidate the local caches
  519.  */
  520. void
  521. nfs_zap_caches(struct inode *inode)
  522. {
  523. NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
  524. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  525. invalidate_inode_pages(inode);
  526. memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
  527. NFS_CACHEINV(inode);
  528. }
  529. /*
  530.  * Invalidate, but do not unhash, the inode
  531.  */
  532. static void
  533. nfs_invalidate_inode(struct inode *inode)
  534. {
  535. umode_t save_mode = inode->i_mode;
  536. make_bad_inode(inode);
  537. inode->i_mode = save_mode;
  538. nfs_zap_caches(inode);
  539. }
  540. /*
  541.  * Fill in inode information from the fattr.
  542.  */
  543. static void
  544. nfs_fill_inode(struct inode *inode, struct nfs_fh *fh, struct nfs_fattr *fattr)
  545. {
  546. /*
  547.  * Check whether the mode has been set, as we only want to
  548.  * do this once. (We don't allow inodes to change types.)
  549.  */
  550. if (inode->i_mode == 0) {
  551. NFS_FILEID(inode) = fattr->fileid;
  552. inode->i_mode = fattr->mode;
  553. /* Why so? Because we want revalidate for devices/FIFOs, and
  554.  * that's precisely what we have in nfs_file_inode_operations.
  555.  */
  556. inode->i_op = &nfs_file_inode_operations;
  557. if (S_ISREG(inode->i_mode)) {
  558. inode->i_fop = &nfs_file_operations;
  559. inode->i_data.a_ops = &nfs_file_aops;
  560. } else if (S_ISDIR(inode->i_mode)) {
  561. inode->i_op = &nfs_dir_inode_operations;
  562. inode->i_fop = &nfs_dir_operations;
  563. } else if (S_ISLNK(inode->i_mode))
  564. inode->i_op = &nfs_symlink_inode_operations;
  565. else
  566. init_special_inode(inode, inode->i_mode, fattr->rdev);
  567. memcpy(&inode->u.nfs_i.fh, fh, sizeof(inode->u.nfs_i.fh));
  568. }
  569. nfs_refresh_inode(inode, fattr);
  570. }
  571. struct nfs_find_desc {
  572. struct nfs_fh *fh;
  573. struct nfs_fattr *fattr;
  574. };
  575. /*
  576.  * In NFSv3 we can have 64bit inode numbers. In order to support
  577.  * this, and re-exported directories (also seen in NFSv2)
  578.  * we are forced to allow 2 different inodes to have the same
  579.  * i_ino.
  580.  */
  581. static int
  582. nfs_find_actor(struct inode *inode, unsigned long ino, void *opaque)
  583. {
  584. struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
  585. struct nfs_fh *fh = desc->fh;
  586. struct nfs_fattr *fattr = desc->fattr;
  587. if (NFS_FILEID(inode) != fattr->fileid)
  588. return 0;
  589. if (memcmp(&inode->u.nfs_i.fh, fh, sizeof(inode->u.nfs_i.fh)) != 0)
  590. return 0;
  591. if (is_bad_inode(inode))
  592. return 0;
  593. /* Force an attribute cache update if inode->i_count == 0 */
  594. if (!atomic_read(&inode->i_count))
  595. NFS_CACHEINV(inode);
  596. return 1;
  597. }
  598. /*
  599.  * This is our own version of iget that looks up inodes by file handle
  600.  * instead of inode number.  We use this technique instead of using
  601.  * the vfs read_inode function because there is no way to pass the
  602.  * file handle or current attributes into the read_inode function.
  603.  *
  604.  */
  605. struct inode *
  606. nfs_fhget(struct dentry *dentry, struct nfs_fh *fhandle,
  607.  struct nfs_fattr *fattr)
  608. {
  609. struct super_block *sb = dentry->d_sb;
  610. dprintk("NFS: nfs_fhget(%s/%s fileid=%Ld)n",
  611. dentry->d_parent->d_name.name, dentry->d_name.name,
  612. (long long)fattr->fileid);
  613. return __nfs_fhget(sb, fhandle, fattr);
  614. }
  615. /*
  616.  * Look up the inode by super block and fattr->fileid.
  617.  */
  618. static struct inode *
  619. __nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
  620. {
  621. struct nfs_find_desc desc = { fh, fattr };
  622. struct inode *inode = NULL;
  623. unsigned long ino;
  624. if ((fattr->valid & NFS_ATTR_FATTR) == 0)
  625. goto out_no_inode;
  626. if (!fattr->nlink) {
  627. printk("NFS: Buggy server - nlink == 0!n");
  628. goto out_no_inode;
  629. }
  630. ino = nfs_fattr_to_ino_t(fattr);
  631. if (!(inode = iget4(sb, ino, nfs_find_actor, &desc)))
  632. goto out_no_inode;
  633. nfs_fill_inode(inode, fh, fattr);
  634. dprintk("NFS: __nfs_fhget(%x/%Ld ct=%d)n",
  635. inode->i_dev, (long long)NFS_FILEID(inode),
  636. atomic_read(&inode->i_count));
  637. out:
  638. return inode;
  639. out_no_inode:
  640. printk("__nfs_fhget: iget failedn");
  641. goto out;
  642. }
  643. int
  644. nfs_notify_change(struct dentry *dentry, struct iattr *attr)
  645. {
  646. struct inode *inode = dentry->d_inode;
  647. struct nfs_fattr fattr;
  648. int error;
  649. /*
  650.  * Make sure the inode is up-to-date.
  651.  */
  652. error = nfs_revalidate_inode(NFS_SERVER(inode),inode);
  653. if (error) {
  654. #ifdef NFS_PARANOIA
  655. printk("nfs_notify_change: revalidate failed, error=%dn", error);
  656. #endif
  657. goto out;
  658. }
  659. if (!S_ISREG(inode->i_mode))
  660. attr->ia_valid &= ~ATTR_SIZE;
  661. filemap_fdatasync(inode->i_mapping);
  662. error = nfs_wb_all(inode);
  663. filemap_fdatawait(inode->i_mapping);
  664. if (error)
  665. goto out;
  666. error = NFS_PROTO(inode)->setattr(inode, &fattr, attr);
  667. if (error)
  668. goto out;
  669. /*
  670.  * If we changed the size or mtime, update the inode
  671.  * now to avoid invalidating the page cache.
  672.  */
  673. if (attr->ia_valid & ATTR_SIZE) {
  674. if (attr->ia_size != fattr.size)
  675. printk("nfs_notify_change: attr=%Ld, fattr=%Ld??n",
  676.        (long long) attr->ia_size, (long long)fattr.size);
  677. vmtruncate(inode, attr->ia_size);
  678. }
  679. /*
  680.  * If we changed the size or mtime, update the inode
  681.  * now to avoid invalidating the page cache.
  682.  */
  683. if (!(fattr.valid & NFS_ATTR_WCC)) {
  684. fattr.pre_size = NFS_CACHE_ISIZE(inode);
  685. fattr.pre_mtime = NFS_CACHE_MTIME(inode);
  686. fattr.pre_ctime = NFS_CACHE_CTIME(inode);
  687. fattr.valid |= NFS_ATTR_WCC;
  688. }
  689. /* Force an attribute cache update */
  690. NFS_CACHEINV(inode);
  691. error = nfs_refresh_inode(inode, &fattr);
  692. out:
  693. return error;
  694. }
  695. /*
  696.  * Wait for the inode to get unlocked.
  697.  * (Used for NFS_INO_LOCKED and NFS_INO_REVALIDATING).
  698.  */
  699. int
  700. nfs_wait_on_inode(struct inode *inode, int flag)
  701. {
  702. struct rpc_clnt *clnt = NFS_CLIENT(inode);
  703. int error;
  704. if (!(NFS_FLAGS(inode) & flag))
  705. return 0;
  706. atomic_inc(&inode->i_count);
  707. error = nfs_wait_event(clnt, inode->i_wait, !(NFS_FLAGS(inode) & flag));
  708. iput(inode);
  709. return error;
  710. }
  711. /*
  712.  * Externally visible revalidation function
  713.  */
  714. int
  715. nfs_revalidate(struct dentry *dentry)
  716. {
  717. struct inode *inode = dentry->d_inode;
  718. return nfs_revalidate_inode(NFS_SERVER(inode), inode);
  719. }
  720. /*
  721.  * Ensure that mmap has a recent RPC credential for use when writing out
  722.  * shared pages
  723.  */
  724. static inline void
  725. nfs_set_mmcred(struct inode *inode, struct rpc_cred *cred)
  726. {
  727. struct rpc_cred **p = &NFS_I(inode)->mm_cred,
  728. *oldcred = *p;
  729. *p = get_rpccred(cred);
  730. if (oldcred)
  731. put_rpccred(oldcred);
  732. }
  733. /*
  734.  * These are probably going to contain hooks for
  735.  * allocating and releasing RPC credentials for
  736.  * the file. I'll have to think about Tronds patch
  737.  * a bit more..
  738.  */
  739. int nfs_open(struct inode *inode, struct file *filp)
  740. {
  741. struct rpc_auth *auth;
  742. struct rpc_cred *cred;
  743. lock_kernel();
  744. auth = NFS_CLIENT(inode)->cl_auth;
  745. cred = rpcauth_lookupcred(auth, 0);
  746. filp->private_data = cred;
  747. if (filp->f_mode & FMODE_WRITE)
  748. nfs_set_mmcred(inode, cred);
  749. unlock_kernel();
  750. return 0;
  751. }
  752. int nfs_release(struct inode *inode, struct file *filp)
  753. {
  754. struct rpc_cred *cred;
  755. lock_kernel();
  756. cred = nfs_file_cred(filp);
  757. if (cred)
  758. put_rpccred(cred);
  759. unlock_kernel();
  760. return 0;
  761. }
  762. /*
  763.  * This function is called whenever some part of NFS notices that
  764.  * the cached attributes have to be refreshed.
  765.  */
  766. int
  767. __nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
  768. {
  769. int  status = -ESTALE;
  770. struct nfs_fattr fattr;
  771. dfprintk(PAGECACHE, "NFS: revalidating (%x/%Ld)n",
  772. inode->i_dev, (long long)NFS_FILEID(inode));
  773. lock_kernel();
  774. if (!inode || is_bad_inode(inode))
  775.   goto out_nowait;
  776. if (NFS_STALE(inode) && inode != inode->i_sb->s_root->d_inode)
  777.   goto out_nowait;
  778. while (NFS_REVALIDATING(inode)) {
  779. status = nfs_wait_on_inode(inode, NFS_INO_REVALIDATING);
  780. if (status < 0)
  781. goto out_nowait;
  782. if (time_before(jiffies,NFS_READTIME(inode)+NFS_ATTRTIMEO(inode))) {
  783. status = NFS_STALE(inode) ? -ESTALE : 0;
  784. goto out_nowait;
  785. }
  786. }
  787. NFS_FLAGS(inode) |= NFS_INO_REVALIDATING;
  788. status = NFS_PROTO(inode)->getattr(inode, &fattr);
  789. if (status) {
  790. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%x/%Ld) getattr failed, error=%dn",
  791.  inode->i_dev, (long long)NFS_FILEID(inode), status);
  792. if (status == -ESTALE) {
  793. NFS_FLAGS(inode) |= NFS_INO_STALE;
  794. if (inode != inode->i_sb->s_root->d_inode)
  795. remove_inode_hash(inode);
  796. }
  797. goto out;
  798. }
  799. status = nfs_refresh_inode(inode, &fattr);
  800. if (status) {
  801. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%x/%Ld) refresh failed, error=%dn",
  802.  inode->i_dev, (long long)NFS_FILEID(inode), status);
  803. goto out;
  804. }
  805. dfprintk(PAGECACHE, "NFS: (%x/%Ld) revalidation completen",
  806. inode->i_dev, (long long)NFS_FILEID(inode));
  807. NFS_FLAGS(inode) &= ~NFS_INO_STALE;
  808. out:
  809. NFS_FLAGS(inode) &= ~NFS_INO_REVALIDATING;
  810. wake_up(&inode->i_wait);
  811.  out_nowait:
  812. unlock_kernel();
  813. return status;
  814. }
  815. /*
  816.  * nfs_fattr_obsolete - Test if attribute data is newer than cached data
  817.  * @inode: inode
  818.  * @fattr: attributes to test
  819.  *
  820.  * Avoid stuffing the attribute cache with obsolete information.
  821.  * We always accept updates if the attribute cache timed out, or if
  822.  * fattr->ctime is newer than our cached value.
  823.  * If fattr->ctime matches the cached value, we still accept the update
  824.  * if it increases the file size.
  825.  */
  826. static inline
  827. int nfs_fattr_obsolete(struct inode *inode, struct nfs_fattr *fattr)
  828. {
  829. s64 cdif;
  830. if (time_after(jiffies, NFS_READTIME(inode)+NFS_ATTRTIMEO(inode)))
  831. goto out_valid;
  832. if ((cdif = (s64)fattr->ctime - (s64)NFS_CACHE_CTIME(inode)) > 0)
  833. goto out_valid;
  834. /* Ugh... */
  835. if (cdif == 0 && fattr->size > NFS_CACHE_ISIZE(inode))
  836. goto out_valid;
  837. return -1;
  838.  out_valid:
  839. return 0;
  840. }
  841. /*
  842.  * Many nfs protocol calls return the new file attributes after
  843.  * an operation.  Here we update the inode to reflect the state
  844.  * of the server's inode.
  845.  *
  846.  * This is a bit tricky because we have to make sure all dirty pages
  847.  * have been sent off to the server before calling invalidate_inode_pages.
  848.  * To make sure no other process adds more write requests while we try
  849.  * our best to flush them, we make them sleep during the attribute refresh.
  850.  *
  851.  * A very similar scenario holds for the dir cache.
  852.  */
  853. int
  854. __nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
  855. {
  856. __u64 new_size, new_mtime;
  857. loff_t new_isize;
  858. time_t new_atime;
  859. int invalid = 0;
  860. dfprintk(VFS, "NFS: refresh_inode(%x/%ld ct=%d info=0x%x)n",
  861. inode->i_dev, inode->i_ino,
  862. atomic_read(&inode->i_count), fattr->valid);
  863. if (NFS_FILEID(inode) != fattr->fileid) {
  864. printk(KERN_ERR "nfs_refresh_inode: inode number mismatchn"
  865.        "expected (0x%x/0x%Lx), got (0x%x/0x%Lx)n",
  866.        inode->i_dev, (long long)NFS_FILEID(inode),
  867.        inode->i_dev, (long long)fattr->fileid);
  868. goto out_err;
  869. }
  870. /*
  871.  * Make sure the inode's type hasn't changed.
  872.  */
  873. if ((inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
  874. goto out_changed;
  875.   new_mtime = fattr->mtime;
  876. new_size = fattr->size;
  877.   new_isize = nfs_size_to_loff_t(fattr->size);
  878. new_atime = nfs_time_to_secs(fattr->atime);
  879. /* Avoid races */
  880. if (nfs_fattr_obsolete(inode, fattr))
  881. goto out_nochange;
  882. /*
  883.  * Update the read time so we don't revalidate too often.
  884.  */
  885. NFS_READTIME(inode) = jiffies;
  886. /*
  887.  * Note: NFS_CACHE_ISIZE(inode) reflects the state of the cache.
  888.  *       NOT inode->i_size!!!
  889.  */
  890. if (NFS_CACHE_ISIZE(inode) != new_size) {
  891. #ifdef NFS_DEBUG_VERBOSE
  892. printk(KERN_DEBUG "NFS: isize change on %x/%ldn", inode->i_dev, inode->i_ino);
  893. #endif
  894. invalid = 1;
  895. }
  896. /*
  897.  * Note: we don't check inode->i_mtime since pipes etc.
  898.  *       can change this value in VFS without requiring a
  899.  *  cache revalidation.
  900.  */
  901. if (NFS_CACHE_MTIME(inode) != new_mtime) {
  902. #ifdef NFS_DEBUG_VERBOSE
  903. printk(KERN_DEBUG "NFS: mtime change on %x/%ldn", inode->i_dev, inode->i_ino);
  904. #endif
  905. invalid = 1;
  906. }
  907. /* Check Weak Cache Consistency data.
  908.  * If size and mtime match the pre-operation values, we can
  909.  * assume that any attribute changes were caused by our NFS
  910.          * operation, so there's no need to invalidate the caches.
  911.          */
  912.         if ((fattr->valid & NFS_ATTR_WCC)
  913.     && NFS_CACHE_ISIZE(inode) == fattr->pre_size
  914.     && NFS_CACHE_MTIME(inode) == fattr->pre_mtime) {
  915. invalid = 0;
  916. }
  917. /*
  918.  * If we have pending writebacks, things can get
  919.  * messy.
  920.  */
  921. if (nfs_have_writebacks(inode) && new_isize < inode->i_size)
  922. new_isize = inode->i_size;
  923. NFS_CACHE_CTIME(inode) = fattr->ctime;
  924. inode->i_ctime = nfs_time_to_secs(fattr->ctime);
  925. inode->i_atime = new_atime;
  926. if (NFS_CACHE_MTIME(inode) != new_mtime) {
  927. NFS_MTIME_UPDATE(inode) = jiffies;
  928. NFS_CACHE_MTIME(inode) = new_mtime;
  929. inode->i_mtime = nfs_time_to_secs(new_mtime);
  930. }
  931. NFS_CACHE_ISIZE(inode) = new_size;
  932. inode->i_size = new_isize;
  933. inode->i_mode = fattr->mode;
  934. inode->i_nlink = fattr->nlink;
  935. inode->i_uid = fattr->uid;
  936. inode->i_gid = fattr->gid;
  937. if (fattr->valid & NFS_ATTR_FATTR_V3) {
  938. /*
  939.  * report the blocks in 512byte units
  940.  */
  941. inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
  942. inode->i_blksize = inode->i_sb->s_blocksize;
  943.   } else {
  944.   inode->i_blocks = fattr->du.nfs2.blocks;
  945.   inode->i_blksize = fattr->du.nfs2.blocksize;
  946.   }
  947.   inode->i_rdev = 0;
  948.   if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
  949.   inode->i_rdev = to_kdev_t(fattr->rdev);
  950.  
  951. /* Update attrtimeo value */
  952. if (invalid) {
  953. NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
  954. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  955. invalidate_inode_pages(inode);
  956. memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
  957. } else if (time_after(jiffies, NFS_ATTRTIMEO_UPDATE(inode)+NFS_ATTRTIMEO(inode))) {
  958. if ((NFS_ATTRTIMEO(inode) <<= 1) > NFS_MAXATTRTIMEO(inode))
  959. NFS_ATTRTIMEO(inode) = NFS_MAXATTRTIMEO(inode);
  960. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  961. }
  962. return 0;
  963.  out_nochange:
  964. if (new_atime - inode->i_atime > 0)
  965. inode->i_atime = new_atime;
  966. return 0;
  967.  out_changed:
  968. /*
  969.  * Big trouble! The inode has become a different object.
  970.  */
  971. #ifdef NFS_PARANOIA
  972. printk(KERN_DEBUG "nfs_refresh_inode: inode %ld mode changed, %07o to %07on",
  973.        inode->i_ino, inode->i_mode, fattr->mode);
  974. #endif
  975. /*
  976.  * No need to worry about unhashing the dentry, as the
  977.  * lookup validation will know that the inode is bad.
  978.  * (But we fall through to invalidate the caches.)
  979.  */
  980. nfs_invalidate_inode(inode);
  981.  out_err:
  982. return -EIO;
  983. }
  984. /*
  985.  * File system information
  986.  */
  987. static DECLARE_FSTYPE(nfs_fs_type, "nfs", nfs_read_super, FS_ODD_RENAME);
  988. extern int nfs_init_nfspagecache(void);
  989. extern void nfs_destroy_nfspagecache(void);
  990. extern int nfs_init_readpagecache(void);
  991. extern int nfs_destroy_readpagecache(void);
  992. extern int nfs_init_writepagecache(void);
  993. extern int nfs_destroy_writepagecache(void);
  994. /*
  995.  * Initialize NFS
  996.  */
  997. static int __init init_nfs_fs(void)
  998. {
  999. int err;
  1000. err = nfs_init_nfspagecache();
  1001. if (err)
  1002. return err;
  1003. err = nfs_init_readpagecache();
  1004. if (err)
  1005. return err;
  1006. err = nfs_init_writepagecache();
  1007. if (err)
  1008. return err;
  1009. #ifdef CONFIG_PROC_FS
  1010. rpc_proc_register(&nfs_rpcstat);
  1011. #endif
  1012.         return register_filesystem(&nfs_fs_type);
  1013. }
  1014. static void __exit exit_nfs_fs(void)
  1015. {
  1016. nfs_destroy_writepagecache();
  1017. nfs_destroy_readpagecache();
  1018. nfs_destroy_nfspagecache();
  1019. #ifdef CONFIG_PROC_FS
  1020. rpc_proc_unregister("nfs");
  1021. #endif
  1022. unregister_filesystem(&nfs_fs_type);
  1023. }
  1024. EXPORT_NO_SYMBOLS;
  1025. /* Not quite true; I just maintain it */
  1026. MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
  1027. MODULE_LICENSE("GPL");
  1028. module_init(init_nfs_fs)
  1029. module_exit(exit_nfs_fs)