dir.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:29k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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/sched.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/smp_lock.h>
  32. #define NFS_PARANOIA 1
  33. /* #define NFS_DEBUG_VERBOSE 1 */
  34. static int nfs_readdir(struct file *, void *, filldir_t);
  35. static struct dentry *nfs_lookup(struct inode *, struct dentry *);
  36. static int nfs_create(struct inode *, struct dentry *, int);
  37. static int nfs_mkdir(struct inode *, struct dentry *, int);
  38. static int nfs_rmdir(struct inode *, struct dentry *);
  39. static int nfs_unlink(struct inode *, struct dentry *);
  40. static int nfs_symlink(struct inode *, struct dentry *, const char *);
  41. static int nfs_link(struct dentry *, struct inode *, struct dentry *);
  42. static int nfs_mknod(struct inode *, struct dentry *, int, int);
  43. static int nfs_rename(struct inode *, struct dentry *,
  44.       struct inode *, struct dentry *);
  45. struct file_operations nfs_dir_operations = {
  46. read: generic_read_dir,
  47. readdir: nfs_readdir,
  48. open: nfs_open,
  49. release: nfs_release,
  50. };
  51. struct inode_operations nfs_dir_inode_operations = {
  52. create: nfs_create,
  53. lookup: nfs_lookup,
  54. link: nfs_link,
  55. unlink: nfs_unlink,
  56. symlink: nfs_symlink,
  57. mkdir: nfs_mkdir,
  58. rmdir: nfs_rmdir,
  59. mknod: nfs_mknod,
  60. rename: nfs_rename,
  61. permission: nfs_permission,
  62. revalidate: nfs_revalidate,
  63. setattr: nfs_notify_change,
  64. };
  65. typedef u32 * (*decode_dirent_t)(u32 *, struct nfs_entry *, int);
  66. typedef struct {
  67. struct file *file;
  68. struct page *page;
  69. unsigned long page_index;
  70. u32 *ptr;
  71. u64 target;
  72. struct nfs_entry *entry;
  73. decode_dirent_t decode;
  74. int plus;
  75. int error;
  76. } nfs_readdir_descriptor_t;
  77. /* Now we cache directories properly, by stuffing the dirent
  78.  * data directly in the page cache.
  79.  *
  80.  * Inode invalidation due to refresh etc. takes care of
  81.  * _everything_, no sloppy entry flushing logic, no extraneous
  82.  * copying, network direct to page cache, the way it was meant
  83.  * to be.
  84.  *
  85.  * NOTE: Dirent information verification is done always by the
  86.  *  page-in of the RPC reply, nowhere else, this simplies
  87.  *  things substantially.
  88.  */
  89. static
  90. int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page *page)
  91. {
  92. struct file *file = desc->file;
  93. struct inode *inode = file->f_dentry->d_inode;
  94. struct rpc_cred *cred = nfs_file_cred(file);
  95. void *buffer = kmap(page);
  96. int error;
  97. dfprintk(VFS, "NFS: nfs_readdir_filler() reading cookie %Lu into page %lu.n", (long long)desc->entry->cookie, page->index);
  98.  again:
  99. error = NFS_PROTO(inode)->readdir(inode, cred, desc->entry->cookie, buffer,
  100.   NFS_SERVER(inode)->dtsize, desc->plus);
  101. /* We requested READDIRPLUS, but the server doesn't grok it */
  102. if (desc->plus && error == -ENOTSUPP) {
  103. NFS_FLAGS(inode) &= ~NFS_INO_ADVISE_RDPLUS;
  104. desc->plus = 0;
  105. goto again;
  106. }
  107. if (error < 0)
  108. goto error;
  109. SetPageUptodate(page);
  110. kunmap(page);
  111. /* Ensure consistent page alignment of the data.
  112.  * Note: assumes we have exclusive access to this mapping either
  113.  *  throught inode->i_sem or some other mechanism.
  114.  */
  115. if (page->index == 0)
  116. invalidate_inode_pages(inode);
  117. UnlockPage(page);
  118. return 0;
  119.  error:
  120. SetPageError(page);
  121. kunmap(page);
  122. UnlockPage(page);
  123. invalidate_inode_pages(inode);
  124. desc->error = error;
  125. return -EIO;
  126. }
  127. static inline
  128. int dir_decode(nfs_readdir_descriptor_t *desc)
  129. {
  130. u32 *p = desc->ptr;
  131. p = desc->decode(p, desc->entry, desc->plus);
  132. if (IS_ERR(p))
  133. return PTR_ERR(p);
  134. desc->ptr = p;
  135. return 0;
  136. }
  137. static inline
  138. void dir_page_release(nfs_readdir_descriptor_t *desc)
  139. {
  140. kunmap(desc->page);
  141. page_cache_release(desc->page);
  142. desc->page = NULL;
  143. desc->ptr = NULL;
  144. }
  145. /*
  146.  * Given a pointer to a buffer that has already been filled by a call
  147.  * to readdir, find the next entry.
  148.  *
  149.  * If the end of the buffer has been reached, return -EAGAIN, if not,
  150.  * return the offset within the buffer of the next entry to be
  151.  * read.
  152.  */
  153. static inline
  154. int find_dirent(nfs_readdir_descriptor_t *desc, struct page *page)
  155. {
  156. struct nfs_entry *entry = desc->entry;
  157. int loop_count = 0,
  158. status;
  159. while((status = dir_decode(desc)) == 0) {
  160. dfprintk(VFS, "NFS: found cookie %Lun", (long long)entry->cookie);
  161. if (entry->prev_cookie == desc->target)
  162. break;
  163. if (loop_count++ > 200) {
  164. loop_count = 0;
  165. schedule();
  166. }
  167. }
  168. dfprintk(VFS, "NFS: find_dirent() returns %dn", status);
  169. return status;
  170. }
  171. /*
  172.  * Find the given page, and call find_dirent() in order to try to
  173.  * return the next entry.
  174.  */
  175. static inline
  176. int find_dirent_page(nfs_readdir_descriptor_t *desc)
  177. {
  178. struct inode *inode = desc->file->f_dentry->d_inode;
  179. struct page *page;
  180. int status;
  181. dfprintk(VFS, "NFS: find_dirent_page() searching directory page %ldn", desc->page_index);
  182. desc->plus = NFS_USE_READDIRPLUS(inode);
  183. page = read_cache_page(&inode->i_data, desc->page_index,
  184.        (filler_t *)nfs_readdir_filler, desc);
  185. if (IS_ERR(page)) {
  186. status = PTR_ERR(page);
  187. goto out;
  188. }
  189. if (!Page_Uptodate(page))
  190. goto read_error;
  191. /* NOTE: Someone else may have changed the READDIRPLUS flag */
  192. desc->page = page;
  193. desc->ptr = kmap(page);
  194. status = find_dirent(desc, page);
  195. if (status < 0)
  196. dir_page_release(desc);
  197.  out:
  198. dfprintk(VFS, "NFS: find_dirent_page() returns %dn", status);
  199. return status;
  200.  read_error:
  201. page_cache_release(page);
  202. return -EIO;
  203. }
  204. /*
  205.  * Recurse through the page cache pages, and return a
  206.  * filled nfs_entry structure of the next directory entry if possible.
  207.  *
  208.  * The target for the search is 'desc->target'.
  209.  */
  210. static inline
  211. int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
  212. {
  213. int loop_count = 0;
  214. int res;
  215. dfprintk(VFS, "NFS: readdir_search_pagecache() searching for cookie %Lun", (long long)desc->target);
  216. for (;;) {
  217. res = find_dirent_page(desc);
  218. if (res != -EAGAIN)
  219. break;
  220. /* Align to beginning of next page */
  221. desc->page_index ++;
  222. if (loop_count++ > 200) {
  223. loop_count = 0;
  224. schedule();
  225. }
  226. }
  227. dfprintk(VFS, "NFS: readdir_search_pagecache() returned %dn", res);
  228. return res;
  229. }
  230. /*
  231.  * Once we've found the start of the dirent within a page: fill 'er up...
  232.  */
  233. static 
  234. int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
  235.    filldir_t filldir)
  236. {
  237. struct file *file = desc->file;
  238. struct nfs_entry *entry = desc->entry;
  239. unsigned long fileid;
  240. int loop_count = 0,
  241. res;
  242. dfprintk(VFS, "NFS: nfs_do_filldir() filling starting @ cookie %Lun", (long long)desc->target);
  243. for(;;) {
  244. /* Note: entry->prev_cookie contains the cookie for
  245.  *  retrieving the current dirent on the server */
  246. fileid = nfs_fileid_to_ino_t(entry->ino);
  247. res = filldir(dirent, entry->name, entry->len, 
  248.       entry->prev_cookie, fileid, DT_UNKNOWN);
  249. if (res < 0)
  250. break;
  251. file->f_pos = desc->target = entry->cookie;
  252. if (dir_decode(desc) != 0) {
  253. desc->page_index ++;
  254. break;
  255. }
  256. if (loop_count++ > 200) {
  257. loop_count = 0;
  258. schedule();
  259. }
  260. }
  261. dir_page_release(desc);
  262. dfprintk(VFS, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %dn", (long long)desc->target, res);
  263. return res;
  264. }
  265. /*
  266.  * If we cannot find a cookie in our cache, we suspect that this is
  267.  * because it points to a deleted file, so we ask the server to return
  268.  * whatever it thinks is the next entry. We then feed this to filldir.
  269.  * If all goes well, we should then be able to find our way round the
  270.  * cache on the next call to readdir_search_pagecache();
  271.  *
  272.  * NOTE: we cannot add the anonymous page to the pagecache because
  273.  *  the data it contains might not be page aligned. Besides,
  274.  *  we should already have a complete representation of the
  275.  *  directory in the page cache by the time we get here.
  276.  */
  277. static inline
  278. int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
  279.      filldir_t filldir)
  280. {
  281. struct file *file = desc->file;
  282. struct inode *inode = file->f_dentry->d_inode;
  283. struct rpc_cred *cred = nfs_file_cred(file);
  284. struct page *page = NULL;
  285. int status;
  286. dfprintk(VFS, "NFS: uncached_readdir() searching for cookie %Lun", (long long)desc->target);
  287. page = alloc_page(GFP_HIGHUSER);
  288. if (!page) {
  289. status = -ENOMEM;
  290. goto out;
  291. }
  292. desc->page = page;
  293. desc->ptr = kmap(page);
  294. desc->error = NFS_PROTO(inode)->readdir(inode, cred, desc->target,
  295. desc->ptr,
  296. NFS_SERVER(inode)->dtsize,
  297. desc->plus);
  298. if (desc->error >= 0) {
  299. if ((status = dir_decode(desc)) == 0)
  300. desc->entry->prev_cookie = desc->target;
  301. } else
  302. status = -EIO;
  303. if (status < 0)
  304. goto out_release;
  305. status = nfs_do_filldir(desc, dirent, filldir);
  306. /* Reset read descriptor so it searches the page cache from
  307.  * the start upon the next call to readdir_search_pagecache() */
  308. desc->page_index = 0;
  309. memset(desc->entry, 0, sizeof(*desc->entry));
  310.  out:
  311. dfprintk(VFS, "NFS: uncached_readdir() returns %dn", status);
  312. return status;
  313.  out_release:
  314. dir_page_release(desc);
  315. goto out;
  316. }
  317. /* The file offset position is now represented as a true offset into the
  318.  * page cache as is the case in most of the other filesystems.
  319.  */
  320. static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
  321. {
  322. struct dentry *dentry = filp->f_dentry;
  323. struct inode *inode = dentry->d_inode;
  324. nfs_readdir_descriptor_t my_desc,
  325. *desc = &my_desc;
  326. struct nfs_entry my_entry;
  327. long res;
  328. res = nfs_revalidate(dentry);
  329. if (res < 0)
  330. return res;
  331. /*
  332.  * filp->f_pos points to the file offset in the page cache.
  333.  * but if the cache has meanwhile been zapped, we need to
  334.  * read from the last dirent to revalidate f_pos
  335.  * itself.
  336.  */
  337. memset(desc, 0, sizeof(*desc));
  338. memset(&my_entry, 0, sizeof(my_entry));
  339. desc->file = filp;
  340. desc->target = filp->f_pos;
  341. desc->entry = &my_entry;
  342. desc->decode = NFS_PROTO(inode)->decode_dirent;
  343. while(!desc->entry->eof) {
  344. res = readdir_search_pagecache(desc);
  345. if (res == -EBADCOOKIE) {
  346. /* This means either end of directory */
  347. if (desc->entry->cookie != desc->target) {
  348. /* Or that the server has 'lost' a cookie */
  349. res = uncached_readdir(desc, dirent, filldir);
  350. if (res >= 0)
  351. continue;
  352. }
  353. res = 0;
  354. break;
  355. } else if (res < 0)
  356. break;
  357. res = nfs_do_filldir(desc, dirent, filldir);
  358. if (res < 0) {
  359. res = 0;
  360. break;
  361. }
  362. }
  363. if (desc->error < 0)
  364. return desc->error;
  365. if (res < 0)
  366. return res;
  367. return 0;
  368. }
  369. /*
  370.  * Whenever an NFS operation succeeds, we know that the dentry
  371.  * is valid, so we update the revalidation timestamp.
  372.  */
  373. static inline void nfs_renew_times(struct dentry * dentry)
  374. {
  375. dentry->d_time = jiffies;
  376. }
  377. static inline int nfs_dentry_force_reval(struct dentry *dentry, int flags)
  378. {
  379. struct inode *inode = dentry->d_inode;
  380. unsigned long timeout = NFS_ATTRTIMEO(inode);
  381. /*
  382.  * If it's the last lookup in a series, we use a stricter
  383.  * cache consistency check by looking at the parent mtime.
  384.  *
  385.  * If it's been modified in the last hour, be really strict.
  386.  * (This still means that we can avoid doing unnecessary
  387.  * work on directories like /usr/share/bin etc which basically
  388.  * never change).
  389.  */
  390. if (!(flags & LOOKUP_CONTINUE)) {
  391. long diff = CURRENT_TIME - dentry->d_parent->d_inode->i_mtime;
  392. if (diff < 15*60)
  393. timeout = 0;
  394. }
  395. return time_after(jiffies,dentry->d_time + timeout);
  396. }
  397. /*
  398.  * We judge how long we want to trust negative
  399.  * dentries by looking at the parent inode mtime.
  400.  *
  401.  * If mtime is close to present time, we revalidate
  402.  * more often.
  403.  */
  404. #define NFS_REVALIDATE_NEGATIVE (1 * HZ)
  405. static inline int nfs_neg_need_reval(struct dentry *dentry)
  406. {
  407. struct inode *dir = dentry->d_parent->d_inode;
  408. unsigned long timeout = NFS_ATTRTIMEO(dir);
  409. long diff = CURRENT_TIME - dir->i_mtime;
  410. if (diff < 5*60 && timeout > NFS_REVALIDATE_NEGATIVE)
  411. timeout = NFS_REVALIDATE_NEGATIVE;
  412. return time_after(jiffies, dentry->d_time + timeout);
  413. }
  414. /*
  415.  * This is called every time the dcache has a lookup hit,
  416.  * and we should check whether we can really trust that
  417.  * lookup.
  418.  *
  419.  * NOTE! The hit can be a negative hit too, don't assume
  420.  * we have an inode!
  421.  *
  422.  * If the dentry is older than the revalidation interval, 
  423.  * we do a new lookup and verify that the dentry is still
  424.  * correct.
  425.  */
  426. static int nfs_lookup_revalidate(struct dentry * dentry, int flags)
  427. {
  428. struct inode *dir;
  429. struct inode *inode;
  430. int error;
  431. struct nfs_fh fhandle;
  432. struct nfs_fattr fattr;
  433. lock_kernel();
  434. dir = dentry->d_parent->d_inode;
  435. inode = dentry->d_inode;
  436. /*
  437.  * If we don't have an inode, let's look at the parent
  438.  * directory mtime to get a hint about how often we
  439.  * should validate things..
  440.  */
  441. if (!inode) {
  442. if (nfs_neg_need_reval(dentry))
  443. goto out_bad;
  444. goto out_valid;
  445. }
  446. if (is_bad_inode(inode)) {
  447. dfprintk(VFS, "nfs_lookup_validate: %s/%s has dud inoden",
  448. dentry->d_parent->d_name.name, dentry->d_name.name);
  449. goto out_bad;
  450. }
  451. if (!nfs_dentry_force_reval(dentry, flags))
  452. goto out_valid;
  453. if (IS_ROOT(dentry)) {
  454. __nfs_revalidate_inode(NFS_SERVER(inode), inode);
  455. goto out_valid_renew;
  456. }
  457. /*
  458.  * Do a new lookup and check the dentry attributes.
  459.  */
  460. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
  461. if (error)
  462. goto out_bad;
  463. /* Inode number matches? */
  464. if (!(fattr.valid & NFS_ATTR_FATTR) ||
  465.     NFS_FSID(inode) != fattr.fsid ||
  466.     NFS_FILEID(inode) != fattr.fileid)
  467. goto out_bad;
  468. /* Ok, remember that we successfully checked it.. */
  469. nfs_refresh_inode(inode, &fattr);
  470. if (nfs_inode_is_stale(inode, &fhandle, &fattr))
  471. goto out_bad;
  472.  out_valid_renew:
  473. nfs_renew_times(dentry);
  474. out_valid:
  475. unlock_kernel();
  476. return 1;
  477. out_bad:
  478. shrink_dcache_parent(dentry);
  479. /* If we have submounts, don't unhash ! */
  480. if (have_submounts(dentry))
  481. goto out_valid;
  482. d_drop(dentry);
  483. /* Purge readdir caches. */
  484. nfs_zap_caches(dir);
  485. if (inode && S_ISDIR(inode->i_mode))
  486. nfs_zap_caches(inode);
  487. unlock_kernel();
  488. return 0;
  489. }
  490. /*
  491.  * This is called from dput() when d_count is going to 0.
  492.  */
  493. static int nfs_dentry_delete(struct dentry *dentry)
  494. {
  495. dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)n",
  496. dentry->d_parent->d_name.name, dentry->d_name.name,
  497. dentry->d_flags);
  498. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  499. /* Unhash it, so that ->d_iput() would be called */
  500. return 1;
  501. }
  502. return 0;
  503. }
  504. /*
  505.  * Called when the dentry loses inode.
  506.  * We use it to clean up silly-renamed files.
  507.  */
  508. static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
  509. {
  510. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  511. lock_kernel();
  512. nfs_complete_unlink(dentry);
  513. unlock_kernel();
  514. }
  515. iput(inode);
  516. }
  517. struct dentry_operations nfs_dentry_operations = {
  518. d_revalidate: nfs_lookup_revalidate,
  519. d_delete: nfs_dentry_delete,
  520. d_iput: nfs_dentry_iput,
  521. };
  522. static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry)
  523. {
  524. struct inode *inode;
  525. int error;
  526. struct nfs_fh fhandle;
  527. struct nfs_fattr fattr;
  528. dfprintk(VFS, "NFS: lookup(%s/%s)n",
  529. dentry->d_parent->d_name.name, dentry->d_name.name);
  530. error = -ENAMETOOLONG;
  531. if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
  532. goto out;
  533. error = -ENOMEM;
  534. dentry->d_op = &nfs_dentry_operations;
  535. error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
  536. inode = NULL;
  537. if (error == -ENOENT)
  538. goto no_entry;
  539. if (!error) {
  540. error = -EACCES;
  541. inode = nfs_fhget(dentry, &fhandle, &fattr);
  542. if (inode) {
  543.     no_entry:
  544. d_add(dentry, inode);
  545. nfs_renew_times(dentry);
  546. error = 0;
  547. }
  548. }
  549. out:
  550. return ERR_PTR(error);
  551. }
  552. /*
  553.  * Code common to create, mkdir, and mknod.
  554.  */
  555. static int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
  556. struct nfs_fattr *fattr)
  557. {
  558. struct inode *inode;
  559. int error = -EACCES;
  560. inode = nfs_fhget(dentry, fhandle, fattr);
  561. if (inode) {
  562. d_instantiate(dentry, inode);
  563. nfs_renew_times(dentry);
  564. error = 0;
  565. }
  566. return error;
  567. }
  568. /*
  569.  * Following a failed create operation, we drop the dentry rather
  570.  * than retain a negative dentry. This avoids a problem in the event
  571.  * that the operation succeeded on the server, but an error in the
  572.  * reply path made it appear to have failed.
  573.  */
  574. static int nfs_create(struct inode *dir, struct dentry *dentry, int mode)
  575. {
  576. struct iattr attr;
  577. struct nfs_fattr fattr;
  578. struct nfs_fh fhandle;
  579. int error;
  580. dfprintk(VFS, "NFS: create(%x/%ld, %sn",
  581. dir->i_dev, dir->i_ino, dentry->d_name.name);
  582. attr.ia_mode = mode;
  583. attr.ia_valid = ATTR_MODE;
  584. /*
  585.  * The 0 argument passed into the create function should one day
  586.  * contain the O_EXCL flag if requested. This allows NFSv3 to
  587.  * select the appropriate create strategy. Currently open_namei
  588.  * does not pass the create flags.
  589.  */
  590. nfs_zap_caches(dir);
  591. error = NFS_PROTO(dir)->create(dir, &dentry->d_name,
  592.  &attr, 0, &fhandle, &fattr);
  593. if (!error && fhandle.size != 0)
  594. error = nfs_instantiate(dentry, &fhandle, &fattr);
  595. if (error || fhandle.size == 0)
  596. d_drop(dentry);
  597. return error;
  598. }
  599. /*
  600.  * See comments for nfs_proc_create regarding failed operations.
  601.  */
  602. static int nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, int rdev)
  603. {
  604. struct iattr attr;
  605. struct nfs_fattr fattr;
  606. struct nfs_fh fhandle;
  607. int error;
  608. dfprintk(VFS, "NFS: mknod(%x/%ld, %sn",
  609. dir->i_dev, dir->i_ino, dentry->d_name.name);
  610. attr.ia_mode = mode;
  611. attr.ia_valid = ATTR_MODE;
  612. nfs_zap_caches(dir);
  613. error = NFS_PROTO(dir)->mknod(dir, &dentry->d_name, &attr, rdev,
  614. &fhandle, &fattr);
  615. if (!error && fhandle.size != 0)
  616. error = nfs_instantiate(dentry, &fhandle, &fattr);
  617. if (error || fhandle.size == 0)
  618. d_drop(dentry);
  619. return error;
  620. }
  621. /*
  622.  * See comments for nfs_proc_create regarding failed operations.
  623.  */
  624. static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  625. {
  626. struct iattr attr;
  627. struct nfs_fattr fattr;
  628. struct nfs_fh fhandle;
  629. int error;
  630. dfprintk(VFS, "NFS: mkdir(%x/%ld, %sn",
  631. dir->i_dev, dir->i_ino, dentry->d_name.name);
  632. attr.ia_valid = ATTR_MODE;
  633. attr.ia_mode = mode | S_IFDIR;
  634. #if 0
  635. /*
  636.  * Always drop the dentry, we can't always depend on
  637.  * the fattr returned by the server (AIX seems to be
  638.  * broken). We're better off doing another lookup than
  639.  * depending on potentially bogus information.
  640.  */
  641. d_drop(dentry);
  642. #endif
  643. nfs_zap_caches(dir);
  644. error = NFS_PROTO(dir)->mkdir(dir, &dentry->d_name, &attr, &fhandle,
  645. &fattr);
  646. if (!error && fhandle.size != 0)
  647. error = nfs_instantiate(dentry, &fhandle, &fattr);
  648. if (error || fhandle.size == 0)
  649. d_drop(dentry);
  650. return error;
  651. }
  652. static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
  653. {
  654. int error;
  655. dfprintk(VFS, "NFS: rmdir(%x/%ld, %sn",
  656. dir->i_dev, dir->i_ino, dentry->d_name.name);
  657. nfs_zap_caches(dir);
  658. error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
  659. if (!error)
  660. dentry->d_inode->i_nlink = 0;
  661. return error;
  662. }
  663. static int nfs_sillyrename(struct inode *dir, struct dentry *dentry)
  664. {
  665. static unsigned int sillycounter;
  666. const int      i_inosize  = sizeof(dir->i_ino)*2;
  667. const int      countersize = sizeof(sillycounter)*2;
  668. const int      slen       = strlen(".nfs") + i_inosize + countersize;
  669. char           silly[slen+1];
  670. struct qstr    qsilly;
  671. struct dentry *sdentry;
  672. int            error = -EIO;
  673. dfprintk(VFS, "NFS: silly-rename(%s/%s, ct=%d)n",
  674. dentry->d_parent->d_name.name, dentry->d_name.name, 
  675. atomic_read(&dentry->d_count));
  676. if (atomic_read(&dentry->d_count) == 1)
  677. goto out;  /* No need to silly rename. */
  678. #ifdef NFS_PARANOIA
  679. if (!dentry->d_inode)
  680. printk("NFS: silly-renaming %s/%s, negative dentry??n",
  681. dentry->d_parent->d_name.name, dentry->d_name.name);
  682. #endif
  683. /*
  684.  * We don't allow a dentry to be silly-renamed twice.
  685.  */
  686. error = -EBUSY;
  687. if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
  688. goto out;
  689. sprintf(silly, ".nfs%*.*lx",
  690. i_inosize, i_inosize, dentry->d_inode->i_ino);
  691. sdentry = NULL;
  692. do {
  693. char *suffix = silly + slen - countersize;
  694. dput(sdentry);
  695. sillycounter++;
  696. sprintf(suffix, "%*.*x", countersize, countersize, sillycounter);
  697. dfprintk(VFS, "trying to rename %s to %sn",
  698.  dentry->d_name.name, silly);
  699. sdentry = lookup_one_len(silly, dentry->d_parent, slen);
  700. /*
  701.  * N.B. Better to return EBUSY here ... it could be
  702.  * dangerous to delete the file while it's in use.
  703.  */
  704. if (IS_ERR(sdentry))
  705. goto out;
  706. } while(sdentry->d_inode != NULL); /* need negative lookup */
  707. nfs_zap_caches(dir);
  708. qsilly.name = silly;
  709. qsilly.len  = strlen(silly);
  710. error = NFS_PROTO(dir)->rename(dir, &dentry->d_name, dir, &qsilly);
  711. if (!error) {
  712. nfs_renew_times(dentry);
  713. d_move(dentry, sdentry);
  714. error = nfs_async_unlink(dentry);
  715.   /* If we return 0 we don't unlink */
  716. }
  717. dput(sdentry);
  718. out:
  719. return error;
  720. }
  721. /*
  722.  * Remove a file after making sure there are no pending writes,
  723.  * and after checking that the file has only one user. 
  724.  *
  725.  * We invalidate the attribute cache and free the inode prior to the operation
  726.  * to avoid possible races if the server reuses the inode.
  727.  */
  728. static int nfs_safe_remove(struct dentry *dentry)
  729. {
  730. struct inode *dir = dentry->d_parent->d_inode;
  731. struct inode *inode = dentry->d_inode;
  732. int error = -EBUSY, rehash = 0;
  733. dfprintk(VFS, "NFS: safe_remove(%s/%s)n",
  734. dentry->d_parent->d_name.name, dentry->d_name.name);
  735. /*
  736.  * Unhash the dentry while we remove the file ...
  737.  */
  738. if (!d_unhashed(dentry)) {
  739. d_drop(dentry);
  740. rehash = 1;
  741. }
  742. if (atomic_read(&dentry->d_count) > 1) {
  743. #ifdef NFS_PARANOIA
  744. printk("nfs_safe_remove: %s/%s busy, d_count=%dn",
  745. dentry->d_parent->d_name.name, dentry->d_name.name,
  746. atomic_read(&dentry->d_count));
  747. #endif
  748. goto out;
  749. }
  750. /* If the dentry was sillyrenamed, we simply call d_delete() */
  751. if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
  752. error = 0;
  753. goto out_delete;
  754. }
  755. nfs_zap_caches(dir);
  756. if (inode)
  757. NFS_CACHEINV(inode);
  758. error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
  759. if (error < 0)
  760. goto out;
  761. if (inode)
  762. inode->i_nlink--;
  763.  out_delete:
  764. /*
  765.  * Free the inode
  766.  */
  767. d_delete(dentry);
  768. out:
  769. if (rehash)
  770. d_rehash(dentry);
  771. return error;
  772. }
  773. /*  We do silly rename. In case sillyrename() returns -EBUSY, the inode
  774.  *  belongs to an active ".nfs..." file and we return -EBUSY.
  775.  *
  776.  *  If sillyrename() returns 0, we do nothing, otherwise we unlink.
  777.  */
  778. static int nfs_unlink(struct inode *dir, struct dentry *dentry)
  779. {
  780. int error;
  781. dfprintk(VFS, "NFS: unlink(%x/%ld, %s)n",
  782. dir->i_dev, dir->i_ino, dentry->d_name.name);
  783. error = nfs_sillyrename(dir, dentry);
  784. if (error && error != -EBUSY) {
  785. error = nfs_safe_remove(dentry);
  786. if (!error) {
  787. nfs_renew_times(dentry);
  788. }
  789. }
  790. return error;
  791. }
  792. static int
  793. nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
  794. {
  795. struct iattr attr;
  796. struct nfs_fattr sym_attr;
  797. struct nfs_fh sym_fh;
  798. struct qstr qsymname;
  799. unsigned int maxlen;
  800. int error;
  801. dfprintk(VFS, "NFS: symlink(%x/%ld, %s, %s)n",
  802. dir->i_dev, dir->i_ino, dentry->d_name.name, symname);
  803. error = -ENAMETOOLONG;
  804. maxlen = (NFS_PROTO(dir)->version==2) ? NFS2_MAXPATHLEN : NFS3_MAXPATHLEN;
  805. if (strlen(symname) > maxlen)
  806. goto out;
  807. #ifdef NFS_PARANOIA
  808. if (dentry->d_inode)
  809. printk("nfs_proc_symlink: %s/%s not negative!n",
  810. dentry->d_parent->d_name.name, dentry->d_name.name);
  811. #endif
  812. /*
  813.  * Fill in the sattr for the call.
  814.    * Note: SunOS 4.1.2 crashes if the mode isn't initialized!
  815.  */
  816. attr.ia_valid = ATTR_MODE;
  817. attr.ia_mode = S_IFLNK | S_IRWXUGO;
  818. qsymname.name = symname;
  819. qsymname.len  = strlen(symname);
  820. nfs_zap_caches(dir);
  821. error = NFS_PROTO(dir)->symlink(dir, &dentry->d_name, &qsymname,
  822.   &attr, &sym_fh, &sym_attr);
  823. if (!error && sym_fh.size != 0 && (sym_attr.valid & NFS_ATTR_FATTR)) {
  824. error = nfs_instantiate(dentry, &sym_fh, &sym_attr);
  825. } else {
  826. if (error == -EEXIST)
  827. printk("nfs_proc_symlink: %s/%s already exists??n",
  828.        dentry->d_parent->d_name.name, dentry->d_name.name);
  829. d_drop(dentry);
  830. }
  831. out:
  832. return error;
  833. }
  834. static int 
  835. nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
  836. {
  837. struct inode *inode = old_dentry->d_inode;
  838. int error;
  839. dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)n",
  840. old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  841. dentry->d_parent->d_name.name, dentry->d_name.name);
  842. /*
  843.  * Drop the dentry in advance to force a new lookup.
  844.  * Since nfs_proc_link doesn't return a file handle,
  845.  * we can't use the existing dentry.
  846.  */
  847. d_drop(dentry);
  848. nfs_zap_caches(dir);
  849. NFS_CACHEINV(inode);
  850. error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
  851. return error;
  852. }
  853. /*
  854.  * RENAME
  855.  * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
  856.  * different file handle for the same inode after a rename (e.g. when
  857.  * moving to a different directory). A fail-safe method to do so would
  858.  * be to look up old_dir/old_name, create a link to new_dir/new_name and
  859.  * rename the old file using the sillyrename stuff. This way, the original
  860.  * file in old_dir will go away when the last process iput()s the inode.
  861.  *
  862.  * FIXED.
  863.  * 
  864.  * It actually works quite well. One needs to have the possibility for
  865.  * at least one ".nfs..." file in each directory the file ever gets
  866.  * moved or linked to which happens automagically with the new
  867.  * implementation that only depends on the dcache stuff instead of
  868.  * using the inode layer
  869.  *
  870.  * Unfortunately, things are a little more complicated than indicated
  871.  * above. For a cross-directory move, we want to make sure we can get
  872.  * rid of the old inode after the operation.  This means there must be
  873.  * no pending writes (if it's a file), and the use count must be 1.
  874.  * If these conditions are met, we can drop the dentries before doing
  875.  * the rename.
  876.  */
  877. static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  878.       struct inode *new_dir, struct dentry *new_dentry)
  879. {
  880. struct inode *old_inode = old_dentry->d_inode;
  881. struct inode *new_inode = new_dentry->d_inode;
  882. struct dentry *dentry = NULL, *rehash = NULL;
  883. int error = -EBUSY;
  884. /*
  885.  * To prevent any new references to the target during the rename,
  886.  * we unhash the dentry and free the inode in advance.
  887.  */
  888. if (!d_unhashed(new_dentry)) {
  889. d_drop(new_dentry);
  890. rehash = new_dentry;
  891. }
  892. dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)n",
  893.  old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
  894.  new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
  895.  atomic_read(&new_dentry->d_count));
  896. /*
  897.  * First check whether the target is busy ... we can't
  898.  * safely do _any_ rename if the target is in use.
  899.  *
  900.  * For files, make a copy of the dentry and then do a 
  901.  * silly-rename. If the silly-rename succeeds, the
  902.  * copied dentry is hashed and becomes the new target.
  903.  */
  904. if (!new_inode)
  905. goto go_ahead;
  906. if (S_ISDIR(new_inode->i_mode))
  907. goto out;
  908. else if (atomic_read(&new_dentry->d_count) > 1) {
  909. int err;
  910. /* copy the target dentry's name */
  911. dentry = d_alloc(new_dentry->d_parent,
  912.  &new_dentry->d_name);
  913. if (!dentry)
  914. goto out;
  915. /* silly-rename the existing target ... */
  916. err = nfs_sillyrename(new_dir, new_dentry);
  917. if (!err) {
  918. new_dentry = rehash = dentry;
  919. new_inode = NULL;
  920. /* instantiate the replacement target */
  921. d_instantiate(new_dentry, NULL);
  922. }
  923. /* dentry still busy? */
  924. if (atomic_read(&new_dentry->d_count) > 1) {
  925. #ifdef NFS_PARANOIA
  926. printk("nfs_rename: target %s/%s busy, d_count=%dn",
  927.        new_dentry->d_parent->d_name.name,
  928.        new_dentry->d_name.name,
  929.        atomic_read(&new_dentry->d_count));
  930. #endif
  931. goto out;
  932. }
  933. }
  934. go_ahead:
  935. /*
  936.  * ... prune child dentries and writebacks if needed.
  937.  */
  938. if (atomic_read(&old_dentry->d_count) > 1) {
  939. nfs_wb_all(old_inode);
  940. shrink_dcache_parent(old_dentry);
  941. }
  942. if (new_inode)
  943. d_delete(new_dentry);
  944. nfs_zap_caches(new_dir);
  945. nfs_zap_caches(old_dir);
  946. error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
  947.    new_dir, &new_dentry->d_name);
  948. out:
  949. if (rehash)
  950. d_rehash(rehash);
  951. if (!error && !S_ISDIR(old_inode->i_mode))
  952. d_move(old_dentry, new_dentry);
  953. /* new dentry created? */
  954. if (dentry)
  955. dput(dentry);
  956. return error;
  957. }
  958. int
  959. nfs_permission(struct inode *inode, int mask)
  960. {
  961. int error = vfs_permission(inode, mask);
  962. if (!NFS_PROTO(inode)->access)
  963. goto out;
  964. if (error == -EROFS)
  965. goto out;
  966. /*
  967.  * Trust UNIX mode bits except:
  968.  *
  969.  * 1) When override capabilities may have been invoked
  970.  * 2) When root squashing may be involved
  971.  * 3) When ACLs may overturn a negative answer */
  972. if (!capable(CAP_DAC_OVERRIDE) && !capable(CAP_DAC_READ_SEARCH)
  973.     && (current->fsuid != 0) && (current->fsgid != 0)
  974.     && error != -EACCES)
  975. goto out;
  976. error = NFS_PROTO(inode)->access(inode, mask, 0);
  977. if (error == -EACCES && NFS_CLIENT(inode)->cl_droppriv &&
  978.     current->uid != 0 && current->gid != 0 &&
  979.     (current->fsuid != current->uid || current->fsgid != current->gid))
  980. error = NFS_PROTO(inode)->access(inode, mask, 1);
  981.  out:
  982. return error;
  983. }
  984. /*
  985.  * Local variables:
  986.  *  version-control: t
  987.  *  kept-new-versions: 5
  988.  * End:
  989.  */