dir.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  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. inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
  395. if (IS_ERR(inode))
  396. goto out;
  397. alias = d_materialise_unique(dentry, inode);
  398. if (IS_ERR(alias))
  399. goto out;
  400. else if (alias) {
  401. nfs_set_verifier(alias, nfs_save_change_attribute(dir));
  402. dput(alias);
  403. } else
  404. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  405. out:
  406. dput(dentry);
  407. }
  408. /* Perform conversion from xdr to cache array */
  409. static
  410. int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
  411. struct page **xdr_pages, struct page *page, unsigned int buflen)
  412. {
  413. struct xdr_stream stream;
  414. struct xdr_buf buf = {
  415. .pages = xdr_pages,
  416. .page_len = buflen,
  417. .buflen = buflen,
  418. .len = buflen,
  419. };
  420. struct page *scratch;
  421. struct nfs_cache_array *array;
  422. unsigned int count = 0;
  423. int status;
  424. scratch = alloc_page(GFP_KERNEL);
  425. if (scratch == NULL)
  426. return -ENOMEM;
  427. xdr_init_decode(&stream, &buf, NULL);
  428. xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
  429. do {
  430. status = xdr_decode(desc, entry, &stream);
  431. if (status != 0) {
  432. if (status == -EAGAIN)
  433. status = 0;
  434. break;
  435. }
  436. count++;
  437. if (desc->plus != 0)
  438. nfs_prime_dcache(desc->file->f_path.dentry, entry);
  439. status = nfs_readdir_add_to_array(entry, page);
  440. if (status != 0)
  441. break;
  442. } while (!entry->eof);
  443. if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
  444. array = nfs_readdir_get_array(page);
  445. if (!IS_ERR(array)) {
  446. array->eof_index = array->size;
  447. status = 0;
  448. nfs_readdir_release_array(page);
  449. } else
  450. status = PTR_ERR(array);
  451. }
  452. put_page(scratch);
  453. return status;
  454. }
  455. static
  456. void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
  457. {
  458. unsigned int i;
  459. for (i = 0; i < npages; i++)
  460. put_page(pages[i]);
  461. }
  462. static
  463. void nfs_readdir_free_large_page(void *ptr, struct page **pages,
  464. unsigned int npages)
  465. {
  466. nfs_readdir_free_pagearray(pages, npages);
  467. }
  468. /*
  469. * nfs_readdir_large_page will allocate pages that must be freed with a call
  470. * to nfs_readdir_free_large_page
  471. */
  472. static
  473. int nfs_readdir_large_page(struct page **pages, unsigned int npages)
  474. {
  475. unsigned int i;
  476. for (i = 0; i < npages; i++) {
  477. struct page *page = alloc_page(GFP_KERNEL);
  478. if (page == NULL)
  479. goto out_freepages;
  480. pages[i] = page;
  481. }
  482. return 0;
  483. out_freepages:
  484. nfs_readdir_free_pagearray(pages, i);
  485. return -ENOMEM;
  486. }
  487. static
  488. int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
  489. {
  490. struct page *pages[NFS_MAX_READDIR_PAGES];
  491. void *pages_ptr = NULL;
  492. struct nfs_entry entry;
  493. struct file *file = desc->file;
  494. struct nfs_cache_array *array;
  495. int status = -ENOMEM;
  496. unsigned int array_size = ARRAY_SIZE(pages);
  497. entry.prev_cookie = 0;
  498. entry.cookie = desc->last_cookie;
  499. entry.eof = 0;
  500. entry.fh = nfs_alloc_fhandle();
  501. entry.fattr = nfs_alloc_fattr();
  502. entry.server = NFS_SERVER(inode);
  503. if (entry.fh == NULL || entry.fattr == NULL)
  504. goto out;
  505. array = nfs_readdir_get_array(page);
  506. if (IS_ERR(array)) {
  507. status = PTR_ERR(array);
  508. goto out;
  509. }
  510. memset(array, 0, sizeof(struct nfs_cache_array));
  511. array->eof_index = -1;
  512. status = nfs_readdir_large_page(pages, array_size);
  513. if (status < 0)
  514. goto out_release_array;
  515. do {
  516. unsigned int pglen;
  517. status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
  518. if (status < 0)
  519. break;
  520. pglen = status;
  521. status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
  522. if (status < 0) {
  523. if (status == -ENOSPC)
  524. status = 0;
  525. break;
  526. }
  527. } while (array->eof_index < 0);
  528. nfs_readdir_free_large_page(pages_ptr, pages, array_size);
  529. out_release_array:
  530. nfs_readdir_release_array(page);
  531. out:
  532. nfs_free_fattr(entry.fattr);
  533. nfs_free_fhandle(entry.fh);
  534. return status;
  535. }
  536. /*
  537. * Now we cache directories properly, by converting xdr information
  538. * to an array that can be used for lookups later. This results in
  539. * fewer cache pages, since we can store more information on each page.
  540. * We only need to convert from xdr once so future lookups are much simpler
  541. */
  542. static
  543. int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
  544. {
  545. struct inode *inode = desc->file->f_path.dentry->d_inode;
  546. int ret;
  547. ret = nfs_readdir_xdr_to_array(desc, page, inode);
  548. if (ret < 0)
  549. goto error;
  550. SetPageUptodate(page);
  551. if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
  552. /* Should never happen */
  553. nfs_zap_mapping(inode, inode->i_mapping);
  554. }
  555. unlock_page(page);
  556. return 0;
  557. error:
  558. unlock_page(page);
  559. return ret;
  560. }
  561. static
  562. void cache_page_release(nfs_readdir_descriptor_t *desc)
  563. {
  564. if (!desc->page->mapping)
  565. nfs_readdir_clear_array(desc->page);
  566. page_cache_release(desc->page);
  567. desc->page = NULL;
  568. }
  569. static
  570. struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
  571. {
  572. return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
  573. desc->page_index, (filler_t *)nfs_readdir_filler, desc);
  574. }
  575. /*
  576. * Returns 0 if desc->dir_cookie was found on page desc->page_index
  577. */
  578. static
  579. int find_cache_page(nfs_readdir_descriptor_t *desc)
  580. {
  581. int res;
  582. desc->page = get_cache_page(desc);
  583. if (IS_ERR(desc->page))
  584. return PTR_ERR(desc->page);
  585. res = nfs_readdir_search_array(desc);
  586. if (res != 0)
  587. cache_page_release(desc);
  588. return res;
  589. }
  590. /* Search for desc->dir_cookie from the beginning of the page cache */
  591. static inline
  592. int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
  593. {
  594. int res;
  595. if (desc->page_index == 0) {
  596. desc->current_index = 0;
  597. desc->last_cookie = 0;
  598. }
  599. do {
  600. res = find_cache_page(desc);
  601. } while (res == -EAGAIN);
  602. return res;
  603. }
  604. /*
  605. * Once we've found the start of the dirent within a page: fill 'er up...
  606. */
  607. static
  608. int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
  609. filldir_t filldir)
  610. {
  611. struct file *file = desc->file;
  612. int i = 0;
  613. int res = 0;
  614. struct nfs_cache_array *array = NULL;
  615. array = nfs_readdir_get_array(desc->page);
  616. if (IS_ERR(array)) {
  617. res = PTR_ERR(array);
  618. goto out;
  619. }
  620. for (i = desc->cache_entry_index; i < array->size; i++) {
  621. struct nfs_cache_array_entry *ent;
  622. ent = &array->array[i];
  623. if (filldir(dirent, ent->string.name, ent->string.len,
  624. file->f_pos, nfs_compat_user_ino64(ent->ino),
  625. ent->d_type) < 0) {
  626. desc->eof = 1;
  627. break;
  628. }
  629. file->f_pos++;
  630. if (i < (array->size-1))
  631. *desc->dir_cookie = array->array[i+1].cookie;
  632. else
  633. *desc->dir_cookie = array->last_cookie;
  634. }
  635. if (array->eof_index >= 0)
  636. desc->eof = 1;
  637. nfs_readdir_release_array(desc->page);
  638. out:
  639. cache_page_release(desc);
  640. dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
  641. (unsigned long long)*desc->dir_cookie, res);
  642. return res;
  643. }
  644. /*
  645. * If we cannot find a cookie in our cache, we suspect that this is
  646. * because it points to a deleted file, so we ask the server to return
  647. * whatever it thinks is the next entry. We then feed this to filldir.
  648. * If all goes well, we should then be able to find our way round the
  649. * cache on the next call to readdir_search_pagecache();
  650. *
  651. * NOTE: we cannot add the anonymous page to the pagecache because
  652. * the data it contains might not be page aligned. Besides,
  653. * we should already have a complete representation of the
  654. * directory in the page cache by the time we get here.
  655. */
  656. static inline
  657. int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
  658. filldir_t filldir)
  659. {
  660. struct page *page = NULL;
  661. int status;
  662. struct inode *inode = desc->file->f_path.dentry->d_inode;
  663. dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
  664. (unsigned long long)*desc->dir_cookie);
  665. page = alloc_page(GFP_HIGHUSER);
  666. if (!page) {
  667. status = -ENOMEM;
  668. goto out;
  669. }
  670. desc->page_index = 0;
  671. desc->last_cookie = *desc->dir_cookie;
  672. desc->page = page;
  673. status = nfs_readdir_xdr_to_array(desc, page, inode);
  674. if (status < 0)
  675. goto out_release;
  676. status = nfs_do_filldir(desc, dirent, filldir);
  677. out:
  678. dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
  679. __func__, status);
  680. return status;
  681. out_release:
  682. cache_page_release(desc);
  683. goto out;
  684. }
  685. /* The file offset position represents the dirent entry number. A
  686. last cookie cache takes care of the common case of reading the
  687. whole directory.
  688. */
  689. static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
  690. {
  691. struct dentry *dentry = filp->f_path.dentry;
  692. struct inode *inode = dentry->d_inode;
  693. nfs_readdir_descriptor_t my_desc,
  694. *desc = &my_desc;
  695. int res;
  696. dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
  697. dentry->d_parent->d_name.name, dentry->d_name.name,
  698. (long long)filp->f_pos);
  699. nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
  700. /*
  701. * filp->f_pos points to the dirent entry number.
  702. * *desc->dir_cookie has the cookie for the next entry. We have
  703. * to either find the entry with the appropriate number or
  704. * revalidate the cookie.
  705. */
  706. memset(desc, 0, sizeof(*desc));
  707. desc->file = filp;
  708. desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
  709. desc->decode = NFS_PROTO(inode)->decode_dirent;
  710. desc->plus = NFS_USE_READDIRPLUS(inode);
  711. nfs_block_sillyrename(dentry);
  712. res = nfs_revalidate_mapping(inode, filp->f_mapping);
  713. if (res < 0)
  714. goto out;
  715. do {
  716. res = readdir_search_pagecache(desc);
  717. if (res == -EBADCOOKIE) {
  718. res = 0;
  719. /* This means either end of directory */
  720. if (*desc->dir_cookie && desc->eof == 0) {
  721. /* Or that the server has 'lost' a cookie */
  722. res = uncached_readdir(desc, dirent, filldir);
  723. if (res == 0)
  724. continue;
  725. }
  726. break;
  727. }
  728. if (res == -ETOOSMALL && desc->plus) {
  729. clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
  730. nfs_zap_caches(inode);
  731. desc->page_index = 0;
  732. desc->plus = 0;
  733. desc->eof = 0;
  734. continue;
  735. }
  736. if (res < 0)
  737. break;
  738. res = nfs_do_filldir(desc, dirent, filldir);
  739. if (res < 0)
  740. break;
  741. } while (!desc->eof);
  742. out:
  743. nfs_unblock_sillyrename(dentry);
  744. if (res > 0)
  745. res = 0;
  746. dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
  747. dentry->d_parent->d_name.name, dentry->d_name.name,
  748. res);
  749. return res;
  750. }
  751. static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
  752. {
  753. struct dentry *dentry = filp->f_path.dentry;
  754. struct inode *inode = dentry->d_inode;
  755. dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
  756. dentry->d_parent->d_name.name,
  757. dentry->d_name.name,
  758. offset, origin);
  759. mutex_lock(&inode->i_mutex);
  760. switch (origin) {
  761. case 1:
  762. offset += filp->f_pos;
  763. case 0:
  764. if (offset >= 0)
  765. break;
  766. default:
  767. offset = -EINVAL;
  768. goto out;
  769. }
  770. if (offset != filp->f_pos) {
  771. filp->f_pos = offset;
  772. nfs_file_open_context(filp)->dir_cookie = 0;
  773. }
  774. out:
  775. mutex_unlock(&inode->i_mutex);
  776. return offset;
  777. }
  778. /*
  779. * All directory operations under NFS are synchronous, so fsync()
  780. * is a dummy operation.
  781. */
  782. static int nfs_fsync_dir(struct file *filp, int datasync)
  783. {
  784. struct dentry *dentry = filp->f_path.dentry;
  785. dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
  786. dentry->d_parent->d_name.name, dentry->d_name.name,
  787. datasync);
  788. nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
  789. return 0;
  790. }
  791. /**
  792. * nfs_force_lookup_revalidate - Mark the directory as having changed
  793. * @dir - pointer to directory inode
  794. *
  795. * This forces the revalidation code in nfs_lookup_revalidate() to do a
  796. * full lookup on all child dentries of 'dir' whenever a change occurs
  797. * on the server that might have invalidated our dcache.
  798. *
  799. * The caller should be holding dir->i_lock
  800. */
  801. void nfs_force_lookup_revalidate(struct inode *dir)
  802. {
  803. NFS_I(dir)->cache_change_attribute++;
  804. }
  805. /*
  806. * A check for whether or not the parent directory has changed.
  807. * In the case it has, we assume that the dentries are untrustworthy
  808. * and may need to be looked up again.
  809. */
  810. static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
  811. {
  812. if (IS_ROOT(dentry))
  813. return 1;
  814. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
  815. return 0;
  816. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  817. return 0;
  818. /* Revalidate nfsi->cache_change_attribute before we declare a match */
  819. if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
  820. return 0;
  821. if (!nfs_verify_change_attribute(dir, dentry->d_time))
  822. return 0;
  823. return 1;
  824. }
  825. /*
  826. * Return the intent data that applies to this particular path component
  827. *
  828. * Note that the current set of intents only apply to the very last
  829. * component of the path.
  830. * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
  831. */
  832. static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd,
  833. unsigned int mask)
  834. {
  835. if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
  836. return 0;
  837. return nd->flags & mask;
  838. }
  839. /*
  840. * Use intent information to check whether or not we're going to do
  841. * an O_EXCL create using this path component.
  842. */
  843. static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
  844. {
  845. if (NFS_PROTO(dir)->version == 2)
  846. return 0;
  847. return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
  848. }
  849. /*
  850. * Inode and filehandle revalidation for lookups.
  851. *
  852. * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
  853. * or if the intent information indicates that we're about to open this
  854. * particular file and the "nocto" mount flag is not set.
  855. *
  856. */
  857. static inline
  858. int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
  859. {
  860. struct nfs_server *server = NFS_SERVER(inode);
  861. if (IS_AUTOMOUNT(inode))
  862. return 0;
  863. if (nd != NULL) {
  864. /* VFS wants an on-the-wire revalidation */
  865. if (nd->flags & LOOKUP_REVAL)
  866. goto out_force;
  867. /* This is an open(2) */
  868. if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
  869. !(server->flags & NFS_MOUNT_NOCTO) &&
  870. (S_ISREG(inode->i_mode) ||
  871. S_ISDIR(inode->i_mode)))
  872. goto out_force;
  873. return 0;
  874. }
  875. return nfs_revalidate_inode(server, inode);
  876. out_force:
  877. return __nfs_revalidate_inode(server, inode);
  878. }
  879. /*
  880. * We judge how long we want to trust negative
  881. * dentries by looking at the parent inode mtime.
  882. *
  883. * If parent mtime has changed, we revalidate, else we wait for a
  884. * period corresponding to the parent's attribute cache timeout value.
  885. */
  886. static inline
  887. int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
  888. struct nameidata *nd)
  889. {
  890. /* Don't revalidate a negative dentry if we're creating a new file */
  891. if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
  892. return 0;
  893. if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
  894. return 1;
  895. return !nfs_check_verifier(dir, dentry);
  896. }
  897. /*
  898. * This is called every time the dcache has a lookup hit,
  899. * and we should check whether we can really trust that
  900. * lookup.
  901. *
  902. * NOTE! The hit can be a negative hit too, don't assume
  903. * we have an inode!
  904. *
  905. * If the parent directory is seen to have changed, we throw out the
  906. * cached dentry and do a new lookup.
  907. */
  908. static int nfs_lookup_revalidate(struct dentry *dentry, struct nameidata *nd)
  909. {
  910. struct inode *dir;
  911. struct inode *inode;
  912. struct dentry *parent;
  913. struct nfs_fh *fhandle = NULL;
  914. struct nfs_fattr *fattr = NULL;
  915. int error;
  916. if (nd->flags & LOOKUP_RCU)
  917. return -ECHILD;
  918. parent = dget_parent(dentry);
  919. dir = parent->d_inode;
  920. nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
  921. inode = dentry->d_inode;
  922. if (!inode) {
  923. if (nfs_neg_need_reval(dir, dentry, nd))
  924. goto out_bad;
  925. goto out_valid;
  926. }
  927. if (is_bad_inode(inode)) {
  928. dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
  929. __func__, dentry->d_parent->d_name.name,
  930. dentry->d_name.name);
  931. goto out_bad;
  932. }
  933. if (nfs_have_delegation(inode, FMODE_READ))
  934. goto out_set_verifier;
  935. /* Force a full look up iff the parent directory has changed */
  936. if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
  937. if (nfs_lookup_verify_inode(inode, nd))
  938. goto out_zap_parent;
  939. goto out_valid;
  940. }
  941. if (NFS_STALE(inode))
  942. goto out_bad;
  943. error = -ENOMEM;
  944. fhandle = nfs_alloc_fhandle();
  945. fattr = nfs_alloc_fattr();
  946. if (fhandle == NULL || fattr == NULL)
  947. goto out_error;
  948. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  949. if (error)
  950. goto out_bad;
  951. if (nfs_compare_fh(NFS_FH(inode), fhandle))
  952. goto out_bad;
  953. if ((error = nfs_refresh_inode(inode, fattr)) != 0)
  954. goto out_bad;
  955. nfs_free_fattr(fattr);
  956. nfs_free_fhandle(fhandle);
  957. out_set_verifier:
  958. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  959. out_valid:
  960. dput(parent);
  961. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
  962. __func__, dentry->d_parent->d_name.name,
  963. dentry->d_name.name);
  964. return 1;
  965. out_zap_parent:
  966. nfs_zap_caches(dir);
  967. out_bad:
  968. nfs_mark_for_revalidate(dir);
  969. if (inode && S_ISDIR(inode->i_mode)) {
  970. /* Purge readdir caches. */
  971. nfs_zap_caches(inode);
  972. /* If we have submounts, don't unhash ! */
  973. if (have_submounts(dentry))
  974. goto out_valid;
  975. if (dentry->d_flags & DCACHE_DISCONNECTED)
  976. goto out_valid;
  977. shrink_dcache_parent(dentry);
  978. }
  979. d_drop(dentry);
  980. nfs_free_fattr(fattr);
  981. nfs_free_fhandle(fhandle);
  982. dput(parent);
  983. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
  984. __func__, dentry->d_parent->d_name.name,
  985. dentry->d_name.name);
  986. return 0;
  987. out_error:
  988. nfs_free_fattr(fattr);
  989. nfs_free_fhandle(fhandle);
  990. dput(parent);
  991. dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
  992. __func__, dentry->d_parent->d_name.name,
  993. dentry->d_name.name, error);
  994. return error;
  995. }
  996. /*
  997. * This is called from dput() when d_count is going to 0.
  998. */
  999. static int nfs_dentry_delete(const struct dentry *dentry)
  1000. {
  1001. dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
  1002. dentry->d_parent->d_name.name, dentry->d_name.name,
  1003. dentry->d_flags);
  1004. /* Unhash any dentry with a stale inode */
  1005. if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
  1006. return 1;
  1007. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1008. /* Unhash it, so that ->d_iput() would be called */
  1009. return 1;
  1010. }
  1011. if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
  1012. /* Unhash it, so that ancestors of killed async unlink
  1013. * files will be cleaned up during umount */
  1014. return 1;
  1015. }
  1016. return 0;
  1017. }
  1018. static void nfs_drop_nlink(struct inode *inode)
  1019. {
  1020. spin_lock(&inode->i_lock);
  1021. if (inode->i_nlink > 0)
  1022. drop_nlink(inode);
  1023. spin_unlock(&inode->i_lock);
  1024. }
  1025. /*
  1026. * Called when the dentry loses inode.
  1027. * We use it to clean up silly-renamed files.
  1028. */
  1029. static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
  1030. {
  1031. if (S_ISDIR(inode->i_mode))
  1032. /* drop any readdir cache as it could easily be old */
  1033. NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
  1034. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1035. drop_nlink(inode);
  1036. nfs_complete_unlink(dentry, inode);
  1037. }
  1038. iput(inode);
  1039. }
  1040. const struct dentry_operations nfs_dentry_operations = {
  1041. .d_revalidate = nfs_lookup_revalidate,
  1042. .d_delete = nfs_dentry_delete,
  1043. .d_iput = nfs_dentry_iput,
  1044. .d_automount = nfs_d_automount,
  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. /*
  1061. * If we're doing an exclusive create, optimize away the lookup
  1062. * but don't hash the dentry.
  1063. */
  1064. if (nfs_is_exclusive_create(dir, nd)) {
  1065. d_instantiate(dentry, NULL);
  1066. res = NULL;
  1067. goto out;
  1068. }
  1069. res = ERR_PTR(-ENOMEM);
  1070. fhandle = nfs_alloc_fhandle();
  1071. fattr = nfs_alloc_fattr();
  1072. if (fhandle == NULL || fattr == NULL)
  1073. goto out;
  1074. parent = dentry->d_parent;
  1075. /* Protect against concurrent sillydeletes */
  1076. nfs_block_sillyrename(parent);
  1077. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  1078. if (error == -ENOENT)
  1079. goto no_entry;
  1080. if (error < 0) {
  1081. res = ERR_PTR(error);
  1082. goto out_unblock_sillyrename;
  1083. }
  1084. inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
  1085. res = ERR_CAST(inode);
  1086. if (IS_ERR(res))
  1087. goto out_unblock_sillyrename;
  1088. no_entry:
  1089. res = d_materialise_unique(dentry, inode);
  1090. if (res != NULL) {
  1091. if (IS_ERR(res))
  1092. goto out_unblock_sillyrename;
  1093. dentry = res;
  1094. }
  1095. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1096. out_unblock_sillyrename:
  1097. nfs_unblock_sillyrename(parent);
  1098. out:
  1099. nfs_free_fattr(fattr);
  1100. nfs_free_fhandle(fhandle);
  1101. return res;
  1102. }
  1103. #ifdef CONFIG_NFS_V4
  1104. static int nfs_open_revalidate(struct dentry *, struct nameidata *);
  1105. const struct dentry_operations nfs4_dentry_operations = {
  1106. .d_revalidate = nfs_open_revalidate,
  1107. .d_delete = nfs_dentry_delete,
  1108. .d_iput = nfs_dentry_iput,
  1109. .d_automount = nfs_d_automount,
  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. /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
  1190. * the dentry. */
  1191. if (nd->flags & LOOKUP_EXCL) {
  1192. d_instantiate(dentry, NULL);
  1193. goto out;
  1194. }
  1195. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1196. res = ERR_CAST(ctx);
  1197. if (IS_ERR(ctx))
  1198. goto out;
  1199. open_flags = nd->intent.open.flags;
  1200. if (nd->flags & LOOKUP_CREATE) {
  1201. attr.ia_mode = nd->intent.open.create_mode;
  1202. attr.ia_valid = ATTR_MODE;
  1203. attr.ia_mode &= ~current_umask();
  1204. } else {
  1205. open_flags &= ~(O_EXCL | O_CREAT);
  1206. attr.ia_valid = 0;
  1207. }
  1208. /* Open the file on the server */
  1209. nfs_block_sillyrename(dentry->d_parent);
  1210. inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
  1211. if (IS_ERR(inode)) {
  1212. nfs_unblock_sillyrename(dentry->d_parent);
  1213. put_nfs_open_context(ctx);
  1214. switch (PTR_ERR(inode)) {
  1215. /* Make a negative dentry */
  1216. case -ENOENT:
  1217. d_add(dentry, NULL);
  1218. res = NULL;
  1219. goto out;
  1220. /* This turned out not to be a regular file */
  1221. case -ENOTDIR:
  1222. goto no_open;
  1223. case -ELOOP:
  1224. if (!(nd->intent.open.flags & O_NOFOLLOW))
  1225. goto no_open;
  1226. /* case -EISDIR: */
  1227. /* case -EINVAL: */
  1228. default:
  1229. res = ERR_CAST(inode);
  1230. goto out;
  1231. }
  1232. }
  1233. res = d_add_unique(dentry, inode);
  1234. nfs_unblock_sillyrename(dentry->d_parent);
  1235. if (res != NULL) {
  1236. dput(ctx->path.dentry);
  1237. ctx->path.dentry = dget(res);
  1238. dentry = res;
  1239. }
  1240. err = nfs_intent_set_file(nd, ctx);
  1241. if (err < 0) {
  1242. if (res != NULL)
  1243. dput(res);
  1244. return ERR_PTR(err);
  1245. }
  1246. out:
  1247. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1248. return res;
  1249. no_open:
  1250. return nfs_lookup(dir, dentry, nd);
  1251. }
  1252. static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
  1253. {
  1254. struct dentry *parent = NULL;
  1255. struct inode *inode;
  1256. struct inode *dir;
  1257. struct nfs_open_context *ctx;
  1258. int openflags, ret = 0;
  1259. if (nd->flags & LOOKUP_RCU)
  1260. return -ECHILD;
  1261. inode = dentry->d_inode;
  1262. if (!is_atomic_open(nd) || d_mountpoint(dentry))
  1263. goto no_open;
  1264. parent = dget_parent(dentry);
  1265. dir = parent->d_inode;
  1266. /* We can't create new files in nfs_open_revalidate(), so we
  1267. * optimize away revalidation of negative dentries.
  1268. */
  1269. if (inode == NULL) {
  1270. if (!nfs_neg_need_reval(dir, dentry, nd))
  1271. ret = 1;
  1272. goto out;
  1273. }
  1274. /* NFS only supports OPEN on regular files */
  1275. if (!S_ISREG(inode->i_mode))
  1276. goto no_open_dput;
  1277. openflags = nd->intent.open.flags;
  1278. /* We cannot do exclusive creation on a positive dentry */
  1279. if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
  1280. goto no_open_dput;
  1281. /* We can't create new files, or truncate existing ones here */
  1282. openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
  1283. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1284. ret = PTR_ERR(ctx);
  1285. if (IS_ERR(ctx))
  1286. goto out;
  1287. /*
  1288. * Note: we're not holding inode->i_mutex and so may be racing with
  1289. * operations that change the directory. We therefore save the
  1290. * change attribute *before* we do the RPC call.
  1291. */
  1292. inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
  1293. if (IS_ERR(inode)) {
  1294. ret = PTR_ERR(inode);
  1295. switch (ret) {
  1296. case -EPERM:
  1297. case -EACCES:
  1298. case -EDQUOT:
  1299. case -ENOSPC:
  1300. case -EROFS:
  1301. goto out_put_ctx;
  1302. default:
  1303. goto out_drop;
  1304. }
  1305. }
  1306. iput(inode);
  1307. if (inode != dentry->d_inode)
  1308. goto out_drop;
  1309. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1310. ret = nfs_intent_set_file(nd, ctx);
  1311. if (ret >= 0)
  1312. ret = 1;
  1313. out:
  1314. dput(parent);
  1315. return ret;
  1316. out_drop:
  1317. d_drop(dentry);
  1318. ret = 0;
  1319. out_put_ctx:
  1320. put_nfs_open_context(ctx);
  1321. goto out;
  1322. no_open_dput:
  1323. dput(parent);
  1324. no_open:
  1325. return nfs_lookup_revalidate(dentry, nd);
  1326. }
  1327. static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
  1328. struct nameidata *nd)
  1329. {
  1330. struct nfs_open_context *ctx = NULL;
  1331. struct iattr attr;
  1332. int error;
  1333. int open_flags = 0;
  1334. dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
  1335. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1336. attr.ia_mode = mode;
  1337. attr.ia_valid = ATTR_MODE;
  1338. if ((nd->flags & LOOKUP_CREATE) != 0) {
  1339. open_flags = nd->intent.open.flags;
  1340. ctx = nameidata_to_nfs_open_context(dentry, nd);
  1341. error = PTR_ERR(ctx);
  1342. if (IS_ERR(ctx))
  1343. goto out_err_drop;
  1344. }
  1345. error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
  1346. if (error != 0)
  1347. goto out_put_ctx;
  1348. if (ctx != NULL) {
  1349. error = nfs_intent_set_file(nd, ctx);
  1350. if (error < 0)
  1351. goto out_err;
  1352. }
  1353. return 0;
  1354. out_put_ctx:
  1355. if (ctx != NULL)
  1356. put_nfs_open_context(ctx);
  1357. out_err_drop:
  1358. d_drop(dentry);
  1359. out_err:
  1360. return error;
  1361. }
  1362. #endif /* CONFIG_NFSV4 */
  1363. /*
  1364. * Code common to create, mkdir, and mknod.
  1365. */
  1366. int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
  1367. struct nfs_fattr *fattr)
  1368. {
  1369. struct dentry *parent = dget_parent(dentry);
  1370. struct inode *dir = parent->d_inode;
  1371. struct inode *inode;
  1372. int error = -EACCES;
  1373. d_drop(dentry);
  1374. /* We may have been initialized further down */
  1375. if (dentry->d_inode)
  1376. goto out;
  1377. if (fhandle->size == 0) {
  1378. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
  1379. if (error)
  1380. goto out_error;
  1381. }
  1382. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1383. if (!(fattr->valid & NFS_ATTR_FATTR)) {
  1384. struct nfs_server *server = NFS_SB(dentry->d_sb);
  1385. error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
  1386. if (error < 0)
  1387. goto out_error;
  1388. }
  1389. inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
  1390. error = PTR_ERR(inode);
  1391. if (IS_ERR(inode))
  1392. goto out_error;
  1393. d_add(dentry, inode);
  1394. out:
  1395. dput(parent);
  1396. return 0;
  1397. out_error:
  1398. nfs_mark_for_revalidate(dir);
  1399. dput(parent);
  1400. return error;
  1401. }
  1402. /*
  1403. * Following a failed create operation, we drop the dentry rather
  1404. * than retain a negative dentry. This avoids a problem in the event
  1405. * that the operation succeeded on the server, but an error in the
  1406. * reply path made it appear to have failed.
  1407. */
  1408. static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
  1409. struct nameidata *nd)
  1410. {
  1411. struct iattr attr;
  1412. int error;
  1413. int open_flags = 0;
  1414. dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
  1415. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1416. attr.ia_mode = mode;
  1417. attr.ia_valid = ATTR_MODE;
  1418. if ((nd->flags & LOOKUP_CREATE) != 0)
  1419. open_flags = nd->intent.open.flags;
  1420. error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, NULL);
  1421. if (error != 0)
  1422. goto out_err;
  1423. return 0;
  1424. out_err:
  1425. d_drop(dentry);
  1426. return error;
  1427. }
  1428. /*
  1429. * See comments for nfs_proc_create regarding failed operations.
  1430. */
  1431. static int
  1432. nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
  1433. {
  1434. struct iattr attr;
  1435. int status;
  1436. dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
  1437. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1438. if (!new_valid_dev(rdev))
  1439. return -EINVAL;
  1440. attr.ia_mode = mode;
  1441. attr.ia_valid = ATTR_MODE;
  1442. status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
  1443. if (status != 0)
  1444. goto out_err;
  1445. return 0;
  1446. out_err:
  1447. d_drop(dentry);
  1448. return status;
  1449. }
  1450. /*
  1451. * See comments for nfs_proc_create regarding failed operations.
  1452. */
  1453. static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  1454. {
  1455. struct iattr attr;
  1456. int error;
  1457. dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
  1458. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1459. attr.ia_valid = ATTR_MODE;
  1460. attr.ia_mode = mode | S_IFDIR;
  1461. error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
  1462. if (error != 0)
  1463. goto out_err;
  1464. return 0;
  1465. out_err:
  1466. d_drop(dentry);
  1467. return error;
  1468. }
  1469. static void nfs_dentry_handle_enoent(struct dentry *dentry)
  1470. {
  1471. if (dentry->d_inode != NULL && !d_unhashed(dentry))
  1472. d_delete(dentry);
  1473. }
  1474. static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
  1475. {
  1476. int error;
  1477. dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
  1478. dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
  1479. error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
  1480. /* Ensure the VFS deletes this inode */
  1481. if (error == 0 && dentry->d_inode != NULL)
  1482. clear_nlink(dentry->d_inode);
  1483. else if (error == -ENOENT)
  1484. nfs_dentry_handle_enoent(dentry);
  1485. return error;
  1486. }
  1487. /*
  1488. * Remove a file after making sure there are no pending writes,
  1489. * and after checking that the file has only one user.
  1490. *
  1491. * We invalidate the attribute cache and free the inode prior to the operation
  1492. * to avoid possible races if the server reuses the inode.
  1493. */
  1494. static int nfs_safe_remove(struct dentry *dentry)
  1495. {
  1496. struct inode *dir = dentry->d_parent->d_inode;
  1497. struct inode *inode = dentry->d_inode;
  1498. int error = -EBUSY;
  1499. dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
  1500. dentry->d_parent->d_name.name, dentry->d_name.name);
  1501. /* If the dentry was sillyrenamed, we simply call d_delete() */
  1502. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  1503. error = 0;
  1504. goto out;
  1505. }
  1506. if (inode != NULL) {
  1507. nfs_inode_return_delegation(inode);
  1508. error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
  1509. /* The VFS may want to delete this inode */
  1510. if (error == 0)
  1511. nfs_drop_nlink(inode);
  1512. nfs_mark_for_revalidate(inode);
  1513. } else
  1514. error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
  1515. if (error == -ENOENT)
  1516. nfs_dentry_handle_enoent(dentry);
  1517. out:
  1518. return error;
  1519. }
  1520. /* We do silly rename. In case sillyrename() returns -EBUSY, the inode
  1521. * belongs to an active ".nfs..." file and we return -EBUSY.
  1522. *
  1523. * If sillyrename() returns 0, we do nothing, otherwise we unlink.
  1524. */
  1525. static int nfs_unlink(struct inode *dir, struct dentry *dentry)
  1526. {
  1527. int error;
  1528. int need_rehash = 0;
  1529. dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
  1530. dir->i_ino, dentry->d_name.name);
  1531. spin_lock(&dentry->d_lock);
  1532. if (dentry->d_count > 1) {
  1533. spin_unlock(&dentry->d_lock);
  1534. /* Start asynchronous writeout of the inode */
  1535. write_inode_now(dentry->d_inode, 0);
  1536. error = nfs_sillyrename(dir, dentry);
  1537. return error;
  1538. }
  1539. if (!d_unhashed(dentry)) {
  1540. __d_drop(dentry);
  1541. need_rehash = 1;
  1542. }
  1543. spin_unlock(&dentry->d_lock);
  1544. error = nfs_safe_remove(dentry);
  1545. if (!error || error == -ENOENT) {
  1546. nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
  1547. } else if (need_rehash)
  1548. d_rehash(dentry);
  1549. return error;
  1550. }
  1551. /*
  1552. * To create a symbolic link, most file systems instantiate a new inode,
  1553. * add a page to it containing the path, then write it out to the disk
  1554. * using prepare_write/commit_write.
  1555. *
  1556. * Unfortunately the NFS client can't create the in-core inode first
  1557. * because it needs a file handle to create an in-core inode (see
  1558. * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
  1559. * symlink request has completed on the server.
  1560. *
  1561. * So instead we allocate a raw page, copy the symname into it, then do
  1562. * the SYMLINK request with the page as the buffer. If it succeeds, we
  1563. * now have a new file handle and can instantiate an in-core NFS inode
  1564. * and move the raw page into its mapping.
  1565. */
  1566. static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
  1567. {
  1568. struct pagevec lru_pvec;
  1569. struct page *page;
  1570. char *kaddr;
  1571. struct iattr attr;
  1572. unsigned int pathlen = strlen(symname);
  1573. int error;
  1574. dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
  1575. dir->i_ino, dentry->d_name.name, symname);
  1576. if (pathlen > PAGE_SIZE)
  1577. return -ENAMETOOLONG;
  1578. attr.ia_mode = S_IFLNK | S_IRWXUGO;
  1579. attr.ia_valid = ATTR_MODE;
  1580. page = alloc_page(GFP_HIGHUSER);
  1581. if (!page)
  1582. return -ENOMEM;
  1583. kaddr = kmap_atomic(page, KM_USER0);
  1584. memcpy(kaddr, symname, pathlen);
  1585. if (pathlen < PAGE_SIZE)
  1586. memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
  1587. kunmap_atomic(kaddr, KM_USER0);
  1588. error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
  1589. if (error != 0) {
  1590. dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
  1591. dir->i_sb->s_id, dir->i_ino,
  1592. dentry->d_name.name, symname, error);
  1593. d_drop(dentry);
  1594. __free_page(page);
  1595. return error;
  1596. }
  1597. /*
  1598. * No big deal if we can't add this page to the page cache here.
  1599. * READLINK will get the missing page from the server if needed.
  1600. */
  1601. pagevec_init(&lru_pvec, 0);
  1602. if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
  1603. GFP_KERNEL)) {
  1604. pagevec_add(&lru_pvec, page);
  1605. pagevec_lru_add_file(&lru_pvec);
  1606. SetPageUptodate(page);
  1607. unlock_page(page);
  1608. } else
  1609. __free_page(page);
  1610. return 0;
  1611. }
  1612. static int
  1613. nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
  1614. {
  1615. struct inode *inode = old_dentry->d_inode;
  1616. int error;
  1617. dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
  1618. old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  1619. dentry->d_parent->d_name.name, dentry->d_name.name);
  1620. nfs_inode_return_delegation(inode);
  1621. d_drop(dentry);
  1622. error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
  1623. if (error == 0) {
  1624. ihold(inode);
  1625. d_add(dentry, inode);
  1626. }
  1627. return error;
  1628. }
  1629. /*
  1630. * RENAME
  1631. * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
  1632. * different file handle for the same inode after a rename (e.g. when
  1633. * moving to a different directory). A fail-safe method to do so would
  1634. * be to look up old_dir/old_name, create a link to new_dir/new_name and
  1635. * rename the old file using the sillyrename stuff. This way, the original
  1636. * file in old_dir will go away when the last process iput()s the inode.
  1637. *
  1638. * FIXED.
  1639. *
  1640. * It actually works quite well. One needs to have the possibility for
  1641. * at least one ".nfs..." file in each directory the file ever gets
  1642. * moved or linked to which happens automagically with the new
  1643. * implementation that only depends on the dcache stuff instead of
  1644. * using the inode layer
  1645. *
  1646. * Unfortunately, things are a little more complicated than indicated
  1647. * above. For a cross-directory move, we want to make sure we can get
  1648. * rid of the old inode after the operation. This means there must be
  1649. * no pending writes (if it's a file), and the use count must be 1.
  1650. * If these conditions are met, we can drop the dentries before doing
  1651. * the rename.
  1652. */
  1653. static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  1654. struct inode *new_dir, struct dentry *new_dentry)
  1655. {
  1656. struct inode *old_inode = old_dentry->d_inode;
  1657. struct inode *new_inode = new_dentry->d_inode;
  1658. struct dentry *dentry = NULL, *rehash = NULL;
  1659. int error = -EBUSY;
  1660. dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
  1661. old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  1662. new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
  1663. new_dentry->d_count);
  1664. /*
  1665. * For non-directories, check whether the target is busy and if so,
  1666. * make a copy of the dentry and then do a silly-rename. If the
  1667. * silly-rename succeeds, the copied dentry is hashed and becomes
  1668. * the new target.
  1669. */
  1670. if (new_inode && !S_ISDIR(new_inode->i_mode)) {
  1671. /*
  1672. * To prevent any new references to the target during the
  1673. * rename, we unhash the dentry in advance.
  1674. */
  1675. if (!d_unhashed(new_dentry)) {
  1676. d_drop(new_dentry);
  1677. rehash = new_dentry;
  1678. }
  1679. if (new_dentry->d_count > 2) {
  1680. int err;
  1681. /* copy the target dentry's name */
  1682. dentry = d_alloc(new_dentry->d_parent,
  1683. &new_dentry->d_name);
  1684. if (!dentry)
  1685. goto out;
  1686. /* silly-rename the existing target ... */
  1687. err = nfs_sillyrename(new_dir, new_dentry);
  1688. if (err)
  1689. goto out;
  1690. new_dentry = dentry;
  1691. rehash = NULL;
  1692. new_inode = NULL;
  1693. }
  1694. }
  1695. nfs_inode_return_delegation(old_inode);
  1696. if (new_inode != NULL)
  1697. nfs_inode_return_delegation(new_inode);
  1698. error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
  1699. new_dir, &new_dentry->d_name);
  1700. nfs_mark_for_revalidate(old_inode);
  1701. out:
  1702. if (rehash)
  1703. d_rehash(rehash);
  1704. if (!error) {
  1705. if (new_inode != NULL)
  1706. nfs_drop_nlink(new_inode);
  1707. d_move(old_dentry, new_dentry);
  1708. nfs_set_verifier(new_dentry,
  1709. nfs_save_change_attribute(new_dir));
  1710. } else if (error == -ENOENT)
  1711. nfs_dentry_handle_enoent(old_dentry);
  1712. /* new dentry created? */
  1713. if (dentry)
  1714. dput(dentry);
  1715. return error;
  1716. }
  1717. static DEFINE_SPINLOCK(nfs_access_lru_lock);
  1718. static LIST_HEAD(nfs_access_lru_list);
  1719. static atomic_long_t nfs_access_nr_entries;
  1720. static void nfs_access_free_entry(struct nfs_access_entry *entry)
  1721. {
  1722. put_rpccred(entry->cred);
  1723. kfree(entry);
  1724. smp_mb__before_atomic_dec();
  1725. atomic_long_dec(&nfs_access_nr_entries);
  1726. smp_mb__after_atomic_dec();
  1727. }
  1728. static void nfs_access_free_list(struct list_head *head)
  1729. {
  1730. struct nfs_access_entry *cache;
  1731. while (!list_empty(head)) {
  1732. cache = list_entry(head->next, struct nfs_access_entry, lru);
  1733. list_del(&cache->lru);
  1734. nfs_access_free_entry(cache);
  1735. }
  1736. }
  1737. int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
  1738. {
  1739. LIST_HEAD(head);
  1740. struct nfs_inode *nfsi, *next;
  1741. struct nfs_access_entry *cache;
  1742. if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
  1743. return (nr_to_scan == 0) ? 0 : -1;
  1744. spin_lock(&nfs_access_lru_lock);
  1745. list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
  1746. struct inode *inode;
  1747. if (nr_to_scan-- == 0)
  1748. break;
  1749. inode = &nfsi->vfs_inode;
  1750. spin_lock(&inode->i_lock);
  1751. if (list_empty(&nfsi->access_cache_entry_lru))
  1752. goto remove_lru_entry;
  1753. cache = list_entry(nfsi->access_cache_entry_lru.next,
  1754. struct nfs_access_entry, lru);
  1755. list_move(&cache->lru, &head);
  1756. rb_erase(&cache->rb_node, &nfsi->access_cache);
  1757. if (!list_empty(&nfsi->access_cache_entry_lru))
  1758. list_move_tail(&nfsi->access_cache_inode_lru,
  1759. &nfs_access_lru_list);
  1760. else {
  1761. remove_lru_entry:
  1762. list_del_init(&nfsi->access_cache_inode_lru);
  1763. smp_mb__before_clear_bit();
  1764. clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
  1765. smp_mb__after_clear_bit();
  1766. }
  1767. spin_unlock(&inode->i_lock);
  1768. }
  1769. spin_unlock(&nfs_access_lru_lock);
  1770. nfs_access_free_list(&head);
  1771. return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
  1772. }
  1773. static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
  1774. {
  1775. struct rb_root *root_node = &nfsi->access_cache;
  1776. struct rb_node *n;
  1777. struct nfs_access_entry *entry;
  1778. /* Unhook entries from the cache */
  1779. while ((n = rb_first(root_node)) != NULL) {
  1780. entry = rb_entry(n, struct nfs_access_entry, rb_node);
  1781. rb_erase(n, root_node);
  1782. list_move(&entry->lru, head);
  1783. }
  1784. nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
  1785. }
  1786. void nfs_access_zap_cache(struct inode *inode)
  1787. {
  1788. LIST_HEAD(head);
  1789. if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
  1790. return;
  1791. /* Remove from global LRU init */
  1792. spin_lock(&nfs_access_lru_lock);
  1793. if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
  1794. list_del_init(&NFS_I(inode)->access_cache_inode_lru);
  1795. spin_lock(&inode->i_lock);
  1796. __nfs_access_zap_cache(NFS_I(inode), &head);
  1797. spin_unlock(&inode->i_lock);
  1798. spin_unlock(&nfs_access_lru_lock);
  1799. nfs_access_free_list(&head);
  1800. }
  1801. static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
  1802. {
  1803. struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
  1804. struct nfs_access_entry *entry;
  1805. while (n != NULL) {
  1806. entry = rb_entry(n, struct nfs_access_entry, rb_node);
  1807. if (cred < entry->cred)
  1808. n = n->rb_left;
  1809. else if (cred > entry->cred)
  1810. n = n->rb_right;
  1811. else
  1812. return entry;
  1813. }
  1814. return NULL;
  1815. }
  1816. static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
  1817. {
  1818. struct nfs_inode *nfsi = NFS_I(inode);
  1819. struct nfs_access_entry *cache;
  1820. int err = -ENOENT;
  1821. spin_lock(&inode->i_lock);
  1822. if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
  1823. goto out_zap;
  1824. cache = nfs_access_search_rbtree(inode, cred);
  1825. if (cache == NULL)
  1826. goto out;
  1827. if (!nfs_have_delegated_attributes(inode) &&
  1828. !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
  1829. goto out_stale;
  1830. res->jiffies = cache->jiffies;
  1831. res->cred = cache->cred;
  1832. res->mask = cache->mask;
  1833. list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
  1834. err = 0;
  1835. out:
  1836. spin_unlock(&inode->i_lock);
  1837. return err;
  1838. out_stale:
  1839. rb_erase(&cache->rb_node, &nfsi->access_cache);
  1840. list_del(&cache->lru);
  1841. spin_unlock(&inode->i_lock);
  1842. nfs_access_free_entry(cache);
  1843. return -ENOENT;
  1844. out_zap:
  1845. spin_unlock(&inode->i_lock);
  1846. nfs_access_zap_cache(inode);
  1847. return -ENOENT;
  1848. }
  1849. static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
  1850. {
  1851. struct nfs_inode *nfsi = NFS_I(inode);
  1852. struct rb_root *root_node = &nfsi->access_cache;
  1853. struct rb_node **p = &root_node->rb_node;
  1854. struct rb_node *parent = NULL;
  1855. struct nfs_access_entry *entry;
  1856. spin_lock(&inode->i_lock);
  1857. while (*p != NULL) {
  1858. parent = *p;
  1859. entry = rb_entry(parent, struct nfs_access_entry, rb_node);
  1860. if (set->cred < entry->cred)
  1861. p = &parent->rb_left;
  1862. else if (set->cred > entry->cred)
  1863. p = &parent->rb_right;
  1864. else
  1865. goto found;
  1866. }
  1867. rb_link_node(&set->rb_node, parent, p);
  1868. rb_insert_color(&set->rb_node, root_node);
  1869. list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
  1870. spin_unlock(&inode->i_lock);
  1871. return;
  1872. found:
  1873. rb_replace_node(parent, &set->rb_node, root_node);
  1874. list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
  1875. list_del(&entry->lru);
  1876. spin_unlock(&inode->i_lock);
  1877. nfs_access_free_entry(entry);
  1878. }
  1879. static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
  1880. {
  1881. struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
  1882. if (cache == NULL)
  1883. return;
  1884. RB_CLEAR_NODE(&cache->rb_node);
  1885. cache->jiffies = set->jiffies;
  1886. cache->cred = get_rpccred(set->cred);
  1887. cache->mask = set->mask;
  1888. nfs_access_add_rbtree(inode, cache);
  1889. /* Update accounting */
  1890. smp_mb__before_atomic_inc();
  1891. atomic_long_inc(&nfs_access_nr_entries);
  1892. smp_mb__after_atomic_inc();
  1893. /* Add inode to global LRU list */
  1894. if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
  1895. spin_lock(&nfs_access_lru_lock);
  1896. if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
  1897. list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
  1898. &nfs_access_lru_list);
  1899. spin_unlock(&nfs_access_lru_lock);
  1900. }
  1901. }
  1902. static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
  1903. {
  1904. struct nfs_access_entry cache;
  1905. int status;
  1906. status = nfs_access_get_cached(inode, cred, &cache);
  1907. if (status == 0)
  1908. goto out;
  1909. /* Be clever: ask server to check for all possible rights */
  1910. cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
  1911. cache.cred = cred;
  1912. cache.jiffies = jiffies;
  1913. status = NFS_PROTO(inode)->access(inode, &cache);
  1914. if (status != 0) {
  1915. if (status == -ESTALE) {
  1916. nfs_zap_caches(inode);
  1917. if (!S_ISDIR(inode->i_mode))
  1918. set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
  1919. }
  1920. return status;
  1921. }
  1922. nfs_access_add_cache(inode, &cache);
  1923. out:
  1924. if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
  1925. return 0;
  1926. return -EACCES;
  1927. }
  1928. static int nfs_open_permission_mask(int openflags)
  1929. {
  1930. int mask = 0;
  1931. if (openflags & FMODE_READ)
  1932. mask |= MAY_READ;
  1933. if (openflags & FMODE_WRITE)
  1934. mask |= MAY_WRITE;
  1935. if (openflags & FMODE_EXEC)
  1936. mask |= MAY_EXEC;
  1937. return mask;
  1938. }
  1939. int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
  1940. {
  1941. return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
  1942. }
  1943. int nfs_permission(struct inode *inode, int mask, unsigned int flags)
  1944. {
  1945. struct rpc_cred *cred;
  1946. int res = 0;
  1947. if (flags & IPERM_FLAG_RCU)
  1948. return -ECHILD;
  1949. nfs_inc_stats(inode, NFSIOS_VFSACCESS);
  1950. if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
  1951. goto out;
  1952. /* Is this sys_access() ? */
  1953. if (mask & (MAY_ACCESS | MAY_CHDIR))
  1954. goto force_lookup;
  1955. switch (inode->i_mode & S_IFMT) {
  1956. case S_IFLNK:
  1957. goto out;
  1958. case S_IFREG:
  1959. /* NFSv4 has atomic_open... */
  1960. if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
  1961. && (mask & MAY_OPEN)
  1962. && !(mask & MAY_EXEC))
  1963. goto out;
  1964. break;
  1965. case S_IFDIR:
  1966. /*
  1967. * Optimize away all write operations, since the server
  1968. * will check permissions when we perform the op.
  1969. */
  1970. if ((mask & MAY_WRITE) && !(mask & MAY_READ))
  1971. goto out;
  1972. }
  1973. force_lookup:
  1974. if (!NFS_PROTO(inode)->access)
  1975. goto out_notsup;
  1976. cred = rpc_lookup_cred();
  1977. if (!IS_ERR(cred)) {
  1978. res = nfs_do_access(inode, cred, mask);
  1979. put_rpccred(cred);
  1980. } else
  1981. res = PTR_ERR(cred);
  1982. out:
  1983. if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
  1984. res = -EACCES;
  1985. dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
  1986. inode->i_sb->s_id, inode->i_ino, mask, res);
  1987. return res;
  1988. out_notsup:
  1989. res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
  1990. if (res == 0)
  1991. res = generic_permission(inode, mask, flags, NULL);
  1992. goto out;
  1993. }
  1994. /*
  1995. * Local variables:
  1996. * version-control: t
  1997. * kept-new-versions: 5
  1998. * End:
  1999. */