dir.c 63 KB

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