inode.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527
  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@lxorguk.ukuu.org.uk>, 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/module.h>
  16. #include <linux/init.h>
  17. #include <linux/sched.h>
  18. #include <linux/time.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/unistd.h>
  25. #include <linux/sunrpc/clnt.h>
  26. #include <linux/sunrpc/stats.h>
  27. #include <linux/sunrpc/metrics.h>
  28. #include <linux/nfs_fs.h>
  29. #include <linux/nfs_mount.h>
  30. #include <linux/nfs4_mount.h>
  31. #include <linux/lockd/bind.h>
  32. #include <linux/seq_file.h>
  33. #include <linux/mount.h>
  34. #include <linux/nfs_idmap.h>
  35. #include <linux/vfs.h>
  36. #include <linux/inet.h>
  37. #include <linux/nfs_xdr.h>
  38. #include <linux/slab.h>
  39. #include <asm/system.h>
  40. #include <asm/uaccess.h>
  41. #include "nfs4_fs.h"
  42. #include "callback.h"
  43. #include "delegation.h"
  44. #include "iostat.h"
  45. #include "internal.h"
  46. #include "fscache.h"
  47. #include "dns_resolve.h"
  48. #define NFSDBG_FACILITY NFSDBG_VFS
  49. #define NFS_64_BIT_INODE_NUMBERS_ENABLED 1
  50. /* Default is to see 64-bit inode numbers */
  51. static int enable_ino64 = NFS_64_BIT_INODE_NUMBERS_ENABLED;
  52. static void nfs_invalidate_inode(struct inode *);
  53. static int nfs_update_inode(struct inode *, struct nfs_fattr *);
  54. static struct kmem_cache * nfs_inode_cachep;
  55. static inline unsigned long
  56. nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
  57. {
  58. return nfs_fileid_to_ino_t(fattr->fileid);
  59. }
  60. /**
  61. * nfs_wait_bit_killable - helper for functions that are sleeping on bit locks
  62. * @word: long word containing the bit lock
  63. */
  64. int nfs_wait_bit_killable(void *word)
  65. {
  66. if (fatal_signal_pending(current))
  67. return -ERESTARTSYS;
  68. schedule();
  69. return 0;
  70. }
  71. /**
  72. * nfs_compat_user_ino64 - returns the user-visible inode number
  73. * @fileid: 64-bit fileid
  74. *
  75. * This function returns a 32-bit inode number if the boot parameter
  76. * nfs.enable_ino64 is zero.
  77. */
  78. u64 nfs_compat_user_ino64(u64 fileid)
  79. {
  80. int ino;
  81. if (enable_ino64)
  82. return fileid;
  83. ino = fileid;
  84. if (sizeof(ino) < sizeof(fileid))
  85. ino ^= fileid >> (sizeof(fileid)-sizeof(ino)) * 8;
  86. return ino;
  87. }
  88. void nfs_clear_inode(struct inode *inode)
  89. {
  90. /*
  91. * The following should never happen...
  92. */
  93. BUG_ON(nfs_have_writebacks(inode));
  94. BUG_ON(!list_empty(&NFS_I(inode)->open_files));
  95. nfs_zap_acl_cache(inode);
  96. nfs_access_zap_cache(inode);
  97. nfs_fscache_release_inode_cookie(inode);
  98. }
  99. /**
  100. * nfs_sync_mapping - helper to flush all mmapped dirty data to disk
  101. */
  102. int nfs_sync_mapping(struct address_space *mapping)
  103. {
  104. int ret = 0;
  105. if (mapping->nrpages != 0) {
  106. unmap_mapping_range(mapping, 0, 0, 0);
  107. ret = nfs_wb_all(mapping->host);
  108. }
  109. return ret;
  110. }
  111. /*
  112. * Invalidate the local caches
  113. */
  114. static void nfs_zap_caches_locked(struct inode *inode)
  115. {
  116. struct nfs_inode *nfsi = NFS_I(inode);
  117. int mode = inode->i_mode;
  118. nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
  119. nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
  120. nfsi->attrtimeo_timestamp = jiffies;
  121. memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
  122. if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))
  123. nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL|NFS_INO_REVAL_PAGECACHE;
  124. else
  125. nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL|NFS_INO_REVAL_PAGECACHE;
  126. }
  127. void nfs_zap_caches(struct inode *inode)
  128. {
  129. spin_lock(&inode->i_lock);
  130. nfs_zap_caches_locked(inode);
  131. spin_unlock(&inode->i_lock);
  132. }
  133. void nfs_zap_mapping(struct inode *inode, struct address_space *mapping)
  134. {
  135. if (mapping->nrpages != 0) {
  136. spin_lock(&inode->i_lock);
  137. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
  138. spin_unlock(&inode->i_lock);
  139. }
  140. }
  141. void nfs_zap_acl_cache(struct inode *inode)
  142. {
  143. void (*clear_acl_cache)(struct inode *);
  144. clear_acl_cache = NFS_PROTO(inode)->clear_acl_cache;
  145. if (clear_acl_cache != NULL)
  146. clear_acl_cache(inode);
  147. spin_lock(&inode->i_lock);
  148. NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_ACL;
  149. spin_unlock(&inode->i_lock);
  150. }
  151. void nfs_invalidate_atime(struct inode *inode)
  152. {
  153. spin_lock(&inode->i_lock);
  154. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
  155. spin_unlock(&inode->i_lock);
  156. }
  157. /*
  158. * Invalidate, but do not unhash, the inode.
  159. * NB: must be called with inode->i_lock held!
  160. */
  161. static void nfs_invalidate_inode(struct inode *inode)
  162. {
  163. set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
  164. nfs_zap_caches_locked(inode);
  165. }
  166. struct nfs_find_desc {
  167. struct nfs_fh *fh;
  168. struct nfs_fattr *fattr;
  169. };
  170. /*
  171. * In NFSv3 we can have 64bit inode numbers. In order to support
  172. * this, and re-exported directories (also seen in NFSv2)
  173. * we are forced to allow 2 different inodes to have the same
  174. * i_ino.
  175. */
  176. static int
  177. nfs_find_actor(struct inode *inode, void *opaque)
  178. {
  179. struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
  180. struct nfs_fh *fh = desc->fh;
  181. struct nfs_fattr *fattr = desc->fattr;
  182. if (NFS_FILEID(inode) != fattr->fileid)
  183. return 0;
  184. if (nfs_compare_fh(NFS_FH(inode), fh))
  185. return 0;
  186. if (is_bad_inode(inode) || NFS_STALE(inode))
  187. return 0;
  188. return 1;
  189. }
  190. static int
  191. nfs_init_locked(struct inode *inode, void *opaque)
  192. {
  193. struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
  194. struct nfs_fattr *fattr = desc->fattr;
  195. set_nfs_fileid(inode, fattr->fileid);
  196. nfs_copy_fh(NFS_FH(inode), desc->fh);
  197. return 0;
  198. }
  199. /* Don't use READDIRPLUS on directories that we believe are too large */
  200. #define NFS_LIMIT_READDIRPLUS (8*PAGE_SIZE)
  201. /*
  202. * This is our front-end to iget that looks up inodes by file handle
  203. * instead of inode number.
  204. */
  205. struct inode *
  206. nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
  207. {
  208. struct nfs_find_desc desc = {
  209. .fh = fh,
  210. .fattr = fattr
  211. };
  212. struct inode *inode = ERR_PTR(-ENOENT);
  213. unsigned long hash;
  214. if ((fattr->valid & NFS_ATTR_FATTR_FILEID) == 0)
  215. goto out_no_inode;
  216. if ((fattr->valid & NFS_ATTR_FATTR_TYPE) == 0)
  217. goto out_no_inode;
  218. hash = nfs_fattr_to_ino_t(fattr);
  219. inode = iget5_locked(sb, hash, nfs_find_actor, nfs_init_locked, &desc);
  220. if (inode == NULL) {
  221. inode = ERR_PTR(-ENOMEM);
  222. goto out_no_inode;
  223. }
  224. if (inode->i_state & I_NEW) {
  225. struct nfs_inode *nfsi = NFS_I(inode);
  226. unsigned long now = jiffies;
  227. /* We set i_ino for the few things that still rely on it,
  228. * such as stat(2) */
  229. inode->i_ino = hash;
  230. /* We can't support update_atime(), since the server will reset it */
  231. inode->i_flags |= S_NOATIME|S_NOCMTIME;
  232. inode->i_mode = fattr->mode;
  233. if ((fattr->valid & NFS_ATTR_FATTR_MODE) == 0
  234. && nfs_server_capable(inode, NFS_CAP_MODE))
  235. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  236. | NFS_INO_INVALID_ACCESS
  237. | NFS_INO_INVALID_ACL;
  238. /* Why so? Because we want revalidate for devices/FIFOs, and
  239. * that's precisely what we have in nfs_file_inode_operations.
  240. */
  241. inode->i_op = NFS_SB(sb)->nfs_client->rpc_ops->file_inode_ops;
  242. if (S_ISREG(inode->i_mode)) {
  243. inode->i_fop = &nfs_file_operations;
  244. inode->i_data.a_ops = &nfs_file_aops;
  245. inode->i_data.backing_dev_info = &NFS_SB(sb)->backing_dev_info;
  246. } else if (S_ISDIR(inode->i_mode)) {
  247. inode->i_op = NFS_SB(sb)->nfs_client->rpc_ops->dir_inode_ops;
  248. inode->i_fop = &nfs_dir_operations;
  249. if (nfs_server_capable(inode, NFS_CAP_READDIRPLUS)
  250. && fattr->size <= NFS_LIMIT_READDIRPLUS)
  251. set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  252. /* Deal with crossing mountpoints */
  253. if ((fattr->valid & NFS_ATTR_FATTR_FSID)
  254. && !nfs_fsid_equal(&NFS_SB(sb)->fsid, &fattr->fsid)) {
  255. if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)
  256. inode->i_op = &nfs_referral_inode_operations;
  257. else
  258. inode->i_op = &nfs_mountpoint_inode_operations;
  259. inode->i_fop = NULL;
  260. set_bit(NFS_INO_MOUNTPOINT, &nfsi->flags);
  261. }
  262. } else if (S_ISLNK(inode->i_mode))
  263. inode->i_op = &nfs_symlink_inode_operations;
  264. else
  265. init_special_inode(inode, inode->i_mode, fattr->rdev);
  266. memset(&inode->i_atime, 0, sizeof(inode->i_atime));
  267. memset(&inode->i_mtime, 0, sizeof(inode->i_mtime));
  268. memset(&inode->i_ctime, 0, sizeof(inode->i_ctime));
  269. nfsi->change_attr = 0;
  270. inode->i_size = 0;
  271. inode->i_nlink = 0;
  272. inode->i_uid = -2;
  273. inode->i_gid = -2;
  274. inode->i_blocks = 0;
  275. memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
  276. nfsi->read_cache_jiffies = fattr->time_start;
  277. nfsi->attr_gencount = fattr->gencount;
  278. if (fattr->valid & NFS_ATTR_FATTR_ATIME)
  279. inode->i_atime = fattr->atime;
  280. else if (nfs_server_capable(inode, NFS_CAP_ATIME))
  281. nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
  282. if (fattr->valid & NFS_ATTR_FATTR_MTIME)
  283. inode->i_mtime = fattr->mtime;
  284. else if (nfs_server_capable(inode, NFS_CAP_MTIME))
  285. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  286. | NFS_INO_INVALID_DATA;
  287. if (fattr->valid & NFS_ATTR_FATTR_CTIME)
  288. inode->i_ctime = fattr->ctime;
  289. else if (nfs_server_capable(inode, NFS_CAP_CTIME))
  290. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  291. | NFS_INO_INVALID_ACCESS
  292. | NFS_INO_INVALID_ACL;
  293. if (fattr->valid & NFS_ATTR_FATTR_CHANGE)
  294. nfsi->change_attr = fattr->change_attr;
  295. else if (nfs_server_capable(inode, NFS_CAP_CHANGE_ATTR))
  296. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  297. | NFS_INO_INVALID_DATA;
  298. if (fattr->valid & NFS_ATTR_FATTR_SIZE)
  299. inode->i_size = nfs_size_to_loff_t(fattr->size);
  300. else
  301. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  302. | NFS_INO_INVALID_DATA
  303. | NFS_INO_REVAL_PAGECACHE;
  304. if (fattr->valid & NFS_ATTR_FATTR_NLINK)
  305. inode->i_nlink = fattr->nlink;
  306. else if (nfs_server_capable(inode, NFS_CAP_NLINK))
  307. nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
  308. if (fattr->valid & NFS_ATTR_FATTR_OWNER)
  309. inode->i_uid = fattr->uid;
  310. else if (nfs_server_capable(inode, NFS_CAP_OWNER))
  311. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  312. | NFS_INO_INVALID_ACCESS
  313. | NFS_INO_INVALID_ACL;
  314. if (fattr->valid & NFS_ATTR_FATTR_GROUP)
  315. inode->i_gid = fattr->gid;
  316. else if (nfs_server_capable(inode, NFS_CAP_OWNER_GROUP))
  317. nfsi->cache_validity |= NFS_INO_INVALID_ATTR
  318. | NFS_INO_INVALID_ACCESS
  319. | NFS_INO_INVALID_ACL;
  320. if (fattr->valid & NFS_ATTR_FATTR_BLOCKS_USED)
  321. inode->i_blocks = fattr->du.nfs2.blocks;
  322. if (fattr->valid & NFS_ATTR_FATTR_SPACE_USED) {
  323. /*
  324. * report the blocks in 512byte units
  325. */
  326. inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
  327. }
  328. nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
  329. nfsi->attrtimeo_timestamp = now;
  330. nfsi->access_cache = RB_ROOT;
  331. nfs_fscache_init_inode_cookie(inode);
  332. unlock_new_inode(inode);
  333. } else
  334. nfs_refresh_inode(inode, fattr);
  335. dprintk("NFS: nfs_fhget(%s/%Ld ct=%d)\n",
  336. inode->i_sb->s_id,
  337. (long long)NFS_FILEID(inode),
  338. atomic_read(&inode->i_count));
  339. out:
  340. return inode;
  341. out_no_inode:
  342. dprintk("nfs_fhget: iget failed with error %ld\n", PTR_ERR(inode));
  343. goto out;
  344. }
  345. #define NFS_VALID_ATTRS (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_ATIME|ATTR_ATIME_SET|ATTR_MTIME|ATTR_MTIME_SET|ATTR_FILE)
  346. int
  347. nfs_setattr(struct dentry *dentry, struct iattr *attr)
  348. {
  349. struct inode *inode = dentry->d_inode;
  350. struct nfs_fattr fattr;
  351. int error;
  352. nfs_inc_stats(inode, NFSIOS_VFSSETATTR);
  353. /* skip mode change if it's just for clearing setuid/setgid */
  354. if (attr->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID))
  355. attr->ia_valid &= ~ATTR_MODE;
  356. if (attr->ia_valid & ATTR_SIZE) {
  357. if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
  358. attr->ia_valid &= ~ATTR_SIZE;
  359. }
  360. /* Optimization: if the end result is no change, don't RPC */
  361. attr->ia_valid &= NFS_VALID_ATTRS;
  362. if ((attr->ia_valid & ~ATTR_FILE) == 0)
  363. return 0;
  364. /* Write all dirty data */
  365. if (S_ISREG(inode->i_mode)) {
  366. filemap_write_and_wait(inode->i_mapping);
  367. nfs_wb_all(inode);
  368. }
  369. /*
  370. * Return any delegations if we're going to change ACLs
  371. */
  372. if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
  373. nfs_inode_return_delegation(inode);
  374. error = NFS_PROTO(inode)->setattr(dentry, &fattr, attr);
  375. if (error == 0)
  376. nfs_refresh_inode(inode, &fattr);
  377. return error;
  378. }
  379. /**
  380. * nfs_vmtruncate - unmap mappings "freed" by truncate() syscall
  381. * @inode: inode of the file used
  382. * @offset: file offset to start truncating
  383. *
  384. * This is a copy of the common vmtruncate, but with the locking
  385. * corrected to take into account the fact that NFS requires
  386. * inode->i_size to be updated under the inode->i_lock.
  387. */
  388. static int nfs_vmtruncate(struct inode * inode, loff_t offset)
  389. {
  390. loff_t oldsize;
  391. int err;
  392. err = inode_newsize_ok(inode, offset);
  393. if (err)
  394. goto out;
  395. spin_lock(&inode->i_lock);
  396. oldsize = inode->i_size;
  397. i_size_write(inode, offset);
  398. spin_unlock(&inode->i_lock);
  399. truncate_pagecache(inode, oldsize, offset);
  400. out:
  401. return err;
  402. }
  403. /**
  404. * nfs_setattr_update_inode - Update inode metadata after a setattr call.
  405. * @inode: pointer to struct inode
  406. * @attr: pointer to struct iattr
  407. *
  408. * Note: we do this in the *proc.c in order to ensure that
  409. * it works for things like exclusive creates too.
  410. */
  411. void nfs_setattr_update_inode(struct inode *inode, struct iattr *attr)
  412. {
  413. if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0) {
  414. spin_lock(&inode->i_lock);
  415. if ((attr->ia_valid & ATTR_MODE) != 0) {
  416. int mode = attr->ia_mode & S_IALLUGO;
  417. mode |= inode->i_mode & ~S_IALLUGO;
  418. inode->i_mode = mode;
  419. }
  420. if ((attr->ia_valid & ATTR_UID) != 0)
  421. inode->i_uid = attr->ia_uid;
  422. if ((attr->ia_valid & ATTR_GID) != 0)
  423. inode->i_gid = attr->ia_gid;
  424. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  425. spin_unlock(&inode->i_lock);
  426. }
  427. if ((attr->ia_valid & ATTR_SIZE) != 0) {
  428. nfs_inc_stats(inode, NFSIOS_SETATTRTRUNC);
  429. nfs_vmtruncate(inode, attr->ia_size);
  430. }
  431. }
  432. int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
  433. {
  434. struct inode *inode = dentry->d_inode;
  435. int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME;
  436. int err;
  437. /* Flush out writes to the server in order to update c/mtime. */
  438. if (S_ISREG(inode->i_mode)) {
  439. err = filemap_write_and_wait(inode->i_mapping);
  440. if (err)
  441. goto out;
  442. }
  443. /*
  444. * We may force a getattr if the user cares about atime.
  445. *
  446. * Note that we only have to check the vfsmount flags here:
  447. * - NFS always sets S_NOATIME by so checking it would give a
  448. * bogus result
  449. * - NFS never sets MS_NOATIME or MS_NODIRATIME so there is
  450. * no point in checking those.
  451. */
  452. if ((mnt->mnt_flags & MNT_NOATIME) ||
  453. ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
  454. need_atime = 0;
  455. if (need_atime)
  456. err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
  457. else
  458. err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
  459. if (!err) {
  460. generic_fillattr(inode, stat);
  461. stat->ino = nfs_compat_user_ino64(NFS_FILEID(inode));
  462. }
  463. out:
  464. return err;
  465. }
  466. /**
  467. * nfs_close_context - Common close_context() routine NFSv2/v3
  468. * @ctx: pointer to context
  469. * @is_sync: is this a synchronous close
  470. *
  471. * always ensure that the attributes are up to date if we're mounted
  472. * with close-to-open semantics
  473. */
  474. void nfs_close_context(struct nfs_open_context *ctx, int is_sync)
  475. {
  476. struct inode *inode;
  477. struct nfs_server *server;
  478. if (!(ctx->mode & FMODE_WRITE))
  479. return;
  480. if (!is_sync)
  481. return;
  482. inode = ctx->path.dentry->d_inode;
  483. if (!list_empty(&NFS_I(inode)->open_files))
  484. return;
  485. server = NFS_SERVER(inode);
  486. if (server->flags & NFS_MOUNT_NOCTO)
  487. return;
  488. nfs_revalidate_inode(server, inode);
  489. }
  490. static struct nfs_open_context *alloc_nfs_open_context(struct path *path, struct rpc_cred *cred)
  491. {
  492. struct nfs_open_context *ctx;
  493. ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
  494. if (ctx != NULL) {
  495. ctx->path = *path;
  496. path_get(&ctx->path);
  497. ctx->cred = get_rpccred(cred);
  498. ctx->state = NULL;
  499. ctx->lockowner = current->files;
  500. ctx->flags = 0;
  501. ctx->error = 0;
  502. ctx->dir_cookie = 0;
  503. atomic_set(&ctx->count, 1);
  504. }
  505. return ctx;
  506. }
  507. struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx)
  508. {
  509. if (ctx != NULL)
  510. atomic_inc(&ctx->count);
  511. return ctx;
  512. }
  513. static void __put_nfs_open_context(struct nfs_open_context *ctx, int is_sync)
  514. {
  515. struct inode *inode = ctx->path.dentry->d_inode;
  516. if (!atomic_dec_and_lock(&ctx->count, &inode->i_lock))
  517. return;
  518. list_del(&ctx->list);
  519. spin_unlock(&inode->i_lock);
  520. NFS_PROTO(inode)->close_context(ctx, is_sync);
  521. if (ctx->cred != NULL)
  522. put_rpccred(ctx->cred);
  523. path_put(&ctx->path);
  524. kfree(ctx);
  525. }
  526. void put_nfs_open_context(struct nfs_open_context *ctx)
  527. {
  528. __put_nfs_open_context(ctx, 0);
  529. }
  530. /*
  531. * Ensure that mmap has a recent RPC credential for use when writing out
  532. * shared pages
  533. */
  534. static void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx)
  535. {
  536. struct inode *inode = filp->f_path.dentry->d_inode;
  537. struct nfs_inode *nfsi = NFS_I(inode);
  538. filp->private_data = get_nfs_open_context(ctx);
  539. spin_lock(&inode->i_lock);
  540. list_add(&ctx->list, &nfsi->open_files);
  541. spin_unlock(&inode->i_lock);
  542. }
  543. /*
  544. * Given an inode, search for an open context with the desired characteristics
  545. */
  546. struct nfs_open_context *nfs_find_open_context(struct inode *inode, struct rpc_cred *cred, fmode_t mode)
  547. {
  548. struct nfs_inode *nfsi = NFS_I(inode);
  549. struct nfs_open_context *pos, *ctx = NULL;
  550. spin_lock(&inode->i_lock);
  551. list_for_each_entry(pos, &nfsi->open_files, list) {
  552. if (cred != NULL && pos->cred != cred)
  553. continue;
  554. if ((pos->mode & (FMODE_READ|FMODE_WRITE)) != mode)
  555. continue;
  556. ctx = get_nfs_open_context(pos);
  557. break;
  558. }
  559. spin_unlock(&inode->i_lock);
  560. return ctx;
  561. }
  562. static void nfs_file_clear_open_context(struct file *filp)
  563. {
  564. struct inode *inode = filp->f_path.dentry->d_inode;
  565. struct nfs_open_context *ctx = nfs_file_open_context(filp);
  566. if (ctx) {
  567. filp->private_data = NULL;
  568. spin_lock(&inode->i_lock);
  569. list_move_tail(&ctx->list, &NFS_I(inode)->open_files);
  570. spin_unlock(&inode->i_lock);
  571. __put_nfs_open_context(ctx, filp->f_flags & O_DIRECT ? 0 : 1);
  572. }
  573. }
  574. /*
  575. * These allocate and release file read/write context information.
  576. */
  577. int nfs_open(struct inode *inode, struct file *filp)
  578. {
  579. struct nfs_open_context *ctx;
  580. struct rpc_cred *cred;
  581. cred = rpc_lookup_cred();
  582. if (IS_ERR(cred))
  583. return PTR_ERR(cred);
  584. ctx = alloc_nfs_open_context(&filp->f_path, cred);
  585. put_rpccred(cred);
  586. if (ctx == NULL)
  587. return -ENOMEM;
  588. ctx->mode = filp->f_mode;
  589. nfs_file_set_open_context(filp, ctx);
  590. put_nfs_open_context(ctx);
  591. nfs_fscache_set_inode_cookie(inode, filp);
  592. return 0;
  593. }
  594. int nfs_release(struct inode *inode, struct file *filp)
  595. {
  596. nfs_file_clear_open_context(filp);
  597. return 0;
  598. }
  599. /*
  600. * This function is called whenever some part of NFS notices that
  601. * the cached attributes have to be refreshed.
  602. */
  603. int
  604. __nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
  605. {
  606. int status = -ESTALE;
  607. struct nfs_fattr fattr;
  608. struct nfs_inode *nfsi = NFS_I(inode);
  609. dfprintk(PAGECACHE, "NFS: revalidating (%s/%Ld)\n",
  610. inode->i_sb->s_id, (long long)NFS_FILEID(inode));
  611. if (is_bad_inode(inode))
  612. goto out;
  613. if (NFS_STALE(inode))
  614. goto out;
  615. nfs_inc_stats(inode, NFSIOS_INODEREVALIDATE);
  616. status = NFS_PROTO(inode)->getattr(server, NFS_FH(inode), &fattr);
  617. if (status != 0) {
  618. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) getattr failed, error=%d\n",
  619. inode->i_sb->s_id,
  620. (long long)NFS_FILEID(inode), status);
  621. if (status == -ESTALE) {
  622. nfs_zap_caches(inode);
  623. if (!S_ISDIR(inode->i_mode))
  624. set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
  625. }
  626. goto out;
  627. }
  628. status = nfs_refresh_inode(inode, &fattr);
  629. if (status) {
  630. dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) refresh failed, error=%d\n",
  631. inode->i_sb->s_id,
  632. (long long)NFS_FILEID(inode), status);
  633. goto out;
  634. }
  635. if (nfsi->cache_validity & NFS_INO_INVALID_ACL)
  636. nfs_zap_acl_cache(inode);
  637. dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
  638. inode->i_sb->s_id,
  639. (long long)NFS_FILEID(inode));
  640. out:
  641. return status;
  642. }
  643. int nfs_attribute_timeout(struct inode *inode)
  644. {
  645. struct nfs_inode *nfsi = NFS_I(inode);
  646. if (nfs_have_delegated_attributes(inode))
  647. return 0;
  648. return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo);
  649. }
  650. /**
  651. * nfs_revalidate_inode - Revalidate the inode attributes
  652. * @server - pointer to nfs_server struct
  653. * @inode - pointer to inode struct
  654. *
  655. * Updates inode attribute information by retrieving the data from the server.
  656. */
  657. int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
  658. {
  659. if (!(NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATTR)
  660. && !nfs_attribute_timeout(inode))
  661. return NFS_STALE(inode) ? -ESTALE : 0;
  662. return __nfs_revalidate_inode(server, inode);
  663. }
  664. static int nfs_invalidate_mapping(struct inode *inode, struct address_space *mapping)
  665. {
  666. struct nfs_inode *nfsi = NFS_I(inode);
  667. if (mapping->nrpages != 0) {
  668. int ret = invalidate_inode_pages2(mapping);
  669. if (ret < 0)
  670. return ret;
  671. }
  672. spin_lock(&inode->i_lock);
  673. nfsi->cache_validity &= ~NFS_INO_INVALID_DATA;
  674. if (S_ISDIR(inode->i_mode))
  675. memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
  676. spin_unlock(&inode->i_lock);
  677. nfs_inc_stats(inode, NFSIOS_DATAINVALIDATE);
  678. nfs_fscache_reset_inode_cookie(inode);
  679. dfprintk(PAGECACHE, "NFS: (%s/%Ld) data cache invalidated\n",
  680. inode->i_sb->s_id, (long long)NFS_FILEID(inode));
  681. return 0;
  682. }
  683. /**
  684. * nfs_revalidate_mapping - Revalidate the pagecache
  685. * @inode - pointer to host inode
  686. * @mapping - pointer to mapping
  687. */
  688. int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping)
  689. {
  690. struct nfs_inode *nfsi = NFS_I(inode);
  691. int ret = 0;
  692. if ((nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
  693. || nfs_attribute_timeout(inode) || NFS_STALE(inode)) {
  694. ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
  695. if (ret < 0)
  696. goto out;
  697. }
  698. if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
  699. ret = nfs_invalidate_mapping(inode, mapping);
  700. out:
  701. return ret;
  702. }
  703. static void nfs_wcc_update_inode(struct inode *inode, struct nfs_fattr *fattr)
  704. {
  705. struct nfs_inode *nfsi = NFS_I(inode);
  706. if ((fattr->valid & NFS_ATTR_FATTR_PRECHANGE)
  707. && (fattr->valid & NFS_ATTR_FATTR_CHANGE)
  708. && nfsi->change_attr == fattr->pre_change_attr) {
  709. nfsi->change_attr = fattr->change_attr;
  710. if (S_ISDIR(inode->i_mode))
  711. nfsi->cache_validity |= NFS_INO_INVALID_DATA;
  712. }
  713. /* If we have atomic WCC data, we may update some attributes */
  714. if ((fattr->valid & NFS_ATTR_FATTR_PRECTIME)
  715. && (fattr->valid & NFS_ATTR_FATTR_CTIME)
  716. && timespec_equal(&inode->i_ctime, &fattr->pre_ctime))
  717. memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
  718. if ((fattr->valid & NFS_ATTR_FATTR_PREMTIME)
  719. && (fattr->valid & NFS_ATTR_FATTR_MTIME)
  720. && timespec_equal(&inode->i_mtime, &fattr->pre_mtime)) {
  721. memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
  722. if (S_ISDIR(inode->i_mode))
  723. nfsi->cache_validity |= NFS_INO_INVALID_DATA;
  724. }
  725. if ((fattr->valid & NFS_ATTR_FATTR_PRESIZE)
  726. && (fattr->valid & NFS_ATTR_FATTR_SIZE)
  727. && i_size_read(inode) == nfs_size_to_loff_t(fattr->pre_size)
  728. && nfsi->npages == 0)
  729. i_size_write(inode, nfs_size_to_loff_t(fattr->size));
  730. }
  731. /**
  732. * nfs_check_inode_attributes - verify consistency of the inode attribute cache
  733. * @inode - pointer to inode
  734. * @fattr - updated attributes
  735. *
  736. * Verifies the attribute cache. If we have just changed the attributes,
  737. * so that fattr carries weak cache consistency data, then it may
  738. * also update the ctime/mtime/change_attribute.
  739. */
  740. static int nfs_check_inode_attributes(struct inode *inode, struct nfs_fattr *fattr)
  741. {
  742. struct nfs_inode *nfsi = NFS_I(inode);
  743. loff_t cur_size, new_isize;
  744. unsigned long invalid = 0;
  745. /* Has the inode gone and changed behind our back? */
  746. if ((fattr->valid & NFS_ATTR_FATTR_FILEID) && nfsi->fileid != fattr->fileid)
  747. return -EIO;
  748. if ((fattr->valid & NFS_ATTR_FATTR_TYPE) && (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
  749. return -EIO;
  750. if ((fattr->valid & NFS_ATTR_FATTR_CHANGE) != 0 &&
  751. nfsi->change_attr != fattr->change_attr)
  752. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
  753. /* Verify a few of the more important attributes */
  754. if ((fattr->valid & NFS_ATTR_FATTR_MTIME) && !timespec_equal(&inode->i_mtime, &fattr->mtime))
  755. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
  756. if (fattr->valid & NFS_ATTR_FATTR_SIZE) {
  757. cur_size = i_size_read(inode);
  758. new_isize = nfs_size_to_loff_t(fattr->size);
  759. if (cur_size != new_isize && nfsi->npages == 0)
  760. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
  761. }
  762. /* Have any file permissions changed? */
  763. if ((fattr->valid & NFS_ATTR_FATTR_MODE) && (inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO))
  764. invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
  765. if ((fattr->valid & NFS_ATTR_FATTR_OWNER) && inode->i_uid != fattr->uid)
  766. invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
  767. if ((fattr->valid & NFS_ATTR_FATTR_GROUP) && inode->i_gid != fattr->gid)
  768. invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
  769. /* Has the link count changed? */
  770. if ((fattr->valid & NFS_ATTR_FATTR_NLINK) && inode->i_nlink != fattr->nlink)
  771. invalid |= NFS_INO_INVALID_ATTR;
  772. if ((fattr->valid & NFS_ATTR_FATTR_ATIME) && !timespec_equal(&inode->i_atime, &fattr->atime))
  773. invalid |= NFS_INO_INVALID_ATIME;
  774. if (invalid != 0)
  775. nfsi->cache_validity |= invalid;
  776. nfsi->read_cache_jiffies = fattr->time_start;
  777. return 0;
  778. }
  779. static int nfs_ctime_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
  780. {
  781. if (!(fattr->valid & NFS_ATTR_FATTR_CTIME))
  782. return 0;
  783. return timespec_compare(&fattr->ctime, &inode->i_ctime) > 0;
  784. }
  785. static int nfs_size_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
  786. {
  787. if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
  788. return 0;
  789. return nfs_size_to_loff_t(fattr->size) > i_size_read(inode);
  790. }
  791. static atomic_long_t nfs_attr_generation_counter;
  792. static unsigned long nfs_read_attr_generation_counter(void)
  793. {
  794. return atomic_long_read(&nfs_attr_generation_counter);
  795. }
  796. unsigned long nfs_inc_attr_generation_counter(void)
  797. {
  798. return atomic_long_inc_return(&nfs_attr_generation_counter);
  799. }
  800. void nfs_fattr_init(struct nfs_fattr *fattr)
  801. {
  802. fattr->valid = 0;
  803. fattr->time_start = jiffies;
  804. fattr->gencount = nfs_inc_attr_generation_counter();
  805. }
  806. struct nfs_fattr *nfs_alloc_fattr(void)
  807. {
  808. struct nfs_fattr *fattr;
  809. fattr = kmalloc(sizeof(*fattr), GFP_NOFS);
  810. if (fattr != NULL)
  811. nfs_fattr_init(fattr);
  812. return fattr;
  813. }
  814. struct nfs_fh *nfs_alloc_fhandle(void)
  815. {
  816. struct nfs_fh *fh;
  817. fh = kmalloc(sizeof(struct nfs_fh), GFP_NOFS);
  818. if (fh != NULL)
  819. fh->size = 0;
  820. return fh;
  821. }
  822. /**
  823. * nfs_inode_attrs_need_update - check if the inode attributes need updating
  824. * @inode - pointer to inode
  825. * @fattr - attributes
  826. *
  827. * Attempt to divine whether or not an RPC call reply carrying stale
  828. * attributes got scheduled after another call carrying updated ones.
  829. *
  830. * To do so, the function first assumes that a more recent ctime means
  831. * that the attributes in fattr are newer, however it also attempt to
  832. * catch the case where ctime either didn't change, or went backwards
  833. * (if someone reset the clock on the server) by looking at whether
  834. * or not this RPC call was started after the inode was last updated.
  835. * Note also the check for wraparound of 'attr_gencount'
  836. *
  837. * The function returns 'true' if it thinks the attributes in 'fattr' are
  838. * more recent than the ones cached in the inode.
  839. *
  840. */
  841. static int nfs_inode_attrs_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
  842. {
  843. const struct nfs_inode *nfsi = NFS_I(inode);
  844. return ((long)fattr->gencount - (long)nfsi->attr_gencount) > 0 ||
  845. nfs_ctime_need_update(inode, fattr) ||
  846. nfs_size_need_update(inode, fattr) ||
  847. ((long)nfsi->attr_gencount - (long)nfs_read_attr_generation_counter() > 0);
  848. }
  849. static int nfs_refresh_inode_locked(struct inode *inode, struct nfs_fattr *fattr)
  850. {
  851. if (nfs_inode_attrs_need_update(inode, fattr))
  852. return nfs_update_inode(inode, fattr);
  853. return nfs_check_inode_attributes(inode, fattr);
  854. }
  855. /**
  856. * nfs_refresh_inode - try to update the inode attribute cache
  857. * @inode - pointer to inode
  858. * @fattr - updated attributes
  859. *
  860. * Check that an RPC call that returned attributes has not overlapped with
  861. * other recent updates of the inode metadata, then decide whether it is
  862. * safe to do a full update of the inode attributes, or whether just to
  863. * call nfs_check_inode_attributes.
  864. */
  865. int nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
  866. {
  867. int status;
  868. if ((fattr->valid & NFS_ATTR_FATTR) == 0)
  869. return 0;
  870. spin_lock(&inode->i_lock);
  871. status = nfs_refresh_inode_locked(inode, fattr);
  872. spin_unlock(&inode->i_lock);
  873. return status;
  874. }
  875. static int nfs_post_op_update_inode_locked(struct inode *inode, struct nfs_fattr *fattr)
  876. {
  877. struct nfs_inode *nfsi = NFS_I(inode);
  878. nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
  879. if (S_ISDIR(inode->i_mode))
  880. nfsi->cache_validity |= NFS_INO_INVALID_DATA;
  881. if ((fattr->valid & NFS_ATTR_FATTR) == 0)
  882. return 0;
  883. return nfs_refresh_inode_locked(inode, fattr);
  884. }
  885. /**
  886. * nfs_post_op_update_inode - try to update the inode attribute cache
  887. * @inode - pointer to inode
  888. * @fattr - updated attributes
  889. *
  890. * After an operation that has changed the inode metadata, mark the
  891. * attribute cache as being invalid, then try to update it.
  892. *
  893. * NB: if the server didn't return any post op attributes, this
  894. * function will force the retrieval of attributes before the next
  895. * NFS request. Thus it should be used only for operations that
  896. * are expected to change one or more attributes, to avoid
  897. * unnecessary NFS requests and trips through nfs_update_inode().
  898. */
  899. int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr)
  900. {
  901. int status;
  902. spin_lock(&inode->i_lock);
  903. status = nfs_post_op_update_inode_locked(inode, fattr);
  904. spin_unlock(&inode->i_lock);
  905. return status;
  906. }
  907. /**
  908. * nfs_post_op_update_inode_force_wcc - try to update the inode attribute cache
  909. * @inode - pointer to inode
  910. * @fattr - updated attributes
  911. *
  912. * After an operation that has changed the inode metadata, mark the
  913. * attribute cache as being invalid, then try to update it. Fake up
  914. * weak cache consistency data, if none exist.
  915. *
  916. * This function is mainly designed to be used by the ->write_done() functions.
  917. */
  918. int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr)
  919. {
  920. int status;
  921. spin_lock(&inode->i_lock);
  922. /* Don't do a WCC update if these attributes are already stale */
  923. if ((fattr->valid & NFS_ATTR_FATTR) == 0 ||
  924. !nfs_inode_attrs_need_update(inode, fattr)) {
  925. fattr->valid &= ~(NFS_ATTR_FATTR_PRECHANGE
  926. | NFS_ATTR_FATTR_PRESIZE
  927. | NFS_ATTR_FATTR_PREMTIME
  928. | NFS_ATTR_FATTR_PRECTIME);
  929. goto out_noforce;
  930. }
  931. if ((fattr->valid & NFS_ATTR_FATTR_CHANGE) != 0 &&
  932. (fattr->valid & NFS_ATTR_FATTR_PRECHANGE) == 0) {
  933. fattr->pre_change_attr = NFS_I(inode)->change_attr;
  934. fattr->valid |= NFS_ATTR_FATTR_PRECHANGE;
  935. }
  936. if ((fattr->valid & NFS_ATTR_FATTR_CTIME) != 0 &&
  937. (fattr->valid & NFS_ATTR_FATTR_PRECTIME) == 0) {
  938. memcpy(&fattr->pre_ctime, &inode->i_ctime, sizeof(fattr->pre_ctime));
  939. fattr->valid |= NFS_ATTR_FATTR_PRECTIME;
  940. }
  941. if ((fattr->valid & NFS_ATTR_FATTR_MTIME) != 0 &&
  942. (fattr->valid & NFS_ATTR_FATTR_PREMTIME) == 0) {
  943. memcpy(&fattr->pre_mtime, &inode->i_mtime, sizeof(fattr->pre_mtime));
  944. fattr->valid |= NFS_ATTR_FATTR_PREMTIME;
  945. }
  946. if ((fattr->valid & NFS_ATTR_FATTR_SIZE) != 0 &&
  947. (fattr->valid & NFS_ATTR_FATTR_PRESIZE) == 0) {
  948. fattr->pre_size = i_size_read(inode);
  949. fattr->valid |= NFS_ATTR_FATTR_PRESIZE;
  950. }
  951. out_noforce:
  952. status = nfs_post_op_update_inode_locked(inode, fattr);
  953. spin_unlock(&inode->i_lock);
  954. return status;
  955. }
  956. /*
  957. * Many nfs protocol calls return the new file attributes after
  958. * an operation. Here we update the inode to reflect the state
  959. * of the server's inode.
  960. *
  961. * This is a bit tricky because we have to make sure all dirty pages
  962. * have been sent off to the server before calling invalidate_inode_pages.
  963. * To make sure no other process adds more write requests while we try
  964. * our best to flush them, we make them sleep during the attribute refresh.
  965. *
  966. * A very similar scenario holds for the dir cache.
  967. */
  968. static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
  969. {
  970. struct nfs_server *server;
  971. struct nfs_inode *nfsi = NFS_I(inode);
  972. loff_t cur_isize, new_isize;
  973. unsigned long invalid = 0;
  974. unsigned long now = jiffies;
  975. unsigned long save_cache_validity;
  976. dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n",
  977. __func__, inode->i_sb->s_id, inode->i_ino,
  978. atomic_read(&inode->i_count), fattr->valid);
  979. if ((fattr->valid & NFS_ATTR_FATTR_FILEID) && nfsi->fileid != fattr->fileid)
  980. goto out_fileid;
  981. /*
  982. * Make sure the inode's type hasn't changed.
  983. */
  984. if ((fattr->valid & NFS_ATTR_FATTR_TYPE) && (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
  985. goto out_changed;
  986. server = NFS_SERVER(inode);
  987. /* Update the fsid? */
  988. if (S_ISDIR(inode->i_mode) && (fattr->valid & NFS_ATTR_FATTR_FSID) &&
  989. !nfs_fsid_equal(&server->fsid, &fattr->fsid) &&
  990. !test_bit(NFS_INO_MOUNTPOINT, &nfsi->flags))
  991. server->fsid = fattr->fsid;
  992. /*
  993. * Update the read time so we don't revalidate too often.
  994. */
  995. nfsi->read_cache_jiffies = fattr->time_start;
  996. save_cache_validity = nfsi->cache_validity;
  997. nfsi->cache_validity &= ~(NFS_INO_INVALID_ATTR
  998. | NFS_INO_INVALID_ATIME
  999. | NFS_INO_REVAL_FORCED
  1000. | NFS_INO_REVAL_PAGECACHE);
  1001. /* Do atomic weak cache consistency updates */
  1002. nfs_wcc_update_inode(inode, fattr);
  1003. /* More cache consistency checks */
  1004. if (fattr->valid & NFS_ATTR_FATTR_CHANGE) {
  1005. if (nfsi->change_attr != fattr->change_attr) {
  1006. dprintk("NFS: change_attr change on server for file %s/%ld\n",
  1007. inode->i_sb->s_id, inode->i_ino);
  1008. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  1009. if (S_ISDIR(inode->i_mode))
  1010. nfs_force_lookup_revalidate(inode);
  1011. nfsi->change_attr = fattr->change_attr;
  1012. }
  1013. } else if (server->caps & NFS_CAP_CHANGE_ATTR)
  1014. invalid |= save_cache_validity;
  1015. if (fattr->valid & NFS_ATTR_FATTR_MTIME) {
  1016. /* NFSv2/v3: Check if the mtime agrees */
  1017. if (!timespec_equal(&inode->i_mtime, &fattr->mtime)) {
  1018. dprintk("NFS: mtime change on server for file %s/%ld\n",
  1019. inode->i_sb->s_id, inode->i_ino);
  1020. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
  1021. if (S_ISDIR(inode->i_mode))
  1022. nfs_force_lookup_revalidate(inode);
  1023. memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
  1024. }
  1025. } else if (server->caps & NFS_CAP_MTIME)
  1026. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1027. | NFS_INO_INVALID_DATA
  1028. | NFS_INO_REVAL_PAGECACHE
  1029. | NFS_INO_REVAL_FORCED);
  1030. if (fattr->valid & NFS_ATTR_FATTR_CTIME) {
  1031. /* If ctime has changed we should definitely clear access+acl caches */
  1032. if (!timespec_equal(&inode->i_ctime, &fattr->ctime)) {
  1033. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  1034. /* and probably clear data for a directory too as utimes can cause
  1035. * havoc with our cache.
  1036. */
  1037. if (S_ISDIR(inode->i_mode)) {
  1038. invalid |= NFS_INO_INVALID_DATA;
  1039. nfs_force_lookup_revalidate(inode);
  1040. }
  1041. memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
  1042. }
  1043. } else if (server->caps & NFS_CAP_CTIME)
  1044. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1045. | NFS_INO_INVALID_ACCESS
  1046. | NFS_INO_INVALID_ACL
  1047. | NFS_INO_REVAL_FORCED);
  1048. /* Check if our cached file size is stale */
  1049. if (fattr->valid & NFS_ATTR_FATTR_SIZE) {
  1050. new_isize = nfs_size_to_loff_t(fattr->size);
  1051. cur_isize = i_size_read(inode);
  1052. if (new_isize != cur_isize) {
  1053. /* Do we perhaps have any outstanding writes, or has
  1054. * the file grown beyond our last write? */
  1055. if (nfsi->npages == 0 || new_isize > cur_isize) {
  1056. i_size_write(inode, new_isize);
  1057. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
  1058. }
  1059. dprintk("NFS: isize change on server for file %s/%ld\n",
  1060. inode->i_sb->s_id, inode->i_ino);
  1061. }
  1062. } else
  1063. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1064. | NFS_INO_REVAL_PAGECACHE
  1065. | NFS_INO_REVAL_FORCED);
  1066. if (fattr->valid & NFS_ATTR_FATTR_ATIME)
  1067. memcpy(&inode->i_atime, &fattr->atime, sizeof(inode->i_atime));
  1068. else if (server->caps & NFS_CAP_ATIME)
  1069. invalid |= save_cache_validity & (NFS_INO_INVALID_ATIME
  1070. | NFS_INO_REVAL_FORCED);
  1071. if (fattr->valid & NFS_ATTR_FATTR_MODE) {
  1072. if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO)) {
  1073. umode_t newmode = inode->i_mode & S_IFMT;
  1074. newmode |= fattr->mode & S_IALLUGO;
  1075. inode->i_mode = newmode;
  1076. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  1077. }
  1078. } else if (server->caps & NFS_CAP_MODE)
  1079. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1080. | NFS_INO_INVALID_ACCESS
  1081. | NFS_INO_INVALID_ACL
  1082. | NFS_INO_REVAL_FORCED);
  1083. if (fattr->valid & NFS_ATTR_FATTR_OWNER) {
  1084. if (inode->i_uid != fattr->uid) {
  1085. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  1086. inode->i_uid = fattr->uid;
  1087. }
  1088. } else if (server->caps & NFS_CAP_OWNER)
  1089. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1090. | NFS_INO_INVALID_ACCESS
  1091. | NFS_INO_INVALID_ACL
  1092. | NFS_INO_REVAL_FORCED);
  1093. if (fattr->valid & NFS_ATTR_FATTR_GROUP) {
  1094. if (inode->i_gid != fattr->gid) {
  1095. invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
  1096. inode->i_gid = fattr->gid;
  1097. }
  1098. } else if (server->caps & NFS_CAP_OWNER_GROUP)
  1099. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1100. | NFS_INO_INVALID_ACCESS
  1101. | NFS_INO_INVALID_ACL
  1102. | NFS_INO_REVAL_FORCED);
  1103. if (fattr->valid & NFS_ATTR_FATTR_NLINK) {
  1104. if (inode->i_nlink != fattr->nlink) {
  1105. invalid |= NFS_INO_INVALID_ATTR;
  1106. if (S_ISDIR(inode->i_mode))
  1107. invalid |= NFS_INO_INVALID_DATA;
  1108. inode->i_nlink = fattr->nlink;
  1109. }
  1110. } else if (server->caps & NFS_CAP_NLINK)
  1111. invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
  1112. | NFS_INO_REVAL_FORCED);
  1113. if (fattr->valid & NFS_ATTR_FATTR_SPACE_USED) {
  1114. /*
  1115. * report the blocks in 512byte units
  1116. */
  1117. inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
  1118. }
  1119. if (fattr->valid & NFS_ATTR_FATTR_BLOCKS_USED)
  1120. inode->i_blocks = fattr->du.nfs2.blocks;
  1121. /* Update attrtimeo value if we're out of the unstable period */
  1122. if (invalid & NFS_INO_INVALID_ATTR) {
  1123. nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
  1124. nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
  1125. nfsi->attrtimeo_timestamp = now;
  1126. nfsi->attr_gencount = nfs_inc_attr_generation_counter();
  1127. } else {
  1128. if (!time_in_range_open(now, nfsi->attrtimeo_timestamp, nfsi->attrtimeo_timestamp + nfsi->attrtimeo)) {
  1129. if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
  1130. nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
  1131. nfsi->attrtimeo_timestamp = now;
  1132. }
  1133. }
  1134. invalid &= ~NFS_INO_INVALID_ATTR;
  1135. /* Don't invalidate the data if we were to blame */
  1136. if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
  1137. || S_ISLNK(inode->i_mode)))
  1138. invalid &= ~NFS_INO_INVALID_DATA;
  1139. if (!nfs_have_delegation(inode, FMODE_READ) ||
  1140. (save_cache_validity & NFS_INO_REVAL_FORCED))
  1141. nfsi->cache_validity |= invalid;
  1142. return 0;
  1143. out_changed:
  1144. /*
  1145. * Big trouble! The inode has become a different object.
  1146. */
  1147. printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n",
  1148. __func__, inode->i_ino, inode->i_mode, fattr->mode);
  1149. out_err:
  1150. /*
  1151. * No need to worry about unhashing the dentry, as the
  1152. * lookup validation will know that the inode is bad.
  1153. * (But we fall through to invalidate the caches.)
  1154. */
  1155. nfs_invalidate_inode(inode);
  1156. return -ESTALE;
  1157. out_fileid:
  1158. printk(KERN_ERR "NFS: server %s error: fileid changed\n"
  1159. "fsid %s: expected fileid 0x%Lx, got 0x%Lx\n",
  1160. NFS_SERVER(inode)->nfs_client->cl_hostname, inode->i_sb->s_id,
  1161. (long long)nfsi->fileid, (long long)fattr->fileid);
  1162. goto out_err;
  1163. }
  1164. #ifdef CONFIG_NFS_V4
  1165. /*
  1166. * Clean out any remaining NFSv4 state that might be left over due
  1167. * to open() calls that passed nfs_atomic_lookup, but failed to call
  1168. * nfs_open().
  1169. */
  1170. void nfs4_clear_inode(struct inode *inode)
  1171. {
  1172. /* If we are holding a delegation, return it! */
  1173. nfs_inode_return_delegation_noreclaim(inode);
  1174. /* First call standard NFS clear_inode() code */
  1175. nfs_clear_inode(inode);
  1176. }
  1177. #endif
  1178. struct inode *nfs_alloc_inode(struct super_block *sb)
  1179. {
  1180. struct nfs_inode *nfsi;
  1181. nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, GFP_KERNEL);
  1182. if (!nfsi)
  1183. return NULL;
  1184. nfsi->flags = 0UL;
  1185. nfsi->cache_validity = 0UL;
  1186. #ifdef CONFIG_NFS_V3_ACL
  1187. nfsi->acl_access = ERR_PTR(-EAGAIN);
  1188. nfsi->acl_default = ERR_PTR(-EAGAIN);
  1189. #endif
  1190. #ifdef CONFIG_NFS_V4
  1191. nfsi->nfs4_acl = NULL;
  1192. #endif /* CONFIG_NFS_V4 */
  1193. return &nfsi->vfs_inode;
  1194. }
  1195. void nfs_destroy_inode(struct inode *inode)
  1196. {
  1197. kmem_cache_free(nfs_inode_cachep, NFS_I(inode));
  1198. }
  1199. static inline void nfs4_init_once(struct nfs_inode *nfsi)
  1200. {
  1201. #ifdef CONFIG_NFS_V4
  1202. INIT_LIST_HEAD(&nfsi->open_states);
  1203. nfsi->delegation = NULL;
  1204. nfsi->delegation_state = 0;
  1205. init_rwsem(&nfsi->rwsem);
  1206. #endif
  1207. }
  1208. static void init_once(void *foo)
  1209. {
  1210. struct nfs_inode *nfsi = (struct nfs_inode *) foo;
  1211. inode_init_once(&nfsi->vfs_inode);
  1212. INIT_LIST_HEAD(&nfsi->open_files);
  1213. INIT_LIST_HEAD(&nfsi->access_cache_entry_lru);
  1214. INIT_LIST_HEAD(&nfsi->access_cache_inode_lru);
  1215. INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC);
  1216. nfsi->npages = 0;
  1217. nfsi->ncommit = 0;
  1218. atomic_set(&nfsi->silly_count, 1);
  1219. INIT_HLIST_HEAD(&nfsi->silly_list);
  1220. init_waitqueue_head(&nfsi->waitqueue);
  1221. nfs4_init_once(nfsi);
  1222. }
  1223. static int __init nfs_init_inodecache(void)
  1224. {
  1225. nfs_inode_cachep = kmem_cache_create("nfs_inode_cache",
  1226. sizeof(struct nfs_inode),
  1227. 0, (SLAB_RECLAIM_ACCOUNT|
  1228. SLAB_MEM_SPREAD),
  1229. init_once);
  1230. if (nfs_inode_cachep == NULL)
  1231. return -ENOMEM;
  1232. return 0;
  1233. }
  1234. static void nfs_destroy_inodecache(void)
  1235. {
  1236. kmem_cache_destroy(nfs_inode_cachep);
  1237. }
  1238. struct workqueue_struct *nfsiod_workqueue;
  1239. /*
  1240. * start up the nfsiod workqueue
  1241. */
  1242. static int nfsiod_start(void)
  1243. {
  1244. struct workqueue_struct *wq;
  1245. dprintk("RPC: creating workqueue nfsiod\n");
  1246. wq = create_singlethread_workqueue("nfsiod");
  1247. if (wq == NULL)
  1248. return -ENOMEM;
  1249. nfsiod_workqueue = wq;
  1250. return 0;
  1251. }
  1252. /*
  1253. * Destroy the nfsiod workqueue
  1254. */
  1255. static void nfsiod_stop(void)
  1256. {
  1257. struct workqueue_struct *wq;
  1258. wq = nfsiod_workqueue;
  1259. if (wq == NULL)
  1260. return;
  1261. nfsiod_workqueue = NULL;
  1262. destroy_workqueue(wq);
  1263. }
  1264. /*
  1265. * Initialize NFS
  1266. */
  1267. static int __init init_nfs_fs(void)
  1268. {
  1269. int err;
  1270. err = nfs_dns_resolver_init();
  1271. if (err < 0)
  1272. goto out8;
  1273. err = nfs_fscache_register();
  1274. if (err < 0)
  1275. goto out7;
  1276. err = nfsiod_start();
  1277. if (err)
  1278. goto out6;
  1279. err = nfs_fs_proc_init();
  1280. if (err)
  1281. goto out5;
  1282. err = nfs_init_nfspagecache();
  1283. if (err)
  1284. goto out4;
  1285. err = nfs_init_inodecache();
  1286. if (err)
  1287. goto out3;
  1288. err = nfs_init_readpagecache();
  1289. if (err)
  1290. goto out2;
  1291. err = nfs_init_writepagecache();
  1292. if (err)
  1293. goto out1;
  1294. err = nfs_init_directcache();
  1295. if (err)
  1296. goto out0;
  1297. #ifdef CONFIG_PROC_FS
  1298. rpc_proc_register(&nfs_rpcstat);
  1299. #endif
  1300. if ((err = register_nfs_fs()) != 0)
  1301. goto out;
  1302. return 0;
  1303. out:
  1304. #ifdef CONFIG_PROC_FS
  1305. rpc_proc_unregister("nfs");
  1306. #endif
  1307. nfs_destroy_directcache();
  1308. out0:
  1309. nfs_destroy_writepagecache();
  1310. out1:
  1311. nfs_destroy_readpagecache();
  1312. out2:
  1313. nfs_destroy_inodecache();
  1314. out3:
  1315. nfs_destroy_nfspagecache();
  1316. out4:
  1317. nfs_fs_proc_exit();
  1318. out5:
  1319. nfsiod_stop();
  1320. out6:
  1321. nfs_fscache_unregister();
  1322. out7:
  1323. nfs_dns_resolver_destroy();
  1324. out8:
  1325. return err;
  1326. }
  1327. static void __exit exit_nfs_fs(void)
  1328. {
  1329. nfs_destroy_directcache();
  1330. nfs_destroy_writepagecache();
  1331. nfs_destroy_readpagecache();
  1332. nfs_destroy_inodecache();
  1333. nfs_destroy_nfspagecache();
  1334. nfs_fscache_unregister();
  1335. nfs_dns_resolver_destroy();
  1336. #ifdef CONFIG_PROC_FS
  1337. rpc_proc_unregister("nfs");
  1338. #endif
  1339. unregister_nfs_fs();
  1340. nfs_fs_proc_exit();
  1341. nfsiod_stop();
  1342. }
  1343. /* Not quite true; I just maintain it */
  1344. MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
  1345. MODULE_LICENSE("GPL");
  1346. module_param(enable_ino64, bool, 0644);
  1347. module_init(init_nfs_fs)
  1348. module_exit(exit_nfs_fs)