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/kmemleak.h>
  36. #include <linux/xattr.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 = generic_getxattr,
  119. .setxattr = generic_setxattr,
  120. .listxattr = generic_listxattr,
  121. .removexattr = generic_removexattr,
  122. };
  123. #endif /* CONFIG_NFS_V4 */
  124. /*
  125. * Open file
  126. */
  127. static int
  128. nfs_opendir(struct inode *inode, struct file *filp)
  129. {
  130. int res;
  131. dfprintk(FILE, "NFS: open dir(%s/%s)\n",
  132. filp->f_path.dentry->d_parent->d_name.name,
  133. filp->f_path.dentry->d_name.name);
  134. nfs_inc_stats(inode, NFSIOS_VFSOPEN);
  135. /* Call generic open code in order to cache credentials */
  136. res = nfs_open(inode, filp);
  137. if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
  138. /* This is a mountpoint, so d_revalidate will never
  139. * have been called, so we need to refresh the
  140. * inode (for close-open consistency) ourselves.
  141. */
  142. __nfs_revalidate_inode(NFS_SERVER(inode), inode);
  143. }
  144. return res;
  145. }
  146. struct nfs_cache_array_entry {
  147. u64 cookie;
  148. u64 ino;
  149. struct qstr string;
  150. unsigned char d_type;
  151. };
  152. struct nfs_cache_array {
  153. unsigned int size;
  154. int eof_index;
  155. u64 last_cookie;
  156. struct nfs_cache_array_entry array[0];
  157. };
  158. typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
  159. typedef struct {
  160. struct file *file;
  161. struct page *page;
  162. unsigned long page_index;
  163. u64 *dir_cookie;
  164. u64 last_cookie;
  165. loff_t current_index;
  166. decode_dirent_t decode;
  167. unsigned long timestamp;
  168. unsigned long gencount;
  169. unsigned int cache_entry_index;
  170. unsigned int plus:1;
  171. unsigned int eof:1;
  172. } nfs_readdir_descriptor_t;
  173. /*
  174. * The caller is responsible for calling nfs_readdir_release_array(page)
  175. */
  176. static
  177. struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
  178. {
  179. void *ptr;
  180. if (page == NULL)
  181. return ERR_PTR(-EIO);
  182. ptr = kmap(page);
  183. if (ptr == NULL)
  184. return ERR_PTR(-ENOMEM);
  185. return ptr;
  186. }
  187. static
  188. void nfs_readdir_release_array(struct page *page)
  189. {
  190. kunmap(page);
  191. }
  192. /*
  193. * we are freeing strings created by nfs_add_to_readdir_array()
  194. */
  195. static
  196. void nfs_readdir_clear_array(struct page *page)
  197. {
  198. struct nfs_cache_array *array;
  199. int i;
  200. array = kmap_atomic(page, KM_USER0);
  201. for (i = 0; i < array->size; i++)
  202. kfree(array->array[i].string.name);
  203. kunmap_atomic(array, KM_USER0);
  204. }
  205. /*
  206. * the caller is responsible for freeing qstr.name
  207. * when called by nfs_readdir_add_to_array, the strings will be freed in
  208. * nfs_clear_readdir_array()
  209. */
  210. static
  211. int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
  212. {
  213. string->len = len;
  214. string->name = kmemdup(name, len, GFP_KERNEL);
  215. if (string->name == NULL)
  216. return -ENOMEM;
  217. /*
  218. * Avoid a kmemleak false positive. The pointer to the name is stored
  219. * in a page cache page which kmemleak does not scan.
  220. */
  221. kmemleak_not_leak(string->name);
  222. string->hash = full_name_hash(name, len);
  223. return 0;
  224. }
  225. static
  226. int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
  227. {
  228. struct nfs_cache_array *array = nfs_readdir_get_array(page);
  229. struct nfs_cache_array_entry *cache_entry;
  230. int ret;
  231. if (IS_ERR(array))
  232. return PTR_ERR(array);
  233. cache_entry = &array->array[array->size];
  234. /* Check that this entry lies within the page bounds */
  235. ret = -ENOSPC;
  236. if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
  237. goto out;
  238. cache_entry->cookie = entry->prev_cookie;
  239. cache_entry->ino = entry->ino;
  240. cache_entry->d_type = entry->d_type;
  241. ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
  242. if (ret)
  243. goto out;
  244. array->last_cookie = entry->cookie;
  245. array->size++;
  246. if (entry->eof != 0)
  247. array->eof_index = array->size;
  248. out:
  249. nfs_readdir_release_array(page);
  250. return ret;
  251. }
  252. static
  253. int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
  254. {
  255. loff_t diff = desc->file->f_pos - desc->current_index;
  256. unsigned int index;
  257. if (diff < 0)
  258. goto out_eof;
  259. if (diff >= array->size) {
  260. if (array->eof_index >= 0)
  261. goto out_eof;
  262. desc->current_index += array->size;
  263. return -EAGAIN;
  264. }
  265. index = (unsigned int)diff;
  266. *desc->dir_cookie = array->array[index].cookie;
  267. desc->cache_entry_index = index;
  268. return 0;
  269. out_eof:
  270. desc->eof = 1;
  271. return -EBADCOOKIE;
  272. }
  273. static
  274. int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
  275. {
  276. int i;
  277. int status = -EAGAIN;
  278. for (i = 0; i < array->size; i++) {
  279. if (array->array[i].cookie == *desc->dir_cookie) {
  280. desc->cache_entry_index = i;
  281. return 0;
  282. }
  283. }
  284. if (array->eof_index >= 0) {
  285. status = -EBADCOOKIE;
  286. if (*desc->dir_cookie == array->last_cookie)
  287. desc->eof = 1;
  288. }
  289. return status;
  290. }
  291. static
  292. int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
  293. {
  294. struct nfs_cache_array *array;
  295. int status;
  296. array = nfs_readdir_get_array(desc->page);
  297. if (IS_ERR(array)) {
  298. status = PTR_ERR(array);
  299. goto out;
  300. }
  301. if (*desc->dir_cookie == 0)
  302. status = nfs_readdir_search_for_pos(array, desc);
  303. else
  304. status = nfs_readdir_search_for_cookie(array, desc);
  305. if (status == -EAGAIN) {
  306. desc->last_cookie = array->last_cookie;
  307. desc->page_index++;
  308. }
  309. nfs_readdir_release_array(desc->page);
  310. out:
  311. return status;
  312. }
  313. /* Fill a page with xdr information before transferring to the cache page */
  314. static
  315. int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
  316. struct nfs_entry *entry, struct file *file, struct inode *inode)
  317. {
  318. struct rpc_cred *cred = nfs_file_cred(file);
  319. unsigned long timestamp, gencount;
  320. int error;
  321. again:
  322. timestamp = jiffies;
  323. gencount = nfs_inc_attr_generation_counter();
  324. error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
  325. NFS_SERVER(inode)->dtsize, desc->plus);
  326. if (error < 0) {
  327. /* We requested READDIRPLUS, but the server doesn't grok it */
  328. if (error == -ENOTSUPP && desc->plus) {
  329. NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
  330. clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  331. desc->plus = 0;
  332. goto again;
  333. }
  334. goto error;
  335. }
  336. desc->timestamp = timestamp;
  337. desc->gencount = gencount;
  338. error:
  339. return error;
  340. }
  341. static int xdr_decode(nfs_readdir_descriptor_t *desc,
  342. struct nfs_entry *entry, struct xdr_stream *xdr)
  343. {
  344. int error;
  345. error = desc->decode(xdr, entry, desc->plus);
  346. if (error)
  347. return error;
  348. entry->fattr->time_start = desc->timestamp;
  349. entry->fattr->gencount = desc->gencount;
  350. return 0;
  351. }
  352. static
  353. int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
  354. {
  355. if (dentry->d_inode == NULL)
  356. goto different;
  357. if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
  358. goto different;
  359. return 1;
  360. different:
  361. return 0;
  362. }
  363. static
  364. void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
  365. {
  366. struct qstr filename = {
  367. .len = entry->len,
  368. .name = entry->name,
  369. };
  370. struct dentry *dentry;
  371. struct dentry *alias;
  372. struct inode *dir = parent->d_inode;
  373. struct inode *inode;
  374. if (filename.name[0] == '.') {
  375. if (filename.len == 1)
  376. return;
  377. if (filename.len == 2 && filename.name[1] == '.')
  378. return;
  379. }
  380. filename.hash = full_name_hash(filename.name, filename.len);
  381. dentry = d_lookup(parent, &filename);
  382. if (dentry != NULL) {
  383. if (nfs_same_file(dentry, entry)) {
  384. nfs_refresh_inode(dentry->d_inode, entry->fattr);
  385. goto out;
  386. } else {
  387. d_drop(dentry);
  388. dput(dentry);
  389. }
  390. }
  391. dentry = d_alloc(parent, &filename);
  392. if (dentry == NULL)
  393. return;
  394. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  395. inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
  396. if (IS_ERR(inode))
  397. goto out;
  398. alias = d_materialise_unique(dentry, inode);
  399. if (IS_ERR(alias))
  400. goto out;
  401. else if (alias) {
  402. nfs_set_verifier(alias, nfs_save_change_attribute(dir));
  403. dput(alias);
  404. } else
  405. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  406. out:
  407. dput(dentry);
  408. }
  409. /* Perform conversion from xdr to cache array */
  410. static
  411. int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
  412. struct page **xdr_pages, struct page *page, unsigned int buflen)
  413. {
  414. struct xdr_stream stream;
  415. struct xdr_buf buf = {
  416. .pages = xdr_pages,
  417. .page_len = buflen,
  418. .buflen = buflen,
  419. .len = buflen,
  420. };
  421. struct page *scratch;
  422. struct nfs_cache_array *array;
  423. unsigned int count = 0;
  424. int status;
  425. scratch = alloc_page(GFP_KERNEL);
  426. if (scratch == NULL)
  427. return -ENOMEM;
  428. xdr_init_decode(&stream, &buf, NULL);
  429. xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
  430. do {
  431. status = xdr_decode(desc, entry, &stream);
  432. if (status != 0) {
  433. if (status == -EAGAIN)
  434. status = 0;
  435. break;
  436. }
  437. count++;
  438. if (desc->plus != 0)
  439. nfs_prime_dcache(desc->file->f_path.dentry, entry);
  440. status = nfs_readdir_add_to_array(entry, page);
  441. if (status != 0)
  442. break;
  443. } while (!entry->eof);
  444. if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
  445. array = nfs_readdir_get_array(page);
  446. if (!IS_ERR(array)) {
  447. array->eof_index = array->size;
  448. status = 0;
  449. nfs_readdir_release_array(page);
  450. } else
  451. status = PTR_ERR(array);
  452. }
  453. put_page(scratch);
  454. return status;
  455. }
  456. static
  457. void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
  458. {
  459. unsigned int i;
  460. for (i = 0; i < npages; i++)
  461. put_page(pages[i]);
  462. }
  463. static
  464. void nfs_readdir_free_large_page(void *ptr, struct page **pages,
  465. unsigned int npages)
  466. {
  467. nfs_readdir_free_pagearray(pages, npages);
  468. }
  469. /*
  470. * nfs_readdir_large_page will allocate pages that must be freed with a call
  471. * to nfs_readdir_free_large_page
  472. */
  473. static
  474. int nfs_readdir_large_page(struct page **pages, unsigned int npages)
  475. {
  476. unsigned int i;
  477. for (i = 0; i < npages; i++) {
  478. struct page *page = alloc_page(GFP_KERNEL);
  479. if (page == NULL)
  480. goto out_freepages;
  481. pages[i] = page;
  482. }
  483. return 0;
  484. out_freepages:
  485. nfs_readdir_free_pagearray(pages, i);
  486. return -ENOMEM;
  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. entry.server = NFS_SERVER(inode);
  504. if (entry.fh == NULL || entry.fattr == NULL)
  505. goto out;
  506. array = nfs_readdir_get_array(page);
  507. if (IS_ERR(array)) {
  508. status = PTR_ERR(array);
  509. goto out;
  510. }
  511. memset(array, 0, sizeof(struct nfs_cache_array));
  512. array->eof_index = -1;
  513. status = nfs_readdir_large_page(pages, array_size);
  514. if (status < 0)
  515. goto out_release_array;
  516. do {
  517. unsigned int pglen;
  518. status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
  519. if (status < 0)
  520. break;
  521. pglen = status;
  522. status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
  523. if (status < 0) {
  524. if (status == -ENOSPC)
  525. status = 0;
  526. break;
  527. }
  528. } while (array->eof_index < 0);
  529. nfs_readdir_free_large_page(pages_ptr, pages, array_size);
  530. out_release_array:
  531. nfs_readdir_release_array(page);
  532. out:
  533. nfs_free_fattr(entry.fattr);
  534. nfs_free_fhandle(entry.fh);
  535. return status;
  536. }
  537. /*
  538. * Now we cache directories properly, by converting xdr information
  539. * to an array that can be used for lookups later. This results in
  540. * fewer cache pages, since we can store more information on each page.
  541. * We only need to convert from xdr once so future lookups are much simpler
  542. */
  543. static
  544. int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
  545. {
  546. struct inode *inode = desc->file->f_path.dentry->d_inode;
  547. int ret;
  548. ret = nfs_readdir_xdr_to_array(desc, page, inode);
  549. if (ret < 0)
  550. goto error;
  551. SetPageUptodate(page);
  552. if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
  553. /* Should never happen */
  554. nfs_zap_mapping(inode, inode->i_mapping);
  555. }
  556. unlock_page(page);
  557. return 0;
  558. error:
  559. unlock_page(page);
  560. return ret;
  561. }
  562. static
  563. void cache_page_release(nfs_readdir_descriptor_t *desc)
  564. {
  565. if (!desc->page->mapping)
  566. nfs_readdir_clear_array(desc->page);
  567. page_cache_release(desc->page);
  568. desc->page = NULL;
  569. }
  570. static
  571. struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
  572. {
  573. return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
  574. desc->page_index, (filler_t *)nfs_readdir_filler, desc);
  575. }
  576. /*
  577. * Returns 0 if desc->dir_cookie was found on page desc->page_index
  578. */
  579. static
  580. int find_cache_page(nfs_readdir_descriptor_t *desc)
  581. {
  582. int res;
  583. desc->page = get_cache_page(desc);
  584. if (IS_ERR(desc->page))
  585. return PTR_ERR(desc->page);
  586. res = nfs_readdir_search_array(desc);
  587. if (res != 0)
  588. cache_page_release(desc);
  589. return res;
  590. }
  591. /* Search for desc->dir_cookie from the beginning of the page cache */
  592. static inline
  593. int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
  594. {
  595. int res;
  596. if (desc->page_index == 0) {
  597. desc->current_index = 0;
  598. desc->last_cookie = 0;
  599. }
  600. do {
  601. res = find_cache_page(desc);
  602. } while (res == -EAGAIN);
  603. return res;
  604. }
  605. /*
  606. * Once we've found the start of the dirent within a page: fill 'er up...
  607. */
  608. static
  609. int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
  610. filldir_t filldir)
  611. {
  612. struct file *file = desc->file;
  613. int i = 0;
  614. int res = 0;
  615. struct nfs_cache_array *array = NULL;
  616. array = nfs_readdir_get_array(desc->page);
  617. if (IS_ERR(array)) {
  618. res = PTR_ERR(array);
  619. goto out;
  620. }
  621. for (i = desc->cache_entry_index; i < array->size; i++) {
  622. struct nfs_cache_array_entry *ent;
  623. ent = &array->array[i];
  624. if (filldir(dirent, ent->string.name, ent->string.len,
  625. file->f_pos, nfs_compat_user_ino64(ent->ino),
  626. ent->d_type) < 0) {
  627. desc->eof = 1;
  628. break;
  629. }
  630. file->f_pos++;
  631. if (i < (array->size-1))
  632. *desc->dir_cookie = array->array[i+1].cookie;
  633. else
  634. *desc->dir_cookie = array->last_cookie;
  635. }
  636. if (array->eof_index >= 0)
  637. desc->eof = 1;
  638. nfs_readdir_release_array(desc->page);
  639. out:
  640. cache_page_release(desc);
  641. dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
  642. (unsigned long long)*desc->dir_cookie, res);
  643. return res;
  644. }
  645. /*
  646. * If we cannot find a cookie in our cache, we suspect that this is
  647. * because it points to a deleted file, so we ask the server to return
  648. * whatever it thinks is the next entry. We then feed this to filldir.
  649. * If all goes well, we should then be able to find our way round the
  650. * cache on the next call to readdir_search_pagecache();
  651. *
  652. * NOTE: we cannot add the anonymous page to the pagecache because
  653. * the data it contains might not be page aligned. Besides,
  654. * we should already have a complete representation of the
  655. * directory in the page cache by the time we get here.
  656. */
  657. static inline
  658. int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
  659. filldir_t filldir)
  660. {
  661. struct page *page = NULL;
  662. int status;
  663. struct inode *inode = desc->file->f_path.dentry->d_inode;
  664. dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
  665. (unsigned long long)*desc->dir_cookie);
  666. page = alloc_page(GFP_HIGHUSER);
  667. if (!page) {
  668. status = -ENOMEM;
  669. goto out;
  670. }
  671. desc->page_index = 0;
  672. desc->last_cookie = *desc->dir_cookie;
  673. desc->page = page;
  674. status = nfs_readdir_xdr_to_array(desc, page, inode);
  675. if (status < 0)
  676. goto out_release;
  677. status = nfs_do_filldir(desc, dirent, filldir);
  678. out:
  679. dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
  680. __func__, status);
  681. return status;
  682. out_release:
  683. cache_page_release(desc);
  684. goto out;
  685. }
  686. /* The file offset position represents the dirent entry number. A
  687. last cookie cache takes care of the common case of reading the
  688. whole directory.
  689. */
  690. static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
  691. {
  692. struct dentry *dentry = filp->f_path.dentry;
  693. struct inode *inode = dentry->d_inode;
  694. nfs_readdir_descriptor_t my_desc,
  695. *desc = &my_desc;
  696. int res;
  697. dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
  698. dentry->d_parent->d_name.name, dentry->d_name.name,
  699. (long long)filp->f_pos);
  700. nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
  701. /*
  702. * filp->f_pos points to the dirent entry number.
  703. * *desc->dir_cookie has the cookie for the next entry. We have
  704. * to either find the entry with the appropriate number or
  705. * revalidate the cookie.
  706. */
  707. memset(desc, 0, sizeof(*desc));
  708. desc->file = filp;
  709. desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
  710. desc->decode = NFS_PROTO(inode)->decode_dirent;
  711. desc->plus = NFS_USE_READDIRPLUS(inode);
  712. nfs_block_sillyrename(dentry);
  713. res = nfs_revalidate_mapping(inode, filp->f_mapping);
  714. if (res < 0)
  715. goto out;
  716. do {
  717. res = readdir_search_pagecache(desc);
  718. if (res == -EBADCOOKIE) {
  719. res = 0;
  720. /* This means either end of directory */
  721. if (*desc->dir_cookie && desc->eof == 0) {
  722. /* Or that the server has 'lost' a cookie */
  723. res = uncached_readdir(desc, dirent, filldir);
  724. if (res == 0)
  725. continue;
  726. }
  727. break;
  728. }
  729. if (res == -ETOOSMALL && desc->plus) {
  730. clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  731. nfs_zap_caches(inode);
  732. desc->page_index = 0;
  733. desc->plus = 0;
  734. desc->eof = 0;
  735. continue;
  736. }
  737. if (res < 0)
  738. break;
  739. res = nfs_do_filldir(desc, dirent, filldir);
  740. if (res < 0)
  741. break;
  742. } while (!desc->eof);
  743. out:
  744. nfs_unblock_sillyrename(dentry);
  745. if (res > 0)
  746. res = 0;
  747. dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
  748. dentry->d_parent->d_name.name, dentry->d_name.name,
  749. res);
  750. return res;
  751. }
  752. static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
  753. {
  754. struct dentry *dentry = filp->f_path.dentry;
  755. struct inode *inode = dentry->d_inode;
  756. dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
  757. dentry->d_parent->d_name.name,
  758. dentry->d_name.name,
  759. offset, origin);
  760. mutex_lock(&inode->i_mutex);
  761. switch (origin) {
  762. case 1:
  763. offset += filp->f_pos;
  764. case 0:
  765. if (offset >= 0)
  766. break;
  767. default:
  768. offset = -EINVAL;
  769. goto out;
  770. }
  771. if (offset != filp->f_pos) {
  772. filp->f_pos = offset;
  773. nfs_file_open_context(filp)->dir_cookie = 0;
  774. }
  775. out:
  776. mutex_unlock(&inode->i_mutex);
  777. return offset;
  778. }
  779. /*
  780. * All directory operations under NFS are synchronous, so fsync()
  781. * is a dummy operation.
  782. */
  783. static int nfs_fsync_dir(struct file *filp, int datasync)
  784. {
  785. struct dentry *dentry = filp->f_path.dentry;
  786. dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
  787. dentry->d_parent->d_name.name, dentry->d_name.name,
  788. datasync);
  789. nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
  790. return 0;
  791. }
  792. /**
  793. * nfs_force_lookup_revalidate - Mark the directory as having changed
  794. * @dir - pointer to directory inode
  795. *
  796. * This forces the revalidation code in nfs_lookup_revalidate() to do a
  797. * full lookup on all child dentries of 'dir' whenever a change occurs
  798. * on the server that might have invalidated our dcache.
  799. *
  800. * The caller should be holding dir->i_lock
  801. */
  802. void nfs_force_lookup_revalidate(struct inode *dir)
  803. {
  804. NFS_I(dir)->cache_change_attribute++;
  805. }
  806. /*
  807. * A check for whether or not the parent directory has changed.
  808. * In the case it has, we assume that the dentries are untrustworthy
  809. * and may need to be looked up again.
  810. */
  811. static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
  812. {
  813. if (IS_ROOT(dentry))
  814. return 1;
  815. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
  816. return 0;
  817. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  818. return 0;
  819. /* Revalidate nfsi->cache_change_attribute before we declare a match */
  820. if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
  821. return 0;
  822. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  823. return 0;
  824. return 1;
  825. }
  826. /*
  827. * Return the intent data that applies to this particular path component
  828. *
  829. * Note that the current set of intents only apply to the very last
  830. * component of the path.
  831. * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
  832. */
  833. static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd,
  834. unsigned int mask)
  835. {
  836. if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
  837. return 0;
  838. return nd->flags & mask;
  839. }
  840. /*
  841. * Use intent information to check whether or not we're going to do
  842. * an O_EXCL create using this path component.
  843. */
  844. static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
  845. {
  846. if (NFS_PROTO(dir)->version == 2)
  847. return 0;
  848. return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
  849. }
  850. /*
  851. * Inode and filehandle revalidation for lookups.
  852. *
  853. * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
  854. * or if the intent information indicates that we're about to open this
  855. * particular file and the "nocto" mount flag is not set.
  856. *
  857. */
  858. static inline
  859. int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
  860. {
  861. struct nfs_server *server = NFS_SERVER(inode);
  862. if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
  863. return 0;
  864. if (nd != NULL) {
  865. /* VFS wants an on-the-wire revalidation */
  866. if (nd->flags & LOOKUP_REVAL)
  867. goto out_force;
  868. /* This is an open(2) */
  869. if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
  870. !(server->flags & NFS_MOUNT_NOCTO) &&
  871. (S_ISREG(inode->i_mode) ||
  872. S_ISDIR(inode->i_mode)))
  873. goto out_force;
  874. return 0;
  875. }
  876. return nfs_revalidate_inode(server, inode);
  877. out_force:
  878. return __nfs_revalidate_inode(server, inode);
  879. }
  880. /*
  881. * We judge how long we want to trust negative
  882. * dentries by looking at the parent inode mtime.
  883. *
  884. * If parent mtime has changed, we revalidate, else we wait for a
  885. * period corresponding to the parent's attribute cache timeout value.
  886. */
  887. static inline
  888. int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
  889. struct nameidata *nd)
  890. {
  891. /* Don't revalidate a negative dentry if we're creating a new file */
  892. if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
  893. return 0;
  894. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
  895. return 1;
  896. return !nfs_check_verifier(dir, dentry);
  897. }
  898. /*
  899. * This is called every time the dcache has a lookup hit,
  900. * and we should check whether we can really trust that
  901. * lookup.
  902. *
  903. * NOTE! The hit can be a negative hit too, don't assume
  904. * we have an inode!
  905. *
  906. * If the parent directory is seen to have changed, we throw out the
  907. * cached dentry and do a new lookup.
  908. */
  909. static int nfs_lookup_revalidate(struct dentry *dentry, struct nameidata *nd)
  910. {
  911. struct inode *dir;
  912. struct inode *inode;
  913. struct dentry *parent;
  914. struct nfs_fh *fhandle = NULL;
  915. struct nfs_fattr *fattr = NULL;
  916. int error;
  917. if (nd->flags & LOOKUP_RCU)
  918. return -ECHILD;
  919. parent = dget_parent(dentry);
  920. dir = parent->d_inode;
  921. nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
  922. inode = dentry->d_inode;
  923. if (!inode) {
  924. if (nfs_neg_need_reval(dir, dentry, nd))
  925. goto out_bad;
  926. goto out_valid;
  927. }
  928. if (is_bad_inode(inode)) {
  929. dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
  930. __func__, dentry->d_parent->d_name.name,
  931. dentry->d_name.name);
  932. goto out_bad;
  933. }
  934. if (nfs_have_delegation(inode, FMODE_READ))
  935. goto out_set_verifier;
  936. /* Force a full look up iff the parent directory has changed */
  937. if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
  938. if (nfs_lookup_verify_inode(inode, nd))
  939. goto out_zap_parent;
  940. goto out_valid;
  941. }
  942. if (NFS_STALE(inode))
  943. goto out_bad;
  944. error = -ENOMEM;
  945. fhandle = nfs_alloc_fhandle();
  946. fattr = nfs_alloc_fattr();
  947. if (fhandle == NULL || fattr == NULL)
  948. goto out_error;
  949. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  950. if (error)
  951. goto out_bad;
  952. if (nfs_compare_fh(NFS_FH(inode), fhandle))
  953. goto out_bad;
  954. if ((error = nfs_refresh_inode(inode, fattr)) != 0)
  955. goto out_bad;
  956. nfs_free_fattr(fattr);
  957. nfs_free_fhandle(fhandle);
  958. out_set_verifier:
  959. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  960. out_valid:
  961. dput(parent);
  962. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
  963. __func__, dentry->d_parent->d_name.name,
  964. dentry->d_name.name);
  965. return 1;
  966. out_zap_parent:
  967. nfs_zap_caches(dir);
  968. out_bad:
  969. nfs_mark_for_revalidate(dir);
  970. if (inode && S_ISDIR(inode->i_mode)) {
  971. /* Purge readdir caches. */
  972. nfs_zap_caches(inode);
  973. /* If we have submounts, don't unhash ! */
  974. if (have_submounts(dentry))
  975. goto out_valid;
  976. if (dentry->d_flags & DCACHE_DISCONNECTED)
  977. goto out_valid;
  978. shrink_dcache_parent(dentry);
  979. }
  980. d_drop(dentry);
  981. nfs_free_fattr(fattr);
  982. nfs_free_fhandle(fhandle);
  983. dput(parent);
  984. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
  985. __func__, dentry->d_parent->d_name.name,
  986. dentry->d_name.name);
  987. return 0;
  988. out_error:
  989. nfs_free_fattr(fattr);
  990. nfs_free_fhandle(fhandle);
  991. dput(parent);
  992. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
  993. __func__, dentry->d_parent->d_name.name,
  994. dentry->d_name.name, error);
  995. return error;
  996. }
  997. /*
  998. * This is called from dput() when d_count is going to 0.
  999. */
  1000. static int nfs_dentry_delete(const struct dentry *dentry)
  1001. {
  1002. dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
  1003. dentry->d_parent->d_name.name, dentry->d_name.name,
  1004. dentry->d_flags);
  1005. /* Unhash any dentry with a stale inode */
  1006. if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
  1007. return 1;
  1008. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1009. /* Unhash it, so that ->d_iput() would be called */
  1010. return 1;
  1011. }
  1012. if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
  1013. /* Unhash it, so that ancestors of killed async unlink
  1014. * files will be cleaned up during umount */
  1015. return 1;
  1016. }
  1017. return 0;
  1018. }
  1019. static void nfs_drop_nlink(struct inode *inode)
  1020. {
  1021. spin_lock(&inode->i_lock);
  1022. if (inode->i_nlink > 0)
  1023. drop_nlink(inode);
  1024. spin_unlock(&inode->i_lock);
  1025. }
  1026. /*
  1027. * Called when the dentry loses inode.
  1028. * We use it to clean up silly-renamed files.
  1029. */
  1030. static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
  1031. {
  1032. if (S_ISDIR(inode->i_mode))
  1033. /* drop any readdir cache as it could easily be old */
  1034. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
  1035. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1036. drop_nlink(inode);
  1037. nfs_complete_unlink(dentry, inode);
  1038. }
  1039. iput(inode);
  1040. }
  1041. const struct dentry_operations nfs_dentry_operations = {
  1042. .d_revalidate = nfs_lookup_revalidate,
  1043. .d_delete = nfs_dentry_delete,
  1044. .d_iput = nfs_dentry_iput,
  1045. };
  1046. static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
  1047. {
  1048. struct dentry *res;
  1049. struct dentry *parent;
  1050. struct inode *inode = NULL;
  1051. struct nfs_fh *fhandle = NULL;
  1052. struct nfs_fattr *fattr = NULL;
  1053. int error;
  1054. dfprintk(VFS, "NFS: lookup(%s/%s)\n",
  1055. dentry->d_parent->d_name.name, dentry->d_name.name);
  1056. nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
  1057. res = ERR_PTR(-ENAMETOOLONG);
  1058. if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
  1059. goto out;
  1060. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  1061. /*
  1062. * If we're doing an exclusive create, optimize away the lookup
  1063. * but don't hash the dentry.
  1064. */
  1065. if (nfs_is_exclusive_create(dir, nd)) {
  1066. d_instantiate(dentry, NULL);
  1067. res = NULL;
  1068. goto out;
  1069. }
  1070. res = ERR_PTR(-ENOMEM);
  1071. fhandle = nfs_alloc_fhandle();
  1072. fattr = nfs_alloc_fattr();
  1073. if (fhandle == NULL || fattr == NULL)
  1074. goto out;
  1075. parent = dentry->d_parent;
  1076. /* Protect against concurrent sillydeletes */
  1077. nfs_block_sillyrename(parent);
  1078. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  1079. if (error == -ENOENT)
  1080. goto no_entry;
  1081. if (error < 0) {
  1082. res = ERR_PTR(error);
  1083. goto out_unblock_sillyrename;
  1084. }
  1085. inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
  1086. res = ERR_CAST(inode);
  1087. if (IS_ERR(res))
  1088. goto out_unblock_sillyrename;
  1089. no_entry:
  1090. res = d_materialise_unique(dentry, inode);
  1091. if (res != NULL) {
  1092. if (IS_ERR(res))
  1093. goto out_unblock_sillyrename;
  1094. dentry = res;
  1095. }
  1096. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1097. out_unblock_sillyrename:
  1098. nfs_unblock_sillyrename(parent);
  1099. out:
  1100. nfs_free_fattr(fattr);
  1101. nfs_free_fhandle(fhandle);
  1102. return res;
  1103. }
  1104. #ifdef CONFIG_NFS_V4
  1105. static int nfs_open_revalidate(struct dentry *, struct nameidata *);
  1106. const struct dentry_operations nfs4_dentry_operations = {
  1107. .d_revalidate = nfs_open_revalidate,
  1108. .d_delete = nfs_dentry_delete,
  1109. .d_iput = nfs_dentry_iput,
  1110. };
  1111. /*
  1112. * Use intent information to determine whether we need to substitute
  1113. * the NFSv4-style stateful OPEN for the LOOKUP call
  1114. */
  1115. static int is_atomic_open(struct nameidata *nd)
  1116. {
  1117. if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
  1118. return 0;
  1119. /* NFS does not (yet) have a stateful open for directories */
  1120. if (nd->flags & LOOKUP_DIRECTORY)
  1121. return 0;
  1122. /* Are we trying to write to a read only partition? */
  1123. if (__mnt_is_readonly(nd->path.mnt) &&
  1124. (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
  1125. return 0;
  1126. return 1;
  1127. }
  1128. static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
  1129. {
  1130. struct path path = {
  1131. .mnt = nd->path.mnt,
  1132. .dentry = dentry,
  1133. };
  1134. struct nfs_open_context *ctx;
  1135. struct rpc_cred *cred;
  1136. fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
  1137. cred = rpc_lookup_cred();
  1138. if (IS_ERR(cred))
  1139. return ERR_CAST(cred);
  1140. ctx = alloc_nfs_open_context(&path, cred, fmode);
  1141. put_rpccred(cred);
  1142. if (ctx == NULL)
  1143. return ERR_PTR(-ENOMEM);
  1144. return ctx;
  1145. }
  1146. static int do_open(struct inode *inode, struct file *filp)
  1147. {
  1148. nfs_fscache_set_inode_cookie(inode, filp);
  1149. return 0;
  1150. }
  1151. static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
  1152. {
  1153. struct file *filp;
  1154. int ret = 0;
  1155. /* If the open_intent is for execute, we have an extra check to make */
  1156. if (ctx->mode & FMODE_EXEC) {
  1157. ret = nfs_may_open(ctx->path.dentry->d_inode,
  1158. ctx->cred,
  1159. nd->intent.open.flags);
  1160. if (ret < 0)
  1161. goto out;
  1162. }
  1163. filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
  1164. if (IS_ERR(filp))
  1165. ret = PTR_ERR(filp);
  1166. else
  1167. nfs_file_set_open_context(filp, ctx);
  1168. out:
  1169. put_nfs_open_context(ctx);
  1170. return ret;
  1171. }
  1172. static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
  1173. {
  1174. struct nfs_open_context *ctx;
  1175. struct iattr attr;
  1176. struct dentry *res = NULL;
  1177. struct inode *inode;
  1178. int open_flags;
  1179. int err;
  1180. dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
  1181. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1182. /* Check that we are indeed trying to open this file */
  1183. if (!is_atomic_open(nd))
  1184. goto no_open;
  1185. if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
  1186. res = ERR_PTR(-ENAMETOOLONG);
  1187. goto out;
  1188. }
  1189. d_set_d_op(dentry, NFS_PROTO(dir)->dentry_ops);
  1190. /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
  1191. * the dentry. */
  1192. if (nd->flags & LOOKUP_EXCL) {
  1193. d_instantiate(dentry, NULL);
  1194. goto out;
  1195. }
  1196. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1197. res = ERR_CAST(ctx);
  1198. if (IS_ERR(ctx))
  1199. goto out;
  1200. open_flags = nd->intent.open.flags;
  1201. if (nd->flags & LOOKUP_CREATE) {
  1202. attr.ia_mode = nd->intent.open.create_mode;
  1203. attr.ia_valid = ATTR_MODE;
  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. */