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

嵌入式Linux

开发平台:

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. /* Fire up the writeback cache */
  403. if (nfs_reqlist_alloc(server) < 0) {
  404. printk(KERN_NOTICE "NFS: cannot initialize writeback cache.n");
  405. goto failure_kill_reqlist;
  406. }
  407. /* We're airborne */
  408. /* Check whether to start the lockd process */
  409. if (!(server->flags & NFS_MOUNT_NONLM))
  410. lockd_up();
  411. return sb;
  412. /* Yargs. It didn't work out. */
  413.  failure_kill_reqlist:
  414. nfs_reqlist_exit(server);
  415. out_no_root:
  416. printk("nfs_read_super: get root inode failedn");
  417. iput(root_inode);
  418. rpciod_down();
  419. goto out_shutdown;
  420. out_no_iod:
  421. printk(KERN_WARNING "NFS: couldn't start rpciod!n");
  422. out_shutdown:
  423. rpc_shutdown_client(server->client);
  424. goto out_free_host;
  425. out_no_client:
  426. printk(KERN_WARNING "NFS: cannot create RPC client.n");
  427. xprt_destroy(xprt);
  428. goto out_free_host;
  429. out_no_xprt:
  430. printk(KERN_WARNING "NFS: cannot create RPC transport.n");
  431. out_free_host:
  432. nfs_reqlist_free(server);
  433. kfree(server->hostname);
  434. out_unlock:
  435. goto out_fail;
  436. out_no_remote:
  437. printk("NFS: mount program didn't pass remote address!n");
  438. goto out_fail;
  439. out_miss_args:
  440. printk("nfs_read_super: missing data argumentn");
  441. out_fail:
  442. return NULL;
  443. }
  444. static int
  445. nfs_statfs(struct super_block *sb, struct statfs *buf)
  446. {
  447. struct nfs_server *server = &sb->u.nfs_sb.s_server;
  448. unsigned char blockbits;
  449. unsigned long blockres;
  450. struct nfs_fsinfo res;
  451. int error;
  452. error = server->rpc_ops->statfs(server, NFS_FH(sb->s_root->d_inode), &res);
  453. buf->f_type = NFS_SUPER_MAGIC;
  454. if (error < 0)
  455. goto out_err;
  456. if (res.bsize == 0)
  457. res.bsize = sb->s_blocksize;
  458. buf->f_bsize = nfs_block_bits(res.bsize, &blockbits);
  459. blockres = (1 << blockbits) - 1;
  460. buf->f_blocks = (res.tbytes + blockres) >> blockbits;
  461. buf->f_bfree = (res.fbytes + blockres) >> blockbits;
  462. buf->f_bavail = (res.abytes + blockres) >> blockbits;
  463. buf->f_files = res.tfiles;
  464. buf->f_ffree = res.afiles;
  465. if (res.namelen == 0 || res.namelen > server->namelen)
  466. res.namelen = server->namelen;
  467. buf->f_namelen = res.namelen;
  468. return 0;
  469.  out_err:
  470. printk("nfs_statfs: statfs error = %dn", -error);
  471. buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
  472. return 0;
  473. }
  474. static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
  475. {
  476. static struct proc_nfs_info {
  477. int flag;
  478. char *str;
  479. char *nostr;
  480. } nfs_info[] = {
  481. { NFS_MOUNT_SOFT, ",soft", ",hard" },
  482. { NFS_MOUNT_INTR, ",intr", "" },
  483. { NFS_MOUNT_POSIX, ",posix", "" },
  484. { NFS_MOUNT_TCP, ",tcp", ",udp" },
  485. { NFS_MOUNT_NOCTO, ",nocto", "" },
  486. { NFS_MOUNT_NOAC, ",noac", "" },
  487. { NFS_MOUNT_NONLM, ",nolock", ",lock" },
  488. { NFS_MOUNT_BROKEN_SUID, ",broken_suid", "" },
  489. { 0, NULL, NULL }
  490. };
  491. struct proc_nfs_info *nfs_infop;
  492. struct nfs_server *nfss = &mnt->mnt_sb->u.nfs_sb.s_server;
  493. seq_printf(m, ",v%d", nfss->rpc_ops->version);
  494. seq_printf(m, ",rsize=%d", nfss->rsize);
  495. seq_printf(m, ",wsize=%d", nfss->wsize);
  496. if (nfss->acregmin != 3*HZ)
  497. seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
  498. if (nfss->acregmax != 60*HZ)
  499. seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
  500. if (nfss->acdirmin != 30*HZ)
  501. seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
  502. if (nfss->acdirmax != 60*HZ)
  503. seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
  504. for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
  505. if (nfss->flags & nfs_infop->flag)
  506. seq_puts(m, nfs_infop->str);
  507. else
  508. seq_puts(m, nfs_infop->nostr);
  509. }
  510. seq_puts(m, ",addr=");
  511. seq_escape(m, nfss->hostname, " tn\");
  512. return 0;
  513. }
  514. /*
  515.  * Invalidate the local caches
  516.  */
  517. void
  518. nfs_zap_caches(struct inode *inode)
  519. {
  520. NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
  521. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  522. invalidate_inode_pages(inode);
  523. memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
  524. NFS_CACHEINV(inode);
  525. }
  526. /*
  527.  * Invalidate, but do not unhash, the inode
  528.  */
  529. static void
  530. nfs_invalidate_inode(struct inode *inode)
  531. {
  532. umode_t save_mode = inode->i_mode;
  533. make_bad_inode(inode);
  534. inode->i_mode = save_mode;
  535. nfs_zap_caches(inode);
  536. }
  537. /*
  538.  * Fill in inode information from the fattr.
  539.  */
  540. static void
  541. nfs_fill_inode(struct inode *inode, struct nfs_fh *fh, struct nfs_fattr *fattr)
  542. {
  543. /*
  544.  * Check whether the mode has been set, as we only want to
  545.  * do this once. (We don't allow inodes to change types.)
  546.  */
  547. if (inode->i_mode == 0) {
  548. NFS_FILEID(inode) = fattr->fileid;
  549. NFS_FSID(inode) = fattr->fsid;
  550. inode->i_mode = fattr->mode;
  551. /* Why so? Because we want revalidate for devices/FIFOs, and
  552.  * that's precisely what we have in nfs_file_inode_operations.
  553.  */
  554. inode->i_op = &nfs_file_inode_operations;
  555. if (S_ISREG(inode->i_mode)) {
  556. inode->i_fop = &nfs_file_operations;
  557. inode->i_data.a_ops = &nfs_file_aops;
  558. } else if (S_ISDIR(inode->i_mode)) {
  559. inode->i_op = &nfs_dir_inode_operations;
  560. inode->i_fop = &nfs_dir_operations;
  561. } else if (S_ISLNK(inode->i_mode))
  562. inode->i_op = &nfs_symlink_inode_operations;
  563. else
  564. init_special_inode(inode, inode->i_mode, fattr->rdev);
  565. memcpy(&inode->u.nfs_i.fh, fh, sizeof(inode->u.nfs_i.fh));
  566. }
  567. nfs_refresh_inode(inode, fattr);
  568. }
  569. struct nfs_find_desc {
  570. struct nfs_fh *fh;
  571. struct nfs_fattr *fattr;
  572. };
  573. /*
  574.  * In NFSv3 we can have 64bit inode numbers. In order to support
  575.  * this, and re-exported directories (also seen in NFSv2)
  576.  * we are forced to allow 2 different inodes to have the same
  577.  * i_ino.
  578.  */
  579. static int
  580. nfs_find_actor(struct inode *inode, unsigned long ino, void *opaque)
  581. {
  582. struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
  583. struct nfs_fh *fh = desc->fh;
  584. struct nfs_fattr *fattr = desc->fattr;
  585. if (NFS_FSID(inode) != fattr->fsid)
  586. return 0;
  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. /* Force an attribute cache update if inode->i_count == 0 */
  592. if (!atomic_read(&inode->i_count))
  593. NFS_CACHEINV(inode);
  594. return 1;
  595. }
  596. int
  597. nfs_inode_is_stale(struct inode *inode, struct nfs_fh *fh, struct nfs_fattr *fattr)
  598. {
  599. /* Empty inodes are not stale */
  600. if (!inode->i_mode)
  601. return 0;
  602. if ((fattr->mode & S_IFMT) != (inode->i_mode & S_IFMT))
  603. return 1;
  604. if (is_bad_inode(inode) || NFS_STALE(inode))
  605. return 1;
  606. /* Has the filehandle changed? If so is the old one stale? */
  607. if (memcmp(&inode->u.nfs_i.fh, fh, sizeof(inode->u.nfs_i.fh)) != 0 &&
  608.     __nfs_revalidate_inode(NFS_SERVER(inode),inode) == -ESTALE)
  609. return 1;
  610. return 0;
  611. }
  612. /*
  613.  * This is our own version of iget that looks up inodes by file handle
  614.  * instead of inode number.  We use this technique instead of using
  615.  * the vfs read_inode function because there is no way to pass the
  616.  * file handle or current attributes into the read_inode function.
  617.  *
  618.  */
  619. struct inode *
  620. nfs_fhget(struct dentry *dentry, struct nfs_fh *fhandle,
  621.  struct nfs_fattr *fattr)
  622. {
  623. struct super_block *sb = dentry->d_sb;
  624. dprintk("NFS: nfs_fhget(%s/%s fileid=%Ld)n",
  625. dentry->d_parent->d_name.name, dentry->d_name.name,
  626. (long long)fattr->fileid);
  627. return __nfs_fhget(sb, fhandle, fattr);
  628. }
  629. /*
  630.  * Look up the inode by super block and fattr->fileid.
  631.  */
  632. static struct inode *
  633. __nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
  634. {
  635. struct nfs_find_desc desc = { fh, fattr };
  636. struct inode *inode = NULL;
  637. unsigned long ino;
  638. if ((fattr->valid & NFS_ATTR_FATTR) == 0)
  639. goto out_no_inode;
  640. if (!fattr->nlink) {
  641. printk("NFS: Buggy server - nlink == 0!n");
  642. goto out_no_inode;
  643. }
  644. ino = nfs_fattr_to_ino_t(fattr);
  645. if (!(inode = iget4(sb, ino, nfs_find_actor, &desc)))
  646. goto out_no_inode;
  647. nfs_fill_inode(inode, fh, fattr);
  648. dprintk("NFS: __nfs_fhget(%x/%Ld ct=%d)n",
  649. inode->i_dev, (long long)NFS_FILEID(inode),
  650. atomic_read(&inode->i_count));
  651. out:
  652. return inode;
  653. out_no_inode:
  654. printk("__nfs_fhget: iget failedn");
  655. goto out;
  656. }
  657. int
  658. nfs_notify_change(struct dentry *dentry, struct iattr *attr)
  659. {
  660. struct inode *inode = dentry->d_inode;
  661. struct nfs_fattr fattr;
  662. int error;
  663. /*
  664.  * Make sure the inode is up-to-date.
  665.  */
  666. error = nfs_revalidate(dentry);
  667. if (error) {
  668. #ifdef NFS_PARANOIA
  669. printk("nfs_notify_change: revalidate failed, error=%dn", error);
  670. #endif
  671. goto out;
  672. }
  673. if (!S_ISREG(inode->i_mode))
  674. attr->ia_valid &= ~ATTR_SIZE;
  675. filemap_fdatasync(inode->i_mapping);
  676. error = nfs_wb_all(inode);
  677. filemap_fdatawait(inode->i_mapping);
  678. if (error)
  679. goto out;
  680. error = NFS_PROTO(inode)->setattr(inode, &fattr, attr);
  681. if (error)
  682. goto out;
  683. /*
  684.  * If we changed the size or mtime, update the inode
  685.  * now to avoid invalidating the page cache.
  686.  */
  687. if (attr->ia_valid & ATTR_SIZE) {
  688. if (attr->ia_size != fattr.size)
  689. printk("nfs_notify_change: attr=%Ld, fattr=%Ld??n",
  690.        (long long) attr->ia_size, (long long)fattr.size);
  691. vmtruncate(inode, attr->ia_size);
  692. }
  693. /*
  694.  * If we changed the size or mtime, update the inode
  695.  * now to avoid invalidating the page cache.
  696.  */
  697. if (!(fattr.valid & NFS_ATTR_WCC)) {
  698. fattr.pre_size = NFS_CACHE_ISIZE(inode);
  699. fattr.pre_mtime = NFS_CACHE_MTIME(inode);
  700. fattr.pre_ctime = NFS_CACHE_CTIME(inode);
  701. fattr.valid |= NFS_ATTR_WCC;
  702. }
  703. /* Force an attribute cache update */
  704. NFS_CACHEINV(inode);
  705. error = nfs_refresh_inode(inode, &fattr);
  706. out:
  707. return error;
  708. }
  709. /*
  710.  * Wait for the inode to get unlocked.
  711.  * (Used for NFS_INO_LOCKED and NFS_INO_REVALIDATING).
  712.  */
  713. int
  714. nfs_wait_on_inode(struct inode *inode, int flag)
  715. {
  716. struct rpc_clnt *clnt = NFS_CLIENT(inode);
  717. int error;
  718. if (!(NFS_FLAGS(inode) & flag))
  719. return 0;
  720. atomic_inc(&inode->i_count);
  721. error = nfs_wait_event(clnt, inode->i_wait, !(NFS_FLAGS(inode) & flag));
  722. iput(inode);
  723. return error;
  724. }
  725. /*
  726.  * Externally visible revalidation function
  727.  */
  728. int
  729. nfs_revalidate(struct dentry *dentry)
  730. {
  731. struct inode *inode = dentry->d_inode;
  732. return nfs_revalidate_inode(NFS_SERVER(inode), inode);
  733. }
  734. /*
  735.  * Ensure that mmap has a recent RPC credential for use when writing out
  736.  * shared pages
  737.  */
  738. static inline void
  739. nfs_set_mmcred(struct inode *inode, struct rpc_cred *cred)
  740. {
  741. struct rpc_cred **p = &NFS_I(inode)->mm_cred,
  742. *oldcred = *p;
  743. *p = get_rpccred(cred);
  744. if (oldcred)
  745. put_rpccred(oldcred);
  746. }
  747. /*
  748.  * These are probably going to contain hooks for
  749.  * allocating and releasing RPC credentials for
  750.  * the file. I'll have to think about Tronds patch
  751.  * a bit more..
  752.  */
  753. int nfs_open(struct inode *inode, struct file *filp)
  754. {
  755. struct rpc_auth *auth;
  756. struct rpc_cred *cred;
  757. lock_kernel();
  758. auth = NFS_CLIENT(inode)->cl_auth;
  759. cred = rpcauth_lookupcred(auth, 0);
  760. filp->private_data = cred;
  761. if (filp->f_mode & FMODE_WRITE)
  762. nfs_set_mmcred(inode, cred);
  763. unlock_kernel();
  764. return 0;
  765. }
  766. int nfs_release(struct inode *inode, struct file *filp)
  767. {
  768. struct rpc_cred *cred;
  769. lock_kernel();
  770. cred = nfs_file_cred(filp);
  771. if (cred)
  772. put_rpccred(cred);
  773. unlock_kernel();
  774. return 0;
  775. }
  776. /*
  777.  * This function is called whenever some part of NFS notices that
  778.  * the cached attributes have to be refreshed.
  779.  */
  780. int
  781. __nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
  782. {
  783. int  status = -ESTALE;
  784. struct nfs_fattr fattr;
  785. dfprintk(PAGECACHE, "NFS: revalidating (%x/%Ld)n",
  786. inode->i_dev, (long long)NFS_FILEID(inode));
  787. lock_kernel();
  788. if (!inode || is_bad_inode(inode))
  789.   goto out_nowait;
  790. if (NFS_STALE(inode) && inode != inode->i_sb->s_root->d_inode)
  791.   goto out_nowait;
  792. while (NFS_REVALIDATING(inode)) {
  793. status = nfs_wait_on_inode(inode, NFS_INO_REVALIDATING);
  794. if (status < 0)
  795. goto out_nowait;
  796. if (time_before(jiffies,NFS_READTIME(inode)+NFS_ATTRTIMEO(inode))) {
  797. status = NFS_STALE(inode) ? -ESTALE : 0;
  798. goto out_nowait;
  799. }
  800. }
  801. NFS_FLAGS(inode) |= NFS_INO_REVALIDATING;
  802. status = NFS_PROTO(inode)->getattr(inode, &fattr);
  803. if (status) {
  804. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%x/%Ld) getattr failed, error=%dn",
  805.  inode->i_dev, (long long)NFS_FILEID(inode), status);
  806. if (status == -ESTALE) {
  807. NFS_FLAGS(inode) |= NFS_INO_STALE;
  808. if (inode != inode->i_sb->s_root->d_inode)
  809. remove_inode_hash(inode);
  810. }
  811. goto out;
  812. }
  813. status = nfs_refresh_inode(inode, &fattr);
  814. if (status) {
  815. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%x/%Ld) refresh failed, error=%dn",
  816.  inode->i_dev, (long long)NFS_FILEID(inode), status);
  817. goto out;
  818. }
  819. dfprintk(PAGECACHE, "NFS: (%x/%Ld) revalidation completen",
  820. inode->i_dev, (long long)NFS_FILEID(inode));
  821. NFS_FLAGS(inode) &= ~NFS_INO_STALE;
  822. out:
  823. NFS_FLAGS(inode) &= ~NFS_INO_REVALIDATING;
  824. wake_up(&inode->i_wait);
  825.  out_nowait:
  826. unlock_kernel();
  827. return status;
  828. }
  829. /*
  830.  * nfs_fattr_obsolete - Test if attribute data is newer than cached data
  831.  * @inode: inode
  832.  * @fattr: attributes to test
  833.  *
  834.  * Avoid stuffing the attribute cache with obsolete information.
  835.  * We always accept updates if the attribute cache timed out, or if
  836.  * fattr->ctime is newer than our cached value.
  837.  * If fattr->ctime matches the cached value, we still accept the update
  838.  * if it increases the file size.
  839.  */
  840. static inline
  841. int nfs_fattr_obsolete(struct inode *inode, struct nfs_fattr *fattr)
  842. {
  843. s64 cdif;
  844. if (time_after(jiffies, NFS_READTIME(inode)+NFS_ATTRTIMEO(inode)))
  845. goto out_valid;
  846. if ((cdif = (s64)fattr->ctime - (s64)NFS_CACHE_CTIME(inode)) > 0)
  847. goto out_valid;
  848. /* Ugh... */
  849. if (cdif == 0 && fattr->size > NFS_CACHE_ISIZE(inode))
  850. goto out_valid;
  851. return -1;
  852.  out_valid:
  853. return 0;
  854. }
  855. /*
  856.  * Many nfs protocol calls return the new file attributes after
  857.  * an operation.  Here we update the inode to reflect the state
  858.  * of the server's inode.
  859.  *
  860.  * This is a bit tricky because we have to make sure all dirty pages
  861.  * have been sent off to the server before calling invalidate_inode_pages.
  862.  * To make sure no other process adds more write requests while we try
  863.  * our best to flush them, we make them sleep during the attribute refresh.
  864.  *
  865.  * A very similar scenario holds for the dir cache.
  866.  */
  867. int
  868. __nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
  869. {
  870. __u64 new_size, new_mtime;
  871. loff_t new_isize;
  872. time_t new_atime;
  873. int invalid = 0;
  874. dfprintk(VFS, "NFS: refresh_inode(%x/%ld ct=%d info=0x%x)n",
  875. inode->i_dev, inode->i_ino,
  876. atomic_read(&inode->i_count), fattr->valid);
  877. if (NFS_FSID(inode) != fattr->fsid ||
  878.     NFS_FILEID(inode) != fattr->fileid) {
  879. printk(KERN_ERR "nfs_refresh_inode: inode number mismatchn"
  880.        "expected (0x%Lx/0x%Lx), got (0x%Lx/0x%Lx)n",
  881.        (long long)NFS_FSID(inode), (long long)NFS_FILEID(inode),
  882.        (long long)fattr->fsid, (long long)fattr->fileid);
  883. goto out_err;
  884. }
  885. /*
  886.  * Make sure the inode's type hasn't changed.
  887.  */
  888. if ((inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
  889. goto out_changed;
  890.   new_mtime = fattr->mtime;
  891. new_size = fattr->size;
  892.   new_isize = nfs_size_to_loff_t(fattr->size);
  893. new_atime = nfs_time_to_secs(fattr->atime);
  894. /* Avoid races */
  895. if (nfs_fattr_obsolete(inode, fattr))
  896. goto out_nochange;
  897. /*
  898.  * Update the read time so we don't revalidate too often.
  899.  */
  900. NFS_READTIME(inode) = jiffies;
  901. /*
  902.  * Note: NFS_CACHE_ISIZE(inode) reflects the state of the cache.
  903.  *       NOT inode->i_size!!!
  904.  */
  905. if (NFS_CACHE_ISIZE(inode) != new_size) {
  906. #ifdef NFS_DEBUG_VERBOSE
  907. printk(KERN_DEBUG "NFS: isize change on %x/%ldn", inode->i_dev, inode->i_ino);
  908. #endif
  909. invalid = 1;
  910. }
  911. /*
  912.  * Note: we don't check inode->i_mtime since pipes etc.
  913.  *       can change this value in VFS without requiring a
  914.  *  cache revalidation.
  915.  */
  916. if (NFS_CACHE_MTIME(inode) != new_mtime) {
  917. #ifdef NFS_DEBUG_VERBOSE
  918. printk(KERN_DEBUG "NFS: mtime change on %x/%ldn", inode->i_dev, inode->i_ino);
  919. #endif
  920. invalid = 1;
  921. }
  922. /* Check Weak Cache Consistency data.
  923.  * If size and mtime match the pre-operation values, we can
  924.  * assume that any attribute changes were caused by our NFS
  925.          * operation, so there's no need to invalidate the caches.
  926.          */
  927.         if ((fattr->valid & NFS_ATTR_WCC)
  928.     && NFS_CACHE_ISIZE(inode) == fattr->pre_size
  929.     && NFS_CACHE_MTIME(inode) == fattr->pre_mtime) {
  930. invalid = 0;
  931. }
  932. /*
  933.  * If we have pending writebacks, things can get
  934.  * messy.
  935.  */
  936. if (nfs_have_writebacks(inode) && new_isize < inode->i_size)
  937. new_isize = inode->i_size;
  938. NFS_CACHE_CTIME(inode) = fattr->ctime;
  939. inode->i_ctime = nfs_time_to_secs(fattr->ctime);
  940. inode->i_atime = new_atime;
  941. NFS_CACHE_MTIME(inode) = new_mtime;
  942. inode->i_mtime = nfs_time_to_secs(new_mtime);
  943. NFS_CACHE_ISIZE(inode) = new_size;
  944. inode->i_size = new_isize;
  945. inode->i_mode = fattr->mode;
  946. inode->i_nlink = fattr->nlink;
  947. inode->i_uid = fattr->uid;
  948. inode->i_gid = fattr->gid;
  949. if (fattr->valid & NFS_ATTR_FATTR_V3) {
  950. /*
  951.  * report the blocks in 512byte units
  952.  */
  953. inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
  954. inode->i_blksize = inode->i_sb->s_blocksize;
  955.   } else {
  956.   inode->i_blocks = fattr->du.nfs2.blocks;
  957.   inode->i_blksize = fattr->du.nfs2.blocksize;
  958.   }
  959.   inode->i_rdev = 0;
  960.   if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
  961.   inode->i_rdev = to_kdev_t(fattr->rdev);
  962.  
  963. /* Update attrtimeo value */
  964. if (!invalid && time_after(jiffies, NFS_ATTRTIMEO_UPDATE(inode)+NFS_ATTRTIMEO(inode))) {
  965. if ((NFS_ATTRTIMEO(inode) <<= 1) > NFS_MAXATTRTIMEO(inode))
  966. NFS_ATTRTIMEO(inode) = NFS_MAXATTRTIMEO(inode);
  967. NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
  968. }
  969. if (invalid)
  970. nfs_zap_caches(inode);
  971. return 0;
  972.  out_nochange:
  973. if (new_atime - inode->i_atime > 0)
  974. inode->i_atime = new_atime;
  975. return 0;
  976.  out_changed:
  977. /*
  978.  * Big trouble! The inode has become a different object.
  979.  */
  980. #ifdef NFS_PARANOIA
  981. printk(KERN_DEBUG "nfs_refresh_inode: inode %ld mode changed, %07o to %07on",
  982.        inode->i_ino, inode->i_mode, fattr->mode);
  983. #endif
  984. /*
  985.  * No need to worry about unhashing the dentry, as the
  986.  * lookup validation will know that the inode is bad.
  987.  * (But we fall through to invalidate the caches.)
  988.  */
  989. nfs_invalidate_inode(inode);
  990.  out_err:
  991. return -EIO;
  992. }
  993. /*
  994.  * File system information
  995.  */
  996. static DECLARE_FSTYPE(nfs_fs_type, "nfs", nfs_read_super, FS_ODD_RENAME);
  997. extern int nfs_init_nfspagecache(void);
  998. extern void nfs_destroy_nfspagecache(void);
  999. extern int nfs_init_readpagecache(void);
  1000. extern int nfs_destroy_readpagecache(void);
  1001. extern int nfs_init_writepagecache(void);
  1002. extern int nfs_destroy_writepagecache(void);
  1003. /*
  1004.  * Initialize NFS
  1005.  */
  1006. static int __init init_nfs_fs(void)
  1007. {
  1008. int err;
  1009. err = nfs_init_nfspagecache();
  1010. if (err)
  1011. return err;
  1012. err = nfs_init_readpagecache();
  1013. if (err)
  1014. return err;
  1015. err = nfs_init_writepagecache();
  1016. if (err)
  1017. return err;
  1018. #ifdef CONFIG_PROC_FS
  1019. rpc_proc_register(&nfs_rpcstat);
  1020. #endif
  1021.         return register_filesystem(&nfs_fs_type);
  1022. }
  1023. static void __exit exit_nfs_fs(void)
  1024. {
  1025. nfs_destroy_writepagecache();
  1026. nfs_destroy_readpagecache();
  1027. nfs_destroy_nfspagecache();
  1028. #ifdef CONFIG_PROC_FS
  1029. rpc_proc_unregister("nfs");
  1030. #endif
  1031. unregister_filesystem(&nfs_fs_type);
  1032. }
  1033. EXPORT_NO_SYMBOLS;
  1034. /* Not quite true; I just maintain it */
  1035. MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
  1036. MODULE_LICENSE("GPL");
  1037. module_init(init_nfs_fs)
  1038. module_exit(exit_nfs_fs)