11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/fs/nfs/dir.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1992 Rick Sladkey 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * nfs directory handling functions 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * 10 Apr 1996 Added silly rename for unlink --okir 91da177e4SLinus Torvalds * 28 Sep 1996 Improved directory cache --okir 101da177e4SLinus Torvalds * 23 Aug 1997 Claus Heine claus@momo.math.rwth-aachen.de 111da177e4SLinus Torvalds * Re-implemented silly rename for unlink, newly implemented 121da177e4SLinus Torvalds * silly rename for nfs_rename() following the suggestions 131da177e4SLinus Torvalds * of Olaf Kirch (okir) found in this file. 141da177e4SLinus Torvalds * Following Linus comments on my original hack, this version 151da177e4SLinus Torvalds * depends only on the dcache stuff and doesn't touch the inode 161da177e4SLinus Torvalds * layer (iput() and friends). 171da177e4SLinus Torvalds * 6 Jun 1999 Cache readdir lookups in the page cache. -DaveM 181da177e4SLinus Torvalds */ 191da177e4SLinus Torvalds 201da177e4SLinus Torvalds #include <linux/time.h> 211da177e4SLinus Torvalds #include <linux/errno.h> 221da177e4SLinus Torvalds #include <linux/stat.h> 231da177e4SLinus Torvalds #include <linux/fcntl.h> 241da177e4SLinus Torvalds #include <linux/string.h> 251da177e4SLinus Torvalds #include <linux/kernel.h> 261da177e4SLinus Torvalds #include <linux/slab.h> 271da177e4SLinus Torvalds #include <linux/mm.h> 281da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h> 291da177e4SLinus Torvalds #include <linux/nfs_fs.h> 301da177e4SLinus Torvalds #include <linux/nfs_mount.h> 311da177e4SLinus Torvalds #include <linux/pagemap.h> 32873101b3SChuck Lever #include <linux/pagevec.h> 331da177e4SLinus Torvalds #include <linux/namei.h> 3454ceac45SDavid Howells #include <linux/mount.h> 35e8edc6e0SAlexey Dobriyan #include <linux/sched.h> 3604e4bd1cSCatalin Marinas #include <linux/kmemleak.h> 3764c2ce8bSAneesh Kumar K.V #include <linux/xattr.h> 381da177e4SLinus Torvalds 391da177e4SLinus Torvalds #include "delegation.h" 4091d5b470SChuck Lever #include "iostat.h" 414c30d56eSAdrian Bunk #include "internal.h" 42cd9a1c0eSTrond Myklebust #include "fscache.h" 431da177e4SLinus Torvalds 441da177e4SLinus Torvalds /* #define NFS_DEBUG_VERBOSE 1 */ 451da177e4SLinus Torvalds 461da177e4SLinus Torvalds static int nfs_opendir(struct inode *, struct file *); 471da177e4SLinus Torvalds static int nfs_readdir(struct file *, void *, filldir_t); 481da177e4SLinus Torvalds static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *); 491da177e4SLinus Torvalds static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *); 501da177e4SLinus Torvalds static int nfs_mkdir(struct inode *, struct dentry *, int); 511da177e4SLinus Torvalds static int nfs_rmdir(struct inode *, struct dentry *); 521da177e4SLinus Torvalds static int nfs_unlink(struct inode *, struct dentry *); 531da177e4SLinus Torvalds static int nfs_symlink(struct inode *, struct dentry *, const char *); 541da177e4SLinus Torvalds static int nfs_link(struct dentry *, struct inode *, struct dentry *); 551da177e4SLinus Torvalds static int nfs_mknod(struct inode *, struct dentry *, int, dev_t); 561da177e4SLinus Torvalds static int nfs_rename(struct inode *, struct dentry *, 571da177e4SLinus Torvalds struct inode *, struct dentry *); 587ea80859SChristoph Hellwig static int nfs_fsync_dir(struct file *, int); 59f0dd2136STrond Myklebust static loff_t nfs_llseek_dir(struct file *, loff_t, int); 6011de3b11STrond Myklebust static void nfs_readdir_clear_array(struct page*); 611da177e4SLinus Torvalds 624b6f5d20SArjan van de Ven const struct file_operations nfs_dir_operations = { 63f0dd2136STrond Myklebust .llseek = nfs_llseek_dir, 641da177e4SLinus Torvalds .read = generic_read_dir, 651da177e4SLinus Torvalds .readdir = nfs_readdir, 661da177e4SLinus Torvalds .open = nfs_opendir, 671da177e4SLinus Torvalds .release = nfs_release, 681da177e4SLinus Torvalds .fsync = nfs_fsync_dir, 691da177e4SLinus Torvalds }; 701da177e4SLinus Torvalds 7192e1d5beSArjan van de Ven const struct inode_operations nfs_dir_inode_operations = { 721da177e4SLinus Torvalds .create = nfs_create, 731da177e4SLinus Torvalds .lookup = nfs_lookup, 741da177e4SLinus Torvalds .link = nfs_link, 751da177e4SLinus Torvalds .unlink = nfs_unlink, 761da177e4SLinus Torvalds .symlink = nfs_symlink, 771da177e4SLinus Torvalds .mkdir = nfs_mkdir, 781da177e4SLinus Torvalds .rmdir = nfs_rmdir, 791da177e4SLinus Torvalds .mknod = nfs_mknod, 801da177e4SLinus Torvalds .rename = nfs_rename, 811da177e4SLinus Torvalds .permission = nfs_permission, 821da177e4SLinus Torvalds .getattr = nfs_getattr, 831da177e4SLinus Torvalds .setattr = nfs_setattr, 841da177e4SLinus Torvalds }; 851da177e4SLinus Torvalds 8611de3b11STrond Myklebust const struct address_space_operations nfs_dir_aops = { 8711de3b11STrond Myklebust .freepage = nfs_readdir_clear_array, 88d1bacf9eSBryan Schumaker }; 89d1bacf9eSBryan Schumaker 90b7fa0554SAndreas Gruenbacher #ifdef CONFIG_NFS_V3 9192e1d5beSArjan van de Ven const struct inode_operations nfs3_dir_inode_operations = { 92b7fa0554SAndreas Gruenbacher .create = nfs_create, 93b7fa0554SAndreas Gruenbacher .lookup = nfs_lookup, 94b7fa0554SAndreas Gruenbacher .link = nfs_link, 95b7fa0554SAndreas Gruenbacher .unlink = nfs_unlink, 96b7fa0554SAndreas Gruenbacher .symlink = nfs_symlink, 97b7fa0554SAndreas Gruenbacher .mkdir = nfs_mkdir, 98b7fa0554SAndreas Gruenbacher .rmdir = nfs_rmdir, 99b7fa0554SAndreas Gruenbacher .mknod = nfs_mknod, 100b7fa0554SAndreas Gruenbacher .rename = nfs_rename, 101b7fa0554SAndreas Gruenbacher .permission = nfs_permission, 102b7fa0554SAndreas Gruenbacher .getattr = nfs_getattr, 103b7fa0554SAndreas Gruenbacher .setattr = nfs_setattr, 104b7fa0554SAndreas Gruenbacher .listxattr = nfs3_listxattr, 105b7fa0554SAndreas Gruenbacher .getxattr = nfs3_getxattr, 106b7fa0554SAndreas Gruenbacher .setxattr = nfs3_setxattr, 107b7fa0554SAndreas Gruenbacher .removexattr = nfs3_removexattr, 108b7fa0554SAndreas Gruenbacher }; 109b7fa0554SAndreas Gruenbacher #endif /* CONFIG_NFS_V3 */ 110b7fa0554SAndreas Gruenbacher 1111da177e4SLinus Torvalds #ifdef CONFIG_NFS_V4 1121da177e4SLinus Torvalds 1131da177e4SLinus Torvalds static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *); 114c0204fd2STrond Myklebust static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd); 11592e1d5beSArjan van de Ven const struct inode_operations nfs4_dir_inode_operations = { 116c0204fd2STrond Myklebust .create = nfs_open_create, 1171da177e4SLinus Torvalds .lookup = nfs_atomic_lookup, 1181da177e4SLinus Torvalds .link = nfs_link, 1191da177e4SLinus Torvalds .unlink = nfs_unlink, 1201da177e4SLinus Torvalds .symlink = nfs_symlink, 1211da177e4SLinus Torvalds .mkdir = nfs_mkdir, 1221da177e4SLinus Torvalds .rmdir = nfs_rmdir, 1231da177e4SLinus Torvalds .mknod = nfs_mknod, 1241da177e4SLinus Torvalds .rename = nfs_rename, 1251da177e4SLinus Torvalds .permission = nfs_permission, 1261da177e4SLinus Torvalds .getattr = nfs_getattr, 1271da177e4SLinus Torvalds .setattr = nfs_setattr, 12864c2ce8bSAneesh Kumar K.V .getxattr = generic_getxattr, 12964c2ce8bSAneesh Kumar K.V .setxattr = generic_setxattr, 13064c2ce8bSAneesh Kumar K.V .listxattr = generic_listxattr, 13164c2ce8bSAneesh Kumar K.V .removexattr = generic_removexattr, 1321da177e4SLinus Torvalds }; 1331da177e4SLinus Torvalds 1341da177e4SLinus Torvalds #endif /* CONFIG_NFS_V4 */ 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvalds /* 1371da177e4SLinus Torvalds * Open file 1381da177e4SLinus Torvalds */ 1391da177e4SLinus Torvalds static int 1401da177e4SLinus Torvalds nfs_opendir(struct inode *inode, struct file *filp) 1411da177e4SLinus Torvalds { 1427451c4f0SCarsten Otte int res; 1431da177e4SLinus Torvalds 1446da24bc9SChuck Lever dfprintk(FILE, "NFS: open dir(%s/%s)\n", 145cc0dd2d1SChuck Lever filp->f_path.dentry->d_parent->d_name.name, 146cc0dd2d1SChuck Lever filp->f_path.dentry->d_name.name); 147cc0dd2d1SChuck Lever 148cc0dd2d1SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSOPEN); 1491e7cb3dcSChuck Lever 1501da177e4SLinus Torvalds /* Call generic open code in order to cache credentials */ 1511da177e4SLinus Torvalds res = nfs_open(inode, filp); 152f5a73672SNeil Brown if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) { 153f5a73672SNeil Brown /* This is a mountpoint, so d_revalidate will never 154f5a73672SNeil Brown * have been called, so we need to refresh the 155f5a73672SNeil Brown * inode (for close-open consistency) ourselves. 156f5a73672SNeil Brown */ 157f5a73672SNeil Brown __nfs_revalidate_inode(NFS_SERVER(inode), inode); 158f5a73672SNeil Brown } 1591da177e4SLinus Torvalds return res; 1601da177e4SLinus Torvalds } 1611da177e4SLinus Torvalds 162d1bacf9eSBryan Schumaker struct nfs_cache_array_entry { 163d1bacf9eSBryan Schumaker u64 cookie; 164d1bacf9eSBryan Schumaker u64 ino; 165d1bacf9eSBryan Schumaker struct qstr string; 1660b26a0bfSTrond Myklebust unsigned char d_type; 167d1bacf9eSBryan Schumaker }; 168d1bacf9eSBryan Schumaker 169d1bacf9eSBryan Schumaker struct nfs_cache_array { 170d1bacf9eSBryan Schumaker unsigned int size; 171d1bacf9eSBryan Schumaker int eof_index; 172d1bacf9eSBryan Schumaker u64 last_cookie; 173d1bacf9eSBryan Schumaker struct nfs_cache_array_entry array[0]; 174d1bacf9eSBryan Schumaker }; 175d1bacf9eSBryan Schumaker 176573c4e1eSChuck Lever typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int); 1771da177e4SLinus Torvalds typedef struct { 1781da177e4SLinus Torvalds struct file *file; 1791da177e4SLinus Torvalds struct page *page; 1801da177e4SLinus Torvalds unsigned long page_index; 181f0dd2136STrond Myklebust u64 *dir_cookie; 1820aded708STrond Myklebust u64 last_cookie; 183f0dd2136STrond Myklebust loff_t current_index; 1841da177e4SLinus Torvalds decode_dirent_t decode; 185d1bacf9eSBryan Schumaker 1861f4eab7eSNeil Brown unsigned long timestamp; 1874704f0e2STrond Myklebust unsigned long gencount; 188d1bacf9eSBryan Schumaker unsigned int cache_entry_index; 189d1bacf9eSBryan Schumaker unsigned int plus:1; 190d1bacf9eSBryan Schumaker unsigned int eof:1; 1911da177e4SLinus Torvalds } nfs_readdir_descriptor_t; 1921da177e4SLinus Torvalds 193d1bacf9eSBryan Schumaker /* 194d1bacf9eSBryan Schumaker * The caller is responsible for calling nfs_readdir_release_array(page) 1951da177e4SLinus Torvalds */ 1961da177e4SLinus Torvalds static 197d1bacf9eSBryan Schumaker struct nfs_cache_array *nfs_readdir_get_array(struct page *page) 1981da177e4SLinus Torvalds { 1998cd51a0cSTrond Myklebust void *ptr; 200d1bacf9eSBryan Schumaker if (page == NULL) 201d1bacf9eSBryan Schumaker return ERR_PTR(-EIO); 2028cd51a0cSTrond Myklebust ptr = kmap(page); 2038cd51a0cSTrond Myklebust if (ptr == NULL) 2048cd51a0cSTrond Myklebust return ERR_PTR(-ENOMEM); 2058cd51a0cSTrond Myklebust return ptr; 206d1bacf9eSBryan Schumaker } 207d1bacf9eSBryan Schumaker 208d1bacf9eSBryan Schumaker static 209d1bacf9eSBryan Schumaker void nfs_readdir_release_array(struct page *page) 210d1bacf9eSBryan Schumaker { 211d1bacf9eSBryan Schumaker kunmap(page); 212d1bacf9eSBryan Schumaker } 213d1bacf9eSBryan Schumaker 214d1bacf9eSBryan Schumaker /* 215d1bacf9eSBryan Schumaker * we are freeing strings created by nfs_add_to_readdir_array() 216d1bacf9eSBryan Schumaker */ 217d1bacf9eSBryan Schumaker static 21811de3b11STrond Myklebust void nfs_readdir_clear_array(struct page *page) 219d1bacf9eSBryan Schumaker { 22011de3b11STrond Myklebust struct nfs_cache_array *array; 221d1bacf9eSBryan Schumaker int i; 2228cd51a0cSTrond Myklebust 22311de3b11STrond Myklebust array = kmap_atomic(page, KM_USER0); 224d1bacf9eSBryan Schumaker for (i = 0; i < array->size; i++) 225d1bacf9eSBryan Schumaker kfree(array->array[i].string.name); 22611de3b11STrond Myklebust kunmap_atomic(array, KM_USER0); 227d1bacf9eSBryan Schumaker } 228d1bacf9eSBryan Schumaker 229d1bacf9eSBryan Schumaker /* 230d1bacf9eSBryan Schumaker * the caller is responsible for freeing qstr.name 231d1bacf9eSBryan Schumaker * when called by nfs_readdir_add_to_array, the strings will be freed in 232d1bacf9eSBryan Schumaker * nfs_clear_readdir_array() 233d1bacf9eSBryan Schumaker */ 234d1bacf9eSBryan Schumaker static 2354a201d6eSTrond Myklebust int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len) 236d1bacf9eSBryan Schumaker { 237d1bacf9eSBryan Schumaker string->len = len; 238d1bacf9eSBryan Schumaker string->name = kmemdup(name, len, GFP_KERNEL); 2394a201d6eSTrond Myklebust if (string->name == NULL) 2404a201d6eSTrond Myklebust return -ENOMEM; 24104e4bd1cSCatalin Marinas /* 24204e4bd1cSCatalin Marinas * Avoid a kmemleak false positive. The pointer to the name is stored 24304e4bd1cSCatalin Marinas * in a page cache page which kmemleak does not scan. 24404e4bd1cSCatalin Marinas */ 24504e4bd1cSCatalin Marinas kmemleak_not_leak(string->name); 2464a201d6eSTrond Myklebust string->hash = full_name_hash(name, len); 2474a201d6eSTrond Myklebust return 0; 248d1bacf9eSBryan Schumaker } 249d1bacf9eSBryan Schumaker 250d1bacf9eSBryan Schumaker static 251d1bacf9eSBryan Schumaker int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page) 252d1bacf9eSBryan Schumaker { 253d1bacf9eSBryan Schumaker struct nfs_cache_array *array = nfs_readdir_get_array(page); 2544a201d6eSTrond Myklebust struct nfs_cache_array_entry *cache_entry; 2554a201d6eSTrond Myklebust int ret; 2564a201d6eSTrond Myklebust 257d1bacf9eSBryan Schumaker if (IS_ERR(array)) 258d1bacf9eSBryan Schumaker return PTR_ERR(array); 259d1bacf9eSBryan Schumaker 2604a201d6eSTrond Myklebust cache_entry = &array->array[array->size]; 2613020093fSTrond Myklebust 2623020093fSTrond Myklebust /* Check that this entry lies within the page bounds */ 2633020093fSTrond Myklebust ret = -ENOSPC; 2643020093fSTrond Myklebust if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE) 2653020093fSTrond Myklebust goto out; 2663020093fSTrond Myklebust 2674a201d6eSTrond Myklebust cache_entry->cookie = entry->prev_cookie; 2684a201d6eSTrond Myklebust cache_entry->ino = entry->ino; 2690b26a0bfSTrond Myklebust cache_entry->d_type = entry->d_type; 2704a201d6eSTrond Myklebust ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len); 2714a201d6eSTrond Myklebust if (ret) 2724a201d6eSTrond Myklebust goto out; 273d1bacf9eSBryan Schumaker array->last_cookie = entry->cookie; 2748cd51a0cSTrond Myklebust array->size++; 27547c716cbSTrond Myklebust if (entry->eof != 0) 276d1bacf9eSBryan Schumaker array->eof_index = array->size; 2774a201d6eSTrond Myklebust out: 278d1bacf9eSBryan Schumaker nfs_readdir_release_array(page); 2794a201d6eSTrond Myklebust return ret; 280d1bacf9eSBryan Schumaker } 281d1bacf9eSBryan Schumaker 282d1bacf9eSBryan Schumaker static 283d1bacf9eSBryan Schumaker int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc) 284d1bacf9eSBryan Schumaker { 285d1bacf9eSBryan Schumaker loff_t diff = desc->file->f_pos - desc->current_index; 286d1bacf9eSBryan Schumaker unsigned int index; 287d1bacf9eSBryan Schumaker 288d1bacf9eSBryan Schumaker if (diff < 0) 289d1bacf9eSBryan Schumaker goto out_eof; 290d1bacf9eSBryan Schumaker if (diff >= array->size) { 2918cd51a0cSTrond Myklebust if (array->eof_index >= 0) 292d1bacf9eSBryan Schumaker goto out_eof; 293d1bacf9eSBryan Schumaker return -EAGAIN; 294d1bacf9eSBryan Schumaker } 295d1bacf9eSBryan Schumaker 296d1bacf9eSBryan Schumaker index = (unsigned int)diff; 297d1bacf9eSBryan Schumaker *desc->dir_cookie = array->array[index].cookie; 298d1bacf9eSBryan Schumaker desc->cache_entry_index = index; 299d1bacf9eSBryan Schumaker return 0; 300d1bacf9eSBryan Schumaker out_eof: 301d1bacf9eSBryan Schumaker desc->eof = 1; 302d1bacf9eSBryan Schumaker return -EBADCOOKIE; 303d1bacf9eSBryan Schumaker } 304d1bacf9eSBryan Schumaker 305d1bacf9eSBryan Schumaker static 306d1bacf9eSBryan Schumaker int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc) 307d1bacf9eSBryan Schumaker { 308d1bacf9eSBryan Schumaker int i; 309d1bacf9eSBryan Schumaker int status = -EAGAIN; 310d1bacf9eSBryan Schumaker 311d1bacf9eSBryan Schumaker for (i = 0; i < array->size; i++) { 3128cd51a0cSTrond Myklebust if (array->array[i].cookie == *desc->dir_cookie) { 313*e47c085aSTrond Myklebust desc->file->f_pos = desc->current_index + i; 3148cd51a0cSTrond Myklebust desc->cache_entry_index = i; 31547c716cbSTrond Myklebust return 0; 3168cd51a0cSTrond Myklebust } 3178cd51a0cSTrond Myklebust } 31847c716cbSTrond Myklebust if (array->eof_index >= 0) { 319d1bacf9eSBryan Schumaker status = -EBADCOOKIE; 32018fb5fe4STrond Myklebust if (*desc->dir_cookie == array->last_cookie) 32118fb5fe4STrond Myklebust desc->eof = 1; 322d1bacf9eSBryan Schumaker } 323d1bacf9eSBryan Schumaker return status; 324d1bacf9eSBryan Schumaker } 325d1bacf9eSBryan Schumaker 326d1bacf9eSBryan Schumaker static 327d1bacf9eSBryan Schumaker int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc) 328d1bacf9eSBryan Schumaker { 329d1bacf9eSBryan Schumaker struct nfs_cache_array *array; 33047c716cbSTrond Myklebust int status; 331d1bacf9eSBryan Schumaker 332d1bacf9eSBryan Schumaker array = nfs_readdir_get_array(desc->page); 333d1bacf9eSBryan Schumaker if (IS_ERR(array)) { 334d1bacf9eSBryan Schumaker status = PTR_ERR(array); 335d1bacf9eSBryan Schumaker goto out; 336d1bacf9eSBryan Schumaker } 337d1bacf9eSBryan Schumaker 338d1bacf9eSBryan Schumaker if (*desc->dir_cookie == 0) 339d1bacf9eSBryan Schumaker status = nfs_readdir_search_for_pos(array, desc); 340d1bacf9eSBryan Schumaker else 341d1bacf9eSBryan Schumaker status = nfs_readdir_search_for_cookie(array, desc); 342d1bacf9eSBryan Schumaker 34347c716cbSTrond Myklebust if (status == -EAGAIN) { 3440aded708STrond Myklebust desc->last_cookie = array->last_cookie; 345*e47c085aSTrond Myklebust desc->current_index += array->size; 34647c716cbSTrond Myklebust desc->page_index++; 34747c716cbSTrond Myklebust } 348d1bacf9eSBryan Schumaker nfs_readdir_release_array(desc->page); 349d1bacf9eSBryan Schumaker out: 350d1bacf9eSBryan Schumaker return status; 351d1bacf9eSBryan Schumaker } 352d1bacf9eSBryan Schumaker 353d1bacf9eSBryan Schumaker /* Fill a page with xdr information before transferring to the cache page */ 354d1bacf9eSBryan Schumaker static 35556e4ebf8SBryan Schumaker int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc, 356d1bacf9eSBryan Schumaker struct nfs_entry *entry, struct file *file, struct inode *inode) 357d1bacf9eSBryan Schumaker { 3581da177e4SLinus Torvalds struct rpc_cred *cred = nfs_file_cred(file); 3594704f0e2STrond Myklebust unsigned long timestamp, gencount; 3601da177e4SLinus Torvalds int error; 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvalds again: 3631da177e4SLinus Torvalds timestamp = jiffies; 3644704f0e2STrond Myklebust gencount = nfs_inc_attr_generation_counter(); 36556e4ebf8SBryan Schumaker error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages, 3661da177e4SLinus Torvalds NFS_SERVER(inode)->dtsize, desc->plus); 3671da177e4SLinus Torvalds if (error < 0) { 3681da177e4SLinus Torvalds /* We requested READDIRPLUS, but the server doesn't grok it */ 3691da177e4SLinus Torvalds if (error == -ENOTSUPP && desc->plus) { 3701da177e4SLinus Torvalds NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS; 3713a10c30aSBenny Halevy clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags); 3721da177e4SLinus Torvalds desc->plus = 0; 3731da177e4SLinus Torvalds goto again; 3741da177e4SLinus Torvalds } 3751da177e4SLinus Torvalds goto error; 3761da177e4SLinus Torvalds } 3771f4eab7eSNeil Brown desc->timestamp = timestamp; 3784704f0e2STrond Myklebust desc->gencount = gencount; 379d1bacf9eSBryan Schumaker error: 380d1bacf9eSBryan Schumaker return error; 381d1bacf9eSBryan Schumaker } 382d1bacf9eSBryan Schumaker 383573c4e1eSChuck Lever static int xdr_decode(nfs_readdir_descriptor_t *desc, 384573c4e1eSChuck Lever struct nfs_entry *entry, struct xdr_stream *xdr) 385d1bacf9eSBryan Schumaker { 386573c4e1eSChuck Lever int error; 387d1bacf9eSBryan Schumaker 388573c4e1eSChuck Lever error = desc->decode(xdr, entry, desc->plus); 389573c4e1eSChuck Lever if (error) 390573c4e1eSChuck Lever return error; 391d1bacf9eSBryan Schumaker entry->fattr->time_start = desc->timestamp; 392d1bacf9eSBryan Schumaker entry->fattr->gencount = desc->gencount; 393d1bacf9eSBryan Schumaker return 0; 394d1bacf9eSBryan Schumaker } 395d1bacf9eSBryan Schumaker 396d39ab9deSBryan Schumaker static 397d39ab9deSBryan Schumaker int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry) 398d39ab9deSBryan Schumaker { 399d39ab9deSBryan Schumaker if (dentry->d_inode == NULL) 400d39ab9deSBryan Schumaker goto different; 40137a09f07STrond Myklebust if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0) 402d39ab9deSBryan Schumaker goto different; 403d39ab9deSBryan Schumaker return 1; 404d39ab9deSBryan Schumaker different: 405d39ab9deSBryan Schumaker return 0; 406d39ab9deSBryan Schumaker } 407d39ab9deSBryan Schumaker 408d39ab9deSBryan Schumaker static 409d39ab9deSBryan Schumaker void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry) 410d39ab9deSBryan Schumaker { 4114a201d6eSTrond Myklebust struct qstr filename = { 4124a201d6eSTrond Myklebust .len = entry->len, 4134a201d6eSTrond Myklebust .name = entry->name, 4144a201d6eSTrond Myklebust }; 4154a201d6eSTrond Myklebust struct dentry *dentry; 4164a201d6eSTrond Myklebust struct dentry *alias; 417d39ab9deSBryan Schumaker struct inode *dir = parent->d_inode; 418d39ab9deSBryan Schumaker struct inode *inode; 419d39ab9deSBryan Schumaker 4204a201d6eSTrond Myklebust if (filename.name[0] == '.') { 4214a201d6eSTrond Myklebust if (filename.len == 1) 4224a201d6eSTrond Myklebust return; 4234a201d6eSTrond Myklebust if (filename.len == 2 && filename.name[1] == '.') 4244a201d6eSTrond Myklebust return; 4254a201d6eSTrond Myklebust } 4264a201d6eSTrond Myklebust filename.hash = full_name_hash(filename.name, filename.len); 427d39ab9deSBryan Schumaker 4284a201d6eSTrond Myklebust dentry = d_lookup(parent, &filename); 429d39ab9deSBryan Schumaker if (dentry != NULL) { 430d39ab9deSBryan Schumaker if (nfs_same_file(dentry, entry)) { 431d39ab9deSBryan Schumaker nfs_refresh_inode(dentry->d_inode, entry->fattr); 432d39ab9deSBryan Schumaker goto out; 433d39ab9deSBryan Schumaker } else { 434d39ab9deSBryan Schumaker d_drop(dentry); 435d39ab9deSBryan Schumaker dput(dentry); 436d39ab9deSBryan Schumaker } 437d39ab9deSBryan Schumaker } 438d39ab9deSBryan Schumaker 439d39ab9deSBryan Schumaker dentry = d_alloc(parent, &filename); 4404a201d6eSTrond Myklebust if (dentry == NULL) 4414a201d6eSTrond Myklebust return; 4424a201d6eSTrond Myklebust 443d39ab9deSBryan Schumaker inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr); 444d39ab9deSBryan Schumaker if (IS_ERR(inode)) 445d39ab9deSBryan Schumaker goto out; 446d39ab9deSBryan Schumaker 447d39ab9deSBryan Schumaker alias = d_materialise_unique(dentry, inode); 448d39ab9deSBryan Schumaker if (IS_ERR(alias)) 449d39ab9deSBryan Schumaker goto out; 450d39ab9deSBryan Schumaker else if (alias) { 451d39ab9deSBryan Schumaker nfs_set_verifier(alias, nfs_save_change_attribute(dir)); 452d39ab9deSBryan Schumaker dput(alias); 453d39ab9deSBryan Schumaker } else 454d39ab9deSBryan Schumaker nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 455d39ab9deSBryan Schumaker 456d39ab9deSBryan Schumaker out: 457d39ab9deSBryan Schumaker dput(dentry); 458d39ab9deSBryan Schumaker } 459d39ab9deSBryan Schumaker 460d1bacf9eSBryan Schumaker /* Perform conversion from xdr to cache array */ 461d1bacf9eSBryan Schumaker static 4628cd51a0cSTrond Myklebust int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, 4636650239aSTrond Myklebust struct page **xdr_pages, struct page *page, unsigned int buflen) 464d1bacf9eSBryan Schumaker { 465babddc72SBryan Schumaker struct xdr_stream stream; 4666650239aSTrond Myklebust struct xdr_buf buf = { 4676650239aSTrond Myklebust .pages = xdr_pages, 4686650239aSTrond Myklebust .page_len = buflen, 4696650239aSTrond Myklebust .buflen = buflen, 4706650239aSTrond Myklebust .len = buflen, 4716650239aSTrond Myklebust }; 4726650239aSTrond Myklebust struct page *scratch; 47399424380SBryan Schumaker struct nfs_cache_array *array; 4745c346854STrond Myklebust unsigned int count = 0; 4755c346854STrond Myklebust int status; 476babddc72SBryan Schumaker 4776650239aSTrond Myklebust scratch = alloc_page(GFP_KERNEL); 4786650239aSTrond Myklebust if (scratch == NULL) 4796650239aSTrond Myklebust return -ENOMEM; 480babddc72SBryan Schumaker 4816650239aSTrond Myklebust xdr_init_decode(&stream, &buf, NULL); 4826650239aSTrond Myklebust xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); 48399424380SBryan Schumaker 48499424380SBryan Schumaker do { 48599424380SBryan Schumaker status = xdr_decode(desc, entry, &stream); 4868cd51a0cSTrond Myklebust if (status != 0) { 4878cd51a0cSTrond Myklebust if (status == -EAGAIN) 4888cd51a0cSTrond Myklebust status = 0; 48999424380SBryan Schumaker break; 4908cd51a0cSTrond Myklebust } 49199424380SBryan Schumaker 4925c346854STrond Myklebust count++; 4935c346854STrond Myklebust 49447c716cbSTrond Myklebust if (desc->plus != 0) 495d39ab9deSBryan Schumaker nfs_prime_dcache(desc->file->f_path.dentry, entry); 4968cd51a0cSTrond Myklebust 4978cd51a0cSTrond Myklebust status = nfs_readdir_add_to_array(entry, page); 4988cd51a0cSTrond Myklebust if (status != 0) 4998cd51a0cSTrond Myklebust break; 50099424380SBryan Schumaker } while (!entry->eof); 50199424380SBryan Schumaker 50247c716cbSTrond Myklebust if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) { 50399424380SBryan Schumaker array = nfs_readdir_get_array(page); 5048cd51a0cSTrond Myklebust if (!IS_ERR(array)) { 5058cd51a0cSTrond Myklebust array->eof_index = array->size; 50699424380SBryan Schumaker status = 0; 50799424380SBryan Schumaker nfs_readdir_release_array(page); 5085c346854STrond Myklebust } else 5095c346854STrond Myklebust status = PTR_ERR(array); 51056e4ebf8SBryan Schumaker } 5116650239aSTrond Myklebust 5126650239aSTrond Myklebust put_page(scratch); 5138cd51a0cSTrond Myklebust return status; 5148cd51a0cSTrond Myklebust } 51556e4ebf8SBryan Schumaker 51656e4ebf8SBryan Schumaker static 51756e4ebf8SBryan Schumaker void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages) 51856e4ebf8SBryan Schumaker { 51956e4ebf8SBryan Schumaker unsigned int i; 52056e4ebf8SBryan Schumaker for (i = 0; i < npages; i++) 52156e4ebf8SBryan Schumaker put_page(pages[i]); 52256e4ebf8SBryan Schumaker } 52356e4ebf8SBryan Schumaker 52456e4ebf8SBryan Schumaker static 52556e4ebf8SBryan Schumaker void nfs_readdir_free_large_page(void *ptr, struct page **pages, 52656e4ebf8SBryan Schumaker unsigned int npages) 52756e4ebf8SBryan Schumaker { 52856e4ebf8SBryan Schumaker nfs_readdir_free_pagearray(pages, npages); 52956e4ebf8SBryan Schumaker } 53056e4ebf8SBryan Schumaker 53156e4ebf8SBryan Schumaker /* 53256e4ebf8SBryan Schumaker * nfs_readdir_large_page will allocate pages that must be freed with a call 53356e4ebf8SBryan Schumaker * to nfs_readdir_free_large_page 53456e4ebf8SBryan Schumaker */ 53556e4ebf8SBryan Schumaker static 5366650239aSTrond Myklebust int nfs_readdir_large_page(struct page **pages, unsigned int npages) 53756e4ebf8SBryan Schumaker { 53856e4ebf8SBryan Schumaker unsigned int i; 53956e4ebf8SBryan Schumaker 54056e4ebf8SBryan Schumaker for (i = 0; i < npages; i++) { 54156e4ebf8SBryan Schumaker struct page *page = alloc_page(GFP_KERNEL); 54256e4ebf8SBryan Schumaker if (page == NULL) 54356e4ebf8SBryan Schumaker goto out_freepages; 54456e4ebf8SBryan Schumaker pages[i] = page; 54556e4ebf8SBryan Schumaker } 5466650239aSTrond Myklebust return 0; 54756e4ebf8SBryan Schumaker 54856e4ebf8SBryan Schumaker out_freepages: 54956e4ebf8SBryan Schumaker nfs_readdir_free_pagearray(pages, i); 5506650239aSTrond Myklebust return -ENOMEM; 551d1bacf9eSBryan Schumaker } 552d1bacf9eSBryan Schumaker 553d1bacf9eSBryan Schumaker static 554d1bacf9eSBryan Schumaker int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode) 555d1bacf9eSBryan Schumaker { 55656e4ebf8SBryan Schumaker struct page *pages[NFS_MAX_READDIR_PAGES]; 55756e4ebf8SBryan Schumaker void *pages_ptr = NULL; 558d1bacf9eSBryan Schumaker struct nfs_entry entry; 559d1bacf9eSBryan Schumaker struct file *file = desc->file; 560d1bacf9eSBryan Schumaker struct nfs_cache_array *array; 5618cd51a0cSTrond Myklebust int status = -ENOMEM; 56256e4ebf8SBryan Schumaker unsigned int array_size = ARRAY_SIZE(pages); 563d1bacf9eSBryan Schumaker 564d1bacf9eSBryan Schumaker entry.prev_cookie = 0; 5650aded708STrond Myklebust entry.cookie = desc->last_cookie; 566d1bacf9eSBryan Schumaker entry.eof = 0; 567d1bacf9eSBryan Schumaker entry.fh = nfs_alloc_fhandle(); 568d1bacf9eSBryan Schumaker entry.fattr = nfs_alloc_fattr(); 569573c4e1eSChuck Lever entry.server = NFS_SERVER(inode); 570d1bacf9eSBryan Schumaker if (entry.fh == NULL || entry.fattr == NULL) 571d1bacf9eSBryan Schumaker goto out; 572d1bacf9eSBryan Schumaker 573d1bacf9eSBryan Schumaker array = nfs_readdir_get_array(page); 5748cd51a0cSTrond Myklebust if (IS_ERR(array)) { 5758cd51a0cSTrond Myklebust status = PTR_ERR(array); 5768cd51a0cSTrond Myklebust goto out; 5778cd51a0cSTrond Myklebust } 578d1bacf9eSBryan Schumaker memset(array, 0, sizeof(struct nfs_cache_array)); 579d1bacf9eSBryan Schumaker array->eof_index = -1; 580d1bacf9eSBryan Schumaker 5816650239aSTrond Myklebust status = nfs_readdir_large_page(pages, array_size); 5826650239aSTrond Myklebust if (status < 0) 583d1bacf9eSBryan Schumaker goto out_release_array; 584d1bacf9eSBryan Schumaker do { 585ac396128STrond Myklebust unsigned int pglen; 58656e4ebf8SBryan Schumaker status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode); 587babddc72SBryan Schumaker 588d1bacf9eSBryan Schumaker if (status < 0) 589d1bacf9eSBryan Schumaker break; 590ac396128STrond Myklebust pglen = status; 5916650239aSTrond Myklebust status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen); 5928cd51a0cSTrond Myklebust if (status < 0) { 5938cd51a0cSTrond Myklebust if (status == -ENOSPC) 5948cd51a0cSTrond Myklebust status = 0; 5958cd51a0cSTrond Myklebust break; 5968cd51a0cSTrond Myklebust } 5978cd51a0cSTrond Myklebust } while (array->eof_index < 0); 598d1bacf9eSBryan Schumaker 59956e4ebf8SBryan Schumaker nfs_readdir_free_large_page(pages_ptr, pages, array_size); 600d1bacf9eSBryan Schumaker out_release_array: 601d1bacf9eSBryan Schumaker nfs_readdir_release_array(page); 602d1bacf9eSBryan Schumaker out: 603d1bacf9eSBryan Schumaker nfs_free_fattr(entry.fattr); 604d1bacf9eSBryan Schumaker nfs_free_fhandle(entry.fh); 605d1bacf9eSBryan Schumaker return status; 606d1bacf9eSBryan Schumaker } 607d1bacf9eSBryan Schumaker 608d1bacf9eSBryan Schumaker /* 609d1bacf9eSBryan Schumaker * Now we cache directories properly, by converting xdr information 610d1bacf9eSBryan Schumaker * to an array that can be used for lookups later. This results in 611d1bacf9eSBryan Schumaker * fewer cache pages, since we can store more information on each page. 612d1bacf9eSBryan Schumaker * We only need to convert from xdr once so future lookups are much simpler 6131da177e4SLinus Torvalds */ 614d1bacf9eSBryan Schumaker static 615d1bacf9eSBryan Schumaker int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page) 616d1bacf9eSBryan Schumaker { 617d1bacf9eSBryan Schumaker struct inode *inode = desc->file->f_path.dentry->d_inode; 6188cd51a0cSTrond Myklebust int ret; 619d1bacf9eSBryan Schumaker 6208cd51a0cSTrond Myklebust ret = nfs_readdir_xdr_to_array(desc, page, inode); 6218cd51a0cSTrond Myklebust if (ret < 0) 622d1bacf9eSBryan Schumaker goto error; 623d1bacf9eSBryan Schumaker SetPageUptodate(page); 624d1bacf9eSBryan Schumaker 6252aac05a9STrond Myklebust if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) { 626cd9ae2b6STrond Myklebust /* Should never happen */ 627cd9ae2b6STrond Myklebust nfs_zap_mapping(inode, inode->i_mapping); 628cd9ae2b6STrond Myklebust } 6291da177e4SLinus Torvalds unlock_page(page); 6301da177e4SLinus Torvalds return 0; 6311da177e4SLinus Torvalds error: 6321da177e4SLinus Torvalds unlock_page(page); 6338cd51a0cSTrond Myklebust return ret; 6341da177e4SLinus Torvalds } 6351da177e4SLinus Torvalds 636d1bacf9eSBryan Schumaker static 637d1bacf9eSBryan Schumaker void cache_page_release(nfs_readdir_descriptor_t *desc) 6381da177e4SLinus Torvalds { 63911de3b11STrond Myklebust if (!desc->page->mapping) 64011de3b11STrond Myklebust nfs_readdir_clear_array(desc->page); 6411da177e4SLinus Torvalds page_cache_release(desc->page); 6421da177e4SLinus Torvalds desc->page = NULL; 6431da177e4SLinus Torvalds } 6441da177e4SLinus Torvalds 645d1bacf9eSBryan Schumaker static 646d1bacf9eSBryan Schumaker struct page *get_cache_page(nfs_readdir_descriptor_t *desc) 6471da177e4SLinus Torvalds { 6488cd51a0cSTrond Myklebust return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping, 649d1bacf9eSBryan Schumaker desc->page_index, (filler_t *)nfs_readdir_filler, desc); 6501da177e4SLinus Torvalds } 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvalds /* 653d1bacf9eSBryan Schumaker * Returns 0 if desc->dir_cookie was found on page desc->page_index 6541da177e4SLinus Torvalds */ 655d1bacf9eSBryan Schumaker static 656d1bacf9eSBryan Schumaker int find_cache_page(nfs_readdir_descriptor_t *desc) 657d1bacf9eSBryan Schumaker { 658d1bacf9eSBryan Schumaker int res; 659d1bacf9eSBryan Schumaker 660d1bacf9eSBryan Schumaker desc->page = get_cache_page(desc); 661d1bacf9eSBryan Schumaker if (IS_ERR(desc->page)) 662d1bacf9eSBryan Schumaker return PTR_ERR(desc->page); 663d1bacf9eSBryan Schumaker 664d1bacf9eSBryan Schumaker res = nfs_readdir_search_array(desc); 66547c716cbSTrond Myklebust if (res != 0) 666d1bacf9eSBryan Schumaker cache_page_release(desc); 667d1bacf9eSBryan Schumaker return res; 668d1bacf9eSBryan Schumaker } 669d1bacf9eSBryan Schumaker 670d1bacf9eSBryan Schumaker /* Search for desc->dir_cookie from the beginning of the page cache */ 6711da177e4SLinus Torvalds static inline 6721da177e4SLinus Torvalds int readdir_search_pagecache(nfs_readdir_descriptor_t *desc) 6731da177e4SLinus Torvalds { 6748cd51a0cSTrond Myklebust int res; 675d1bacf9eSBryan Schumaker 6760aded708STrond Myklebust if (desc->page_index == 0) { 6778cd51a0cSTrond Myklebust desc->current_index = 0; 6780aded708STrond Myklebust desc->last_cookie = 0; 6790aded708STrond Myklebust } 68047c716cbSTrond Myklebust do { 681d1bacf9eSBryan Schumaker res = find_cache_page(desc); 68247c716cbSTrond Myklebust } while (res == -EAGAIN); 6831da177e4SLinus Torvalds return res; 6841da177e4SLinus Torvalds } 6851da177e4SLinus Torvalds 6861da177e4SLinus Torvalds /* 6871da177e4SLinus Torvalds * Once we've found the start of the dirent within a page: fill 'er up... 6881da177e4SLinus Torvalds */ 6891da177e4SLinus Torvalds static 6901da177e4SLinus Torvalds int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent, 6911da177e4SLinus Torvalds filldir_t filldir) 6921da177e4SLinus Torvalds { 6931da177e4SLinus Torvalds struct file *file = desc->file; 694d1bacf9eSBryan Schumaker int i = 0; 695d1bacf9eSBryan Schumaker int res = 0; 696d1bacf9eSBryan Schumaker struct nfs_cache_array *array = NULL; 6971da177e4SLinus Torvalds 698d1bacf9eSBryan Schumaker array = nfs_readdir_get_array(desc->page); 699e7c58e97STrond Myklebust if (IS_ERR(array)) { 700e7c58e97STrond Myklebust res = PTR_ERR(array); 701e7c58e97STrond Myklebust goto out; 702e7c58e97STrond Myklebust } 7031da177e4SLinus Torvalds 704d1bacf9eSBryan Schumaker for (i = desc->cache_entry_index; i < array->size; i++) { 705ece0b423STrond Myklebust struct nfs_cache_array_entry *ent; 7061da177e4SLinus Torvalds 707ece0b423STrond Myklebust ent = &array->array[i]; 708ece0b423STrond Myklebust if (filldir(dirent, ent->string.name, ent->string.len, 7090b26a0bfSTrond Myklebust file->f_pos, nfs_compat_user_ino64(ent->ino), 7100b26a0bfSTrond Myklebust ent->d_type) < 0) { 711ece0b423STrond Myklebust desc->eof = 1; 7121da177e4SLinus Torvalds break; 713ece0b423STrond Myklebust } 71400a92642SOlivier Galibert file->f_pos++; 715d1bacf9eSBryan Schumaker if (i < (array->size-1)) 716d1bacf9eSBryan Schumaker *desc->dir_cookie = array->array[i+1].cookie; 717d1bacf9eSBryan Schumaker else 718d1bacf9eSBryan Schumaker *desc->dir_cookie = array->last_cookie; 7198cd51a0cSTrond Myklebust } 72047c716cbSTrond Myklebust if (array->eof_index >= 0) 721d1bacf9eSBryan Schumaker desc->eof = 1; 722d1bacf9eSBryan Schumaker 723d1bacf9eSBryan Schumaker nfs_readdir_release_array(desc->page); 724e7c58e97STrond Myklebust out: 725d1bacf9eSBryan Schumaker cache_page_release(desc); 7261e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n", 7271e7cb3dcSChuck Lever (unsigned long long)*desc->dir_cookie, res); 7281da177e4SLinus Torvalds return res; 7291da177e4SLinus Torvalds } 7301da177e4SLinus Torvalds 7311da177e4SLinus Torvalds /* 7321da177e4SLinus Torvalds * If we cannot find a cookie in our cache, we suspect that this is 7331da177e4SLinus Torvalds * because it points to a deleted file, so we ask the server to return 7341da177e4SLinus Torvalds * whatever it thinks is the next entry. We then feed this to filldir. 7351da177e4SLinus Torvalds * If all goes well, we should then be able to find our way round the 7361da177e4SLinus Torvalds * cache on the next call to readdir_search_pagecache(); 7371da177e4SLinus Torvalds * 7381da177e4SLinus Torvalds * NOTE: we cannot add the anonymous page to the pagecache because 7391da177e4SLinus Torvalds * the data it contains might not be page aligned. Besides, 7401da177e4SLinus Torvalds * we should already have a complete representation of the 7411da177e4SLinus Torvalds * directory in the page cache by the time we get here. 7421da177e4SLinus Torvalds */ 7431da177e4SLinus Torvalds static inline 7441da177e4SLinus Torvalds int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent, 7451da177e4SLinus Torvalds filldir_t filldir) 7461da177e4SLinus Torvalds { 7471da177e4SLinus Torvalds struct page *page = NULL; 7481da177e4SLinus Torvalds int status; 749d1bacf9eSBryan Schumaker struct inode *inode = desc->file->f_path.dentry->d_inode; 7501da177e4SLinus Torvalds 7511e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n", 7521e7cb3dcSChuck Lever (unsigned long long)*desc->dir_cookie); 7531da177e4SLinus Torvalds 7541da177e4SLinus Torvalds page = alloc_page(GFP_HIGHUSER); 7551da177e4SLinus Torvalds if (!page) { 7561da177e4SLinus Torvalds status = -ENOMEM; 7571da177e4SLinus Torvalds goto out; 7581da177e4SLinus Torvalds } 7591da177e4SLinus Torvalds 7607a8e1dc3STrond Myklebust desc->page_index = 0; 7610aded708STrond Myklebust desc->last_cookie = *desc->dir_cookie; 7627a8e1dc3STrond Myklebust desc->page = page; 7637a8e1dc3STrond Myklebust 76485f8607eSTrond Myklebust status = nfs_readdir_xdr_to_array(desc, page, inode); 76585f8607eSTrond Myklebust if (status < 0) 766d1bacf9eSBryan Schumaker goto out_release; 767d1bacf9eSBryan Schumaker 7681da177e4SLinus Torvalds status = nfs_do_filldir(desc, dirent, filldir); 7691da177e4SLinus Torvalds 7701da177e4SLinus Torvalds out: 7711e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: %s: returns %d\n", 7723110ff80SHarvey Harrison __func__, status); 7731da177e4SLinus Torvalds return status; 7741da177e4SLinus Torvalds out_release: 775d1bacf9eSBryan Schumaker cache_page_release(desc); 7761da177e4SLinus Torvalds goto out; 7771da177e4SLinus Torvalds } 7781da177e4SLinus Torvalds 77900a92642SOlivier Galibert /* The file offset position represents the dirent entry number. A 78000a92642SOlivier Galibert last cookie cache takes care of the common case of reading the 78100a92642SOlivier Galibert whole directory. 7821da177e4SLinus Torvalds */ 7831da177e4SLinus Torvalds static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir) 7841da177e4SLinus Torvalds { 78501cce933SJosef "Jeff" Sipek struct dentry *dentry = filp->f_path.dentry; 7861da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 7871da177e4SLinus Torvalds nfs_readdir_descriptor_t my_desc, 7881da177e4SLinus Torvalds *desc = &my_desc; 78947c716cbSTrond Myklebust int res; 7901da177e4SLinus Torvalds 7916da24bc9SChuck Lever dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n", 7921e7cb3dcSChuck Lever dentry->d_parent->d_name.name, dentry->d_name.name, 7931e7cb3dcSChuck Lever (long long)filp->f_pos); 79491d5b470SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSGETDENTS); 79591d5b470SChuck Lever 7961da177e4SLinus Torvalds /* 79700a92642SOlivier Galibert * filp->f_pos points to the dirent entry number. 798f0dd2136STrond Myklebust * *desc->dir_cookie has the cookie for the next entry. We have 79900a92642SOlivier Galibert * to either find the entry with the appropriate number or 80000a92642SOlivier Galibert * revalidate the cookie. 8011da177e4SLinus Torvalds */ 8021da177e4SLinus Torvalds memset(desc, 0, sizeof(*desc)); 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds desc->file = filp; 805cd3758e3STrond Myklebust desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie; 8061da177e4SLinus Torvalds desc->decode = NFS_PROTO(inode)->decode_dirent; 8071da177e4SLinus Torvalds desc->plus = NFS_USE_READDIRPLUS(inode); 8081da177e4SLinus Torvalds 809565277f6STrond Myklebust nfs_block_sillyrename(dentry); 8101cda707dSTrond Myklebust res = nfs_revalidate_mapping(inode, filp->f_mapping); 811fccca7fcSTrond Myklebust if (res < 0) 812fccca7fcSTrond Myklebust goto out; 813fccca7fcSTrond Myklebust 81447c716cbSTrond Myklebust do { 8151da177e4SLinus Torvalds res = readdir_search_pagecache(desc); 81600a92642SOlivier Galibert 8171da177e4SLinus Torvalds if (res == -EBADCOOKIE) { 818ece0b423STrond Myklebust res = 0; 8191da177e4SLinus Torvalds /* This means either end of directory */ 820d1bacf9eSBryan Schumaker if (*desc->dir_cookie && desc->eof == 0) { 8211da177e4SLinus Torvalds /* Or that the server has 'lost' a cookie */ 8221da177e4SLinus Torvalds res = uncached_readdir(desc, dirent, filldir); 823ece0b423STrond Myklebust if (res == 0) 8241da177e4SLinus Torvalds continue; 8251da177e4SLinus Torvalds } 8261da177e4SLinus Torvalds break; 8271da177e4SLinus Torvalds } 8281da177e4SLinus Torvalds if (res == -ETOOSMALL && desc->plus) { 8293a10c30aSBenny Halevy clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags); 8301da177e4SLinus Torvalds nfs_zap_caches(inode); 831baf57a09STrond Myklebust desc->page_index = 0; 8321da177e4SLinus Torvalds desc->plus = 0; 833d1bacf9eSBryan Schumaker desc->eof = 0; 8341da177e4SLinus Torvalds continue; 8351da177e4SLinus Torvalds } 8361da177e4SLinus Torvalds if (res < 0) 8371da177e4SLinus Torvalds break; 8381da177e4SLinus Torvalds 8391da177e4SLinus Torvalds res = nfs_do_filldir(desc, dirent, filldir); 840ece0b423STrond Myklebust if (res < 0) 8411da177e4SLinus Torvalds break; 84247c716cbSTrond Myklebust } while (!desc->eof); 843fccca7fcSTrond Myklebust out: 844565277f6STrond Myklebust nfs_unblock_sillyrename(dentry); 8451e7cb3dcSChuck Lever if (res > 0) 8461e7cb3dcSChuck Lever res = 0; 847aa49b4cfSTrond Myklebust dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n", 8481e7cb3dcSChuck Lever dentry->d_parent->d_name.name, dentry->d_name.name, 8491e7cb3dcSChuck Lever res); 8501da177e4SLinus Torvalds return res; 8511da177e4SLinus Torvalds } 8521da177e4SLinus Torvalds 85310afec90STrond Myklebust static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin) 854f0dd2136STrond Myklebust { 855b84e06c5SChuck Lever struct dentry *dentry = filp->f_path.dentry; 856b84e06c5SChuck Lever struct inode *inode = dentry->d_inode; 857b84e06c5SChuck Lever 8586da24bc9SChuck Lever dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n", 859b84e06c5SChuck Lever dentry->d_parent->d_name.name, 860b84e06c5SChuck Lever dentry->d_name.name, 861b84e06c5SChuck Lever offset, origin); 862b84e06c5SChuck Lever 863b84e06c5SChuck Lever mutex_lock(&inode->i_mutex); 864f0dd2136STrond Myklebust switch (origin) { 865f0dd2136STrond Myklebust case 1: 866f0dd2136STrond Myklebust offset += filp->f_pos; 867f0dd2136STrond Myklebust case 0: 868f0dd2136STrond Myklebust if (offset >= 0) 869f0dd2136STrond Myklebust break; 870f0dd2136STrond Myklebust default: 871f0dd2136STrond Myklebust offset = -EINVAL; 872f0dd2136STrond Myklebust goto out; 873f0dd2136STrond Myklebust } 874f0dd2136STrond Myklebust if (offset != filp->f_pos) { 875f0dd2136STrond Myklebust filp->f_pos = offset; 876cd3758e3STrond Myklebust nfs_file_open_context(filp)->dir_cookie = 0; 877f0dd2136STrond Myklebust } 878f0dd2136STrond Myklebust out: 879b84e06c5SChuck Lever mutex_unlock(&inode->i_mutex); 880f0dd2136STrond Myklebust return offset; 881f0dd2136STrond Myklebust } 882f0dd2136STrond Myklebust 8831da177e4SLinus Torvalds /* 8841da177e4SLinus Torvalds * All directory operations under NFS are synchronous, so fsync() 8851da177e4SLinus Torvalds * is a dummy operation. 8861da177e4SLinus Torvalds */ 8877ea80859SChristoph Hellwig static int nfs_fsync_dir(struct file *filp, int datasync) 8881da177e4SLinus Torvalds { 8897ea80859SChristoph Hellwig struct dentry *dentry = filp->f_path.dentry; 8907ea80859SChristoph Hellwig 8916da24bc9SChuck Lever dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n", 8921e7cb3dcSChuck Lever dentry->d_parent->d_name.name, dentry->d_name.name, 8931e7cb3dcSChuck Lever datasync); 8941e7cb3dcSChuck Lever 89554917786SChuck Lever nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC); 8961da177e4SLinus Torvalds return 0; 8971da177e4SLinus Torvalds } 8981da177e4SLinus Torvalds 899bfc69a45STrond Myklebust /** 900bfc69a45STrond Myklebust * nfs_force_lookup_revalidate - Mark the directory as having changed 901bfc69a45STrond Myklebust * @dir - pointer to directory inode 902bfc69a45STrond Myklebust * 903bfc69a45STrond Myklebust * This forces the revalidation code in nfs_lookup_revalidate() to do a 904bfc69a45STrond Myklebust * full lookup on all child dentries of 'dir' whenever a change occurs 905bfc69a45STrond Myklebust * on the server that might have invalidated our dcache. 906bfc69a45STrond Myklebust * 907bfc69a45STrond Myklebust * The caller should be holding dir->i_lock 908bfc69a45STrond Myklebust */ 909bfc69a45STrond Myklebust void nfs_force_lookup_revalidate(struct inode *dir) 910bfc69a45STrond Myklebust { 911011935a0STrond Myklebust NFS_I(dir)->cache_change_attribute++; 912bfc69a45STrond Myklebust } 913bfc69a45STrond Myklebust 9141da177e4SLinus Torvalds /* 9151da177e4SLinus Torvalds * A check for whether or not the parent directory has changed. 9161da177e4SLinus Torvalds * In the case it has, we assume that the dentries are untrustworthy 9171da177e4SLinus Torvalds * and may need to be looked up again. 9181da177e4SLinus Torvalds */ 919c79ba787STrond Myklebust static int nfs_check_verifier(struct inode *dir, struct dentry *dentry) 9201da177e4SLinus Torvalds { 9211da177e4SLinus Torvalds if (IS_ROOT(dentry)) 9221da177e4SLinus Torvalds return 1; 9234eec952eSTrond Myklebust if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE) 9244eec952eSTrond Myklebust return 0; 925f2c77f4eSTrond Myklebust if (!nfs_verify_change_attribute(dir, dentry->d_time)) 9266ecc5e8fSTrond Myklebust return 0; 927f2c77f4eSTrond Myklebust /* Revalidate nfsi->cache_change_attribute before we declare a match */ 928f2c77f4eSTrond Myklebust if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0) 929f2c77f4eSTrond Myklebust return 0; 930f2c77f4eSTrond Myklebust if (!nfs_verify_change_attribute(dir, dentry->d_time)) 931f2c77f4eSTrond Myklebust return 0; 932f2c77f4eSTrond Myklebust return 1; 9331da177e4SLinus Torvalds } 9341da177e4SLinus Torvalds 9351da177e4SLinus Torvalds /* 9361d6757fbSTrond Myklebust * Return the intent data that applies to this particular path component 9371d6757fbSTrond Myklebust * 9381d6757fbSTrond Myklebust * Note that the current set of intents only apply to the very last 9391d6757fbSTrond Myklebust * component of the path. 9401d6757fbSTrond Myklebust * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT. 9411d6757fbSTrond Myklebust */ 94234286d66SNick Piggin static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, 94334286d66SNick Piggin unsigned int mask) 9441d6757fbSTrond Myklebust { 9451d6757fbSTrond Myklebust if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT)) 9461d6757fbSTrond Myklebust return 0; 9471d6757fbSTrond Myklebust return nd->flags & mask; 9481d6757fbSTrond Myklebust } 9491d6757fbSTrond Myklebust 9501d6757fbSTrond Myklebust /* 951a12802caSTrond Myklebust * Use intent information to check whether or not we're going to do 952a12802caSTrond Myklebust * an O_EXCL create using this path component. 953a12802caSTrond Myklebust */ 954a12802caSTrond Myklebust static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd) 955a12802caSTrond Myklebust { 956a12802caSTrond Myklebust if (NFS_PROTO(dir)->version == 2) 957a12802caSTrond Myklebust return 0; 9583516586aSAl Viro return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL); 959a12802caSTrond Myklebust } 960a12802caSTrond Myklebust 961a12802caSTrond Myklebust /* 9621d6757fbSTrond Myklebust * Inode and filehandle revalidation for lookups. 9631d6757fbSTrond Myklebust * 9641d6757fbSTrond Myklebust * We force revalidation in the cases where the VFS sets LOOKUP_REVAL, 9651d6757fbSTrond Myklebust * or if the intent information indicates that we're about to open this 9661d6757fbSTrond Myklebust * particular file and the "nocto" mount flag is not set. 9671d6757fbSTrond Myklebust * 9681d6757fbSTrond Myklebust */ 9691da177e4SLinus Torvalds static inline 9701da177e4SLinus Torvalds int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd) 9711da177e4SLinus Torvalds { 9721da177e4SLinus Torvalds struct nfs_server *server = NFS_SERVER(inode); 9731da177e4SLinus Torvalds 97436d43a43SDavid Howells if (IS_AUTOMOUNT(inode)) 9754e99a1ffSTrond Myklebust return 0; 9761da177e4SLinus Torvalds if (nd != NULL) { 9771da177e4SLinus Torvalds /* VFS wants an on-the-wire revalidation */ 9781d6757fbSTrond Myklebust if (nd->flags & LOOKUP_REVAL) 9791da177e4SLinus Torvalds goto out_force; 9801da177e4SLinus Torvalds /* This is an open(2) */ 9811d6757fbSTrond Myklebust if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 && 9824e0641a7STrond Myklebust !(server->flags & NFS_MOUNT_NOCTO) && 9834e0641a7STrond Myklebust (S_ISREG(inode->i_mode) || 9844e0641a7STrond Myklebust S_ISDIR(inode->i_mode))) 9851da177e4SLinus Torvalds goto out_force; 9864f48af45STrond Myklebust return 0; 9871da177e4SLinus Torvalds } 9881da177e4SLinus Torvalds return nfs_revalidate_inode(server, inode); 9891da177e4SLinus Torvalds out_force: 9901da177e4SLinus Torvalds return __nfs_revalidate_inode(server, inode); 9911da177e4SLinus Torvalds } 9921da177e4SLinus Torvalds 9931da177e4SLinus Torvalds /* 9941da177e4SLinus Torvalds * We judge how long we want to trust negative 9951da177e4SLinus Torvalds * dentries by looking at the parent inode mtime. 9961da177e4SLinus Torvalds * 9971da177e4SLinus Torvalds * If parent mtime has changed, we revalidate, else we wait for a 9981da177e4SLinus Torvalds * period corresponding to the parent's attribute cache timeout value. 9991da177e4SLinus Torvalds */ 10001da177e4SLinus Torvalds static inline 10011da177e4SLinus Torvalds int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry, 10021da177e4SLinus Torvalds struct nameidata *nd) 10031da177e4SLinus Torvalds { 10041da177e4SLinus Torvalds /* Don't revalidate a negative dentry if we're creating a new file */ 10051d6757fbSTrond Myklebust if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0) 10061da177e4SLinus Torvalds return 0; 10074eec952eSTrond Myklebust if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) 10084eec952eSTrond Myklebust return 1; 10091da177e4SLinus Torvalds return !nfs_check_verifier(dir, dentry); 10101da177e4SLinus Torvalds } 10111da177e4SLinus Torvalds 10121da177e4SLinus Torvalds /* 10131da177e4SLinus Torvalds * This is called every time the dcache has a lookup hit, 10141da177e4SLinus Torvalds * and we should check whether we can really trust that 10151da177e4SLinus Torvalds * lookup. 10161da177e4SLinus Torvalds * 10171da177e4SLinus Torvalds * NOTE! The hit can be a negative hit too, don't assume 10181da177e4SLinus Torvalds * we have an inode! 10191da177e4SLinus Torvalds * 10201da177e4SLinus Torvalds * If the parent directory is seen to have changed, we throw out the 10211da177e4SLinus Torvalds * cached dentry and do a new lookup. 10221da177e4SLinus Torvalds */ 10231da177e4SLinus Torvalds static int nfs_lookup_revalidate(struct dentry *dentry, struct nameidata *nd) 10241da177e4SLinus Torvalds { 10251da177e4SLinus Torvalds struct inode *dir; 10261da177e4SLinus Torvalds struct inode *inode; 10271da177e4SLinus Torvalds struct dentry *parent; 1028e1fb4d05STrond Myklebust struct nfs_fh *fhandle = NULL; 1029e1fb4d05STrond Myklebust struct nfs_fattr *fattr = NULL; 10301da177e4SLinus Torvalds int error; 10311da177e4SLinus Torvalds 103234286d66SNick Piggin if (nd->flags & LOOKUP_RCU) 103334286d66SNick Piggin return -ECHILD; 103434286d66SNick Piggin 10351da177e4SLinus Torvalds parent = dget_parent(dentry); 10361da177e4SLinus Torvalds dir = parent->d_inode; 103791d5b470SChuck Lever nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE); 10381da177e4SLinus Torvalds inode = dentry->d_inode; 10391da177e4SLinus Torvalds 10401da177e4SLinus Torvalds if (!inode) { 10411da177e4SLinus Torvalds if (nfs_neg_need_reval(dir, dentry, nd)) 10421da177e4SLinus Torvalds goto out_bad; 10431da177e4SLinus Torvalds goto out_valid; 10441da177e4SLinus Torvalds } 10451da177e4SLinus Torvalds 10461da177e4SLinus Torvalds if (is_bad_inode(inode)) { 10471e7cb3dcSChuck Lever dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n", 10483110ff80SHarvey Harrison __func__, dentry->d_parent->d_name.name, 10491e7cb3dcSChuck Lever dentry->d_name.name); 10501da177e4SLinus Torvalds goto out_bad; 10511da177e4SLinus Torvalds } 10521da177e4SLinus Torvalds 105315860ab1STrond Myklebust if (nfs_have_delegation(inode, FMODE_READ)) 105415860ab1STrond Myklebust goto out_set_verifier; 105515860ab1STrond Myklebust 10561da177e4SLinus Torvalds /* Force a full look up iff the parent directory has changed */ 1057a12802caSTrond Myklebust if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) { 10581da177e4SLinus Torvalds if (nfs_lookup_verify_inode(inode, nd)) 10591da177e4SLinus Torvalds goto out_zap_parent; 10601da177e4SLinus Torvalds goto out_valid; 10611da177e4SLinus Torvalds } 10621da177e4SLinus Torvalds 10631da177e4SLinus Torvalds if (NFS_STALE(inode)) 10641da177e4SLinus Torvalds goto out_bad; 10651da177e4SLinus Torvalds 1066e1fb4d05STrond Myklebust error = -ENOMEM; 1067e1fb4d05STrond Myklebust fhandle = nfs_alloc_fhandle(); 1068e1fb4d05STrond Myklebust fattr = nfs_alloc_fattr(); 1069e1fb4d05STrond Myklebust if (fhandle == NULL || fattr == NULL) 1070e1fb4d05STrond Myklebust goto out_error; 1071e1fb4d05STrond Myklebust 1072e1fb4d05STrond Myklebust error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr); 10731da177e4SLinus Torvalds if (error) 10741da177e4SLinus Torvalds goto out_bad; 1075e1fb4d05STrond Myklebust if (nfs_compare_fh(NFS_FH(inode), fhandle)) 10761da177e4SLinus Torvalds goto out_bad; 1077e1fb4d05STrond Myklebust if ((error = nfs_refresh_inode(inode, fattr)) != 0) 10781da177e4SLinus Torvalds goto out_bad; 10791da177e4SLinus Torvalds 1080e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1081e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 108215860ab1STrond Myklebust out_set_verifier: 1083cf8ba45eSTrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 10841da177e4SLinus Torvalds out_valid: 10851da177e4SLinus Torvalds dput(parent); 10861e7cb3dcSChuck Lever dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n", 10873110ff80SHarvey Harrison __func__, dentry->d_parent->d_name.name, 10881e7cb3dcSChuck Lever dentry->d_name.name); 10891da177e4SLinus Torvalds return 1; 10901da177e4SLinus Torvalds out_zap_parent: 10911da177e4SLinus Torvalds nfs_zap_caches(dir); 10921da177e4SLinus Torvalds out_bad: 1093a1643a92STrond Myklebust nfs_mark_for_revalidate(dir); 10941da177e4SLinus Torvalds if (inode && S_ISDIR(inode->i_mode)) { 10951da177e4SLinus Torvalds /* Purge readdir caches. */ 10961da177e4SLinus Torvalds nfs_zap_caches(inode); 10971da177e4SLinus Torvalds /* If we have submounts, don't unhash ! */ 10981da177e4SLinus Torvalds if (have_submounts(dentry)) 10991da177e4SLinus Torvalds goto out_valid; 1100d9e80b7dSAl Viro if (dentry->d_flags & DCACHE_DISCONNECTED) 1101d9e80b7dSAl Viro goto out_valid; 11021da177e4SLinus Torvalds shrink_dcache_parent(dentry); 11031da177e4SLinus Torvalds } 11041da177e4SLinus Torvalds d_drop(dentry); 1105e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1106e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 11071da177e4SLinus Torvalds dput(parent); 11081e7cb3dcSChuck Lever dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n", 11093110ff80SHarvey Harrison __func__, dentry->d_parent->d_name.name, 11101e7cb3dcSChuck Lever dentry->d_name.name); 11111da177e4SLinus Torvalds return 0; 1112e1fb4d05STrond Myklebust out_error: 1113e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1114e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 1115e1fb4d05STrond Myklebust dput(parent); 1116e1fb4d05STrond Myklebust dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n", 1117e1fb4d05STrond Myklebust __func__, dentry->d_parent->d_name.name, 1118e1fb4d05STrond Myklebust dentry->d_name.name, error); 1119e1fb4d05STrond Myklebust return error; 11201da177e4SLinus Torvalds } 11211da177e4SLinus Torvalds 11221da177e4SLinus Torvalds /* 11231da177e4SLinus Torvalds * This is called from dput() when d_count is going to 0. 11241da177e4SLinus Torvalds */ 1125fe15ce44SNick Piggin static int nfs_dentry_delete(const struct dentry *dentry) 11261da177e4SLinus Torvalds { 11271da177e4SLinus Torvalds dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n", 11281da177e4SLinus Torvalds dentry->d_parent->d_name.name, dentry->d_name.name, 11291da177e4SLinus Torvalds dentry->d_flags); 11301da177e4SLinus Torvalds 113177f11192STrond Myklebust /* Unhash any dentry with a stale inode */ 113277f11192STrond Myklebust if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode)) 113377f11192STrond Myklebust return 1; 113477f11192STrond Myklebust 11351da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 11361da177e4SLinus Torvalds /* Unhash it, so that ->d_iput() would be called */ 11371da177e4SLinus Torvalds return 1; 11381da177e4SLinus Torvalds } 11391da177e4SLinus Torvalds if (!(dentry->d_sb->s_flags & MS_ACTIVE)) { 11401da177e4SLinus Torvalds /* Unhash it, so that ancestors of killed async unlink 11411da177e4SLinus Torvalds * files will be cleaned up during umount */ 11421da177e4SLinus Torvalds return 1; 11431da177e4SLinus Torvalds } 11441da177e4SLinus Torvalds return 0; 11451da177e4SLinus Torvalds 11461da177e4SLinus Torvalds } 11471da177e4SLinus Torvalds 11481b83d707STrond Myklebust static void nfs_drop_nlink(struct inode *inode) 11491b83d707STrond Myklebust { 11501b83d707STrond Myklebust spin_lock(&inode->i_lock); 11511b83d707STrond Myklebust if (inode->i_nlink > 0) 11521b83d707STrond Myklebust drop_nlink(inode); 11531b83d707STrond Myklebust spin_unlock(&inode->i_lock); 11541b83d707STrond Myklebust } 11551b83d707STrond Myklebust 11561da177e4SLinus Torvalds /* 11571da177e4SLinus Torvalds * Called when the dentry loses inode. 11581da177e4SLinus Torvalds * We use it to clean up silly-renamed files. 11591da177e4SLinus Torvalds */ 11601da177e4SLinus Torvalds static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode) 11611da177e4SLinus Torvalds { 116283672d39SNeil Brown if (S_ISDIR(inode->i_mode)) 116383672d39SNeil Brown /* drop any readdir cache as it could easily be old */ 116483672d39SNeil Brown NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA; 116583672d39SNeil Brown 11661da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 11679a53c3a7SDave Hansen drop_nlink(inode); 1168e4eff1a6STrond Myklebust nfs_complete_unlink(dentry, inode); 11691da177e4SLinus Torvalds } 11701da177e4SLinus Torvalds iput(inode); 11711da177e4SLinus Torvalds } 11721da177e4SLinus Torvalds 1173f786aa90SAl Viro const struct dentry_operations nfs_dentry_operations = { 11741da177e4SLinus Torvalds .d_revalidate = nfs_lookup_revalidate, 11751da177e4SLinus Torvalds .d_delete = nfs_dentry_delete, 11761da177e4SLinus Torvalds .d_iput = nfs_dentry_iput, 117736d43a43SDavid Howells .d_automount = nfs_d_automount, 11781da177e4SLinus Torvalds }; 11791da177e4SLinus Torvalds 11801da177e4SLinus Torvalds static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd) 11811da177e4SLinus Torvalds { 11821da177e4SLinus Torvalds struct dentry *res; 1183565277f6STrond Myklebust struct dentry *parent; 11841da177e4SLinus Torvalds struct inode *inode = NULL; 1185e1fb4d05STrond Myklebust struct nfs_fh *fhandle = NULL; 1186e1fb4d05STrond Myklebust struct nfs_fattr *fattr = NULL; 11871da177e4SLinus Torvalds int error; 11881da177e4SLinus Torvalds 11891da177e4SLinus Torvalds dfprintk(VFS, "NFS: lookup(%s/%s)\n", 11901da177e4SLinus Torvalds dentry->d_parent->d_name.name, dentry->d_name.name); 119191d5b470SChuck Lever nfs_inc_stats(dir, NFSIOS_VFSLOOKUP); 11921da177e4SLinus Torvalds 11931da177e4SLinus Torvalds res = ERR_PTR(-ENAMETOOLONG); 11941da177e4SLinus Torvalds if (dentry->d_name.len > NFS_SERVER(dir)->namelen) 11951da177e4SLinus Torvalds goto out; 11961da177e4SLinus Torvalds 1197fd684071STrond Myklebust /* 1198fd684071STrond Myklebust * If we're doing an exclusive create, optimize away the lookup 1199fd684071STrond Myklebust * but don't hash the dentry. 1200fd684071STrond Myklebust */ 1201fd684071STrond Myklebust if (nfs_is_exclusive_create(dir, nd)) { 1202fd684071STrond Myklebust d_instantiate(dentry, NULL); 1203fd684071STrond Myklebust res = NULL; 1204fc0f684cSTrond Myklebust goto out; 1205fd684071STrond Myklebust } 12061da177e4SLinus Torvalds 1207e1fb4d05STrond Myklebust res = ERR_PTR(-ENOMEM); 1208e1fb4d05STrond Myklebust fhandle = nfs_alloc_fhandle(); 1209e1fb4d05STrond Myklebust fattr = nfs_alloc_fattr(); 1210e1fb4d05STrond Myklebust if (fhandle == NULL || fattr == NULL) 1211e1fb4d05STrond Myklebust goto out; 1212e1fb4d05STrond Myklebust 1213565277f6STrond Myklebust parent = dentry->d_parent; 1214565277f6STrond Myklebust /* Protect against concurrent sillydeletes */ 1215565277f6STrond Myklebust nfs_block_sillyrename(parent); 1216e1fb4d05STrond Myklebust error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr); 12171da177e4SLinus Torvalds if (error == -ENOENT) 12181da177e4SLinus Torvalds goto no_entry; 12191da177e4SLinus Torvalds if (error < 0) { 12201da177e4SLinus Torvalds res = ERR_PTR(error); 1221565277f6STrond Myklebust goto out_unblock_sillyrename; 12221da177e4SLinus Torvalds } 1223e1fb4d05STrond Myklebust inode = nfs_fhget(dentry->d_sb, fhandle, fattr); 1224bf0c84f1SNamhyung Kim res = ERR_CAST(inode); 122503f28e3aSTrond Myklebust if (IS_ERR(res)) 1226565277f6STrond Myklebust goto out_unblock_sillyrename; 122754ceac45SDavid Howells 12281da177e4SLinus Torvalds no_entry: 122954ceac45SDavid Howells res = d_materialise_unique(dentry, inode); 12309eaef27bSTrond Myklebust if (res != NULL) { 12319eaef27bSTrond Myklebust if (IS_ERR(res)) 1232565277f6STrond Myklebust goto out_unblock_sillyrename; 12331da177e4SLinus Torvalds dentry = res; 12349eaef27bSTrond Myklebust } 12351da177e4SLinus Torvalds nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 1236565277f6STrond Myklebust out_unblock_sillyrename: 1237565277f6STrond Myklebust nfs_unblock_sillyrename(parent); 12381da177e4SLinus Torvalds out: 1239e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1240e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 12411da177e4SLinus Torvalds return res; 12421da177e4SLinus Torvalds } 12431da177e4SLinus Torvalds 12441da177e4SLinus Torvalds #ifdef CONFIG_NFS_V4 12451da177e4SLinus Torvalds static int nfs_open_revalidate(struct dentry *, struct nameidata *); 12461da177e4SLinus Torvalds 1247f786aa90SAl Viro const struct dentry_operations nfs4_dentry_operations = { 12481da177e4SLinus Torvalds .d_revalidate = nfs_open_revalidate, 12491da177e4SLinus Torvalds .d_delete = nfs_dentry_delete, 12501da177e4SLinus Torvalds .d_iput = nfs_dentry_iput, 125136d43a43SDavid Howells .d_automount = nfs_d_automount, 12521da177e4SLinus Torvalds }; 12531da177e4SLinus Torvalds 12541d6757fbSTrond Myklebust /* 12551d6757fbSTrond Myklebust * Use intent information to determine whether we need to substitute 12561d6757fbSTrond Myklebust * the NFSv4-style stateful OPEN for the LOOKUP call 12571d6757fbSTrond Myklebust */ 12585584c306STrond Myklebust static int is_atomic_open(struct nameidata *nd) 12591da177e4SLinus Torvalds { 12601d6757fbSTrond Myklebust if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0) 12611da177e4SLinus Torvalds return 0; 12621da177e4SLinus Torvalds /* NFS does not (yet) have a stateful open for directories */ 12631da177e4SLinus Torvalds if (nd->flags & LOOKUP_DIRECTORY) 12641da177e4SLinus Torvalds return 0; 12651da177e4SLinus Torvalds /* Are we trying to write to a read only partition? */ 12662c463e95SDave Hansen if (__mnt_is_readonly(nd->path.mnt) && 12672c463e95SDave Hansen (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE))) 12681da177e4SLinus Torvalds return 0; 12691da177e4SLinus Torvalds return 1; 12701da177e4SLinus Torvalds } 12711da177e4SLinus Torvalds 1272cd9a1c0eSTrond Myklebust static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd) 1273cd9a1c0eSTrond Myklebust { 1274cd9a1c0eSTrond Myklebust struct path path = { 1275cd9a1c0eSTrond Myklebust .mnt = nd->path.mnt, 1276cd9a1c0eSTrond Myklebust .dentry = dentry, 1277cd9a1c0eSTrond Myklebust }; 1278cd9a1c0eSTrond Myklebust struct nfs_open_context *ctx; 1279cd9a1c0eSTrond Myklebust struct rpc_cred *cred; 1280cd9a1c0eSTrond Myklebust fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC); 1281cd9a1c0eSTrond Myklebust 1282cd9a1c0eSTrond Myklebust cred = rpc_lookup_cred(); 1283cd9a1c0eSTrond Myklebust if (IS_ERR(cred)) 1284cd9a1c0eSTrond Myklebust return ERR_CAST(cred); 1285cd9a1c0eSTrond Myklebust ctx = alloc_nfs_open_context(&path, cred, fmode); 1286cd9a1c0eSTrond Myklebust put_rpccred(cred); 1287cd9a1c0eSTrond Myklebust if (ctx == NULL) 1288cd9a1c0eSTrond Myklebust return ERR_PTR(-ENOMEM); 1289cd9a1c0eSTrond Myklebust return ctx; 1290cd9a1c0eSTrond Myklebust } 1291cd9a1c0eSTrond Myklebust 1292cd9a1c0eSTrond Myklebust static int do_open(struct inode *inode, struct file *filp) 1293cd9a1c0eSTrond Myklebust { 1294cd9a1c0eSTrond Myklebust nfs_fscache_set_inode_cookie(inode, filp); 1295cd9a1c0eSTrond Myklebust return 0; 1296cd9a1c0eSTrond Myklebust } 1297cd9a1c0eSTrond Myklebust 1298cd9a1c0eSTrond Myklebust static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx) 1299cd9a1c0eSTrond Myklebust { 1300cd9a1c0eSTrond Myklebust struct file *filp; 1301cd9a1c0eSTrond Myklebust int ret = 0; 1302cd9a1c0eSTrond Myklebust 1303cd9a1c0eSTrond Myklebust /* If the open_intent is for execute, we have an extra check to make */ 1304cd9a1c0eSTrond Myklebust if (ctx->mode & FMODE_EXEC) { 1305cd9a1c0eSTrond Myklebust ret = nfs_may_open(ctx->path.dentry->d_inode, 1306cd9a1c0eSTrond Myklebust ctx->cred, 1307cd9a1c0eSTrond Myklebust nd->intent.open.flags); 1308cd9a1c0eSTrond Myklebust if (ret < 0) 1309cd9a1c0eSTrond Myklebust goto out; 1310cd9a1c0eSTrond Myklebust } 1311cd9a1c0eSTrond Myklebust filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open); 1312cd9a1c0eSTrond Myklebust if (IS_ERR(filp)) 1313cd9a1c0eSTrond Myklebust ret = PTR_ERR(filp); 1314cd9a1c0eSTrond Myklebust else 1315cd9a1c0eSTrond Myklebust nfs_file_set_open_context(filp, ctx); 1316cd9a1c0eSTrond Myklebust out: 1317cd9a1c0eSTrond Myklebust put_nfs_open_context(ctx); 1318cd9a1c0eSTrond Myklebust return ret; 1319cd9a1c0eSTrond Myklebust } 1320cd9a1c0eSTrond Myklebust 13211da177e4SLinus Torvalds static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) 13221da177e4SLinus Torvalds { 1323cd9a1c0eSTrond Myklebust struct nfs_open_context *ctx; 1324cd9a1c0eSTrond Myklebust struct iattr attr; 13251da177e4SLinus Torvalds struct dentry *res = NULL; 1326f46e0bd3STrond Myklebust struct inode *inode; 1327cd9a1c0eSTrond Myklebust int open_flags; 1328898f635cSTrond Myklebust int err; 13291da177e4SLinus Torvalds 13301e7cb3dcSChuck Lever dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n", 13311e7cb3dcSChuck Lever dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 13321e7cb3dcSChuck Lever 13331da177e4SLinus Torvalds /* Check that we are indeed trying to open this file */ 13345584c306STrond Myklebust if (!is_atomic_open(nd)) 13351da177e4SLinus Torvalds goto no_open; 13361da177e4SLinus Torvalds 13371da177e4SLinus Torvalds if (dentry->d_name.len > NFS_SERVER(dir)->namelen) { 13381da177e4SLinus Torvalds res = ERR_PTR(-ENAMETOOLONG); 13391da177e4SLinus Torvalds goto out; 13401da177e4SLinus Torvalds } 13411da177e4SLinus Torvalds 1342d4d9cdcbSTrond Myklebust /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash 1343d4d9cdcbSTrond Myklebust * the dentry. */ 13443516586aSAl Viro if (nd->flags & LOOKUP_EXCL) { 1345d4d9cdcbSTrond Myklebust d_instantiate(dentry, NULL); 134602a913a7STrond Myklebust goto out; 134702a913a7STrond Myklebust } 13481da177e4SLinus Torvalds 1349cd9a1c0eSTrond Myklebust ctx = nameidata_to_nfs_open_context(dentry, nd); 1350cd9a1c0eSTrond Myklebust res = ERR_CAST(ctx); 1351cd9a1c0eSTrond Myklebust if (IS_ERR(ctx)) 1352cd9a1c0eSTrond Myklebust goto out; 1353cd9a1c0eSTrond Myklebust 1354cd9a1c0eSTrond Myklebust open_flags = nd->intent.open.flags; 1355cd9a1c0eSTrond Myklebust if (nd->flags & LOOKUP_CREATE) { 1356cd9a1c0eSTrond Myklebust attr.ia_mode = nd->intent.open.create_mode; 1357cd9a1c0eSTrond Myklebust attr.ia_valid = ATTR_MODE; 1358cd9a1c0eSTrond Myklebust attr.ia_mode &= ~current_umask(); 1359cd9a1c0eSTrond Myklebust } else { 1360898f635cSTrond Myklebust open_flags &= ~(O_EXCL | O_CREAT); 1361cd9a1c0eSTrond Myklebust attr.ia_valid = 0; 1362cd9a1c0eSTrond Myklebust } 1363cd9a1c0eSTrond Myklebust 13641da177e4SLinus Torvalds /* Open the file on the server */ 1365f46e0bd3STrond Myklebust nfs_block_sillyrename(dentry->d_parent); 13662b484297STrond Myklebust inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr); 1367f46e0bd3STrond Myklebust if (IS_ERR(inode)) { 1368f46e0bd3STrond Myklebust nfs_unblock_sillyrename(dentry->d_parent); 1369cd9a1c0eSTrond Myklebust put_nfs_open_context(ctx); 1370f46e0bd3STrond Myklebust switch (PTR_ERR(inode)) { 13711da177e4SLinus Torvalds /* Make a negative dentry */ 13721da177e4SLinus Torvalds case -ENOENT: 1373f46e0bd3STrond Myklebust d_add(dentry, NULL); 137402a913a7STrond Myklebust res = NULL; 137502a913a7STrond Myklebust goto out; 13761da177e4SLinus Torvalds /* This turned out not to be a regular file */ 13776f926b5bSTrond Myklebust case -ENOTDIR: 13786f926b5bSTrond Myklebust goto no_open; 13791da177e4SLinus Torvalds case -ELOOP: 13801da177e4SLinus Torvalds if (!(nd->intent.open.flags & O_NOFOLLOW)) 13811da177e4SLinus Torvalds goto no_open; 138223ebbd9aSTrond Myklebust /* case -EISDIR: */ 13831da177e4SLinus Torvalds /* case -EINVAL: */ 13841da177e4SLinus Torvalds default: 1385f46e0bd3STrond Myklebust res = ERR_CAST(inode); 13861da177e4SLinus Torvalds goto out; 13871da177e4SLinus Torvalds } 1388cd9a1c0eSTrond Myklebust } 1389f46e0bd3STrond Myklebust res = d_add_unique(dentry, inode); 1390898f635cSTrond Myklebust nfs_unblock_sillyrename(dentry->d_parent); 1391f46e0bd3STrond Myklebust if (res != NULL) { 1392f46e0bd3STrond Myklebust dput(ctx->path.dentry); 1393f46e0bd3STrond Myklebust ctx->path.dentry = dget(res); 13941da177e4SLinus Torvalds dentry = res; 1395f46e0bd3STrond Myklebust } 1396898f635cSTrond Myklebust err = nfs_intent_set_file(nd, ctx); 1397898f635cSTrond Myklebust if (err < 0) { 1398898f635cSTrond Myklebust if (res != NULL) 1399898f635cSTrond Myklebust dput(res); 1400898f635cSTrond Myklebust return ERR_PTR(err); 1401898f635cSTrond Myklebust } 14021da177e4SLinus Torvalds out: 1403f46e0bd3STrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 14041da177e4SLinus Torvalds return res; 14051da177e4SLinus Torvalds no_open: 14061da177e4SLinus Torvalds return nfs_lookup(dir, dentry, nd); 14071da177e4SLinus Torvalds } 14081da177e4SLinus Torvalds 14091da177e4SLinus Torvalds static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd) 14101da177e4SLinus Torvalds { 14111da177e4SLinus Torvalds struct dentry *parent = NULL; 1412657e94b6SNick Piggin struct inode *inode; 14131da177e4SLinus Torvalds struct inode *dir; 1414b8d4caddSTrond Myklebust struct nfs_open_context *ctx; 14151da177e4SLinus Torvalds int openflags, ret = 0; 14161da177e4SLinus Torvalds 1417657e94b6SNick Piggin if (nd->flags & LOOKUP_RCU) 1418657e94b6SNick Piggin return -ECHILD; 1419657e94b6SNick Piggin 1420657e94b6SNick Piggin inode = dentry->d_inode; 14211f063d2cSTrond Myklebust if (!is_atomic_open(nd) || d_mountpoint(dentry)) 14225584c306STrond Myklebust goto no_open; 14232b484297STrond Myklebust 14241da177e4SLinus Torvalds parent = dget_parent(dentry); 14251da177e4SLinus Torvalds dir = parent->d_inode; 14262b484297STrond Myklebust 14271da177e4SLinus Torvalds /* We can't create new files in nfs_open_revalidate(), so we 14281da177e4SLinus Torvalds * optimize away revalidation of negative dentries. 14291da177e4SLinus Torvalds */ 1430216d5d06STrond Myklebust if (inode == NULL) { 1431216d5d06STrond Myklebust if (!nfs_neg_need_reval(dir, dentry, nd)) 1432216d5d06STrond Myklebust ret = 1; 14331da177e4SLinus Torvalds goto out; 1434216d5d06STrond Myklebust } 1435216d5d06STrond Myklebust 14361da177e4SLinus Torvalds /* NFS only supports OPEN on regular files */ 14371da177e4SLinus Torvalds if (!S_ISREG(inode->i_mode)) 14385584c306STrond Myklebust goto no_open_dput; 14391da177e4SLinus Torvalds openflags = nd->intent.open.flags; 14401da177e4SLinus Torvalds /* We cannot do exclusive creation on a positive dentry */ 14411da177e4SLinus Torvalds if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL)) 14425584c306STrond Myklebust goto no_open_dput; 14431da177e4SLinus Torvalds /* We can't create new files, or truncate existing ones here */ 14440a377cffSTrond Myklebust openflags &= ~(O_CREAT|O_EXCL|O_TRUNC); 14451da177e4SLinus Torvalds 1446b8d4caddSTrond Myklebust ctx = nameidata_to_nfs_open_context(dentry, nd); 1447b8d4caddSTrond Myklebust ret = PTR_ERR(ctx); 1448b8d4caddSTrond Myklebust if (IS_ERR(ctx)) 1449b8d4caddSTrond Myklebust goto out; 14501da177e4SLinus Torvalds /* 14511b1dcc1bSJes Sorensen * Note: we're not holding inode->i_mutex and so may be racing with 14521da177e4SLinus Torvalds * operations that change the directory. We therefore save the 14531da177e4SLinus Torvalds * change attribute *before* we do the RPC call. 14541da177e4SLinus Torvalds */ 14552b484297STrond Myklebust inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL); 1456535918f1STrond Myklebust if (IS_ERR(inode)) { 1457535918f1STrond Myklebust ret = PTR_ERR(inode); 1458535918f1STrond Myklebust switch (ret) { 1459535918f1STrond Myklebust case -EPERM: 1460535918f1STrond Myklebust case -EACCES: 1461535918f1STrond Myklebust case -EDQUOT: 1462535918f1STrond Myklebust case -ENOSPC: 1463535918f1STrond Myklebust case -EROFS: 1464535918f1STrond Myklebust goto out_put_ctx; 1465535918f1STrond Myklebust default: 1466535918f1STrond Myklebust goto out_drop; 1467535918f1STrond Myklebust } 1468535918f1STrond Myklebust } 1469535918f1STrond Myklebust iput(inode); 1470898f635cSTrond Myklebust if (inode != dentry->d_inode) 1471535918f1STrond Myklebust goto out_drop; 1472898f635cSTrond Myklebust 1473898f635cSTrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 1474898f635cSTrond Myklebust ret = nfs_intent_set_file(nd, ctx); 1475898f635cSTrond Myklebust if (ret >= 0) 1476898f635cSTrond Myklebust ret = 1; 14771da177e4SLinus Torvalds out: 14781da177e4SLinus Torvalds dput(parent); 14791da177e4SLinus Torvalds return ret; 1480535918f1STrond Myklebust out_drop: 1481535918f1STrond Myklebust d_drop(dentry); 1482535918f1STrond Myklebust ret = 0; 1483535918f1STrond Myklebust out_put_ctx: 1484535918f1STrond Myklebust put_nfs_open_context(ctx); 1485535918f1STrond Myklebust goto out; 1486535918f1STrond Myklebust 14875584c306STrond Myklebust no_open_dput: 14881da177e4SLinus Torvalds dput(parent); 14895584c306STrond Myklebust no_open: 14901da177e4SLinus Torvalds return nfs_lookup_revalidate(dentry, nd); 14911da177e4SLinus Torvalds } 1492c0204fd2STrond Myklebust 1493c0204fd2STrond Myklebust static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, 1494c0204fd2STrond Myklebust struct nameidata *nd) 1495c0204fd2STrond Myklebust { 1496c0204fd2STrond Myklebust struct nfs_open_context *ctx = NULL; 1497c0204fd2STrond Myklebust struct iattr attr; 1498c0204fd2STrond Myklebust int error; 1499c0204fd2STrond Myklebust int open_flags = 0; 1500c0204fd2STrond Myklebust 1501c0204fd2STrond Myklebust dfprintk(VFS, "NFS: create(%s/%ld), %s\n", 1502c0204fd2STrond Myklebust dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 1503c0204fd2STrond Myklebust 1504c0204fd2STrond Myklebust attr.ia_mode = mode; 1505c0204fd2STrond Myklebust attr.ia_valid = ATTR_MODE; 1506c0204fd2STrond Myklebust 1507c0204fd2STrond Myklebust if ((nd->flags & LOOKUP_CREATE) != 0) { 1508c0204fd2STrond Myklebust open_flags = nd->intent.open.flags; 1509c0204fd2STrond Myklebust 1510c0204fd2STrond Myklebust ctx = nameidata_to_nfs_open_context(dentry, nd); 1511c0204fd2STrond Myklebust error = PTR_ERR(ctx); 1512c0204fd2STrond Myklebust if (IS_ERR(ctx)) 1513898f635cSTrond Myklebust goto out_err_drop; 1514c0204fd2STrond Myklebust } 1515c0204fd2STrond Myklebust 1516c0204fd2STrond Myklebust error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx); 1517c0204fd2STrond Myklebust if (error != 0) 1518c0204fd2STrond Myklebust goto out_put_ctx; 1519898f635cSTrond Myklebust if (ctx != NULL) { 1520898f635cSTrond Myklebust error = nfs_intent_set_file(nd, ctx); 1521898f635cSTrond Myklebust if (error < 0) 1522898f635cSTrond Myklebust goto out_err; 1523898f635cSTrond Myklebust } 1524c0204fd2STrond Myklebust return 0; 1525c0204fd2STrond Myklebust out_put_ctx: 1526c0204fd2STrond Myklebust if (ctx != NULL) 1527c0204fd2STrond Myklebust put_nfs_open_context(ctx); 1528898f635cSTrond Myklebust out_err_drop: 1529c0204fd2STrond Myklebust d_drop(dentry); 1530898f635cSTrond Myklebust out_err: 1531c0204fd2STrond Myklebust return error; 1532c0204fd2STrond Myklebust } 1533c0204fd2STrond Myklebust 15341da177e4SLinus Torvalds #endif /* CONFIG_NFSV4 */ 15351da177e4SLinus Torvalds 15361da177e4SLinus Torvalds /* 15371da177e4SLinus Torvalds * Code common to create, mkdir, and mknod. 15381da177e4SLinus Torvalds */ 15391da177e4SLinus Torvalds int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle, 15401da177e4SLinus Torvalds struct nfs_fattr *fattr) 15411da177e4SLinus Torvalds { 1542fab728e1STrond Myklebust struct dentry *parent = dget_parent(dentry); 1543fab728e1STrond Myklebust struct inode *dir = parent->d_inode; 15441da177e4SLinus Torvalds struct inode *inode; 15451da177e4SLinus Torvalds int error = -EACCES; 15461da177e4SLinus Torvalds 1547fab728e1STrond Myklebust d_drop(dentry); 1548fab728e1STrond Myklebust 15491da177e4SLinus Torvalds /* We may have been initialized further down */ 15501da177e4SLinus Torvalds if (dentry->d_inode) 1551fab728e1STrond Myklebust goto out; 15521da177e4SLinus Torvalds if (fhandle->size == 0) { 15531da177e4SLinus Torvalds error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr); 15541da177e4SLinus Torvalds if (error) 1555fab728e1STrond Myklebust goto out_error; 15561da177e4SLinus Torvalds } 15575724ab37STrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 15581da177e4SLinus Torvalds if (!(fattr->valid & NFS_ATTR_FATTR)) { 15591da177e4SLinus Torvalds struct nfs_server *server = NFS_SB(dentry->d_sb); 15608fa5c000SDavid Howells error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr); 15611da177e4SLinus Torvalds if (error < 0) 1562fab728e1STrond Myklebust goto out_error; 15631da177e4SLinus Torvalds } 15641da177e4SLinus Torvalds inode = nfs_fhget(dentry->d_sb, fhandle, fattr); 156503f28e3aSTrond Myklebust error = PTR_ERR(inode); 156603f28e3aSTrond Myklebust if (IS_ERR(inode)) 1567fab728e1STrond Myklebust goto out_error; 1568fab728e1STrond Myklebust d_add(dentry, inode); 1569fab728e1STrond Myklebust out: 1570fab728e1STrond Myklebust dput(parent); 15711da177e4SLinus Torvalds return 0; 1572fab728e1STrond Myklebust out_error: 1573fab728e1STrond Myklebust nfs_mark_for_revalidate(dir); 1574fab728e1STrond Myklebust dput(parent); 1575fab728e1STrond Myklebust return error; 15761da177e4SLinus Torvalds } 15771da177e4SLinus Torvalds 15781da177e4SLinus Torvalds /* 15791da177e4SLinus Torvalds * Following a failed create operation, we drop the dentry rather 15801da177e4SLinus Torvalds * than retain a negative dentry. This avoids a problem in the event 15811da177e4SLinus Torvalds * that the operation succeeded on the server, but an error in the 15821da177e4SLinus Torvalds * reply path made it appear to have failed. 15831da177e4SLinus Torvalds */ 15841da177e4SLinus Torvalds static int nfs_create(struct inode *dir, struct dentry *dentry, int mode, 15851da177e4SLinus Torvalds struct nameidata *nd) 15861da177e4SLinus Torvalds { 15871da177e4SLinus Torvalds struct iattr attr; 15881da177e4SLinus Torvalds int error; 15898a0eebf6STrond Myklebust int open_flags = 0; 15901da177e4SLinus Torvalds 15911e7cb3dcSChuck Lever dfprintk(VFS, "NFS: create(%s/%ld), %s\n", 15921e7cb3dcSChuck Lever dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 15931da177e4SLinus Torvalds 15941da177e4SLinus Torvalds attr.ia_mode = mode; 15951da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 15961da177e4SLinus Torvalds 15978a0eebf6STrond Myklebust if ((nd->flags & LOOKUP_CREATE) != 0) 15988a0eebf6STrond Myklebust open_flags = nd->intent.open.flags; 15998a0eebf6STrond Myklebust 16008a0eebf6STrond Myklebust error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, NULL); 16011da177e4SLinus Torvalds if (error != 0) 16021da177e4SLinus Torvalds goto out_err; 16031da177e4SLinus Torvalds return 0; 16041da177e4SLinus Torvalds out_err: 16051da177e4SLinus Torvalds d_drop(dentry); 16061da177e4SLinus Torvalds return error; 16071da177e4SLinus Torvalds } 16081da177e4SLinus Torvalds 16091da177e4SLinus Torvalds /* 16101da177e4SLinus Torvalds * See comments for nfs_proc_create regarding failed operations. 16111da177e4SLinus Torvalds */ 16121da177e4SLinus Torvalds static int 16131da177e4SLinus Torvalds nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev) 16141da177e4SLinus Torvalds { 16151da177e4SLinus Torvalds struct iattr attr; 16161da177e4SLinus Torvalds int status; 16171da177e4SLinus Torvalds 16181e7cb3dcSChuck Lever dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n", 16191e7cb3dcSChuck Lever dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 16201da177e4SLinus Torvalds 16211da177e4SLinus Torvalds if (!new_valid_dev(rdev)) 16221da177e4SLinus Torvalds return -EINVAL; 16231da177e4SLinus Torvalds 16241da177e4SLinus Torvalds attr.ia_mode = mode; 16251da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 16261da177e4SLinus Torvalds 16271da177e4SLinus Torvalds status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev); 16281da177e4SLinus Torvalds if (status != 0) 16291da177e4SLinus Torvalds goto out_err; 16301da177e4SLinus Torvalds return 0; 16311da177e4SLinus Torvalds out_err: 16321da177e4SLinus Torvalds d_drop(dentry); 16331da177e4SLinus Torvalds return status; 16341da177e4SLinus Torvalds } 16351da177e4SLinus Torvalds 16361da177e4SLinus Torvalds /* 16371da177e4SLinus Torvalds * See comments for nfs_proc_create regarding failed operations. 16381da177e4SLinus Torvalds */ 16391da177e4SLinus Torvalds static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) 16401da177e4SLinus Torvalds { 16411da177e4SLinus Torvalds struct iattr attr; 16421da177e4SLinus Torvalds int error; 16431da177e4SLinus Torvalds 16441e7cb3dcSChuck Lever dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n", 16451e7cb3dcSChuck Lever dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 16461da177e4SLinus Torvalds 16471da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 16481da177e4SLinus Torvalds attr.ia_mode = mode | S_IFDIR; 16491da177e4SLinus Torvalds 16501da177e4SLinus Torvalds error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr); 16511da177e4SLinus Torvalds if (error != 0) 16521da177e4SLinus Torvalds goto out_err; 16531da177e4SLinus Torvalds return 0; 16541da177e4SLinus Torvalds out_err: 16551da177e4SLinus Torvalds d_drop(dentry); 16561da177e4SLinus Torvalds return error; 16571da177e4SLinus Torvalds } 16581da177e4SLinus Torvalds 1659d45b9d8bSTrond Myklebust static void nfs_dentry_handle_enoent(struct dentry *dentry) 1660d45b9d8bSTrond Myklebust { 1661d45b9d8bSTrond Myklebust if (dentry->d_inode != NULL && !d_unhashed(dentry)) 1662d45b9d8bSTrond Myklebust d_delete(dentry); 1663d45b9d8bSTrond Myklebust } 1664d45b9d8bSTrond Myklebust 16651da177e4SLinus Torvalds static int nfs_rmdir(struct inode *dir, struct dentry *dentry) 16661da177e4SLinus Torvalds { 16671da177e4SLinus Torvalds int error; 16681da177e4SLinus Torvalds 16691e7cb3dcSChuck Lever dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n", 16701e7cb3dcSChuck Lever dir->i_sb->s_id, dir->i_ino, dentry->d_name.name); 16711da177e4SLinus Torvalds 16721da177e4SLinus Torvalds error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name); 16731da177e4SLinus Torvalds /* Ensure the VFS deletes this inode */ 16741da177e4SLinus Torvalds if (error == 0 && dentry->d_inode != NULL) 1675ce71ec36SDave Hansen clear_nlink(dentry->d_inode); 1676d45b9d8bSTrond Myklebust else if (error == -ENOENT) 1677d45b9d8bSTrond Myklebust nfs_dentry_handle_enoent(dentry); 16781da177e4SLinus Torvalds 16791da177e4SLinus Torvalds return error; 16801da177e4SLinus Torvalds } 16811da177e4SLinus Torvalds 16821da177e4SLinus Torvalds /* 16831da177e4SLinus Torvalds * Remove a file after making sure there are no pending writes, 16841da177e4SLinus Torvalds * and after checking that the file has only one user. 16851da177e4SLinus Torvalds * 16861da177e4SLinus Torvalds * We invalidate the attribute cache and free the inode prior to the operation 16871da177e4SLinus Torvalds * to avoid possible races if the server reuses the inode. 16881da177e4SLinus Torvalds */ 16891da177e4SLinus Torvalds static int nfs_safe_remove(struct dentry *dentry) 16901da177e4SLinus Torvalds { 16911da177e4SLinus Torvalds struct inode *dir = dentry->d_parent->d_inode; 16921da177e4SLinus Torvalds struct inode *inode = dentry->d_inode; 16931da177e4SLinus Torvalds int error = -EBUSY; 16941da177e4SLinus Torvalds 16951da177e4SLinus Torvalds dfprintk(VFS, "NFS: safe_remove(%s/%s)\n", 16961da177e4SLinus Torvalds dentry->d_parent->d_name.name, dentry->d_name.name); 16971da177e4SLinus Torvalds 16981da177e4SLinus Torvalds /* If the dentry was sillyrenamed, we simply call d_delete() */ 16991da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 17001da177e4SLinus Torvalds error = 0; 17011da177e4SLinus Torvalds goto out; 17021da177e4SLinus Torvalds } 17031da177e4SLinus Torvalds 17041da177e4SLinus Torvalds if (inode != NULL) { 1705cae7a073STrond Myklebust nfs_inode_return_delegation(inode); 17061da177e4SLinus Torvalds error = NFS_PROTO(dir)->remove(dir, &dentry->d_name); 17071da177e4SLinus Torvalds /* The VFS may want to delete this inode */ 17081da177e4SLinus Torvalds if (error == 0) 17091b83d707STrond Myklebust nfs_drop_nlink(inode); 17105ba7cc48STrond Myklebust nfs_mark_for_revalidate(inode); 17111da177e4SLinus Torvalds } else 17121da177e4SLinus Torvalds error = NFS_PROTO(dir)->remove(dir, &dentry->d_name); 1713d45b9d8bSTrond Myklebust if (error == -ENOENT) 1714d45b9d8bSTrond Myklebust nfs_dentry_handle_enoent(dentry); 17151da177e4SLinus Torvalds out: 17161da177e4SLinus Torvalds return error; 17171da177e4SLinus Torvalds } 17181da177e4SLinus Torvalds 17191da177e4SLinus Torvalds /* We do silly rename. In case sillyrename() returns -EBUSY, the inode 17201da177e4SLinus Torvalds * belongs to an active ".nfs..." file and we return -EBUSY. 17211da177e4SLinus Torvalds * 17221da177e4SLinus Torvalds * If sillyrename() returns 0, we do nothing, otherwise we unlink. 17231da177e4SLinus Torvalds */ 17241da177e4SLinus Torvalds static int nfs_unlink(struct inode *dir, struct dentry *dentry) 17251da177e4SLinus Torvalds { 17261da177e4SLinus Torvalds int error; 17271da177e4SLinus Torvalds int need_rehash = 0; 17281da177e4SLinus Torvalds 17291da177e4SLinus Torvalds dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id, 17301da177e4SLinus Torvalds dir->i_ino, dentry->d_name.name); 17311da177e4SLinus Torvalds 17321da177e4SLinus Torvalds spin_lock(&dentry->d_lock); 1733b7ab39f6SNick Piggin if (dentry->d_count > 1) { 17341da177e4SLinus Torvalds spin_unlock(&dentry->d_lock); 1735ccfeb506STrond Myklebust /* Start asynchronous writeout of the inode */ 1736ccfeb506STrond Myklebust write_inode_now(dentry->d_inode, 0); 17371da177e4SLinus Torvalds error = nfs_sillyrename(dir, dentry); 17381da177e4SLinus Torvalds return error; 17391da177e4SLinus Torvalds } 17401da177e4SLinus Torvalds if (!d_unhashed(dentry)) { 17411da177e4SLinus Torvalds __d_drop(dentry); 17421da177e4SLinus Torvalds need_rehash = 1; 17431da177e4SLinus Torvalds } 17441da177e4SLinus Torvalds spin_unlock(&dentry->d_lock); 17451da177e4SLinus Torvalds error = nfs_safe_remove(dentry); 1746d45b9d8bSTrond Myklebust if (!error || error == -ENOENT) { 17471da177e4SLinus Torvalds nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 17481da177e4SLinus Torvalds } else if (need_rehash) 17491da177e4SLinus Torvalds d_rehash(dentry); 17501da177e4SLinus Torvalds return error; 17511da177e4SLinus Torvalds } 17521da177e4SLinus Torvalds 1753873101b3SChuck Lever /* 1754873101b3SChuck Lever * To create a symbolic link, most file systems instantiate a new inode, 1755873101b3SChuck Lever * add a page to it containing the path, then write it out to the disk 1756873101b3SChuck Lever * using prepare_write/commit_write. 1757873101b3SChuck Lever * 1758873101b3SChuck Lever * Unfortunately the NFS client can't create the in-core inode first 1759873101b3SChuck Lever * because it needs a file handle to create an in-core inode (see 1760873101b3SChuck Lever * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the 1761873101b3SChuck Lever * symlink request has completed on the server. 1762873101b3SChuck Lever * 1763873101b3SChuck Lever * So instead we allocate a raw page, copy the symname into it, then do 1764873101b3SChuck Lever * the SYMLINK request with the page as the buffer. If it succeeds, we 1765873101b3SChuck Lever * now have a new file handle and can instantiate an in-core NFS inode 1766873101b3SChuck Lever * and move the raw page into its mapping. 1767873101b3SChuck Lever */ 1768873101b3SChuck Lever static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname) 17691da177e4SLinus Torvalds { 1770873101b3SChuck Lever struct pagevec lru_pvec; 1771873101b3SChuck Lever struct page *page; 1772873101b3SChuck Lever char *kaddr; 17731da177e4SLinus Torvalds struct iattr attr; 1774873101b3SChuck Lever unsigned int pathlen = strlen(symname); 17751da177e4SLinus Torvalds int error; 17761da177e4SLinus Torvalds 17771da177e4SLinus Torvalds dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id, 17781da177e4SLinus Torvalds dir->i_ino, dentry->d_name.name, symname); 17791da177e4SLinus Torvalds 1780873101b3SChuck Lever if (pathlen > PAGE_SIZE) 1781873101b3SChuck Lever return -ENAMETOOLONG; 17821da177e4SLinus Torvalds 1783873101b3SChuck Lever attr.ia_mode = S_IFLNK | S_IRWXUGO; 1784873101b3SChuck Lever attr.ia_valid = ATTR_MODE; 17851da177e4SLinus Torvalds 178683d93f22SJeff Layton page = alloc_page(GFP_HIGHUSER); 178776566991STrond Myklebust if (!page) 1788873101b3SChuck Lever return -ENOMEM; 1789873101b3SChuck Lever 1790873101b3SChuck Lever kaddr = kmap_atomic(page, KM_USER0); 1791873101b3SChuck Lever memcpy(kaddr, symname, pathlen); 1792873101b3SChuck Lever if (pathlen < PAGE_SIZE) 1793873101b3SChuck Lever memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen); 1794873101b3SChuck Lever kunmap_atomic(kaddr, KM_USER0); 1795873101b3SChuck Lever 179694a6d753SChuck Lever error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr); 1797873101b3SChuck Lever if (error != 0) { 1798873101b3SChuck Lever dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n", 1799873101b3SChuck Lever dir->i_sb->s_id, dir->i_ino, 1800873101b3SChuck Lever dentry->d_name.name, symname, error); 18011da177e4SLinus Torvalds d_drop(dentry); 1802873101b3SChuck Lever __free_page(page); 18031da177e4SLinus Torvalds return error; 18041da177e4SLinus Torvalds } 18051da177e4SLinus Torvalds 1806873101b3SChuck Lever /* 1807873101b3SChuck Lever * No big deal if we can't add this page to the page cache here. 1808873101b3SChuck Lever * READLINK will get the missing page from the server if needed. 1809873101b3SChuck Lever */ 1810873101b3SChuck Lever pagevec_init(&lru_pvec, 0); 1811873101b3SChuck Lever if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0, 1812873101b3SChuck Lever GFP_KERNEL)) { 181339cf8a13SChuck Lever pagevec_add(&lru_pvec, page); 18144f98a2feSRik van Riel pagevec_lru_add_file(&lru_pvec); 1815873101b3SChuck Lever SetPageUptodate(page); 1816873101b3SChuck Lever unlock_page(page); 1817873101b3SChuck Lever } else 1818873101b3SChuck Lever __free_page(page); 1819873101b3SChuck Lever 1820873101b3SChuck Lever return 0; 1821873101b3SChuck Lever } 1822873101b3SChuck Lever 18231da177e4SLinus Torvalds static int 18241da177e4SLinus Torvalds nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) 18251da177e4SLinus Torvalds { 18261da177e4SLinus Torvalds struct inode *inode = old_dentry->d_inode; 18271da177e4SLinus Torvalds int error; 18281da177e4SLinus Torvalds 18291da177e4SLinus Torvalds dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n", 18301da177e4SLinus Torvalds old_dentry->d_parent->d_name.name, old_dentry->d_name.name, 18311da177e4SLinus Torvalds dentry->d_parent->d_name.name, dentry->d_name.name); 18321da177e4SLinus Torvalds 18339a3936aaSTrond Myklebust nfs_inode_return_delegation(inode); 18349a3936aaSTrond Myklebust 18359697d234STrond Myklebust d_drop(dentry); 18361da177e4SLinus Torvalds error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name); 1837cf809556STrond Myklebust if (error == 0) { 18387de9c6eeSAl Viro ihold(inode); 18399697d234STrond Myklebust d_add(dentry, inode); 1840cf809556STrond Myklebust } 18411da177e4SLinus Torvalds return error; 18421da177e4SLinus Torvalds } 18431da177e4SLinus Torvalds 18441da177e4SLinus Torvalds /* 18451da177e4SLinus Torvalds * RENAME 18461da177e4SLinus Torvalds * FIXME: Some nfsds, like the Linux user space nfsd, may generate a 18471da177e4SLinus Torvalds * different file handle for the same inode after a rename (e.g. when 18481da177e4SLinus Torvalds * moving to a different directory). A fail-safe method to do so would 18491da177e4SLinus Torvalds * be to look up old_dir/old_name, create a link to new_dir/new_name and 18501da177e4SLinus Torvalds * rename the old file using the sillyrename stuff. This way, the original 18511da177e4SLinus Torvalds * file in old_dir will go away when the last process iput()s the inode. 18521da177e4SLinus Torvalds * 18531da177e4SLinus Torvalds * FIXED. 18541da177e4SLinus Torvalds * 18551da177e4SLinus Torvalds * It actually works quite well. One needs to have the possibility for 18561da177e4SLinus Torvalds * at least one ".nfs..." file in each directory the file ever gets 18571da177e4SLinus Torvalds * moved or linked to which happens automagically with the new 18581da177e4SLinus Torvalds * implementation that only depends on the dcache stuff instead of 18591da177e4SLinus Torvalds * using the inode layer 18601da177e4SLinus Torvalds * 18611da177e4SLinus Torvalds * Unfortunately, things are a little more complicated than indicated 18621da177e4SLinus Torvalds * above. For a cross-directory move, we want to make sure we can get 18631da177e4SLinus Torvalds * rid of the old inode after the operation. This means there must be 18641da177e4SLinus Torvalds * no pending writes (if it's a file), and the use count must be 1. 18651da177e4SLinus Torvalds * If these conditions are met, we can drop the dentries before doing 18661da177e4SLinus Torvalds * the rename. 18671da177e4SLinus Torvalds */ 18681da177e4SLinus Torvalds static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry, 18691da177e4SLinus Torvalds struct inode *new_dir, struct dentry *new_dentry) 18701da177e4SLinus Torvalds { 18711da177e4SLinus Torvalds struct inode *old_inode = old_dentry->d_inode; 18721da177e4SLinus Torvalds struct inode *new_inode = new_dentry->d_inode; 18731da177e4SLinus Torvalds struct dentry *dentry = NULL, *rehash = NULL; 18741da177e4SLinus Torvalds int error = -EBUSY; 18751da177e4SLinus Torvalds 18761da177e4SLinus Torvalds dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n", 18771da177e4SLinus Torvalds old_dentry->d_parent->d_name.name, old_dentry->d_name.name, 18781da177e4SLinus Torvalds new_dentry->d_parent->d_name.name, new_dentry->d_name.name, 1879b7ab39f6SNick Piggin new_dentry->d_count); 18801da177e4SLinus Torvalds 18811da177e4SLinus Torvalds /* 188228f79a1aSMiklos Szeredi * For non-directories, check whether the target is busy and if so, 188328f79a1aSMiklos Szeredi * make a copy of the dentry and then do a silly-rename. If the 188428f79a1aSMiklos Szeredi * silly-rename succeeds, the copied dentry is hashed and becomes 188528f79a1aSMiklos Szeredi * the new target. 18861da177e4SLinus Torvalds */ 188727226104SMiklos Szeredi if (new_inode && !S_ISDIR(new_inode->i_mode)) { 188827226104SMiklos Szeredi /* 188927226104SMiklos Szeredi * To prevent any new references to the target during the 189027226104SMiklos Szeredi * rename, we unhash the dentry in advance. 189127226104SMiklos Szeredi */ 189227226104SMiklos Szeredi if (!d_unhashed(new_dentry)) { 189327226104SMiklos Szeredi d_drop(new_dentry); 189427226104SMiklos Szeredi rehash = new_dentry; 189527226104SMiklos Szeredi } 189627226104SMiklos Szeredi 1897b7ab39f6SNick Piggin if (new_dentry->d_count > 2) { 18981da177e4SLinus Torvalds int err; 189927226104SMiklos Szeredi 19001da177e4SLinus Torvalds /* copy the target dentry's name */ 19011da177e4SLinus Torvalds dentry = d_alloc(new_dentry->d_parent, 19021da177e4SLinus Torvalds &new_dentry->d_name); 19031da177e4SLinus Torvalds if (!dentry) 19041da177e4SLinus Torvalds goto out; 19051da177e4SLinus Torvalds 19061da177e4SLinus Torvalds /* silly-rename the existing target ... */ 19071da177e4SLinus Torvalds err = nfs_sillyrename(new_dir, new_dentry); 190824e93025SMiklos Szeredi if (err) 19091da177e4SLinus Torvalds goto out; 191024e93025SMiklos Szeredi 191124e93025SMiklos Szeredi new_dentry = dentry; 191256335936SOGAWA Hirofumi rehash = NULL; 191324e93025SMiklos Szeredi new_inode = NULL; 1914b1e4adf4STrond Myklebust } 191527226104SMiklos Szeredi } 19161da177e4SLinus Torvalds 1917cae7a073STrond Myklebust nfs_inode_return_delegation(old_inode); 1918b1e4adf4STrond Myklebust if (new_inode != NULL) 191924174119STrond Myklebust nfs_inode_return_delegation(new_inode); 19201da177e4SLinus Torvalds 19211da177e4SLinus Torvalds error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name, 19221da177e4SLinus Torvalds new_dir, &new_dentry->d_name); 19235ba7cc48STrond Myklebust nfs_mark_for_revalidate(old_inode); 19241da177e4SLinus Torvalds out: 19251da177e4SLinus Torvalds if (rehash) 19261da177e4SLinus Torvalds d_rehash(rehash); 19271da177e4SLinus Torvalds if (!error) { 1928b1e4adf4STrond Myklebust if (new_inode != NULL) 1929b1e4adf4STrond Myklebust nfs_drop_nlink(new_inode); 19301da177e4SLinus Torvalds d_move(old_dentry, new_dentry); 19318fb559f8SChuck Lever nfs_set_verifier(new_dentry, 19328fb559f8SChuck Lever nfs_save_change_attribute(new_dir)); 1933d45b9d8bSTrond Myklebust } else if (error == -ENOENT) 1934d45b9d8bSTrond Myklebust nfs_dentry_handle_enoent(old_dentry); 19351da177e4SLinus Torvalds 19361da177e4SLinus Torvalds /* new dentry created? */ 19371da177e4SLinus Torvalds if (dentry) 19381da177e4SLinus Torvalds dput(dentry); 19391da177e4SLinus Torvalds return error; 19401da177e4SLinus Torvalds } 19411da177e4SLinus Torvalds 1942cfcea3e8STrond Myklebust static DEFINE_SPINLOCK(nfs_access_lru_lock); 1943cfcea3e8STrond Myklebust static LIST_HEAD(nfs_access_lru_list); 1944cfcea3e8STrond Myklebust static atomic_long_t nfs_access_nr_entries; 1945cfcea3e8STrond Myklebust 19461c3c07e9STrond Myklebust static void nfs_access_free_entry(struct nfs_access_entry *entry) 19471c3c07e9STrond Myklebust { 19481c3c07e9STrond Myklebust put_rpccred(entry->cred); 19491c3c07e9STrond Myklebust kfree(entry); 1950cfcea3e8STrond Myklebust smp_mb__before_atomic_dec(); 1951cfcea3e8STrond Myklebust atomic_long_dec(&nfs_access_nr_entries); 1952cfcea3e8STrond Myklebust smp_mb__after_atomic_dec(); 19531c3c07e9STrond Myklebust } 19541c3c07e9STrond Myklebust 19551a81bb8aSTrond Myklebust static void nfs_access_free_list(struct list_head *head) 19561a81bb8aSTrond Myklebust { 19571a81bb8aSTrond Myklebust struct nfs_access_entry *cache; 19581a81bb8aSTrond Myklebust 19591a81bb8aSTrond Myklebust while (!list_empty(head)) { 19601a81bb8aSTrond Myklebust cache = list_entry(head->next, struct nfs_access_entry, lru); 19611a81bb8aSTrond Myklebust list_del(&cache->lru); 19621a81bb8aSTrond Myklebust nfs_access_free_entry(cache); 19631a81bb8aSTrond Myklebust } 19641a81bb8aSTrond Myklebust } 19651a81bb8aSTrond Myklebust 19667f8275d0SDave Chinner int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask) 1967979df72eSTrond Myklebust { 1968979df72eSTrond Myklebust LIST_HEAD(head); 1969aa510da5STrond Myklebust struct nfs_inode *nfsi, *next; 1970979df72eSTrond Myklebust struct nfs_access_entry *cache; 1971979df72eSTrond Myklebust 197261d5eb29STrond Myklebust if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL) 197361d5eb29STrond Myklebust return (nr_to_scan == 0) ? 0 : -1; 19749c7e7e23STrond Myklebust 1975a50f7951STrond Myklebust spin_lock(&nfs_access_lru_lock); 1976aa510da5STrond Myklebust list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) { 1977979df72eSTrond Myklebust struct inode *inode; 1978979df72eSTrond Myklebust 1979979df72eSTrond Myklebust if (nr_to_scan-- == 0) 1980979df72eSTrond Myklebust break; 19819c7e7e23STrond Myklebust inode = &nfsi->vfs_inode; 1982979df72eSTrond Myklebust spin_lock(&inode->i_lock); 1983979df72eSTrond Myklebust if (list_empty(&nfsi->access_cache_entry_lru)) 1984979df72eSTrond Myklebust goto remove_lru_entry; 1985979df72eSTrond Myklebust cache = list_entry(nfsi->access_cache_entry_lru.next, 1986979df72eSTrond Myklebust struct nfs_access_entry, lru); 1987979df72eSTrond Myklebust list_move(&cache->lru, &head); 1988979df72eSTrond Myklebust rb_erase(&cache->rb_node, &nfsi->access_cache); 1989979df72eSTrond Myklebust if (!list_empty(&nfsi->access_cache_entry_lru)) 1990979df72eSTrond Myklebust list_move_tail(&nfsi->access_cache_inode_lru, 1991979df72eSTrond Myklebust &nfs_access_lru_list); 1992979df72eSTrond Myklebust else { 1993979df72eSTrond Myklebust remove_lru_entry: 1994979df72eSTrond Myklebust list_del_init(&nfsi->access_cache_inode_lru); 19959c7e7e23STrond Myklebust smp_mb__before_clear_bit(); 1996979df72eSTrond Myklebust clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags); 19979c7e7e23STrond Myklebust smp_mb__after_clear_bit(); 1998979df72eSTrond Myklebust } 199959844a9bSTrond Myklebust spin_unlock(&inode->i_lock); 2000979df72eSTrond Myklebust } 2001979df72eSTrond Myklebust spin_unlock(&nfs_access_lru_lock); 20021a81bb8aSTrond Myklebust nfs_access_free_list(&head); 2003979df72eSTrond Myklebust return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure; 2004979df72eSTrond Myklebust } 2005979df72eSTrond Myklebust 20061a81bb8aSTrond Myklebust static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head) 20071c3c07e9STrond Myklebust { 20081c3c07e9STrond Myklebust struct rb_root *root_node = &nfsi->access_cache; 20091a81bb8aSTrond Myklebust struct rb_node *n; 20101c3c07e9STrond Myklebust struct nfs_access_entry *entry; 20111c3c07e9STrond Myklebust 20121c3c07e9STrond Myklebust /* Unhook entries from the cache */ 20131c3c07e9STrond Myklebust while ((n = rb_first(root_node)) != NULL) { 20141c3c07e9STrond Myklebust entry = rb_entry(n, struct nfs_access_entry, rb_node); 20151c3c07e9STrond Myklebust rb_erase(n, root_node); 20161a81bb8aSTrond Myklebust list_move(&entry->lru, head); 20171c3c07e9STrond Myklebust } 20181c3c07e9STrond Myklebust nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS; 20191c3c07e9STrond Myklebust } 20201c3c07e9STrond Myklebust 20211c3c07e9STrond Myklebust void nfs_access_zap_cache(struct inode *inode) 20221c3c07e9STrond Myklebust { 20231a81bb8aSTrond Myklebust LIST_HEAD(head); 20241a81bb8aSTrond Myklebust 20251a81bb8aSTrond Myklebust if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0) 20261a81bb8aSTrond Myklebust return; 2027cfcea3e8STrond Myklebust /* Remove from global LRU init */ 2028cfcea3e8STrond Myklebust spin_lock(&nfs_access_lru_lock); 20291a81bb8aSTrond Myklebust if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) 2030cfcea3e8STrond Myklebust list_del_init(&NFS_I(inode)->access_cache_inode_lru); 2031cfcea3e8STrond Myklebust 20321c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 20331a81bb8aSTrond Myklebust __nfs_access_zap_cache(NFS_I(inode), &head); 20341a81bb8aSTrond Myklebust spin_unlock(&inode->i_lock); 20351a81bb8aSTrond Myklebust spin_unlock(&nfs_access_lru_lock); 20361a81bb8aSTrond Myklebust nfs_access_free_list(&head); 20371c3c07e9STrond Myklebust } 20381c3c07e9STrond Myklebust 20391c3c07e9STrond Myklebust static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred) 20401c3c07e9STrond Myklebust { 20411c3c07e9STrond Myklebust struct rb_node *n = NFS_I(inode)->access_cache.rb_node; 20421c3c07e9STrond Myklebust struct nfs_access_entry *entry; 20431c3c07e9STrond Myklebust 20441c3c07e9STrond Myklebust while (n != NULL) { 20451c3c07e9STrond Myklebust entry = rb_entry(n, struct nfs_access_entry, rb_node); 20461c3c07e9STrond Myklebust 20471c3c07e9STrond Myklebust if (cred < entry->cred) 20481c3c07e9STrond Myklebust n = n->rb_left; 20491c3c07e9STrond Myklebust else if (cred > entry->cred) 20501c3c07e9STrond Myklebust n = n->rb_right; 20511c3c07e9STrond Myklebust else 20521c3c07e9STrond Myklebust return entry; 20531c3c07e9STrond Myklebust } 20541c3c07e9STrond Myklebust return NULL; 20551c3c07e9STrond Myklebust } 20561c3c07e9STrond Myklebust 2057af22f94aSTrond Myklebust static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res) 20581da177e4SLinus Torvalds { 205955296809SChuck Lever struct nfs_inode *nfsi = NFS_I(inode); 20601c3c07e9STrond Myklebust struct nfs_access_entry *cache; 20611c3c07e9STrond Myklebust int err = -ENOENT; 20621da177e4SLinus Torvalds 20631c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 20641c3c07e9STrond Myklebust if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS) 20651c3c07e9STrond Myklebust goto out_zap; 20661c3c07e9STrond Myklebust cache = nfs_access_search_rbtree(inode, cred); 20671c3c07e9STrond Myklebust if (cache == NULL) 20681c3c07e9STrond Myklebust goto out; 2069b4d2314bSTrond Myklebust if (!nfs_have_delegated_attributes(inode) && 207064672d55SPeter Staubach !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo)) 20711c3c07e9STrond Myklebust goto out_stale; 20721c3c07e9STrond Myklebust res->jiffies = cache->jiffies; 20731c3c07e9STrond Myklebust res->cred = cache->cred; 20741c3c07e9STrond Myklebust res->mask = cache->mask; 2075cfcea3e8STrond Myklebust list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru); 20761c3c07e9STrond Myklebust err = 0; 20771c3c07e9STrond Myklebust out: 20781c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 20791c3c07e9STrond Myklebust return err; 20801c3c07e9STrond Myklebust out_stale: 20811c3c07e9STrond Myklebust rb_erase(&cache->rb_node, &nfsi->access_cache); 2082cfcea3e8STrond Myklebust list_del(&cache->lru); 20831c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 20841c3c07e9STrond Myklebust nfs_access_free_entry(cache); 20851da177e4SLinus Torvalds return -ENOENT; 20861c3c07e9STrond Myklebust out_zap: 20871a81bb8aSTrond Myklebust spin_unlock(&inode->i_lock); 20881a81bb8aSTrond Myklebust nfs_access_zap_cache(inode); 20891c3c07e9STrond Myklebust return -ENOENT; 20901c3c07e9STrond Myklebust } 20911c3c07e9STrond Myklebust 20921c3c07e9STrond Myklebust static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set) 20931c3c07e9STrond Myklebust { 2094cfcea3e8STrond Myklebust struct nfs_inode *nfsi = NFS_I(inode); 2095cfcea3e8STrond Myklebust struct rb_root *root_node = &nfsi->access_cache; 20961c3c07e9STrond Myklebust struct rb_node **p = &root_node->rb_node; 20971c3c07e9STrond Myklebust struct rb_node *parent = NULL; 20981c3c07e9STrond Myklebust struct nfs_access_entry *entry; 20991c3c07e9STrond Myklebust 21001c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 21011c3c07e9STrond Myklebust while (*p != NULL) { 21021c3c07e9STrond Myklebust parent = *p; 21031c3c07e9STrond Myklebust entry = rb_entry(parent, struct nfs_access_entry, rb_node); 21041c3c07e9STrond Myklebust 21051c3c07e9STrond Myklebust if (set->cred < entry->cred) 21061c3c07e9STrond Myklebust p = &parent->rb_left; 21071c3c07e9STrond Myklebust else if (set->cred > entry->cred) 21081c3c07e9STrond Myklebust p = &parent->rb_right; 21091c3c07e9STrond Myklebust else 21101c3c07e9STrond Myklebust goto found; 21111c3c07e9STrond Myklebust } 21121c3c07e9STrond Myklebust rb_link_node(&set->rb_node, parent, p); 21131c3c07e9STrond Myklebust rb_insert_color(&set->rb_node, root_node); 2114cfcea3e8STrond Myklebust list_add_tail(&set->lru, &nfsi->access_cache_entry_lru); 21151c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 21161c3c07e9STrond Myklebust return; 21171c3c07e9STrond Myklebust found: 21181c3c07e9STrond Myklebust rb_replace_node(parent, &set->rb_node, root_node); 2119cfcea3e8STrond Myklebust list_add_tail(&set->lru, &nfsi->access_cache_entry_lru); 2120cfcea3e8STrond Myklebust list_del(&entry->lru); 21211c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 21221c3c07e9STrond Myklebust nfs_access_free_entry(entry); 21231da177e4SLinus Torvalds } 21241da177e4SLinus Torvalds 2125af22f94aSTrond Myklebust static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set) 21261da177e4SLinus Torvalds { 21271c3c07e9STrond Myklebust struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL); 21281c3c07e9STrond Myklebust if (cache == NULL) 21291c3c07e9STrond Myklebust return; 21301c3c07e9STrond Myklebust RB_CLEAR_NODE(&cache->rb_node); 21311da177e4SLinus Torvalds cache->jiffies = set->jiffies; 21321c3c07e9STrond Myklebust cache->cred = get_rpccred(set->cred); 21331da177e4SLinus Torvalds cache->mask = set->mask; 21341c3c07e9STrond Myklebust 21351c3c07e9STrond Myklebust nfs_access_add_rbtree(inode, cache); 2136cfcea3e8STrond Myklebust 2137cfcea3e8STrond Myklebust /* Update accounting */ 2138cfcea3e8STrond Myklebust smp_mb__before_atomic_inc(); 2139cfcea3e8STrond Myklebust atomic_long_inc(&nfs_access_nr_entries); 2140cfcea3e8STrond Myklebust smp_mb__after_atomic_inc(); 2141cfcea3e8STrond Myklebust 2142cfcea3e8STrond Myklebust /* Add inode to global LRU list */ 21431a81bb8aSTrond Myklebust if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) { 2144cfcea3e8STrond Myklebust spin_lock(&nfs_access_lru_lock); 21451a81bb8aSTrond Myklebust if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) 21461a81bb8aSTrond Myklebust list_add_tail(&NFS_I(inode)->access_cache_inode_lru, 21471a81bb8aSTrond Myklebust &nfs_access_lru_list); 2148cfcea3e8STrond Myklebust spin_unlock(&nfs_access_lru_lock); 2149cfcea3e8STrond Myklebust } 21501da177e4SLinus Torvalds } 21511da177e4SLinus Torvalds 21521da177e4SLinus Torvalds static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask) 21531da177e4SLinus Torvalds { 21541da177e4SLinus Torvalds struct nfs_access_entry cache; 21551da177e4SLinus Torvalds int status; 21561da177e4SLinus Torvalds 21571da177e4SLinus Torvalds status = nfs_access_get_cached(inode, cred, &cache); 21581da177e4SLinus Torvalds if (status == 0) 21591da177e4SLinus Torvalds goto out; 21601da177e4SLinus Torvalds 21611da177e4SLinus Torvalds /* Be clever: ask server to check for all possible rights */ 21621da177e4SLinus Torvalds cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ; 21631da177e4SLinus Torvalds cache.cred = cred; 21641da177e4SLinus Torvalds cache.jiffies = jiffies; 21651da177e4SLinus Torvalds status = NFS_PROTO(inode)->access(inode, &cache); 2166a71ee337SSuresh Jayaraman if (status != 0) { 2167a71ee337SSuresh Jayaraman if (status == -ESTALE) { 2168a71ee337SSuresh Jayaraman nfs_zap_caches(inode); 2169a71ee337SSuresh Jayaraman if (!S_ISDIR(inode->i_mode)) 2170a71ee337SSuresh Jayaraman set_bit(NFS_INO_STALE, &NFS_I(inode)->flags); 2171a71ee337SSuresh Jayaraman } 21721da177e4SLinus Torvalds return status; 2173a71ee337SSuresh Jayaraman } 21741da177e4SLinus Torvalds nfs_access_add_cache(inode, &cache); 21751da177e4SLinus Torvalds out: 2176e6305c43SAl Viro if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) 21771da177e4SLinus Torvalds return 0; 21781da177e4SLinus Torvalds return -EACCES; 21791da177e4SLinus Torvalds } 21801da177e4SLinus Torvalds 2181af22f94aSTrond Myklebust static int nfs_open_permission_mask(int openflags) 2182af22f94aSTrond Myklebust { 2183af22f94aSTrond Myklebust int mask = 0; 2184af22f94aSTrond Myklebust 2185af22f94aSTrond Myklebust if (openflags & FMODE_READ) 2186af22f94aSTrond Myklebust mask |= MAY_READ; 2187af22f94aSTrond Myklebust if (openflags & FMODE_WRITE) 2188af22f94aSTrond Myklebust mask |= MAY_WRITE; 2189af22f94aSTrond Myklebust if (openflags & FMODE_EXEC) 2190af22f94aSTrond Myklebust mask |= MAY_EXEC; 2191af22f94aSTrond Myklebust return mask; 2192af22f94aSTrond Myklebust } 2193af22f94aSTrond Myklebust 2194af22f94aSTrond Myklebust int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags) 2195af22f94aSTrond Myklebust { 2196af22f94aSTrond Myklebust return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags)); 2197af22f94aSTrond Myklebust } 2198af22f94aSTrond Myklebust 2199b74c79e9SNick Piggin int nfs_permission(struct inode *inode, int mask, unsigned int flags) 22001da177e4SLinus Torvalds { 22011da177e4SLinus Torvalds struct rpc_cred *cred; 22021da177e4SLinus Torvalds int res = 0; 22031da177e4SLinus Torvalds 2204b74c79e9SNick Piggin if (flags & IPERM_FLAG_RCU) 2205b74c79e9SNick Piggin return -ECHILD; 2206b74c79e9SNick Piggin 220791d5b470SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSACCESS); 220891d5b470SChuck Lever 2209e6305c43SAl Viro if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) 22101da177e4SLinus Torvalds goto out; 22111da177e4SLinus Torvalds /* Is this sys_access() ? */ 22129cfcac81SEric Paris if (mask & (MAY_ACCESS | MAY_CHDIR)) 22131da177e4SLinus Torvalds goto force_lookup; 22141da177e4SLinus Torvalds 22151da177e4SLinus Torvalds switch (inode->i_mode & S_IFMT) { 22161da177e4SLinus Torvalds case S_IFLNK: 22171da177e4SLinus Torvalds goto out; 22181da177e4SLinus Torvalds case S_IFREG: 22191da177e4SLinus Torvalds /* NFSv4 has atomic_open... */ 22201da177e4SLinus Torvalds if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN) 22217ee2cb7fSFrank Filz && (mask & MAY_OPEN) 22227ee2cb7fSFrank Filz && !(mask & MAY_EXEC)) 22231da177e4SLinus Torvalds goto out; 22241da177e4SLinus Torvalds break; 22251da177e4SLinus Torvalds case S_IFDIR: 22261da177e4SLinus Torvalds /* 22271da177e4SLinus Torvalds * Optimize away all write operations, since the server 22281da177e4SLinus Torvalds * will check permissions when we perform the op. 22291da177e4SLinus Torvalds */ 22301da177e4SLinus Torvalds if ((mask & MAY_WRITE) && !(mask & MAY_READ)) 22311da177e4SLinus Torvalds goto out; 22321da177e4SLinus Torvalds } 22331da177e4SLinus Torvalds 22341da177e4SLinus Torvalds force_lookup: 22351da177e4SLinus Torvalds if (!NFS_PROTO(inode)->access) 22361da177e4SLinus Torvalds goto out_notsup; 22371da177e4SLinus Torvalds 223898a8e323STrond Myklebust cred = rpc_lookup_cred(); 22391da177e4SLinus Torvalds if (!IS_ERR(cred)) { 22401da177e4SLinus Torvalds res = nfs_do_access(inode, cred, mask); 22411da177e4SLinus Torvalds put_rpccred(cred); 22421da177e4SLinus Torvalds } else 22431da177e4SLinus Torvalds res = PTR_ERR(cred); 22441da177e4SLinus Torvalds out: 2245f696a365SMiklos Szeredi if (!res && (mask & MAY_EXEC) && !execute_ok(inode)) 2246f696a365SMiklos Szeredi res = -EACCES; 2247f696a365SMiklos Szeredi 22481e7cb3dcSChuck Lever dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n", 22491e7cb3dcSChuck Lever inode->i_sb->s_id, inode->i_ino, mask, res); 22501da177e4SLinus Torvalds return res; 22511da177e4SLinus Torvalds out_notsup: 22521da177e4SLinus Torvalds res = nfs_revalidate_inode(NFS_SERVER(inode), inode); 22531da177e4SLinus Torvalds if (res == 0) 2254b74c79e9SNick Piggin res = generic_permission(inode, mask, flags, NULL); 22551e7cb3dcSChuck Lever goto out; 22561da177e4SLinus Torvalds } 22571da177e4SLinus Torvalds 22581da177e4SLinus Torvalds /* 22591da177e4SLinus Torvalds * Local variables: 22601da177e4SLinus Torvalds * version-control: t 22611da177e4SLinus Torvalds * kept-new-versions: 5 22621da177e4SLinus Torvalds * End: 22631da177e4SLinus Torvalds */ 2264