dir.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. /*
  2. * linux/fs/nfs/dir.c
  3. *
  4. * Copyright (C) 1992 Rick Sladkey
  5. *
  6. * nfs directory handling functions
  7. *
  8. * 10 Apr 1996 Added silly rename for unlink --okir
  9. * 28 Sep 1996 Improved directory cache --okir
  10. * 23 Aug 1997 Claus Heine claus@momo.math.rwth-aachen.de
  11. * Re-implemented silly rename for unlink, newly implemented
  12. * silly rename for nfs_rename() following the suggestions
  13. * of Olaf Kirch (okir) found in this file.
  14. * Following Linus comments on my original hack, this version
  15. * depends only on the dcache stuff and doesn't touch the inode
  16. * layer (iput() and friends).
  17. * 6 Jun 1999 Cache readdir lookups in the page cache. -DaveM
  18. */
  19. #include <linux/time.h>
  20. #include <linux/errno.h>
  21. #include <linux/stat.h>
  22. #include <linux/fcntl.h>
  23. #include <linux/string.h>
  24. #include <linux/kernel.h>
  25. #include <linux/slab.h>
  26. #include <linux/mm.h>
  27. #include <linux/sunrpc/clnt.h>
  28. #include <linux/nfs_fs.h>
  29. #include <linux/nfs_mount.h>
  30. #include <linux/pagemap.h>
  31. #include <linux/pagevec.h>
  32. #include <linux/namei.h>
  33. #include <linux/mount.h>
  34. #include <linux/sched.h>
  35. #include <linux/vmalloc.h>
  36. #include <linux/kmemleak.h>
  37. #include "delegation.h"
  38. #include "iostat.h"
  39. #include "internal.h"
  40. #include "fscache.h"
  41. /* #define NFS_DEBUG_VERBOSE 1 */
  42. static int nfs_opendir(struct inode *, struct file *);
  43. static int nfs_readdir(struct file *, void *, filldir_t);
  44. static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
  45. static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
  46. static int nfs_mkdir(struct inode *, struct dentry *, int);
  47. static int nfs_rmdir(struct inode *, struct dentry *);
  48. static int nfs_unlink(struct inode *, struct dentry *);
  49. static int nfs_symlink(struct inode *, struct dentry *, const char *);
  50. static int nfs_link(struct dentry *, struct inode *, struct dentry *);
  51. static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
  52. static int nfs_rename(struct inode *, struct dentry *,
  53. struct inode *, struct dentry *);
  54. static int nfs_fsync_dir(struct file *, int);
  55. static loff_t nfs_llseek_dir(struct file *, loff_t, int);
  56. static void nfs_readdir_clear_array(struct page*);
  57. const struct file_operations nfs_dir_operations = {
  58. .llseek = nfs_llseek_dir,
  59. .read = generic_read_dir,
  60. .readdir = nfs_readdir,
  61. .open = nfs_opendir,
  62. .release = nfs_release,
  63. .fsync = nfs_fsync_dir,
  64. };
  65. const struct inode_operations nfs_dir_inode_operations = {
  66. .create = nfs_create,
  67. .lookup = nfs_lookup,
  68. .link = nfs_link,
  69. .unlink = nfs_unlink,
  70. .symlink = nfs_symlink,
  71. .mkdir = nfs_mkdir,
  72. .rmdir = nfs_rmdir,
  73. .mknod = nfs_mknod,
  74. .rename = nfs_rename,
  75. .permission = nfs_permission,
  76. .getattr = nfs_getattr,
  77. .setattr = nfs_setattr,
  78. };
  79. const struct address_space_operations nfs_dir_aops = {
  80. .freepage = nfs_readdir_clear_array,
  81. };
  82. #ifdef CONFIG_NFS_V3
  83. const struct inode_operations nfs3_dir_inode_operations = {
  84. .create = nfs_create,
  85. .lookup = nfs_lookup,
  86. .link = nfs_link,
  87. .unlink = nfs_unlink,
  88. .symlink = nfs_symlink,
  89. .mkdir = nfs_mkdir,
  90. .rmdir = nfs_rmdir,
  91. .mknod = nfs_mknod,
  92. .rename = nfs_rename,
  93. .permission = nfs_permission,
  94. .getattr = nfs_getattr,
  95. .setattr = nfs_setattr,
  96. .listxattr = nfs3_listxattr,
  97. .getxattr = nfs3_getxattr,
  98. .setxattr = nfs3_setxattr,
  99. .removexattr = nfs3_removexattr,
  100. };
  101. #endif /* CONFIG_NFS_V3 */
  102. #ifdef CONFIG_NFS_V4
  103. static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
  104. static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd);
  105. const struct inode_operations nfs4_dir_inode_operations = {
  106. .create = nfs_open_create,
  107. .lookup = nfs_atomic_lookup,
  108. .link = nfs_link,
  109. .unlink = nfs_unlink,
  110. .symlink = nfs_symlink,
  111. .mkdir = nfs_mkdir,
  112. .rmdir = nfs_rmdir,
  113. .mknod = nfs_mknod,
  114. .rename = nfs_rename,
  115. .permission = nfs_permission,
  116. .getattr = nfs_getattr,
  117. .setattr = nfs_setattr,
  118. .getxattr = nfs4_getxattr,
  119. .setxattr = nfs4_setxattr,
  120. .listxattr = nfs4_listxattr,
  121. };
  122. #endif /* CONFIG_NFS_V4 */
  123. /*
  124. * Open file
  125. */
  126. static int
  127. nfs_opendir(struct inode *inode, struct file *filp)
  128. {
  129. int res;
  130. dfprintk(FILE, "NFS: open dir(%s/%s)\n",
  131. filp->f_path.dentry->d_parent->d_name.name,
  132. filp->f_path.dentry->d_name.name);
  133. nfs_inc_stats(inode, NFSIOS_VFSOPEN);
  134. /* Call generic open code in order to cache credentials */
  135. res = nfs_open(inode, filp);
  136. if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
  137. /* This is a mountpoint, so d_revalidate will never
  138. * have been called, so we need to refresh the
  139. * inode (for close-open consistency) ourselves.
  140. */
  141. __nfs_revalidate_inode(NFS_SERVER(inode), inode);
  142. }
  143. return res;
  144. }
  145. struct nfs_cache_array_entry {
  146. u64 cookie;
  147. u64 ino;
  148. struct qstr string;
  149. unsigned char d_type;
  150. };
  151. struct nfs_cache_array {
  152. unsigned int size;
  153. int eof_index;
  154. u64 last_cookie;
  155. struct nfs_cache_array_entry array[0];
  156. };
  157. typedef __be32 * (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, struct nfs_server *, int);
  158. typedef struct {
  159. struct file *file;
  160. struct page *page;
  161. unsigned long page_index;
  162. u64 *dir_cookie;
  163. u64 last_cookie;
  164. loff_t current_index;
  165. decode_dirent_t decode;
  166. unsigned long timestamp;
  167. unsigned long gencount;
  168. unsigned int cache_entry_index;
  169. unsigned int plus:1;
  170. unsigned int eof:1;
  171. } nfs_readdir_descriptor_t;
  172. /*
  173. * The caller is responsible for calling nfs_readdir_release_array(page)
  174. */
  175. static
  176. struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
  177. {
  178. void *ptr;
  179. if (page == NULL)
  180. return ERR_PTR(-EIO);
  181. ptr = kmap(page);
  182. if (ptr == NULL)
  183. return ERR_PTR(-ENOMEM);
  184. return ptr;
  185. }
  186. static
  187. void nfs_readdir_release_array(struct page *page)
  188. {
  189. kunmap(page);
  190. }
  191. /*
  192. * we are freeing strings created by nfs_add_to_readdir_array()
  193. */
  194. static
  195. void nfs_readdir_clear_array(struct page *page)
  196. {
  197. struct nfs_cache_array *array;
  198. int i;
  199. array = kmap_atomic(page, KM_USER0);
  200. for (i = 0; i < array->size; i++)
  201. kfree(array->array[i].string.name);
  202. kunmap_atomic(array, KM_USER0);
  203. }
  204. /*
  205. * the caller is responsible for freeing qstr.name
  206. * when called by nfs_readdir_add_to_array, the strings will be freed in
  207. * nfs_clear_readdir_array()
  208. */
  209. static
  210. int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
  211. {
  212. string->len = len;
  213. string->name = kmemdup(name, len, GFP_KERNEL);
  214. if (string->name == NULL)
  215. return -ENOMEM;
  216. /*
  217. * Avoid a kmemleak false positive. The pointer to the name is stored
  218. * in a page cache page which kmemleak does not scan.
  219. */
  220. kmemleak_not_leak(string->name);
  221. string->hash = full_name_hash(name, len);
  222. return 0;
  223. }
  224. static
  225. int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
  226. {
  227. struct nfs_cache_array *array = nfs_readdir_get_array(page);
  228. struct nfs_cache_array_entry *cache_entry;
  229. int ret;
  230. if (IS_ERR(array))
  231. return PTR_ERR(array);
  232. cache_entry = &array->array[array->size];
  233. /* Check that this entry lies within the page bounds */
  234. ret = -ENOSPC;
  235. if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
  236. goto out;
  237. cache_entry->cookie = entry->prev_cookie;
  238. cache_entry->ino = entry->ino;
  239. cache_entry->d_type = entry->d_type;
  240. ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
  241. if (ret)
  242. goto out;
  243. array->last_cookie = entry->cookie;
  244. array->size++;
  245. if (entry->eof != 0)
  246. array->eof_index = array->size;
  247. out:
  248. nfs_readdir_release_array(page);
  249. return ret;
  250. }
  251. static
  252. int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
  253. {
  254. loff_t diff = desc->file->f_pos - desc->current_index;
  255. unsigned int index;
  256. if (diff < 0)
  257. goto out_eof;
  258. if (diff >= array->size) {
  259. if (array->eof_index >= 0)
  260. goto out_eof;
  261. desc->current_index += array->size;
  262. return -EAGAIN;
  263. }
  264. index = (unsigned int)diff;
  265. *desc->dir_cookie = array->array[index].cookie;
  266. desc->cache_entry_index = index;
  267. return 0;
  268. out_eof:
  269. desc->eof = 1;
  270. return -EBADCOOKIE;
  271. }
  272. static
  273. int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
  274. {
  275. int i;
  276. int status = -EAGAIN;
  277. for (i = 0; i < array->size; i++) {
  278. if (array->array[i].cookie == *desc->dir_cookie) {
  279. desc->cache_entry_index = i;
  280. return 0;
  281. }
  282. }
  283. if (array->eof_index >= 0) {
  284. status = -EBADCOOKIE;
  285. if (*desc->dir_cookie == array->last_cookie)
  286. desc->eof = 1;
  287. }
  288. return status;
  289. }
  290. static
  291. int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
  292. {
  293. struct nfs_cache_array *array;
  294. int status;
  295. array = nfs_readdir_get_array(desc->page);
  296. if (IS_ERR(array)) {
  297. status = PTR_ERR(array);
  298. goto out;
  299. }
  300. if (*desc->dir_cookie == 0)
  301. status = nfs_readdir_search_for_pos(array, desc);
  302. else
  303. status = nfs_readdir_search_for_cookie(array, desc);
  304. if (status == -EAGAIN) {
  305. desc->last_cookie = array->last_cookie;
  306. desc->page_index++;
  307. }
  308. nfs_readdir_release_array(desc->page);
  309. out:
  310. return status;
  311. }
  312. /* Fill a page with xdr information before transferring to the cache page */
  313. static
  314. int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
  315. struct nfs_entry *entry, struct file *file, struct inode *inode)
  316. {
  317. struct rpc_cred *cred = nfs_file_cred(file);
  318. unsigned long timestamp, gencount;
  319. int error;
  320. again:
  321. timestamp = jiffies;
  322. gencount = nfs_inc_attr_generation_counter();
  323. error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
  324. NFS_SERVER(inode)->dtsize, desc->plus);
  325. if (error < 0) {
  326. /* We requested READDIRPLUS, but the server doesn't grok it */
  327. if (error == -ENOTSUPP && desc->plus) {
  328. NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
  329. clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  330. desc->plus = 0;
  331. goto again;
  332. }
  333. goto error;
  334. }
  335. desc->timestamp = timestamp;
  336. desc->gencount = gencount;
  337. error:
  338. return error;
  339. }
  340. /* Fill in an entry based on the xdr code stored in desc->page */
  341. static
  342. int xdr_decode(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, struct xdr_stream *stream)
  343. {
  344. __be32 *p = desc->decode(stream, entry, NFS_SERVER(desc->file->f_path.dentry->d_inode), desc->plus);
  345. if (IS_ERR(p))
  346. return PTR_ERR(p);
  347. entry->fattr->time_start = desc->timestamp;
  348. entry->fattr->gencount = desc->gencount;
  349. return 0;
  350. }
  351. static
  352. int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
  353. {
  354. if (dentry->d_inode == NULL)
  355. goto different;
  356. if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
  357. goto different;
  358. return 1;
  359. different:
  360. return 0;
  361. }
  362. static
  363. void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
  364. {
  365. struct qstr filename = {
  366. .len = entry->len,
  367. .name = entry->name,
  368. };
  369. struct dentry *dentry;
  370. struct dentry *alias;
  371. struct inode *dir = parent->d_inode;
  372. struct inode *inode;
  373. if (filename.name[0] == '.') {
  374. if (filename.len == 1)
  375. return;
  376. if (filename.len == 2 && filename.name[1] == '.')
  377. return;
  378. }
  379. filename.hash = full_name_hash(filename.name, filename.len);
  380. dentry = d_lookup(parent, &filename);
  381. if (dentry != NULL) {
  382. if (nfs_same_file(dentry, entry)) {
  383. nfs_refresh_inode(dentry->d_inode, entry->fattr);
  384. goto out;
  385. } else {
  386. d_drop(dentry);
  387. dput(dentry);
  388. }
  389. }
  390. dentry = d_alloc(parent, &filename);
  391. if (dentry == NULL)
  392. return;
  393. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  394. inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
  395. if (IS_ERR(inode))
  396. goto out;
  397. alias = d_materialise_unique(dentry, inode);
  398. if (IS_ERR(alias))
  399. goto out;
  400. else if (alias) {
  401. nfs_set_verifier(alias, nfs_save_change_attribute(dir));
  402. dput(alias);
  403. } else
  404. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  405. out:
  406. dput(dentry);
  407. }
  408. /* Perform conversion from xdr to cache array */
  409. static
  410. int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
  411. void *xdr_page, struct page *page, unsigned int buflen)
  412. {
  413. struct xdr_stream stream;
  414. struct xdr_buf buf;
  415. __be32 *ptr = xdr_page;
  416. struct nfs_cache_array *array;
  417. unsigned int count = 0;
  418. int status;
  419. buf.head->iov_base = xdr_page;
  420. buf.head->iov_len = buflen;
  421. buf.tail->iov_len = 0;
  422. buf.page_base = 0;
  423. buf.page_len = 0;
  424. buf.buflen = buf.head->iov_len;
  425. buf.len = buf.head->iov_len;
  426. xdr_init_decode(&stream, &buf, ptr);
  427. do {
  428. status = xdr_decode(desc, entry, &stream);
  429. if (status != 0) {
  430. if (status == -EAGAIN)
  431. status = 0;
  432. break;
  433. }
  434. count++;
  435. if (desc->plus != 0)
  436. nfs_prime_dcache(desc->file->f_path.dentry, entry);
  437. status = nfs_readdir_add_to_array(entry, page);
  438. if (status != 0)
  439. break;
  440. } while (!entry->eof);
  441. if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
  442. array = nfs_readdir_get_array(page);
  443. if (!IS_ERR(array)) {
  444. array->eof_index = array->size;
  445. status = 0;
  446. nfs_readdir_release_array(page);
  447. } else
  448. status = PTR_ERR(array);
  449. }
  450. return status;
  451. }
  452. static
  453. void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
  454. {
  455. unsigned int i;
  456. for (i = 0; i < npages; i++)
  457. put_page(pages[i]);
  458. }
  459. static
  460. void nfs_readdir_free_large_page(void *ptr, struct page **pages,
  461. unsigned int npages)
  462. {
  463. vm_unmap_ram(ptr, npages);
  464. nfs_readdir_free_pagearray(pages, npages);
  465. }
  466. /*
  467. * nfs_readdir_large_page will allocate pages that must be freed with a call
  468. * to nfs_readdir_free_large_page
  469. */
  470. static
  471. void *nfs_readdir_large_page(struct page **pages, unsigned int npages)
  472. {
  473. void *ptr;
  474. unsigned int i;
  475. for (i = 0; i < npages; i++) {
  476. struct page *page = alloc_page(GFP_KERNEL);
  477. if (page == NULL)
  478. goto out_freepages;
  479. pages[i] = page;
  480. }
  481. ptr = vm_map_ram(pages, npages, 0, PAGE_KERNEL);
  482. if (!IS_ERR_OR_NULL(ptr))
  483. return ptr;
  484. out_freepages:
  485. nfs_readdir_free_pagearray(pages, i);
  486. return NULL;
  487. }
  488. static
  489. int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
  490. {
  491. struct page *pages[NFS_MAX_READDIR_PAGES];
  492. void *pages_ptr = NULL;
  493. struct nfs_entry entry;
  494. struct file *file = desc->file;
  495. struct nfs_cache_array *array;
  496. int status = -ENOMEM;
  497. unsigned int array_size = ARRAY_SIZE(pages);
  498. entry.prev_cookie = 0;
  499. entry.cookie = desc->last_cookie;
  500. entry.eof = 0;
  501. entry.fh = nfs_alloc_fhandle();
  502. entry.fattr = nfs_alloc_fattr();
  503. if (entry.fh == NULL || entry.fattr == NULL)
  504. goto out;
  505. array = nfs_readdir_get_array(page);
  506. if (IS_ERR(array)) {
  507. status = PTR_ERR(array);
  508. goto out;
  509. }
  510. memset(array, 0, sizeof(struct nfs_cache_array));
  511. array->eof_index = -1;
  512. pages_ptr = nfs_readdir_large_page(pages, array_size);
  513. if (!pages_ptr)
  514. goto out_release_array;
  515. do {
  516. unsigned int pglen;
  517. status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
  518. if (status < 0)
  519. break;
  520. pglen = status;
  521. status = nfs_readdir_page_filler(desc, &entry, pages_ptr, page, pglen);
  522. if (status < 0) {
  523. if (status == -ENOSPC)
  524. status = 0;
  525. break;
  526. }
  527. } while (array->eof_index < 0);
  528. nfs_readdir_free_large_page(pages_ptr, pages, array_size);
  529. out_release_array:
  530. nfs_readdir_release_array(page);
  531. out:
  532. nfs_free_fattr(entry.fattr);
  533. nfs_free_fhandle(entry.fh);
  534. return status;
  535. }
  536. /*
  537. * Now we cache directories properly, by converting xdr information
  538. * to an array that can be used for lookups later. This results in
  539. * fewer cache pages, since we can store more information on each page.
  540. * We only need to convert from xdr once so future lookups are much simpler
  541. */
  542. static
  543. int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
  544. {
  545. struct inode *inode = desc->file->f_path.dentry->d_inode;
  546. int ret;
  547. ret = nfs_readdir_xdr_to_array(desc, page, inode);
  548. if (ret < 0)
  549. goto error;
  550. SetPageUptodate(page);
  551. if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
  552. /* Should never happen */
  553. nfs_zap_mapping(inode, inode->i_mapping);
  554. }
  555. unlock_page(page);
  556. return 0;
  557. error:
  558. unlock_page(page);
  559. return ret;
  560. }
  561. static
  562. void cache_page_release(nfs_readdir_descriptor_t *desc)
  563. {
  564. if (!desc->page->mapping)
  565. nfs_readdir_clear_array(desc->page);
  566. page_cache_release(desc->page);
  567. desc->page = NULL;
  568. }
  569. static
  570. struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
  571. {
  572. return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
  573. desc->page_index, (filler_t *)nfs_readdir_filler, desc);
  574. }
  575. /*
  576. * Returns 0 if desc->dir_cookie was found on page desc->page_index
  577. */
  578. static
  579. int find_cache_page(nfs_readdir_descriptor_t *desc)
  580. {
  581. int res;
  582. desc->page = get_cache_page(desc);
  583. if (IS_ERR(desc->page))
  584. return PTR_ERR(desc->page);
  585. res = nfs_readdir_search_array(desc);
  586. if (res != 0)
  587. cache_page_release(desc);
  588. return res;
  589. }
  590. /* Search for desc->dir_cookie from the beginning of the page cache */
  591. static inline
  592. int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
  593. {
  594. int res;
  595. if (desc->page_index == 0) {
  596. desc->current_index = 0;
  597. desc->last_cookie = 0;
  598. }
  599. do {
  600. res = find_cache_page(desc);
  601. } while (res == -EAGAIN);
  602. return res;
  603. }
  604. /*
  605. * Once we've found the start of the dirent within a page: fill 'er up...
  606. */
  607. static
  608. int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
  609. filldir_t filldir)
  610. {
  611. struct file *file = desc->file;
  612. int i = 0;
  613. int res = 0;
  614. struct nfs_cache_array *array = NULL;
  615. array = nfs_readdir_get_array(desc->page);
  616. if (IS_ERR(array)) {
  617. res = PTR_ERR(array);
  618. goto out;
  619. }
  620. for (i = desc->cache_entry_index; i < array->size; i++) {
  621. struct nfs_cache_array_entry *ent;
  622. ent = &array->array[i];
  623. if (filldir(dirent, ent->string.name, ent->string.len,
  624. file->f_pos, nfs_compat_user_ino64(ent->ino),
  625. ent->d_type) < 0) {
  626. desc->eof = 1;
  627. break;
  628. }
  629. file->f_pos++;
  630. if (i < (array->size-1))
  631. *desc->dir_cookie = array->array[i+1].cookie;
  632. else
  633. *desc->dir_cookie = array->last_cookie;
  634. }
  635. if (array->eof_index >= 0)
  636. desc->eof = 1;
  637. nfs_readdir_release_array(desc->page);
  638. out:
  639. cache_page_release(desc);
  640. dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
  641. (unsigned long long)*desc->dir_cookie, res);
  642. return res;
  643. }
  644. /*
  645. * If we cannot find a cookie in our cache, we suspect that this is
  646. * because it points to a deleted file, so we ask the server to return
  647. * whatever it thinks is the next entry. We then feed this to filldir.
  648. * If all goes well, we should then be able to find our way round the
  649. * cache on the next call to readdir_search_pagecache();
  650. *
  651. * NOTE: we cannot add the anonymous page to the pagecache because
  652. * the data it contains might not be page aligned. Besides,
  653. * we should already have a complete representation of the
  654. * directory in the page cache by the time we get here.
  655. */
  656. static inline
  657. int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
  658. filldir_t filldir)
  659. {
  660. struct page *page = NULL;
  661. int status;
  662. struct inode *inode = desc->file->f_path.dentry->d_inode;
  663. dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
  664. (unsigned long long)*desc->dir_cookie);
  665. page = alloc_page(GFP_HIGHUSER);
  666. if (!page) {
  667. status = -ENOMEM;
  668. goto out;
  669. }
  670. desc->page_index = 0;
  671. desc->last_cookie = *desc->dir_cookie;
  672. desc->page = page;
  673. status = nfs_readdir_xdr_to_array(desc, page, inode);
  674. if (status < 0)
  675. goto out_release;
  676. status = nfs_do_filldir(desc, dirent, filldir);
  677. out:
  678. dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
  679. __func__, status);
  680. return status;
  681. out_release:
  682. cache_page_release(desc);
  683. goto out;
  684. }
  685. /* The file offset position represents the dirent entry number. A
  686. last cookie cache takes care of the common case of reading the
  687. whole directory.
  688. */
  689. static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
  690. {
  691. struct dentry *dentry = filp->f_path.dentry;
  692. struct inode *inode = dentry->d_inode;
  693. nfs_readdir_descriptor_t my_desc,
  694. *desc = &my_desc;
  695. int res;
  696. dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
  697. dentry->d_parent->d_name.name, dentry->d_name.name,
  698. (long long)filp->f_pos);
  699. nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
  700. /*
  701. * filp->f_pos points to the dirent entry number.
  702. * *desc->dir_cookie has the cookie for the next entry. We have
  703. * to either find the entry with the appropriate number or
  704. * revalidate the cookie.
  705. */
  706. memset(desc, 0, sizeof(*desc));
  707. desc->file = filp;
  708. desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
  709. desc->decode = NFS_PROTO(inode)->decode_dirent;
  710. desc->plus = NFS_USE_READDIRPLUS(inode);
  711. nfs_block_sillyrename(dentry);
  712. res = nfs_revalidate_mapping(inode, filp->f_mapping);
  713. if (res < 0)
  714. goto out;
  715. do {
  716. res = readdir_search_pagecache(desc);
  717. if (res == -EBADCOOKIE) {
  718. res = 0;
  719. /* This means either end of directory */
  720. if (*desc->dir_cookie && desc->eof == 0) {
  721. /* Or that the server has 'lost' a cookie */
  722. res = uncached_readdir(desc, dirent, filldir);
  723. if (res == 0)
  724. continue;
  725. }
  726. break;
  727. }
  728. if (res == -ETOOSMALL && desc->plus) {
  729. clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  730. nfs_zap_caches(inode);
  731. desc->page_index = 0;
  732. desc->plus = 0;
  733. desc->eof = 0;
  734. continue;
  735. }
  736. if (res < 0)
  737. break;
  738. res = nfs_do_filldir(desc, dirent, filldir);
  739. if (res < 0)
  740. break;
  741. } while (!desc->eof);
  742. out:
  743. nfs_unblock_sillyrename(dentry);
  744. if (res > 0)
  745. res = 0;
  746. dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
  747. dentry->d_parent->d_name.name, dentry->d_name.name,
  748. res);
  749. return res;
  750. }
  751. static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
  752. {
  753. struct dentry *dentry = filp->f_path.dentry;
  754. struct inode *inode = dentry->d_inode;
  755. dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
  756. dentry->d_parent->d_name.name,
  757. dentry->d_name.name,
  758. offset, origin);
  759. mutex_lock(&inode->i_mutex);
  760. switch (origin) {
  761. case 1:
  762. offset += filp->f_pos;
  763. case 0:
  764. if (offset >= 0)
  765. break;
  766. default:
  767. offset = -EINVAL;
  768. goto out;
  769. }
  770. if (offset != filp->f_pos) {
  771. filp->f_pos = offset;
  772. nfs_file_open_context(filp)->dir_cookie = 0;
  773. }
  774. out:
  775. mutex_unlock(&inode->i_mutex);
  776. return offset;
  777. }
  778. /*
  779. * All directory operations under NFS are synchronous, so fsync()
  780. * is a dummy operation.
  781. */
  782. static int nfs_fsync_dir(struct file *filp, int datasync)
  783. {
  784. struct dentry *dentry = filp->f_path.dentry;
  785. dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
  786. dentry->d_parent->d_name.name, dentry->d_name.name,
  787. datasync);
  788. nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
  789. return 0;
  790. }
  791. /**
  792. * nfs_force_lookup_revalidate - Mark the directory as having changed
  793. * @dir - pointer to directory inode
  794. *
  795. * This forces the revalidation code in nfs_lookup_revalidate() to do a
  796. * full lookup on all child dentries of 'dir' whenever a change occurs
  797. * on the server that might have invalidated our dcache.
  798. *
  799. * The caller should be holding dir->i_lock
  800. */
  801. void nfs_force_lookup_revalidate(struct inode *dir)
  802. {
  803. NFS_I(dir)->cache_change_attribute++;
  804. }
  805. /*
  806. * A check for whether or not the parent directory has changed.
  807. * In the case it has, we assume that the dentries are untrustworthy
  808. * and may need to be looked up again.
  809. */
  810. static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
  811. {
  812. if (IS_ROOT(dentry))
  813. return 1;
  814. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
  815. return 0;
  816. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  817. return 0;
  818. /* Revalidate nfsi->cache_change_attribute before we declare a match */
  819. if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
  820. return 0;
  821. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  822. return 0;
  823. return 1;
  824. }
  825. /*
  826. * Return the intent data that applies to this particular path component
  827. *
  828. * Note that the current set of intents only apply to the very last
  829. * component of the path.
  830. * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
  831. */
  832. static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd,
  833. unsigned int mask)
  834. {
  835. if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
  836. return 0;
  837. return nd->flags & mask;
  838. }
  839. /*
  840. * Use intent information to check whether or not we're going to do
  841. * an O_EXCL create using this path component.
  842. */
  843. static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
  844. {
  845. if (NFS_PROTO(dir)->version == 2)
  846. return 0;
  847. return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
  848. }
  849. /*
  850. * Inode and filehandle revalidation for lookups.
  851. *
  852. * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
  853. * or if the intent information indicates that we're about to open this
  854. * particular file and the "nocto" mount flag is not set.
  855. *
  856. */
  857. static inline
  858. int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
  859. {
  860. struct nfs_server *server = NFS_SERVER(inode);
  861. if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
  862. return 0;
  863. if (nd != NULL) {
  864. /* VFS wants an on-the-wire revalidation */
  865. if (nd->flags & LOOKUP_REVAL)
  866. goto out_force;
  867. /* This is an open(2) */
  868. if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
  869. !(server->flags & NFS_MOUNT_NOCTO) &&
  870. (S_ISREG(inode->i_mode) ||
  871. S_ISDIR(inode->i_mode)))
  872. goto out_force;
  873. return 0;
  874. }
  875. return nfs_revalidate_inode(server, inode);
  876. out_force:
  877. return __nfs_revalidate_inode(server, inode);
  878. }
  879. /*
  880. * We judge how long we want to trust negative
  881. * dentries by looking at the parent inode mtime.
  882. *
  883. * If parent mtime has changed, we revalidate, else we wait for a
  884. * period corresponding to the parent's attribute cache timeout value.
  885. */
  886. static inline
  887. int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
  888. struct nameidata *nd)
  889. {
  890. /* Don't revalidate a negative dentry if we're creating a new file */
  891. if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
  892. return 0;
  893. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
  894. return 1;
  895. return !nfs_check_verifier(dir, dentry);
  896. }
  897. /*
  898. * This is called every time the dcache has a lookup hit,
  899. * and we should check whether we can really trust that
  900. * lookup.
  901. *
  902. * NOTE! The hit can be a negative hit too, don't assume
  903. * we have an inode!
  904. *
  905. * If the parent directory is seen to have changed, we throw out the
  906. * cached dentry and do a new lookup.
  907. */
  908. static int nfs_lookup_revalidate(struct dentry *dentry, struct nameidata *nd)
  909. {
  910. struct inode *dir;
  911. struct inode *inode;
  912. struct dentry *parent;
  913. struct nfs_fh *fhandle = NULL;
  914. struct nfs_fattr *fattr = NULL;
  915. int error;
  916. if (nd->flags & LOOKUP_RCU)
  917. return -ECHILD;
  918. parent = dget_parent(dentry);
  919. dir = parent->d_inode;
  920. nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
  921. inode = dentry->d_inode;
  922. if (!inode) {
  923. if (nfs_neg_need_reval(dir, dentry, nd))
  924. goto out_bad;
  925. goto out_valid;
  926. }
  927. if (is_bad_inode(inode)) {
  928. dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
  929. __func__, dentry->d_parent->d_name.name,
  930. dentry->d_name.name);
  931. goto out_bad;
  932. }
  933. if (nfs_have_delegation(inode, FMODE_READ))
  934. goto out_set_verifier;
  935. /* Force a full look up iff the parent directory has changed */
  936. if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
  937. if (nfs_lookup_verify_inode(inode, nd))
  938. goto out_zap_parent;
  939. goto out_valid;
  940. }
  941. if (NFS_STALE(inode))
  942. goto out_bad;
  943. error = -ENOMEM;
  944. fhandle = nfs_alloc_fhandle();
  945. fattr = nfs_alloc_fattr();
  946. if (fhandle == NULL || fattr == NULL)
  947. goto out_error;
  948. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  949. if (error)
  950. goto out_bad;
  951. if (nfs_compare_fh(NFS_FH(inode), fhandle))
  952. goto out_bad;
  953. if ((error = nfs_refresh_inode(inode, fattr)) != 0)
  954. goto out_bad;
  955. nfs_free_fattr(fattr);
  956. nfs_free_fhandle(fhandle);
  957. out_set_verifier:
  958. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  959. out_valid:
  960. dput(parent);
  961. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
  962. __func__, dentry->d_parent->d_name.name,
  963. dentry->d_name.name);
  964. return 1;
  965. out_zap_parent:
  966. nfs_zap_caches(dir);
  967. out_bad:
  968. nfs_mark_for_revalidate(dir);
  969. if (inode && S_ISDIR(inode->i_mode)) {
  970. /* Purge readdir caches. */
  971. nfs_zap_caches(inode);
  972. /* If we have submounts, don't unhash ! */
  973. if (have_submounts(dentry))
  974. goto out_valid;
  975. if (dentry->d_flags & DCACHE_DISCONNECTED)
  976. goto out_valid;
  977. shrink_dcache_parent(dentry);
  978. }
  979. d_drop(dentry);
  980. nfs_free_fattr(fattr);
  981. nfs_free_fhandle(fhandle);
  982. dput(parent);
  983. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
  984. __func__, dentry->d_parent->d_name.name,
  985. dentry->d_name.name);
  986. return 0;
  987. out_error:
  988. nfs_free_fattr(fattr);
  989. nfs_free_fhandle(fhandle);
  990. dput(parent);
  991. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
  992. __func__, dentry->d_parent->d_name.name,
  993. dentry->d_name.name, error);
  994. return error;
  995. }
  996. /*
  997. * This is called from dput() when d_count is going to 0.
  998. */
  999. static int nfs_dentry_delete(const struct dentry *dentry)
  1000. {
  1001. dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
  1002. dentry->d_parent->d_name.name, dentry->d_name.name,
  1003. dentry->d_flags);
  1004. /* Unhash any dentry with a stale inode */
  1005. if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
  1006. return 1;
  1007. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1008. /* Unhash it, so that ->d_iput() would be called */
  1009. return 1;
  1010. }
  1011. if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
  1012. /* Unhash it, so that ancestors of killed async unlink
  1013. * files will be cleaned up during umount */
  1014. return 1;
  1015. }
  1016. return 0;
  1017. }
  1018. static void nfs_drop_nlink(struct inode *inode)
  1019. {
  1020. spin_lock(&inode->i_lock);
  1021. if (inode->i_nlink > 0)
  1022. drop_nlink(inode);
  1023. spin_unlock(&inode->i_lock);
  1024. }
  1025. /*
  1026. * Called when the dentry loses inode.
  1027. * We use it to clean up silly-renamed files.
  1028. */
  1029. static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
  1030. {
  1031. if (S_ISDIR(inode->i_mode))
  1032. /* drop any readdir cache as it could easily be old */
  1033. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
  1034. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1035. drop_nlink(inode);
  1036. nfs_complete_unlink(dentry, inode);
  1037. }
  1038. iput(inode);
  1039. }
  1040. const struct dentry_operations nfs_dentry_operations = {
  1041. .d_revalidate = nfs_lookup_revalidate,
  1042. .d_delete = nfs_dentry_delete,
  1043. .d_iput = nfs_dentry_iput,
  1044. };
  1045. static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
  1046. {
  1047. struct dentry *res;
  1048. struct dentry *parent;
  1049. struct inode *inode = NULL;
  1050. struct nfs_fh *fhandle = NULL;
  1051. struct nfs_fattr *fattr = NULL;
  1052. int error;
  1053. dfprintk(VFS, "NFS: lookup(%s/%s)\n",
  1054. dentry->d_parent->d_name.name, dentry->d_name.name);
  1055. nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
  1056. res = ERR_PTR(-ENAMETOOLONG);
  1057. if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
  1058. goto out;
  1059. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  1060. /*
  1061. * If we're doing an exclusive create, optimize away the lookup
  1062. * but don't hash the dentry.
  1063. */
  1064. if (nfs_is_exclusive_create(dir, nd)) {
  1065. d_instantiate(dentry, NULL);
  1066. res = NULL;
  1067. goto out;
  1068. }
  1069. res = ERR_PTR(-ENOMEM);
  1070. fhandle = nfs_alloc_fhandle();
  1071. fattr = nfs_alloc_fattr();
  1072. if (fhandle == NULL || fattr == NULL)
  1073. goto out;
  1074. parent = dentry->d_parent;
  1075. /* Protect against concurrent sillydeletes */
  1076. nfs_block_sillyrename(parent);
  1077. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  1078. if (error == -ENOENT)
  1079. goto no_entry;
  1080. if (error < 0) {
  1081. res = ERR_PTR(error);
  1082. goto out_unblock_sillyrename;
  1083. }
  1084. inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
  1085. res = (struct dentry *)inode;
  1086. if (IS_ERR(res))
  1087. goto out_unblock_sillyrename;
  1088. no_entry:
  1089. res = d_materialise_unique(dentry, inode);
  1090. if (res != NULL) {
  1091. if (IS_ERR(res))
  1092. goto out_unblock_sillyrename;
  1093. dentry = res;
  1094. }
  1095. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1096. out_unblock_sillyrename:
  1097. nfs_unblock_sillyrename(parent);
  1098. out:
  1099. nfs_free_fattr(fattr);
  1100. nfs_free_fhandle(fhandle);
  1101. return res;
  1102. }
  1103. #ifdef CONFIG_NFS_V4
  1104. static int nfs_open_revalidate(struct dentry *, struct nameidata *);
  1105. const struct dentry_operations nfs4_dentry_operations = {
  1106. .d_revalidate = nfs_open_revalidate,
  1107. .d_delete = nfs_dentry_delete,
  1108. .d_iput = nfs_dentry_iput,
  1109. };
  1110. /*
  1111. * Use intent information to determine whether we need to substitute
  1112. * the NFSv4-style stateful OPEN for the LOOKUP call
  1113. */
  1114. static int is_atomic_open(struct nameidata *nd)
  1115. {
  1116. if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
  1117. return 0;
  1118. /* NFS does not (yet) have a stateful open for directories */
  1119. if (nd->flags & LOOKUP_DIRECTORY)
  1120. return 0;
  1121. /* Are we trying to write to a read only partition? */
  1122. if (__mnt_is_readonly(nd->path.mnt) &&
  1123. (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
  1124. return 0;
  1125. return 1;
  1126. }
  1127. static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
  1128. {
  1129. struct path path = {
  1130. .mnt = nd->path.mnt,
  1131. .dentry = dentry,
  1132. };
  1133. struct nfs_open_context *ctx;
  1134. struct rpc_cred *cred;
  1135. fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
  1136. cred = rpc_lookup_cred();
  1137. if (IS_ERR(cred))
  1138. return ERR_CAST(cred);
  1139. ctx = alloc_nfs_open_context(&path, cred, fmode);
  1140. put_rpccred(cred);
  1141. if (ctx == NULL)
  1142. return ERR_PTR(-ENOMEM);
  1143. return ctx;
  1144. }
  1145. static int do_open(struct inode *inode, struct file *filp)
  1146. {
  1147. nfs_fscache_set_inode_cookie(inode, filp);
  1148. return 0;
  1149. }
  1150. static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
  1151. {
  1152. struct file *filp;
  1153. int ret = 0;
  1154. /* If the open_intent is for execute, we have an extra check to make */
  1155. if (ctx->mode & FMODE_EXEC) {
  1156. ret = nfs_may_open(ctx->path.dentry->d_inode,
  1157. ctx->cred,
  1158. nd->intent.open.flags);
  1159. if (ret < 0)
  1160. goto out;
  1161. }
  1162. filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
  1163. if (IS_ERR(filp))
  1164. ret = PTR_ERR(filp);
  1165. else
  1166. nfs_file_set_open_context(filp, ctx);
  1167. out:
  1168. put_nfs_open_context(ctx);
  1169. return ret;
  1170. }
  1171. static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
  1172. {
  1173. struct nfs_open_context *ctx;
  1174. struct iattr attr;
  1175. struct dentry *res = NULL;
  1176. struct inode *inode;
  1177. int open_flags;
  1178. int err;
  1179. dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
  1180. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1181. /* Check that we are indeed trying to open this file */
  1182. if (!is_atomic_open(nd))
  1183. goto no_open;
  1184. if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
  1185. res = ERR_PTR(-ENAMETOOLONG);
  1186. goto out;
  1187. }
  1188. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  1189. /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
  1190. * the dentry. */
  1191. if (nd->flags & LOOKUP_EXCL) {
  1192. d_instantiate(dentry, NULL);
  1193. goto out;
  1194. }
  1195. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1196. res = ERR_CAST(ctx);
  1197. if (IS_ERR(ctx))
  1198. goto out;
  1199. open_flags = nd->intent.open.flags;
  1200. if (nd->flags & LOOKUP_CREATE) {
  1201. attr.ia_mode = nd->intent.open.create_mode;
  1202. attr.ia_valid = ATTR_MODE;
  1203. if (!IS_POSIXACL(dir))
  1204. attr.ia_mode &= ~current_umask();
  1205. } else {
  1206. open_flags &= ~(O_EXCL | O_CREAT);
  1207. attr.ia_valid = 0;
  1208. }
  1209. /* Open the file on the server */
  1210. nfs_block_sillyrename(dentry->d_parent);
  1211. inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
  1212. if (IS_ERR(inode)) {
  1213. nfs_unblock_sillyrename(dentry->d_parent);
  1214. put_nfs_open_context(ctx);
  1215. switch (PTR_ERR(inode)) {
  1216. /* Make a negative dentry */
  1217. case -ENOENT:
  1218. d_add(dentry, NULL);
  1219. res = NULL;
  1220. goto out;
  1221. /* This turned out not to be a regular file */
  1222. case -ENOTDIR:
  1223. goto no_open;
  1224. case -ELOOP:
  1225. if (!(nd->intent.open.flags & O_NOFOLLOW))
  1226. goto no_open;
  1227. /* case -EISDIR: */
  1228. /* case -EINVAL: */
  1229. default:
  1230. res = ERR_CAST(inode);
  1231. goto out;
  1232. }
  1233. }
  1234. res = d_add_unique(dentry, inode);
  1235. nfs_unblock_sillyrename(dentry->d_parent);
  1236. if (res != NULL) {
  1237. dput(ctx->path.dentry);
  1238. ctx->path.dentry = dget(res);
  1239. dentry = res;
  1240. }
  1241. err = nfs_intent_set_file(nd, ctx);
  1242. if (err < 0) {
  1243. if (res != NULL)
  1244. dput(res);
  1245. return ERR_PTR(err);
  1246. }
  1247. out:
  1248. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1249. return res;
  1250. no_open:
  1251. return nfs_lookup(dir, dentry, nd);
  1252. }
  1253. static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
  1254. {
  1255. struct dentry *parent = NULL;
  1256. struct inode *inode = dentry->d_inode;
  1257. struct inode *dir;
  1258. struct nfs_open_context *ctx;
  1259. int openflags, ret = 0;
  1260. if (!is_atomic_open(nd) || d_mountpoint(dentry))
  1261. goto no_open;
  1262. parent = dget_parent(dentry);
  1263. dir = parent->d_inode;
  1264. /* We can't create new files in nfs_open_revalidate(), so we
  1265. * optimize away revalidation of negative dentries.
  1266. */
  1267. if (inode == NULL) {
  1268. if (!nfs_neg_need_reval(dir, dentry, nd))
  1269. ret = 1;
  1270. goto out;
  1271. }
  1272. /* NFS only supports OPEN on regular files */
  1273. if (!S_ISREG(inode->i_mode))
  1274. goto no_open_dput;
  1275. openflags = nd->intent.open.flags;
  1276. /* We cannot do exclusive creation on a positive dentry */
  1277. if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
  1278. goto no_open_dput;
  1279. /* We can't create new files, or truncate existing ones here */
  1280. openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
  1281. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1282. ret = PTR_ERR(ctx);
  1283. if (IS_ERR(ctx))
  1284. goto out;
  1285. /*
  1286. * Note: we're not holding inode->i_mutex and so may be racing with
  1287. * operations that change the directory. We therefore save the
  1288. * change attribute *before* we do the RPC call.
  1289. */
  1290. inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
  1291. if (IS_ERR(inode)) {
  1292. ret = PTR_ERR(inode);
  1293. switch (ret) {
  1294. case -EPERM:
  1295. case -EACCES:
  1296. case -EDQUOT:
  1297. case -ENOSPC:
  1298. case -EROFS:
  1299. goto out_put_ctx;
  1300. default:
  1301. goto out_drop;
  1302. }
  1303. }
  1304. iput(inode);
  1305. if (inode != dentry->d_inode)
  1306. goto out_drop;
  1307. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1308. ret = nfs_intent_set_file(nd, ctx);
  1309. if (ret >= 0)
  1310. ret = 1;
  1311. out:
  1312. dput(parent);
  1313. return ret;
  1314. out_drop:
  1315. d_drop(dentry);
  1316. ret = 0;
  1317. out_put_ctx:
  1318. put_nfs_open_context(ctx);
  1319. goto out;
  1320. no_open_dput:
  1321. dput(parent);
  1322. no_open:
  1323. return nfs_lookup_revalidate(dentry, nd);
  1324. }
  1325. static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
  1326. struct nameidata *nd)
  1327. {
  1328. struct nfs_open_context *ctx = NULL;
  1329. struct iattr attr;
  1330. int error;
  1331. int open_flags = 0;
  1332. dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
  1333. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1334. attr.ia_mode = mode;
  1335. attr.ia_valid = ATTR_MODE;
  1336. if ((nd->flags & LOOKUP_CREATE) != 0) {
  1337. open_flags = nd->intent.open.flags;
  1338. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1339. error = PTR_ERR(ctx);
  1340. if (IS_ERR(ctx))
  1341. goto out_err_drop;
  1342. }
  1343. error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
  1344. if (error != 0)
  1345. goto out_put_ctx;
  1346. if (ctx != NULL) {
  1347. error = nfs_intent_set_file(nd, ctx);
  1348. if (error < 0)
  1349. goto out_err;
  1350. }
  1351. return 0;
  1352. out_put_ctx:
  1353. if (ctx != NULL)
  1354. put_nfs_open_context(ctx);
  1355. out_err_drop:
  1356. d_drop(dentry);
  1357. out_err:
  1358. return error;
  1359. }
  1360. #endif /* CONFIG_NFSV4 */
  1361. /*
  1362. * Code common to create, mkdir, and mknod.
  1363. */
  1364. int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
  1365. struct nfs_fattr *fattr)
  1366. {
  1367. struct dentry *parent = dget_parent(dentry);
  1368. struct inode *dir = parent->d_inode;
  1369. struct inode *inode;
  1370. int error = -EACCES;
  1371. d_drop(dentry);
  1372. /* We may have been initialized further down */
  1373. if (dentry->d_inode)
  1374. goto out;
  1375. if (fhandle->size == 0) {
  1376. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  1377. if (error)
  1378. goto out_error;
  1379. }
  1380. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1381. if (!(fattr->valid & NFS_ATTR_FATTR)) {
  1382. struct nfs_server *server = NFS_SB(dentry->d_sb);
  1383. error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
  1384. if (error < 0)
  1385. goto out_error;
  1386. }
  1387. inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
  1388. error = PTR_ERR(inode);
  1389. if (IS_ERR(inode))
  1390. goto out_error;
  1391. d_add(dentry, inode);
  1392. out:
  1393. dput(parent);
  1394. return 0;
  1395. out_error:
  1396. nfs_mark_for_revalidate(dir);
  1397. dput(parent);
  1398. return error;
  1399. }
  1400. /*
  1401. * Following a failed create operation, we drop the dentry rather
  1402. * than retain a negative dentry. This avoids a problem in the event
  1403. * that the operation succeeded on the server, but an error in the
  1404. * reply path made it appear to have failed.
  1405. */
  1406. static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
  1407. struct nameidata *nd)
  1408. {
  1409. struct iattr attr;
  1410. int error;
  1411. dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
  1412. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1413. attr.ia_mode = mode;
  1414. attr.ia_valid = ATTR_MODE;
  1415. error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
  1416. if (error != 0)
  1417. goto out_err;
  1418. return 0;
  1419. out_err:
  1420. d_drop(dentry);
  1421. return error;
  1422. }
  1423. /*
  1424. * See comments for nfs_proc_create regarding failed operations.
  1425. */
  1426. static int
  1427. nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
  1428. {
  1429. struct iattr attr;
  1430. int status;
  1431. dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
  1432. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1433. if (!new_valid_dev(rdev))
  1434. return -EINVAL;
  1435. attr.ia_mode = mode;
  1436. attr.ia_valid = ATTR_MODE;
  1437. status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
  1438. if (status != 0)
  1439. goto out_err;
  1440. return 0;
  1441. out_err:
  1442. d_drop(dentry);
  1443. return status;
  1444. }
  1445. /*
  1446. * See comments for nfs_proc_create regarding failed operations.
  1447. */
  1448. static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  1449. {
  1450. struct iattr attr;
  1451. int error;
  1452. dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
  1453. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1454. attr.ia_valid = ATTR_MODE;
  1455. attr.ia_mode = mode | S_IFDIR;
  1456. error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
  1457. if (error != 0)
  1458. goto out_err;
  1459. return 0;
  1460. out_err:
  1461. d_drop(dentry);
  1462. return error;
  1463. }
  1464. static void nfs_dentry_handle_enoent(struct dentry *dentry)
  1465. {
  1466. if (dentry->d_inode != NULL && !d_unhashed(dentry))
  1467. d_delete(dentry);
  1468. }
  1469. static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
  1470. {
  1471. int error;
  1472. dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
  1473. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1474. error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
  1475. /* Ensure the VFS deletes this inode */
  1476. if (error == 0 && dentry->d_inode != NULL)
  1477. clear_nlink(dentry->d_inode);
  1478. else if (error == -ENOENT)
  1479. nfs_dentry_handle_enoent(dentry);
  1480. return error;
  1481. }
  1482. /*
  1483. * Remove a file after making sure there are no pending writes,
  1484. * and after checking that the file has only one user.
  1485. *
  1486. * We invalidate the attribute cache and free the inode prior to the operation
  1487. * to avoid possible races if the server reuses the inode.
  1488. */
  1489. static int nfs_safe_remove(struct dentry *dentry)
  1490. {
  1491. struct inode *dir = dentry->d_parent->d_inode;
  1492. struct inode *inode = dentry->d_inode;
  1493. int error = -EBUSY;
  1494. dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
  1495. dentry->d_parent->d_name.name, dentry->d_name.name);
  1496. /* If the dentry was sillyrenamed, we simply call d_delete() */
  1497. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1498. error = 0;
  1499. goto out;
  1500. }
  1501. if (inode != NULL) {
  1502. nfs_inode_return_delegation(inode);
  1503. error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
  1504. /* The VFS may want to delete this inode */
  1505. if (error == 0)
  1506. nfs_drop_nlink(inode);
  1507. nfs_mark_for_revalidate(inode);
  1508. } else
  1509. error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
  1510. if (error == -ENOENT)
  1511. nfs_dentry_handle_enoent(dentry);
  1512. out:
  1513. return error;
  1514. }
  1515. /* We do silly rename. In case sillyrename() returns -EBUSY, the inode
  1516. * belongs to an active ".nfs..." file and we return -EBUSY.
  1517. *
  1518. * If sillyrename() returns 0, we do nothing, otherwise we unlink.
  1519. */
  1520. static int nfs_unlink(struct inode *dir, struct dentry *dentry)
  1521. {
  1522. int error;
  1523. int need_rehash = 0;
  1524. dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
  1525. dir->i_ino, dentry->d_name.name);
  1526. spin_lock(&dentry->d_lock);
  1527. if (dentry->d_count > 1) {
  1528. spin_unlock(&dentry->d_lock);
  1529. /* Start asynchronous writeout of the inode */
  1530. write_inode_now(dentry->d_inode, 0);
  1531. error = nfs_sillyrename(dir, dentry);
  1532. return error;
  1533. }
  1534. if (!d_unhashed(dentry)) {
  1535. __d_drop(dentry);
  1536. need_rehash = 1;
  1537. }
  1538. spin_unlock(&dentry->d_lock);
  1539. error = nfs_safe_remove(dentry);
  1540. if (!error || error == -ENOENT) {
  1541. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1542. } else if (need_rehash)
  1543. d_rehash(dentry);
  1544. return error;
  1545. }
  1546. /*
  1547. * To create a symbolic link, most file systems instantiate a new inode,
  1548. * add a page to it containing the path, then write it out to the disk
  1549. * using prepare_write/commit_write.
  1550. *
  1551. * Unfortunately the NFS client can't create the in-core inode first
  1552. * because it needs a file handle to create an in-core inode (see
  1553. * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
  1554. * symlink request has completed on the server.
  1555. *
  1556. * So instead we allocate a raw page, copy the symname into it, then do
  1557. * the SYMLINK request with the page as the buffer. If it succeeds, we
  1558. * now have a new file handle and can instantiate an in-core NFS inode
  1559. * and move the raw page into its mapping.
  1560. */
  1561. static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
  1562. {
  1563. struct pagevec lru_pvec;
  1564. struct page *page;
  1565. char *kaddr;
  1566. struct iattr attr;
  1567. unsigned int pathlen = strlen(symname);
  1568. int error;
  1569. dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
  1570. dir->i_ino, dentry->d_name.name, symname);
  1571. if (pathlen > PAGE_SIZE)
  1572. return -ENAMETOOLONG;
  1573. attr.ia_mode = S_IFLNK | S_IRWXUGO;
  1574. attr.ia_valid = ATTR_MODE;
  1575. page = alloc_page(GFP_HIGHUSER);
  1576. if (!page)
  1577. return -ENOMEM;
  1578. kaddr = kmap_atomic(page, KM_USER0);
  1579. memcpy(kaddr, symname, pathlen);
  1580. if (pathlen < PAGE_SIZE)
  1581. memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
  1582. kunmap_atomic(kaddr, KM_USER0);
  1583. error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
  1584. if (error != 0) {
  1585. dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
  1586. dir->i_sb->s_id, dir->i_ino,
  1587. dentry->d_name.name, symname, error);
  1588. d_drop(dentry);
  1589. __free_page(page);
  1590. return error;
  1591. }
  1592. /*
  1593. * No big deal if we can't add this page to the page cache here.
  1594. * READLINK will get the missing page from the server if needed.
  1595. */
  1596. pagevec_init(&lru_pvec, 0);
  1597. if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
  1598. GFP_KERNEL)) {
  1599. pagevec_add(&lru_pvec, page);
  1600. pagevec_lru_add_file(&lru_pvec);
  1601. SetPageUptodate(page);
  1602. unlock_page(page);
  1603. } else
  1604. __free_page(page);
  1605. return 0;
  1606. }
  1607. static int
  1608. nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
  1609. {
  1610. struct inode *inode = old_dentry->d_inode;
  1611. int error;
  1612. dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
  1613. old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  1614. dentry->d_parent->d_name.name, dentry->d_name.name);
  1615. nfs_inode_return_delegation(inode);
  1616. d_drop(dentry);
  1617. error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
  1618. if (error == 0) {
  1619. ihold(inode);
  1620. d_add(dentry, inode);
  1621. }
  1622. return error;
  1623. }
  1624. /*
  1625. * RENAME
  1626. * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
  1627. * different file handle for the same inode after a rename (e.g. when
  1628. * moving to a different directory). A fail-safe method to do so would
  1629. * be to look up old_dir/old_name, create a link to new_dir/new_name and
  1630. * rename the old file using the sillyrename stuff. This way, the original
  1631. * file in old_dir will go away when the last process iput()s the inode.
  1632. *
  1633. * FIXED.
  1634. *
  1635. * It actually works quite well. One needs to have the possibility for
  1636. * at least one ".nfs..." file in each directory the file ever gets
  1637. * moved or linked to which happens automagically with the new
  1638. * implementation that only depends on the dcache stuff instead of
  1639. * using the inode layer
  1640. *
  1641. * Unfortunately, things are a little more complicated than indicated
  1642. * above. For a cross-directory move, we want to make sure we can get
  1643. * rid of the old inode after the operation. This means there must be
  1644. * no pending writes (if it's a file), and the use count must be 1.
  1645. * If these conditions are met, we can drop the dentries before doing
  1646. * the rename.
  1647. */
  1648. static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  1649. struct inode *new_dir, struct dentry *new_dentry)
  1650. {
  1651. struct inode *old_inode = old_dentry->d_inode;
  1652. struct inode *new_inode = new_dentry->d_inode;
  1653. struct dentry *dentry = NULL, *rehash = NULL;
  1654. int error = -EBUSY;
  1655. dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
  1656. old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  1657. new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
  1658. new_dentry->d_count);
  1659. /*
  1660. * For non-directories, check whether the target is busy and if so,
  1661. * make a copy of the dentry and then do a silly-rename. If the
  1662. * silly-rename succeeds, the copied dentry is hashed and becomes
  1663. * the new target.
  1664. */
  1665. if (new_inode && !S_ISDIR(new_inode->i_mode)) {
  1666. /*
  1667. * To prevent any new references to the target during the
  1668. * rename, we unhash the dentry in advance.
  1669. */
  1670. if (!d_unhashed(new_dentry)) {
  1671. d_drop(new_dentry);
  1672. rehash = new_dentry;
  1673. }
  1674. if (new_dentry->d_count > 2) {
  1675. int err;
  1676. /* copy the target dentry's name */
  1677. dentry = d_alloc(new_dentry->d_parent,
  1678. &new_dentry->d_name);
  1679. if (!dentry)
  1680. goto out;
  1681. /* silly-rename the existing target ... */
  1682. err = nfs_sillyrename(new_dir, new_dentry);
  1683. if (err)
  1684. goto out;
  1685. new_dentry = dentry;
  1686. rehash = NULL;
  1687. new_inode = NULL;
  1688. }
  1689. }
  1690. nfs_inode_return_delegation(old_inode);
  1691. if (new_inode != NULL)
  1692. nfs_inode_return_delegation(new_inode);
  1693. error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
  1694. new_dir, &new_dentry->d_name);
  1695. nfs_mark_for_revalidate(old_inode);
  1696. out:
  1697. if (rehash)
  1698. d_rehash(rehash);
  1699. if (!error) {
  1700. if (new_inode != NULL)
  1701. nfs_drop_nlink(new_inode);
  1702. d_move(old_dentry, new_dentry);
  1703. nfs_set_verifier(new_dentry,
  1704. nfs_save_change_attribute(new_dir));
  1705. } else if (error == -ENOENT)
  1706. nfs_dentry_handle_enoent(old_dentry);
  1707. /* new dentry created? */
  1708. if (dentry)
  1709. dput(dentry);
  1710. return error;
  1711. }
  1712. static DEFINE_SPINLOCK(nfs_access_lru_lock);
  1713. static LIST_HEAD(nfs_access_lru_list);
  1714. static atomic_long_t nfs_access_nr_entries;
  1715. static void nfs_access_free_entry(struct nfs_access_entry *entry)
  1716. {
  1717. put_rpccred(entry->cred);
  1718. kfree(entry);
  1719. smp_mb__before_atomic_dec();
  1720. atomic_long_dec(&nfs_access_nr_entries);
  1721. smp_mb__after_atomic_dec();
  1722. }
  1723. static void nfs_access_free_list(struct list_head *head)
  1724. {
  1725. struct nfs_access_entry *cache;
  1726. while (!list_empty(head)) {
  1727. cache = list_entry(head->next, struct nfs_access_entry, lru);
  1728. list_del(&cache->lru);
  1729. nfs_access_free_entry(cache);
  1730. }
  1731. }
  1732. int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
  1733. {
  1734. LIST_HEAD(head);
  1735. struct nfs_inode *nfsi, *next;
  1736. struct nfs_access_entry *cache;
  1737. if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
  1738. return (nr_to_scan == 0) ? 0 : -1;
  1739. spin_lock(&nfs_access_lru_lock);
  1740. list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
  1741. struct inode *inode;
  1742. if (nr_to_scan-- == 0)
  1743. break;
  1744. inode = &nfsi->vfs_inode;
  1745. spin_lock(&inode->i_lock);
  1746. if (list_empty(&nfsi->access_cache_entry_lru))
  1747. goto remove_lru_entry;
  1748. cache = list_entry(nfsi->access_cache_entry_lru.next,
  1749. struct nfs_access_entry, lru);
  1750. list_move(&cache->lru, &head);
  1751. rb_erase(&cache->rb_node, &nfsi->access_cache);
  1752. if (!list_empty(&nfsi->access_cache_entry_lru))
  1753. list_move_tail(&nfsi->access_cache_inode_lru,
  1754. &nfs_access_lru_list);
  1755. else {
  1756. remove_lru_entry:
  1757. list_del_init(&nfsi->access_cache_inode_lru);
  1758. smp_mb__before_clear_bit();
  1759. clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
  1760. smp_mb__after_clear_bit();
  1761. }
  1762. spin_unlock(&inode->i_lock);
  1763. }
  1764. spin_unlock(&nfs_access_lru_lock);
  1765. nfs_access_free_list(&head);
  1766. return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
  1767. }
  1768. static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
  1769. {
  1770. struct rb_root *root_node = &nfsi->access_cache;
  1771. struct rb_node *n;
  1772. struct nfs_access_entry *entry;
  1773. /* Unhook entries from the cache */
  1774. while ((n = rb_first(root_node)) != NULL) {
  1775. entry = rb_entry(n, struct nfs_access_entry, rb_node);
  1776. rb_erase(n, root_node);
  1777. list_move(&entry->lru, head);
  1778. }
  1779. nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
  1780. }
  1781. void nfs_access_zap_cache(struct inode *inode)
  1782. {
  1783. LIST_HEAD(head);
  1784. if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
  1785. return;
  1786. /* Remove from global LRU init */
  1787. spin_lock(&nfs_access_lru_lock);
  1788. if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
  1789. list_del_init(&NFS_I(inode)->access_cache_inode_lru);
  1790. spin_lock(&inode->i_lock);
  1791. __nfs_access_zap_cache(NFS_I(inode), &head);
  1792. spin_unlock(&inode->i_lock);
  1793. spin_unlock(&nfs_access_lru_lock);
  1794. nfs_access_free_list(&head);
  1795. }
  1796. static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
  1797. {
  1798. struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
  1799. struct nfs_access_entry *entry;
  1800. while (n != NULL) {
  1801. entry = rb_entry(n, struct nfs_access_entry, rb_node);
  1802. if (cred < entry->cred)
  1803. n = n->rb_left;
  1804. else if (cred > entry->cred)
  1805. n = n->rb_right;
  1806. else
  1807. return entry;
  1808. }
  1809. return NULL;
  1810. }
  1811. static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
  1812. {
  1813. struct nfs_inode *nfsi = NFS_I(inode);
  1814. struct nfs_access_entry *cache;
  1815. int err = -ENOENT;
  1816. spin_lock(&inode->i_lock);
  1817. if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
  1818. goto out_zap;
  1819. cache = nfs_access_search_rbtree(inode, cred);
  1820. if (cache == NULL)
  1821. goto out;
  1822. if (!nfs_have_delegated_attributes(inode) &&
  1823. !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
  1824. goto out_stale;
  1825. res->jiffies = cache->jiffies;
  1826. res->cred = cache->cred;
  1827. res->mask = cache->mask;
  1828. list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
  1829. err = 0;
  1830. out:
  1831. spin_unlock(&inode->i_lock);
  1832. return err;
  1833. out_stale:
  1834. rb_erase(&cache->rb_node, &nfsi->access_cache);
  1835. list_del(&cache->lru);
  1836. spin_unlock(&inode->i_lock);
  1837. nfs_access_free_entry(cache);
  1838. return -ENOENT;
  1839. out_zap:
  1840. spin_unlock(&inode->i_lock);
  1841. nfs_access_zap_cache(inode);
  1842. return -ENOENT;
  1843. }
  1844. static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
  1845. {
  1846. struct nfs_inode *nfsi = NFS_I(inode);
  1847. struct rb_root *root_node = &nfsi->access_cache;
  1848. struct rb_node **p = &root_node->rb_node;
  1849. struct rb_node *parent = NULL;
  1850. struct nfs_access_entry *entry;
  1851. spin_lock(&inode->i_lock);
  1852. while (*p != NULL) {
  1853. parent = *p;
  1854. entry = rb_entry(parent, struct nfs_access_entry, rb_node);
  1855. if (set->cred < entry->cred)
  1856. p = &parent->rb_left;
  1857. else if (set->cred > entry->cred)
  1858. p = &parent->rb_right;
  1859. else
  1860. goto found;
  1861. }
  1862. rb_link_node(&set->rb_node, parent, p);
  1863. rb_insert_color(&set->rb_node, root_node);
  1864. list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
  1865. spin_unlock(&inode->i_lock);
  1866. return;
  1867. found:
  1868. rb_replace_node(parent, &set->rb_node, root_node);
  1869. list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
  1870. list_del(&entry->lru);
  1871. spin_unlock(&inode->i_lock);
  1872. nfs_access_free_entry(entry);
  1873. }
  1874. static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
  1875. {
  1876. struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
  1877. if (cache == NULL)
  1878. return;
  1879. RB_CLEAR_NODE(&cache->rb_node);
  1880. cache->jiffies = set->jiffies;
  1881. cache->cred = get_rpccred(set->cred);
  1882. cache->mask = set->mask;
  1883. nfs_access_add_rbtree(inode, cache);
  1884. /* Update accounting */
  1885. smp_mb__before_atomic_inc();
  1886. atomic_long_inc(&nfs_access_nr_entries);
  1887. smp_mb__after_atomic_inc();
  1888. /* Add inode to global LRU list */
  1889. if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
  1890. spin_lock(&nfs_access_lru_lock);
  1891. if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
  1892. list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
  1893. &nfs_access_lru_list);
  1894. spin_unlock(&nfs_access_lru_lock);
  1895. }
  1896. }
  1897. static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
  1898. {
  1899. struct nfs_access_entry cache;
  1900. int status;
  1901. status = nfs_access_get_cached(inode, cred, &cache);
  1902. if (status == 0)
  1903. goto out;
  1904. /* Be clever: ask server to check for all possible rights */
  1905. cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
  1906. cache.cred = cred;
  1907. cache.jiffies = jiffies;
  1908. status = NFS_PROTO(inode)->access(inode, &cache);
  1909. if (status != 0) {
  1910. if (status == -ESTALE) {
  1911. nfs_zap_caches(inode);
  1912. if (!S_ISDIR(inode->i_mode))
  1913. set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
  1914. }
  1915. return status;
  1916. }
  1917. nfs_access_add_cache(inode, &cache);
  1918. out:
  1919. if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
  1920. return 0;
  1921. return -EACCES;
  1922. }
  1923. static int nfs_open_permission_mask(int openflags)
  1924. {
  1925. int mask = 0;
  1926. if (openflags & FMODE_READ)
  1927. mask |= MAY_READ;
  1928. if (openflags & FMODE_WRITE)
  1929. mask |= MAY_WRITE;
  1930. if (openflags & FMODE_EXEC)
  1931. mask |= MAY_EXEC;
  1932. return mask;
  1933. }
  1934. int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
  1935. {
  1936. return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
  1937. }
  1938. int nfs_permission(struct inode *inode, int mask, unsigned int flags)
  1939. {
  1940. struct rpc_cred *cred;
  1941. int res = 0;
  1942. if (flags & IPERM_FLAG_RCU)
  1943. return -ECHILD;
  1944. nfs_inc_stats(inode, NFSIOS_VFSACCESS);
  1945. if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
  1946. goto out;
  1947. /* Is this sys_access() ? */
  1948. if (mask & (MAY_ACCESS | MAY_CHDIR))
  1949. goto force_lookup;
  1950. switch (inode->i_mode & S_IFMT) {
  1951. case S_IFLNK:
  1952. goto out;
  1953. case S_IFREG:
  1954. /* NFSv4 has atomic_open... */
  1955. if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
  1956. && (mask & MAY_OPEN)
  1957. && !(mask & MAY_EXEC))
  1958. goto out;
  1959. break;
  1960. case S_IFDIR:
  1961. /*
  1962. * Optimize away all write operations, since the server
  1963. * will check permissions when we perform the op.
  1964. */
  1965. if ((mask & MAY_WRITE) && !(mask & MAY_READ))
  1966. goto out;
  1967. }
  1968. force_lookup:
  1969. if (!NFS_PROTO(inode)->access)
  1970. goto out_notsup;
  1971. cred = rpc_lookup_cred();
  1972. if (!IS_ERR(cred)) {
  1973. res = nfs_do_access(inode, cred, mask);
  1974. put_rpccred(cred);
  1975. } else
  1976. res = PTR_ERR(cred);
  1977. out:
  1978. if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
  1979. res = -EACCES;
  1980. dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
  1981. inode->i_sb->s_id, inode->i_ino, mask, res);
  1982. return res;
  1983. out_notsup:
  1984. res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
  1985. if (res == 0)
  1986. res = generic_permission(inode, mask, flags, NULL);
  1987. goto out;
  1988. }
  1989. /*
  1990. * Local variables:
  1991. * version-control: t
  1992. * kept-new-versions: 5
  1993. * End:
  1994. */