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 20ddda8e0aSBryan Schumaker #include <linux/module.h> 211da177e4SLinus Torvalds #include <linux/time.h> 221da177e4SLinus Torvalds #include <linux/errno.h> 231da177e4SLinus Torvalds #include <linux/stat.h> 241da177e4SLinus Torvalds #include <linux/fcntl.h> 251da177e4SLinus Torvalds #include <linux/string.h> 261da177e4SLinus Torvalds #include <linux/kernel.h> 271da177e4SLinus Torvalds #include <linux/slab.h> 281da177e4SLinus Torvalds #include <linux/mm.h> 291da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h> 301da177e4SLinus Torvalds #include <linux/nfs_fs.h> 311da177e4SLinus Torvalds #include <linux/nfs_mount.h> 321da177e4SLinus Torvalds #include <linux/pagemap.h> 33873101b3SChuck Lever #include <linux/pagevec.h> 341da177e4SLinus Torvalds #include <linux/namei.h> 3554ceac45SDavid Howells #include <linux/mount.h> 36a0b8cab3SMel Gorman #include <linux/swap.h> 37e8edc6e0SAlexey Dobriyan #include <linux/sched.h> 3804e4bd1cSCatalin Marinas #include <linux/kmemleak.h> 3964c2ce8bSAneesh Kumar K.V #include <linux/xattr.h> 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds #include "delegation.h" 4291d5b470SChuck Lever #include "iostat.h" 434c30d56eSAdrian Bunk #include "internal.h" 44cd9a1c0eSTrond Myklebust #include "fscache.h" 451da177e4SLinus Torvalds 46f4ce1299STrond Myklebust #include "nfstrace.h" 47f4ce1299STrond Myklebust 481da177e4SLinus Torvalds /* #define NFS_DEBUG_VERBOSE 1 */ 491da177e4SLinus Torvalds 501da177e4SLinus Torvalds static int nfs_opendir(struct inode *, struct file *); 51480c2006SBryan Schumaker static int nfs_closedir(struct inode *, struct file *); 5223db8620SAl Viro static int nfs_readdir(struct file *, struct dir_context *); 5302c24a82SJosef Bacik static int nfs_fsync_dir(struct file *, loff_t, loff_t, int); 54f0dd2136STrond Myklebust static loff_t nfs_llseek_dir(struct file *, loff_t, int); 5511de3b11STrond Myklebust static void nfs_readdir_clear_array(struct page*); 561da177e4SLinus Torvalds 574b6f5d20SArjan van de Ven const struct file_operations nfs_dir_operations = { 58f0dd2136STrond Myklebust .llseek = nfs_llseek_dir, 591da177e4SLinus Torvalds .read = generic_read_dir, 60b044f645SBenjamin Coddington .iterate = nfs_readdir, 611da177e4SLinus Torvalds .open = nfs_opendir, 62480c2006SBryan Schumaker .release = nfs_closedir, 631da177e4SLinus Torvalds .fsync = nfs_fsync_dir, 641da177e4SLinus Torvalds }; 651da177e4SLinus Torvalds 6611de3b11STrond Myklebust const struct address_space_operations nfs_dir_aops = { 6711de3b11STrond Myklebust .freepage = nfs_readdir_clear_array, 68d1bacf9eSBryan Schumaker }; 69d1bacf9eSBryan Schumaker 700c030806STrond Myklebust static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, struct rpc_cred *cred) 71480c2006SBryan Schumaker { 72311324adSTrond Myklebust struct nfs_inode *nfsi = NFS_I(dir); 73480c2006SBryan Schumaker struct nfs_open_dir_context *ctx; 74480c2006SBryan Schumaker ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); 75480c2006SBryan Schumaker if (ctx != NULL) { 768ef2ce3eSBryan Schumaker ctx->duped = 0; 77311324adSTrond Myklebust ctx->attr_gencount = nfsi->attr_gencount; 78480c2006SBryan Schumaker ctx->dir_cookie = 0; 798ef2ce3eSBryan Schumaker ctx->dup_cookie = 0; 80480c2006SBryan Schumaker ctx->cred = get_rpccred(cred); 81311324adSTrond Myklebust spin_lock(&dir->i_lock); 82311324adSTrond Myklebust list_add(&ctx->list, &nfsi->open_files); 83311324adSTrond Myklebust spin_unlock(&dir->i_lock); 84480c2006SBryan Schumaker return ctx; 85480c2006SBryan Schumaker } 860c030806STrond Myklebust return ERR_PTR(-ENOMEM); 870c030806STrond Myklebust } 88480c2006SBryan Schumaker 89311324adSTrond Myklebust static void put_nfs_open_dir_context(struct inode *dir, struct nfs_open_dir_context *ctx) 90480c2006SBryan Schumaker { 91311324adSTrond Myklebust spin_lock(&dir->i_lock); 92311324adSTrond Myklebust list_del(&ctx->list); 93311324adSTrond Myklebust spin_unlock(&dir->i_lock); 94480c2006SBryan Schumaker put_rpccred(ctx->cred); 95480c2006SBryan Schumaker kfree(ctx); 96480c2006SBryan Schumaker } 97480c2006SBryan Schumaker 981da177e4SLinus Torvalds /* 991da177e4SLinus Torvalds * Open file 1001da177e4SLinus Torvalds */ 1011da177e4SLinus Torvalds static int 1021da177e4SLinus Torvalds nfs_opendir(struct inode *inode, struct file *filp) 1031da177e4SLinus Torvalds { 104480c2006SBryan Schumaker int res = 0; 105480c2006SBryan Schumaker struct nfs_open_dir_context *ctx; 106480c2006SBryan Schumaker struct rpc_cred *cred; 1071da177e4SLinus Torvalds 1086de1472fSAl Viro dfprintk(FILE, "NFS: open dir(%pD2)\n", filp); 109cc0dd2d1SChuck Lever 110cc0dd2d1SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSOPEN); 1111e7cb3dcSChuck Lever 112480c2006SBryan Schumaker cred = rpc_lookup_cred(); 113480c2006SBryan Schumaker if (IS_ERR(cred)) 114480c2006SBryan Schumaker return PTR_ERR(cred); 1150c030806STrond Myklebust ctx = alloc_nfs_open_dir_context(inode, cred); 116480c2006SBryan Schumaker if (IS_ERR(ctx)) { 117480c2006SBryan Schumaker res = PTR_ERR(ctx); 118480c2006SBryan Schumaker goto out; 119480c2006SBryan Schumaker } 120480c2006SBryan Schumaker filp->private_data = ctx; 121480c2006SBryan Schumaker out: 122480c2006SBryan Schumaker put_rpccred(cred); 1231da177e4SLinus Torvalds return res; 1241da177e4SLinus Torvalds } 1251da177e4SLinus Torvalds 126480c2006SBryan Schumaker static int 127480c2006SBryan Schumaker nfs_closedir(struct inode *inode, struct file *filp) 128480c2006SBryan Schumaker { 129a455589fSAl Viro put_nfs_open_dir_context(file_inode(filp), filp->private_data); 130480c2006SBryan Schumaker return 0; 131480c2006SBryan Schumaker } 132480c2006SBryan Schumaker 133d1bacf9eSBryan Schumaker struct nfs_cache_array_entry { 134d1bacf9eSBryan Schumaker u64 cookie; 135d1bacf9eSBryan Schumaker u64 ino; 136d1bacf9eSBryan Schumaker struct qstr string; 1370b26a0bfSTrond Myklebust unsigned char d_type; 138d1bacf9eSBryan Schumaker }; 139d1bacf9eSBryan Schumaker 140d1bacf9eSBryan Schumaker struct nfs_cache_array { 14188b8e133SChuck Lever int size; 142d1bacf9eSBryan Schumaker int eof_index; 143d1bacf9eSBryan Schumaker u64 last_cookie; 144d1bacf9eSBryan Schumaker struct nfs_cache_array_entry array[0]; 145d1bacf9eSBryan Schumaker }; 146d1bacf9eSBryan Schumaker 147a7a3b1e9SBenjamin Coddington typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, bool); 1481da177e4SLinus Torvalds typedef struct { 1491da177e4SLinus Torvalds struct file *file; 1501da177e4SLinus Torvalds struct page *page; 15123db8620SAl Viro struct dir_context *ctx; 1521da177e4SLinus Torvalds unsigned long page_index; 153f0dd2136STrond Myklebust u64 *dir_cookie; 1540aded708STrond Myklebust u64 last_cookie; 155f0dd2136STrond Myklebust loff_t current_index; 1561da177e4SLinus Torvalds decode_dirent_t decode; 157d1bacf9eSBryan Schumaker 1581f4eab7eSNeil Brown unsigned long timestamp; 1594704f0e2STrond Myklebust unsigned long gencount; 160d1bacf9eSBryan Schumaker unsigned int cache_entry_index; 161a7a3b1e9SBenjamin Coddington bool plus; 162a7a3b1e9SBenjamin Coddington bool eof; 1631da177e4SLinus Torvalds } nfs_readdir_descriptor_t; 1641da177e4SLinus Torvalds 165d1bacf9eSBryan Schumaker /* 166d1bacf9eSBryan Schumaker * we are freeing strings created by nfs_add_to_readdir_array() 167d1bacf9eSBryan Schumaker */ 168d1bacf9eSBryan Schumaker static 16911de3b11STrond Myklebust void nfs_readdir_clear_array(struct page *page) 170d1bacf9eSBryan Schumaker { 17111de3b11STrond Myklebust struct nfs_cache_array *array; 172d1bacf9eSBryan Schumaker int i; 1738cd51a0cSTrond Myklebust 1742b86ce2dSCong Wang array = kmap_atomic(page); 175d1bacf9eSBryan Schumaker for (i = 0; i < array->size; i++) 176d1bacf9eSBryan Schumaker kfree(array->array[i].string.name); 1772b86ce2dSCong Wang kunmap_atomic(array); 178d1bacf9eSBryan Schumaker } 179d1bacf9eSBryan Schumaker 180d1bacf9eSBryan Schumaker /* 181d1bacf9eSBryan Schumaker * the caller is responsible for freeing qstr.name 182d1bacf9eSBryan Schumaker * when called by nfs_readdir_add_to_array, the strings will be freed in 183d1bacf9eSBryan Schumaker * nfs_clear_readdir_array() 184d1bacf9eSBryan Schumaker */ 185d1bacf9eSBryan Schumaker static 1864a201d6eSTrond Myklebust int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len) 187d1bacf9eSBryan Schumaker { 188d1bacf9eSBryan Schumaker string->len = len; 189d1bacf9eSBryan Schumaker string->name = kmemdup(name, len, GFP_KERNEL); 1904a201d6eSTrond Myklebust if (string->name == NULL) 1914a201d6eSTrond Myklebust return -ENOMEM; 19204e4bd1cSCatalin Marinas /* 19304e4bd1cSCatalin Marinas * Avoid a kmemleak false positive. The pointer to the name is stored 19404e4bd1cSCatalin Marinas * in a page cache page which kmemleak does not scan. 19504e4bd1cSCatalin Marinas */ 19604e4bd1cSCatalin Marinas kmemleak_not_leak(string->name); 1978387ff25SLinus Torvalds string->hash = full_name_hash(NULL, name, len); 1984a201d6eSTrond Myklebust return 0; 199d1bacf9eSBryan Schumaker } 200d1bacf9eSBryan Schumaker 201d1bacf9eSBryan Schumaker static 202d1bacf9eSBryan Schumaker int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page) 203d1bacf9eSBryan Schumaker { 2040795bf83SFabian Frederick struct nfs_cache_array *array = kmap(page); 2054a201d6eSTrond Myklebust struct nfs_cache_array_entry *cache_entry; 2064a201d6eSTrond Myklebust int ret; 2074a201d6eSTrond Myklebust 2084a201d6eSTrond Myklebust cache_entry = &array->array[array->size]; 2093020093fSTrond Myklebust 2103020093fSTrond Myklebust /* Check that this entry lies within the page bounds */ 2113020093fSTrond Myklebust ret = -ENOSPC; 2123020093fSTrond Myklebust if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE) 2133020093fSTrond Myklebust goto out; 2143020093fSTrond Myklebust 2154a201d6eSTrond Myklebust cache_entry->cookie = entry->prev_cookie; 2164a201d6eSTrond Myklebust cache_entry->ino = entry->ino; 2170b26a0bfSTrond Myklebust cache_entry->d_type = entry->d_type; 2184a201d6eSTrond Myklebust ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len); 2194a201d6eSTrond Myklebust if (ret) 2204a201d6eSTrond Myklebust goto out; 221d1bacf9eSBryan Schumaker array->last_cookie = entry->cookie; 2228cd51a0cSTrond Myklebust array->size++; 22347c716cbSTrond Myklebust if (entry->eof != 0) 224d1bacf9eSBryan Schumaker array->eof_index = array->size; 2254a201d6eSTrond Myklebust out: 2260795bf83SFabian Frederick kunmap(page); 2274a201d6eSTrond Myklebust return ret; 228d1bacf9eSBryan Schumaker } 229d1bacf9eSBryan Schumaker 230d1bacf9eSBryan Schumaker static 231d1bacf9eSBryan Schumaker int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc) 232d1bacf9eSBryan Schumaker { 23323db8620SAl Viro loff_t diff = desc->ctx->pos - desc->current_index; 234d1bacf9eSBryan Schumaker unsigned int index; 235d1bacf9eSBryan Schumaker 236d1bacf9eSBryan Schumaker if (diff < 0) 237d1bacf9eSBryan Schumaker goto out_eof; 238d1bacf9eSBryan Schumaker if (diff >= array->size) { 2398cd51a0cSTrond Myklebust if (array->eof_index >= 0) 240d1bacf9eSBryan Schumaker goto out_eof; 241d1bacf9eSBryan Schumaker return -EAGAIN; 242d1bacf9eSBryan Schumaker } 243d1bacf9eSBryan Schumaker 244d1bacf9eSBryan Schumaker index = (unsigned int)diff; 245d1bacf9eSBryan Schumaker *desc->dir_cookie = array->array[index].cookie; 246d1bacf9eSBryan Schumaker desc->cache_entry_index = index; 247d1bacf9eSBryan Schumaker return 0; 248d1bacf9eSBryan Schumaker out_eof: 2496089dd0dSThomas Meyer desc->eof = true; 250d1bacf9eSBryan Schumaker return -EBADCOOKIE; 251d1bacf9eSBryan Schumaker } 252d1bacf9eSBryan Schumaker 2534db72b40SJeff Layton static bool 2544db72b40SJeff Layton nfs_readdir_inode_mapping_valid(struct nfs_inode *nfsi) 2554db72b40SJeff Layton { 2564db72b40SJeff Layton if (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA)) 2574db72b40SJeff Layton return false; 2584db72b40SJeff Layton smp_rmb(); 2594db72b40SJeff Layton return !test_bit(NFS_INO_INVALIDATING, &nfsi->flags); 2604db72b40SJeff Layton } 2614db72b40SJeff Layton 262d1bacf9eSBryan Schumaker static 263d1bacf9eSBryan Schumaker int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc) 264d1bacf9eSBryan Schumaker { 265d1bacf9eSBryan Schumaker int i; 2668ef2ce3eSBryan Schumaker loff_t new_pos; 267d1bacf9eSBryan Schumaker int status = -EAGAIN; 268d1bacf9eSBryan Schumaker 269d1bacf9eSBryan Schumaker for (i = 0; i < array->size; i++) { 2708cd51a0cSTrond Myklebust if (array->array[i].cookie == *desc->dir_cookie) { 271496ad9aaSAl Viro struct nfs_inode *nfsi = NFS_I(file_inode(desc->file)); 2720c030806STrond Myklebust struct nfs_open_dir_context *ctx = desc->file->private_data; 2730c030806STrond Myklebust 2748ef2ce3eSBryan Schumaker new_pos = desc->current_index + i; 2754db72b40SJeff Layton if (ctx->attr_gencount != nfsi->attr_gencount || 2764db72b40SJeff Layton !nfs_readdir_inode_mapping_valid(nfsi)) { 2770c030806STrond Myklebust ctx->duped = 0; 2780c030806STrond Myklebust ctx->attr_gencount = nfsi->attr_gencount; 27923db8620SAl Viro } else if (new_pos < desc->ctx->pos) { 2800c030806STrond Myklebust if (ctx->duped > 0 2810c030806STrond Myklebust && ctx->dup_cookie == *desc->dir_cookie) { 2820c030806STrond Myklebust if (printk_ratelimit()) { 2836de1472fSAl Viro pr_notice("NFS: directory %pD2 contains a readdir loop." 2840c030806STrond Myklebust "Please contact your server vendor. " 2859581a4aeSJeff Layton "The file: %.*s has duplicate cookie %llu\n", 2869581a4aeSJeff Layton desc->file, array->array[i].string.len, 2879581a4aeSJeff Layton array->array[i].string.name, *desc->dir_cookie); 2880c030806STrond Myklebust } 2890c030806STrond Myklebust status = -ELOOP; 2900c030806STrond Myklebust goto out; 2910c030806STrond Myklebust } 2928ef2ce3eSBryan Schumaker ctx->dup_cookie = *desc->dir_cookie; 2930c030806STrond Myklebust ctx->duped = -1; 2948ef2ce3eSBryan Schumaker } 29523db8620SAl Viro desc->ctx->pos = new_pos; 2968cd51a0cSTrond Myklebust desc->cache_entry_index = i; 29747c716cbSTrond Myklebust return 0; 2988cd51a0cSTrond Myklebust } 2998cd51a0cSTrond Myklebust } 30047c716cbSTrond Myklebust if (array->eof_index >= 0) { 301d1bacf9eSBryan Schumaker status = -EBADCOOKIE; 30218fb5fe4STrond Myklebust if (*desc->dir_cookie == array->last_cookie) 3036089dd0dSThomas Meyer desc->eof = true; 304d1bacf9eSBryan Schumaker } 3050c030806STrond Myklebust out: 306d1bacf9eSBryan Schumaker return status; 307d1bacf9eSBryan Schumaker } 308d1bacf9eSBryan Schumaker 309d1bacf9eSBryan Schumaker static 310d1bacf9eSBryan Schumaker int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc) 311d1bacf9eSBryan Schumaker { 312d1bacf9eSBryan Schumaker struct nfs_cache_array *array; 31347c716cbSTrond Myklebust int status; 314d1bacf9eSBryan Schumaker 3150795bf83SFabian Frederick array = kmap(desc->page); 316d1bacf9eSBryan Schumaker 317d1bacf9eSBryan Schumaker if (*desc->dir_cookie == 0) 318d1bacf9eSBryan Schumaker status = nfs_readdir_search_for_pos(array, desc); 319d1bacf9eSBryan Schumaker else 320d1bacf9eSBryan Schumaker status = nfs_readdir_search_for_cookie(array, desc); 321d1bacf9eSBryan Schumaker 32247c716cbSTrond Myklebust if (status == -EAGAIN) { 3230aded708STrond Myklebust desc->last_cookie = array->last_cookie; 324e47c085aSTrond Myklebust desc->current_index += array->size; 32547c716cbSTrond Myklebust desc->page_index++; 32647c716cbSTrond Myklebust } 3270795bf83SFabian Frederick kunmap(desc->page); 328d1bacf9eSBryan Schumaker return status; 329d1bacf9eSBryan Schumaker } 330d1bacf9eSBryan Schumaker 331d1bacf9eSBryan Schumaker /* Fill a page with xdr information before transferring to the cache page */ 332d1bacf9eSBryan Schumaker static 33356e4ebf8SBryan Schumaker int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc, 334d1bacf9eSBryan Schumaker struct nfs_entry *entry, struct file *file, struct inode *inode) 335d1bacf9eSBryan Schumaker { 336480c2006SBryan Schumaker struct nfs_open_dir_context *ctx = file->private_data; 337480c2006SBryan Schumaker struct rpc_cred *cred = ctx->cred; 3384704f0e2STrond Myklebust unsigned long timestamp, gencount; 3391da177e4SLinus Torvalds int error; 3401da177e4SLinus Torvalds 3411da177e4SLinus Torvalds again: 3421da177e4SLinus Torvalds timestamp = jiffies; 3434704f0e2STrond Myklebust gencount = nfs_inc_attr_generation_counter(); 344be62a1a8SMiklos Szeredi error = NFS_PROTO(inode)->readdir(file_dentry(file), cred, entry->cookie, pages, 3451da177e4SLinus Torvalds NFS_SERVER(inode)->dtsize, desc->plus); 3461da177e4SLinus Torvalds if (error < 0) { 3471da177e4SLinus Torvalds /* We requested READDIRPLUS, but the server doesn't grok it */ 3481da177e4SLinus Torvalds if (error == -ENOTSUPP && desc->plus) { 3491da177e4SLinus Torvalds NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS; 3503a10c30aSBenny Halevy clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags); 351a7a3b1e9SBenjamin Coddington desc->plus = false; 3521da177e4SLinus Torvalds goto again; 3531da177e4SLinus Torvalds } 3541da177e4SLinus Torvalds goto error; 3551da177e4SLinus Torvalds } 3561f4eab7eSNeil Brown desc->timestamp = timestamp; 3574704f0e2STrond Myklebust desc->gencount = gencount; 358d1bacf9eSBryan Schumaker error: 359d1bacf9eSBryan Schumaker return error; 360d1bacf9eSBryan Schumaker } 361d1bacf9eSBryan Schumaker 362573c4e1eSChuck Lever static int xdr_decode(nfs_readdir_descriptor_t *desc, 363573c4e1eSChuck Lever struct nfs_entry *entry, struct xdr_stream *xdr) 364d1bacf9eSBryan Schumaker { 365573c4e1eSChuck Lever int error; 366d1bacf9eSBryan Schumaker 367573c4e1eSChuck Lever error = desc->decode(xdr, entry, desc->plus); 368573c4e1eSChuck Lever if (error) 369573c4e1eSChuck Lever return error; 370d1bacf9eSBryan Schumaker entry->fattr->time_start = desc->timestamp; 371d1bacf9eSBryan Schumaker entry->fattr->gencount = desc->gencount; 372d1bacf9eSBryan Schumaker return 0; 373d1bacf9eSBryan Schumaker } 374d1bacf9eSBryan Schumaker 375fa923369STrond Myklebust /* Match file and dirent using either filehandle or fileid 376fa923369STrond Myklebust * Note: caller is responsible for checking the fsid 377fa923369STrond Myklebust */ 378d39ab9deSBryan Schumaker static 379d39ab9deSBryan Schumaker int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry) 380d39ab9deSBryan Schumaker { 381d8fdb47fSTrond Myklebust struct inode *inode; 382fa923369STrond Myklebust struct nfs_inode *nfsi; 383fa923369STrond Myklebust 3842b0143b5SDavid Howells if (d_really_is_negative(dentry)) 3852b0143b5SDavid Howells return 0; 386fa923369STrond Myklebust 387d8fdb47fSTrond Myklebust inode = d_inode(dentry); 388d8fdb47fSTrond Myklebust if (is_bad_inode(inode) || NFS_STALE(inode)) 389d8fdb47fSTrond Myklebust return 0; 390d8fdb47fSTrond Myklebust 391d8fdb47fSTrond Myklebust nfsi = NFS_I(inode); 3927dc72d5fSTrond Myklebust if (entry->fattr->fileid != nfsi->fileid) 393d39ab9deSBryan Schumaker return 0; 3947dc72d5fSTrond Myklebust if (entry->fh->size && nfs_compare_fh(entry->fh, &nfsi->fh) != 0) 3957dc72d5fSTrond Myklebust return 0; 3967dc72d5fSTrond Myklebust return 1; 397d39ab9deSBryan Schumaker } 398d39ab9deSBryan Schumaker 399d39ab9deSBryan Schumaker static 40023db8620SAl Viro bool nfs_use_readdirplus(struct inode *dir, struct dir_context *ctx) 401d69ee9b8STrond Myklebust { 402d69ee9b8STrond Myklebust if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS)) 403d69ee9b8STrond Myklebust return false; 404d69ee9b8STrond Myklebust if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags)) 405d69ee9b8STrond Myklebust return true; 40623db8620SAl Viro if (ctx->pos == 0) 407d69ee9b8STrond Myklebust return true; 408d69ee9b8STrond Myklebust return false; 409d69ee9b8STrond Myklebust } 410d69ee9b8STrond Myklebust 411d69ee9b8STrond Myklebust /* 41263519fbcSTrond Myklebust * This function is called by the lookup and getattr code to request the 41363519fbcSTrond Myklebust * use of readdirplus to accelerate any future lookups in the same 414d69ee9b8STrond Myklebust * directory. 415d69ee9b8STrond Myklebust */ 416d69ee9b8STrond Myklebust void nfs_advise_use_readdirplus(struct inode *dir) 417d69ee9b8STrond Myklebust { 41863519fbcSTrond Myklebust struct nfs_inode *nfsi = NFS_I(dir); 41963519fbcSTrond Myklebust 42063519fbcSTrond Myklebust if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) && 42163519fbcSTrond Myklebust !list_empty(&nfsi->open_files)) 42263519fbcSTrond Myklebust set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags); 423d69ee9b8STrond Myklebust } 424d69ee9b8STrond Myklebust 425311324adSTrond Myklebust /* 426311324adSTrond Myklebust * This function is mainly for use by nfs_getattr(). 427311324adSTrond Myklebust * 428311324adSTrond Myklebust * If this is an 'ls -l', we want to force use of readdirplus. 429311324adSTrond Myklebust * Do this by checking if there is an active file descriptor 430311324adSTrond Myklebust * and calling nfs_advise_use_readdirplus, then forcing a 431311324adSTrond Myklebust * cache flush. 432311324adSTrond Myklebust */ 433311324adSTrond Myklebust void nfs_force_use_readdirplus(struct inode *dir) 434311324adSTrond Myklebust { 43563519fbcSTrond Myklebust struct nfs_inode *nfsi = NFS_I(dir); 43663519fbcSTrond Myklebust 43763519fbcSTrond Myklebust if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) && 43863519fbcSTrond Myklebust !list_empty(&nfsi->open_files)) { 43963519fbcSTrond Myklebust set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags); 44079f687a3STrond Myklebust invalidate_mapping_pages(dir->i_mapping, 0, -1); 441311324adSTrond Myklebust } 442311324adSTrond Myklebust } 443311324adSTrond Myklebust 444d69ee9b8STrond Myklebust static 445d39ab9deSBryan Schumaker void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry) 446d39ab9deSBryan Schumaker { 44726fe5750SLinus Torvalds struct qstr filename = QSTR_INIT(entry->name, entry->len); 4489ac3d3e8SAl Viro DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); 4494a201d6eSTrond Myklebust struct dentry *dentry; 4504a201d6eSTrond Myklebust struct dentry *alias; 4512b0143b5SDavid Howells struct inode *dir = d_inode(parent); 452d39ab9deSBryan Schumaker struct inode *inode; 453aa9c2669SDavid Quigley int status; 454d39ab9deSBryan Schumaker 455fa923369STrond Myklebust if (!(entry->fattr->valid & NFS_ATTR_FATTR_FILEID)) 456fa923369STrond Myklebust return; 4576c441c25STrond Myklebust if (!(entry->fattr->valid & NFS_ATTR_FATTR_FSID)) 4586c441c25STrond Myklebust return; 45978d04af4STrond Myklebust if (filename.len == 0) 46078d04af4STrond Myklebust return; 46178d04af4STrond Myklebust /* Validate that the name doesn't contain any illegal '\0' */ 46278d04af4STrond Myklebust if (strnlen(filename.name, filename.len) != filename.len) 46378d04af4STrond Myklebust return; 46478d04af4STrond Myklebust /* ...or '/' */ 46578d04af4STrond Myklebust if (strnchr(filename.name, filename.len, '/')) 46678d04af4STrond Myklebust return; 4674a201d6eSTrond Myklebust if (filename.name[0] == '.') { 4684a201d6eSTrond Myklebust if (filename.len == 1) 4694a201d6eSTrond Myklebust return; 4704a201d6eSTrond Myklebust if (filename.len == 2 && filename.name[1] == '.') 4714a201d6eSTrond Myklebust return; 4724a201d6eSTrond Myklebust } 4738387ff25SLinus Torvalds filename.hash = full_name_hash(parent, filename.name, filename.len); 474d39ab9deSBryan Schumaker 4754a201d6eSTrond Myklebust dentry = d_lookup(parent, &filename); 4769ac3d3e8SAl Viro again: 4779ac3d3e8SAl Viro if (!dentry) { 4789ac3d3e8SAl Viro dentry = d_alloc_parallel(parent, &filename, &wq); 4799ac3d3e8SAl Viro if (IS_ERR(dentry)) 4809ac3d3e8SAl Viro return; 4819ac3d3e8SAl Viro } 4829ac3d3e8SAl Viro if (!d_in_lookup(dentry)) { 4836c441c25STrond Myklebust /* Is there a mountpoint here? If so, just exit */ 4846c441c25STrond Myklebust if (!nfs_fsid_equal(&NFS_SB(dentry->d_sb)->fsid, 4856c441c25STrond Myklebust &entry->fattr->fsid)) 4866c441c25STrond Myklebust goto out; 487d39ab9deSBryan Schumaker if (nfs_same_file(dentry, entry)) { 4887dc72d5fSTrond Myklebust if (!entry->fh->size) 4897dc72d5fSTrond Myklebust goto out; 490cda57a1eSJeff Layton nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 4912b0143b5SDavid Howells status = nfs_refresh_inode(d_inode(dentry), entry->fattr); 492aa9c2669SDavid Quigley if (!status) 4932b0143b5SDavid Howells nfs_setsecurity(d_inode(dentry), entry->fattr, entry->label); 494d39ab9deSBryan Schumaker goto out; 495d39ab9deSBryan Schumaker } else { 4965542aa2fSEric W. Biederman d_invalidate(dentry); 497d39ab9deSBryan Schumaker dput(dentry); 4989ac3d3e8SAl Viro dentry = NULL; 4999ac3d3e8SAl Viro goto again; 500d39ab9deSBryan Schumaker } 501d39ab9deSBryan Schumaker } 5027dc72d5fSTrond Myklebust if (!entry->fh->size) { 5037dc72d5fSTrond Myklebust d_lookup_done(dentry); 5047dc72d5fSTrond Myklebust goto out; 5057dc72d5fSTrond Myklebust } 506d39ab9deSBryan Schumaker 5071775fd3eSDavid Quigley inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr, entry->label); 50841d28bcaSAl Viro alias = d_splice_alias(inode, dentry); 5099ac3d3e8SAl Viro d_lookup_done(dentry); 5109ac3d3e8SAl Viro if (alias) { 511d39ab9deSBryan Schumaker if (IS_ERR(alias)) 512d39ab9deSBryan Schumaker goto out; 5139ac3d3e8SAl Viro dput(dentry); 5149ac3d3e8SAl Viro dentry = alias; 5159ac3d3e8SAl Viro } 516d39ab9deSBryan Schumaker nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 517d39ab9deSBryan Schumaker out: 518d39ab9deSBryan Schumaker dput(dentry); 519d39ab9deSBryan Schumaker } 520d39ab9deSBryan Schumaker 521d1bacf9eSBryan Schumaker /* Perform conversion from xdr to cache array */ 522d1bacf9eSBryan Schumaker static 5238cd51a0cSTrond Myklebust int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, 5246650239aSTrond Myklebust struct page **xdr_pages, struct page *page, unsigned int buflen) 525d1bacf9eSBryan Schumaker { 526babddc72SBryan Schumaker struct xdr_stream stream; 527f7da7a12SBenny Halevy struct xdr_buf buf; 5286650239aSTrond Myklebust struct page *scratch; 52999424380SBryan Schumaker struct nfs_cache_array *array; 5305c346854STrond Myklebust unsigned int count = 0; 5315c346854STrond Myklebust int status; 532babddc72SBryan Schumaker 5336650239aSTrond Myklebust scratch = alloc_page(GFP_KERNEL); 5346650239aSTrond Myklebust if (scratch == NULL) 5356650239aSTrond Myklebust return -ENOMEM; 536babddc72SBryan Schumaker 537ce85cfbeSBenjamin Coddington if (buflen == 0) 538ce85cfbeSBenjamin Coddington goto out_nopages; 539ce85cfbeSBenjamin Coddington 540f7da7a12SBenny Halevy xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen); 5416650239aSTrond Myklebust xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); 54299424380SBryan Schumaker 54399424380SBryan Schumaker do { 54499424380SBryan Schumaker status = xdr_decode(desc, entry, &stream); 5458cd51a0cSTrond Myklebust if (status != 0) { 5468cd51a0cSTrond Myklebust if (status == -EAGAIN) 5478cd51a0cSTrond Myklebust status = 0; 54899424380SBryan Schumaker break; 5498cd51a0cSTrond Myklebust } 55099424380SBryan Schumaker 5515c346854STrond Myklebust count++; 5525c346854STrond Myklebust 553a7a3b1e9SBenjamin Coddington if (desc->plus) 554be62a1a8SMiklos Szeredi nfs_prime_dcache(file_dentry(desc->file), entry); 5558cd51a0cSTrond Myklebust 5568cd51a0cSTrond Myklebust status = nfs_readdir_add_to_array(entry, page); 5578cd51a0cSTrond Myklebust if (status != 0) 5588cd51a0cSTrond Myklebust break; 55999424380SBryan Schumaker } while (!entry->eof); 56099424380SBryan Schumaker 561ce85cfbeSBenjamin Coddington out_nopages: 56247c716cbSTrond Myklebust if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) { 5630795bf83SFabian Frederick array = kmap(page); 5648cd51a0cSTrond Myklebust array->eof_index = array->size; 56599424380SBryan Schumaker status = 0; 5660795bf83SFabian Frederick kunmap(page); 56756e4ebf8SBryan Schumaker } 5686650239aSTrond Myklebust 5696650239aSTrond Myklebust put_page(scratch); 5708cd51a0cSTrond Myklebust return status; 5718cd51a0cSTrond Myklebust } 57256e4ebf8SBryan Schumaker 57356e4ebf8SBryan Schumaker static 574c7e9668eSAnna Schumaker void nfs_readdir_free_pages(struct page **pages, unsigned int npages) 57556e4ebf8SBryan Schumaker { 57656e4ebf8SBryan Schumaker unsigned int i; 57756e4ebf8SBryan Schumaker for (i = 0; i < npages; i++) 57856e4ebf8SBryan Schumaker put_page(pages[i]); 57956e4ebf8SBryan Schumaker } 58056e4ebf8SBryan Schumaker 58156e4ebf8SBryan Schumaker /* 58256e4ebf8SBryan Schumaker * nfs_readdir_large_page will allocate pages that must be freed with a call 5830b936e37SAnna Schumaker * to nfs_readdir_free_pagearray 58456e4ebf8SBryan Schumaker */ 58556e4ebf8SBryan Schumaker static 586c7e9668eSAnna Schumaker int nfs_readdir_alloc_pages(struct page **pages, unsigned int npages) 58756e4ebf8SBryan Schumaker { 58856e4ebf8SBryan Schumaker unsigned int i; 58956e4ebf8SBryan Schumaker 59056e4ebf8SBryan Schumaker for (i = 0; i < npages; i++) { 59156e4ebf8SBryan Schumaker struct page *page = alloc_page(GFP_KERNEL); 59256e4ebf8SBryan Schumaker if (page == NULL) 59356e4ebf8SBryan Schumaker goto out_freepages; 59456e4ebf8SBryan Schumaker pages[i] = page; 59556e4ebf8SBryan Schumaker } 5966650239aSTrond Myklebust return 0; 59756e4ebf8SBryan Schumaker 59856e4ebf8SBryan Schumaker out_freepages: 599c7e9668eSAnna Schumaker nfs_readdir_free_pages(pages, i); 6006650239aSTrond Myklebust return -ENOMEM; 601d1bacf9eSBryan Schumaker } 602d1bacf9eSBryan Schumaker 603d1bacf9eSBryan Schumaker static 604d1bacf9eSBryan Schumaker int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode) 605d1bacf9eSBryan Schumaker { 60656e4ebf8SBryan Schumaker struct page *pages[NFS_MAX_READDIR_PAGES]; 607d1bacf9eSBryan Schumaker struct nfs_entry entry; 608d1bacf9eSBryan Schumaker struct file *file = desc->file; 609d1bacf9eSBryan Schumaker struct nfs_cache_array *array; 6108cd51a0cSTrond Myklebust int status = -ENOMEM; 61156e4ebf8SBryan Schumaker unsigned int array_size = ARRAY_SIZE(pages); 612d1bacf9eSBryan Schumaker 613d1bacf9eSBryan Schumaker entry.prev_cookie = 0; 6140aded708STrond Myklebust entry.cookie = desc->last_cookie; 615d1bacf9eSBryan Schumaker entry.eof = 0; 616d1bacf9eSBryan Schumaker entry.fh = nfs_alloc_fhandle(); 617d1bacf9eSBryan Schumaker entry.fattr = nfs_alloc_fattr(); 618573c4e1eSChuck Lever entry.server = NFS_SERVER(inode); 619d1bacf9eSBryan Schumaker if (entry.fh == NULL || entry.fattr == NULL) 620d1bacf9eSBryan Schumaker goto out; 621d1bacf9eSBryan Schumaker 62214c43f76SDavid Quigley entry.label = nfs4_label_alloc(NFS_SERVER(inode), GFP_NOWAIT); 62314c43f76SDavid Quigley if (IS_ERR(entry.label)) { 62414c43f76SDavid Quigley status = PTR_ERR(entry.label); 62514c43f76SDavid Quigley goto out; 62614c43f76SDavid Quigley } 62714c43f76SDavid Quigley 6280795bf83SFabian Frederick array = kmap(page); 629d1bacf9eSBryan Schumaker memset(array, 0, sizeof(struct nfs_cache_array)); 630d1bacf9eSBryan Schumaker array->eof_index = -1; 631d1bacf9eSBryan Schumaker 632c7e9668eSAnna Schumaker status = nfs_readdir_alloc_pages(pages, array_size); 6336650239aSTrond Myklebust if (status < 0) 634d1bacf9eSBryan Schumaker goto out_release_array; 635d1bacf9eSBryan Schumaker do { 636ac396128STrond Myklebust unsigned int pglen; 63756e4ebf8SBryan Schumaker status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode); 638babddc72SBryan Schumaker 639d1bacf9eSBryan Schumaker if (status < 0) 640d1bacf9eSBryan Schumaker break; 641ac396128STrond Myklebust pglen = status; 6426650239aSTrond Myklebust status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen); 6438cd51a0cSTrond Myklebust if (status < 0) { 6448cd51a0cSTrond Myklebust if (status == -ENOSPC) 6458cd51a0cSTrond Myklebust status = 0; 6468cd51a0cSTrond Myklebust break; 6478cd51a0cSTrond Myklebust } 6488cd51a0cSTrond Myklebust } while (array->eof_index < 0); 649d1bacf9eSBryan Schumaker 650c7e9668eSAnna Schumaker nfs_readdir_free_pages(pages, array_size); 651d1bacf9eSBryan Schumaker out_release_array: 6520795bf83SFabian Frederick kunmap(page); 65314c43f76SDavid Quigley nfs4_label_free(entry.label); 654d1bacf9eSBryan Schumaker out: 655d1bacf9eSBryan Schumaker nfs_free_fattr(entry.fattr); 656d1bacf9eSBryan Schumaker nfs_free_fhandle(entry.fh); 657d1bacf9eSBryan Schumaker return status; 658d1bacf9eSBryan Schumaker } 659d1bacf9eSBryan Schumaker 660d1bacf9eSBryan Schumaker /* 661d1bacf9eSBryan Schumaker * Now we cache directories properly, by converting xdr information 662d1bacf9eSBryan Schumaker * to an array that can be used for lookups later. This results in 663d1bacf9eSBryan Schumaker * fewer cache pages, since we can store more information on each page. 664d1bacf9eSBryan Schumaker * We only need to convert from xdr once so future lookups are much simpler 6651da177e4SLinus Torvalds */ 666d1bacf9eSBryan Schumaker static 667d1bacf9eSBryan Schumaker int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page) 668d1bacf9eSBryan Schumaker { 669496ad9aaSAl Viro struct inode *inode = file_inode(desc->file); 6708cd51a0cSTrond Myklebust int ret; 671d1bacf9eSBryan Schumaker 6728cd51a0cSTrond Myklebust ret = nfs_readdir_xdr_to_array(desc, page, inode); 6738cd51a0cSTrond Myklebust if (ret < 0) 674d1bacf9eSBryan Schumaker goto error; 675d1bacf9eSBryan Schumaker SetPageUptodate(page); 676d1bacf9eSBryan Schumaker 6772aac05a9STrond Myklebust if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) { 678cd9ae2b6STrond Myklebust /* Should never happen */ 679cd9ae2b6STrond Myklebust nfs_zap_mapping(inode, inode->i_mapping); 680cd9ae2b6STrond Myklebust } 6811da177e4SLinus Torvalds unlock_page(page); 6821da177e4SLinus Torvalds return 0; 6831da177e4SLinus Torvalds error: 6841da177e4SLinus Torvalds unlock_page(page); 6858cd51a0cSTrond Myklebust return ret; 6861da177e4SLinus Torvalds } 6871da177e4SLinus Torvalds 688d1bacf9eSBryan Schumaker static 689d1bacf9eSBryan Schumaker void cache_page_release(nfs_readdir_descriptor_t *desc) 6901da177e4SLinus Torvalds { 691b044f645SBenjamin Coddington if (!desc->page->mapping) 69211de3b11STrond Myklebust nfs_readdir_clear_array(desc->page); 69309cbfeafSKirill A. Shutemov put_page(desc->page); 6941da177e4SLinus Torvalds desc->page = NULL; 6951da177e4SLinus Torvalds } 6961da177e4SLinus Torvalds 697d1bacf9eSBryan Schumaker static 698d1bacf9eSBryan Schumaker struct page *get_cache_page(nfs_readdir_descriptor_t *desc) 6991da177e4SLinus Torvalds { 700b044f645SBenjamin Coddington return read_cache_page(desc->file->f_mapping, 701d1bacf9eSBryan Schumaker desc->page_index, (filler_t *)nfs_readdir_filler, desc); 7021da177e4SLinus Torvalds } 7031da177e4SLinus Torvalds 7041da177e4SLinus Torvalds /* 705d1bacf9eSBryan Schumaker * Returns 0 if desc->dir_cookie was found on page desc->page_index 7061da177e4SLinus Torvalds */ 707d1bacf9eSBryan Schumaker static 708d1bacf9eSBryan Schumaker int find_cache_page(nfs_readdir_descriptor_t *desc) 709d1bacf9eSBryan Schumaker { 710d1bacf9eSBryan Schumaker int res; 711d1bacf9eSBryan Schumaker 712d1bacf9eSBryan Schumaker desc->page = get_cache_page(desc); 713d1bacf9eSBryan Schumaker if (IS_ERR(desc->page)) 714d1bacf9eSBryan Schumaker return PTR_ERR(desc->page); 715d1bacf9eSBryan Schumaker 716d1bacf9eSBryan Schumaker res = nfs_readdir_search_array(desc); 71747c716cbSTrond Myklebust if (res != 0) 718d1bacf9eSBryan Schumaker cache_page_release(desc); 719d1bacf9eSBryan Schumaker return res; 720d1bacf9eSBryan Schumaker } 721d1bacf9eSBryan Schumaker 722d1bacf9eSBryan Schumaker /* Search for desc->dir_cookie from the beginning of the page cache */ 7231da177e4SLinus Torvalds static inline 7241da177e4SLinus Torvalds int readdir_search_pagecache(nfs_readdir_descriptor_t *desc) 7251da177e4SLinus Torvalds { 7268cd51a0cSTrond Myklebust int res; 727d1bacf9eSBryan Schumaker 7280aded708STrond Myklebust if (desc->page_index == 0) { 7298cd51a0cSTrond Myklebust desc->current_index = 0; 7300aded708STrond Myklebust desc->last_cookie = 0; 7310aded708STrond Myklebust } 73247c716cbSTrond Myklebust do { 733d1bacf9eSBryan Schumaker res = find_cache_page(desc); 73447c716cbSTrond Myklebust } while (res == -EAGAIN); 7351da177e4SLinus Torvalds return res; 7361da177e4SLinus Torvalds } 7371da177e4SLinus Torvalds 7381da177e4SLinus Torvalds /* 7391da177e4SLinus Torvalds * Once we've found the start of the dirent within a page: fill 'er up... 7401da177e4SLinus Torvalds */ 7411da177e4SLinus Torvalds static 74223db8620SAl Viro int nfs_do_filldir(nfs_readdir_descriptor_t *desc) 7431da177e4SLinus Torvalds { 7441da177e4SLinus Torvalds struct file *file = desc->file; 745d1bacf9eSBryan Schumaker int i = 0; 746d1bacf9eSBryan Schumaker int res = 0; 747d1bacf9eSBryan Schumaker struct nfs_cache_array *array = NULL; 7488ef2ce3eSBryan Schumaker struct nfs_open_dir_context *ctx = file->private_data; 7498ef2ce3eSBryan Schumaker 7500795bf83SFabian Frederick array = kmap(desc->page); 751d1bacf9eSBryan Schumaker for (i = desc->cache_entry_index; i < array->size; i++) { 752ece0b423STrond Myklebust struct nfs_cache_array_entry *ent; 7531da177e4SLinus Torvalds 754ece0b423STrond Myklebust ent = &array->array[i]; 75523db8620SAl Viro if (!dir_emit(desc->ctx, ent->string.name, ent->string.len, 75623db8620SAl Viro nfs_compat_user_ino64(ent->ino), ent->d_type)) { 7576089dd0dSThomas Meyer desc->eof = true; 7581da177e4SLinus Torvalds break; 759ece0b423STrond Myklebust } 76023db8620SAl Viro desc->ctx->pos++; 761d1bacf9eSBryan Schumaker if (i < (array->size-1)) 762d1bacf9eSBryan Schumaker *desc->dir_cookie = array->array[i+1].cookie; 763d1bacf9eSBryan Schumaker else 764d1bacf9eSBryan Schumaker *desc->dir_cookie = array->last_cookie; 7650c030806STrond Myklebust if (ctx->duped != 0) 7660c030806STrond Myklebust ctx->duped = 1; 7678cd51a0cSTrond Myklebust } 76847c716cbSTrond Myklebust if (array->eof_index >= 0) 7696089dd0dSThomas Meyer desc->eof = true; 770d1bacf9eSBryan Schumaker 7710795bf83SFabian Frederick kunmap(desc->page); 772d1bacf9eSBryan Schumaker cache_page_release(desc); 7731e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n", 7741e7cb3dcSChuck Lever (unsigned long long)*desc->dir_cookie, res); 7751da177e4SLinus Torvalds return res; 7761da177e4SLinus Torvalds } 7771da177e4SLinus Torvalds 7781da177e4SLinus Torvalds /* 7791da177e4SLinus Torvalds * If we cannot find a cookie in our cache, we suspect that this is 7801da177e4SLinus Torvalds * because it points to a deleted file, so we ask the server to return 7811da177e4SLinus Torvalds * whatever it thinks is the next entry. We then feed this to filldir. 7821da177e4SLinus Torvalds * If all goes well, we should then be able to find our way round the 7831da177e4SLinus Torvalds * cache on the next call to readdir_search_pagecache(); 7841da177e4SLinus Torvalds * 7851da177e4SLinus Torvalds * NOTE: we cannot add the anonymous page to the pagecache because 7861da177e4SLinus Torvalds * the data it contains might not be page aligned. Besides, 7871da177e4SLinus Torvalds * we should already have a complete representation of the 7881da177e4SLinus Torvalds * directory in the page cache by the time we get here. 7891da177e4SLinus Torvalds */ 7901da177e4SLinus Torvalds static inline 79123db8620SAl Viro int uncached_readdir(nfs_readdir_descriptor_t *desc) 7921da177e4SLinus Torvalds { 7931da177e4SLinus Torvalds struct page *page = NULL; 7941da177e4SLinus Torvalds int status; 795496ad9aaSAl Viro struct inode *inode = file_inode(desc->file); 7960c030806STrond Myklebust struct nfs_open_dir_context *ctx = desc->file->private_data; 7971da177e4SLinus Torvalds 7981e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n", 7991e7cb3dcSChuck Lever (unsigned long long)*desc->dir_cookie); 8001da177e4SLinus Torvalds 8011da177e4SLinus Torvalds page = alloc_page(GFP_HIGHUSER); 8021da177e4SLinus Torvalds if (!page) { 8031da177e4SLinus Torvalds status = -ENOMEM; 8041da177e4SLinus Torvalds goto out; 8051da177e4SLinus Torvalds } 8061da177e4SLinus Torvalds 8077a8e1dc3STrond Myklebust desc->page_index = 0; 8080aded708STrond Myklebust desc->last_cookie = *desc->dir_cookie; 8097a8e1dc3STrond Myklebust desc->page = page; 8100c030806STrond Myklebust ctx->duped = 0; 8117a8e1dc3STrond Myklebust 81285f8607eSTrond Myklebust status = nfs_readdir_xdr_to_array(desc, page, inode); 81385f8607eSTrond Myklebust if (status < 0) 814d1bacf9eSBryan Schumaker goto out_release; 815d1bacf9eSBryan Schumaker 81623db8620SAl Viro status = nfs_do_filldir(desc); 8171da177e4SLinus Torvalds 8181da177e4SLinus Torvalds out: 8191e7cb3dcSChuck Lever dfprintk(DIRCACHE, "NFS: %s: returns %d\n", 8203110ff80SHarvey Harrison __func__, status); 8211da177e4SLinus Torvalds return status; 8221da177e4SLinus Torvalds out_release: 823d1bacf9eSBryan Schumaker cache_page_release(desc); 8241da177e4SLinus Torvalds goto out; 8251da177e4SLinus Torvalds } 8261da177e4SLinus Torvalds 82700a92642SOlivier Galibert /* The file offset position represents the dirent entry number. A 82800a92642SOlivier Galibert last cookie cache takes care of the common case of reading the 82900a92642SOlivier Galibert whole directory. 8301da177e4SLinus Torvalds */ 83123db8620SAl Viro static int nfs_readdir(struct file *file, struct dir_context *ctx) 8321da177e4SLinus Torvalds { 833be62a1a8SMiklos Szeredi struct dentry *dentry = file_dentry(file); 8342b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 8351da177e4SLinus Torvalds nfs_readdir_descriptor_t my_desc, 8361da177e4SLinus Torvalds *desc = &my_desc; 83723db8620SAl Viro struct nfs_open_dir_context *dir_ctx = file->private_data; 83807b5ce8eSScott Mayhew int res = 0; 8391da177e4SLinus Torvalds 8406de1472fSAl Viro dfprintk(FILE, "NFS: readdir(%pD2) starting at cookie %llu\n", 8416de1472fSAl Viro file, (long long)ctx->pos); 84291d5b470SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSGETDENTS); 84391d5b470SChuck Lever 8441da177e4SLinus Torvalds /* 84523db8620SAl Viro * ctx->pos points to the dirent entry number. 846f0dd2136STrond Myklebust * *desc->dir_cookie has the cookie for the next entry. We have 84700a92642SOlivier Galibert * to either find the entry with the appropriate number or 84800a92642SOlivier Galibert * revalidate the cookie. 8491da177e4SLinus Torvalds */ 8501da177e4SLinus Torvalds memset(desc, 0, sizeof(*desc)); 8511da177e4SLinus Torvalds 85223db8620SAl Viro desc->file = file; 85323db8620SAl Viro desc->ctx = ctx; 854480c2006SBryan Schumaker desc->dir_cookie = &dir_ctx->dir_cookie; 8551da177e4SLinus Torvalds desc->decode = NFS_PROTO(inode)->decode_dirent; 856a7a3b1e9SBenjamin Coddington desc->plus = nfs_use_readdirplus(inode, ctx); 8571da177e4SLinus Torvalds 85879f687a3STrond Myklebust if (ctx->pos == 0 || nfs_attribute_cache_expired(inode)) 85923db8620SAl Viro res = nfs_revalidate_mapping(inode, file->f_mapping); 860fccca7fcSTrond Myklebust if (res < 0) 861fccca7fcSTrond Myklebust goto out; 862fccca7fcSTrond Myklebust 86347c716cbSTrond Myklebust do { 8641da177e4SLinus Torvalds res = readdir_search_pagecache(desc); 86500a92642SOlivier Galibert 8661da177e4SLinus Torvalds if (res == -EBADCOOKIE) { 867ece0b423STrond Myklebust res = 0; 8681da177e4SLinus Torvalds /* This means either end of directory */ 8696089dd0dSThomas Meyer if (*desc->dir_cookie && !desc->eof) { 8701da177e4SLinus Torvalds /* Or that the server has 'lost' a cookie */ 87123db8620SAl Viro res = uncached_readdir(desc); 872ece0b423STrond Myklebust if (res == 0) 8731da177e4SLinus Torvalds continue; 8741da177e4SLinus Torvalds } 8751da177e4SLinus Torvalds break; 8761da177e4SLinus Torvalds } 8771da177e4SLinus Torvalds if (res == -ETOOSMALL && desc->plus) { 8783a10c30aSBenny Halevy clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags); 8791da177e4SLinus Torvalds nfs_zap_caches(inode); 880baf57a09STrond Myklebust desc->page_index = 0; 881a7a3b1e9SBenjamin Coddington desc->plus = false; 882a7a3b1e9SBenjamin Coddington desc->eof = false; 8831da177e4SLinus Torvalds continue; 8841da177e4SLinus Torvalds } 8851da177e4SLinus Torvalds if (res < 0) 8861da177e4SLinus Torvalds break; 8871da177e4SLinus Torvalds 88823db8620SAl Viro res = nfs_do_filldir(desc); 889ece0b423STrond Myklebust if (res < 0) 8901da177e4SLinus Torvalds break; 89147c716cbSTrond Myklebust } while (!desc->eof); 892fccca7fcSTrond Myklebust out: 8931e7cb3dcSChuck Lever if (res > 0) 8941e7cb3dcSChuck Lever res = 0; 8956de1472fSAl Viro dfprintk(FILE, "NFS: readdir(%pD2) returns %d\n", file, res); 8961da177e4SLinus Torvalds return res; 8971da177e4SLinus Torvalds } 8981da177e4SLinus Torvalds 899965c8e59SAndrew Morton static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int whence) 900f0dd2136STrond Myklebust { 901b044f645SBenjamin Coddington struct inode *inode = file_inode(filp); 902480c2006SBryan Schumaker struct nfs_open_dir_context *dir_ctx = filp->private_data; 903b84e06c5SChuck Lever 9046de1472fSAl Viro dfprintk(FILE, "NFS: llseek dir(%pD2, %lld, %d)\n", 9056de1472fSAl Viro filp, offset, whence); 906b84e06c5SChuck Lever 907b044f645SBenjamin Coddington inode_lock(inode); 908965c8e59SAndrew Morton switch (whence) { 909f0dd2136STrond Myklebust case 1: 910f0dd2136STrond Myklebust offset += filp->f_pos; 911f0dd2136STrond Myklebust case 0: 912f0dd2136STrond Myklebust if (offset >= 0) 913f0dd2136STrond Myklebust break; 914f0dd2136STrond Myklebust default: 915b044f645SBenjamin Coddington offset = -EINVAL; 916b044f645SBenjamin Coddington goto out; 917f0dd2136STrond Myklebust } 918f0dd2136STrond Myklebust if (offset != filp->f_pos) { 919f0dd2136STrond Myklebust filp->f_pos = offset; 920480c2006SBryan Schumaker dir_ctx->dir_cookie = 0; 9218ef2ce3eSBryan Schumaker dir_ctx->duped = 0; 922f0dd2136STrond Myklebust } 923b044f645SBenjamin Coddington out: 924b044f645SBenjamin Coddington inode_unlock(inode); 925f0dd2136STrond Myklebust return offset; 926f0dd2136STrond Myklebust } 927f0dd2136STrond Myklebust 9281da177e4SLinus Torvalds /* 9291da177e4SLinus Torvalds * All directory operations under NFS are synchronous, so fsync() 9301da177e4SLinus Torvalds * is a dummy operation. 9311da177e4SLinus Torvalds */ 93202c24a82SJosef Bacik static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end, 93302c24a82SJosef Bacik int datasync) 9341da177e4SLinus Torvalds { 9356de1472fSAl Viro struct inode *inode = file_inode(filp); 9367ea80859SChristoph Hellwig 9376de1472fSAl Viro dfprintk(FILE, "NFS: fsync dir(%pD2) datasync %d\n", filp, datasync); 9381e7cb3dcSChuck Lever 9395955102cSAl Viro inode_lock(inode); 9406de1472fSAl Viro nfs_inc_stats(inode, NFSIOS_VFSFSYNC); 9415955102cSAl Viro inode_unlock(inode); 9421da177e4SLinus Torvalds return 0; 9431da177e4SLinus Torvalds } 9441da177e4SLinus Torvalds 945bfc69a45STrond Myklebust /** 946bfc69a45STrond Myklebust * nfs_force_lookup_revalidate - Mark the directory as having changed 947bfc69a45STrond Myklebust * @dir - pointer to directory inode 948bfc69a45STrond Myklebust * 949bfc69a45STrond Myklebust * This forces the revalidation code in nfs_lookup_revalidate() to do a 950bfc69a45STrond Myklebust * full lookup on all child dentries of 'dir' whenever a change occurs 951bfc69a45STrond Myklebust * on the server that might have invalidated our dcache. 952bfc69a45STrond Myklebust * 953bfc69a45STrond Myklebust * The caller should be holding dir->i_lock 954bfc69a45STrond Myklebust */ 955bfc69a45STrond Myklebust void nfs_force_lookup_revalidate(struct inode *dir) 956bfc69a45STrond Myklebust { 957011935a0STrond Myklebust NFS_I(dir)->cache_change_attribute++; 958bfc69a45STrond Myklebust } 95989d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_force_lookup_revalidate); 960bfc69a45STrond Myklebust 9611da177e4SLinus Torvalds /* 9621da177e4SLinus Torvalds * A check for whether or not the parent directory has changed. 9631da177e4SLinus Torvalds * In the case it has, we assume that the dentries are untrustworthy 9641da177e4SLinus Torvalds * and may need to be looked up again. 965912a108dSNeilBrown * If rcu_walk prevents us from performing a full check, return 0. 9661da177e4SLinus Torvalds */ 967912a108dSNeilBrown static int nfs_check_verifier(struct inode *dir, struct dentry *dentry, 968912a108dSNeilBrown int rcu_walk) 9691da177e4SLinus Torvalds { 9701da177e4SLinus Torvalds if (IS_ROOT(dentry)) 9711da177e4SLinus Torvalds return 1; 9724eec952eSTrond Myklebust if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE) 9734eec952eSTrond Myklebust return 0; 974f2c77f4eSTrond Myklebust if (!nfs_verify_change_attribute(dir, dentry->d_time)) 9756ecc5e8fSTrond Myklebust return 0; 976f2c77f4eSTrond Myklebust /* Revalidate nfsi->cache_change_attribute before we declare a match */ 9771cd9cb05STrond Myklebust if (nfs_mapping_need_revalidate_inode(dir)) { 978912a108dSNeilBrown if (rcu_walk) 979f2c77f4eSTrond Myklebust return 0; 9801cd9cb05STrond Myklebust if (__nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0) 9811cd9cb05STrond Myklebust return 0; 9821cd9cb05STrond Myklebust } 983f2c77f4eSTrond Myklebust if (!nfs_verify_change_attribute(dir, dentry->d_time)) 984f2c77f4eSTrond Myklebust return 0; 985f2c77f4eSTrond Myklebust return 1; 9861da177e4SLinus Torvalds } 9871da177e4SLinus Torvalds 9881da177e4SLinus Torvalds /* 989a12802caSTrond Myklebust * Use intent information to check whether or not we're going to do 990a12802caSTrond Myklebust * an O_EXCL create using this path component. 991a12802caSTrond Myklebust */ 992fa3c56bbSAl Viro static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags) 993a12802caSTrond Myklebust { 994a12802caSTrond Myklebust if (NFS_PROTO(dir)->version == 2) 995a12802caSTrond Myklebust return 0; 996fa3c56bbSAl Viro return flags & LOOKUP_EXCL; 997a12802caSTrond Myklebust } 998a12802caSTrond Myklebust 999a12802caSTrond Myklebust /* 10001d6757fbSTrond Myklebust * Inode and filehandle revalidation for lookups. 10011d6757fbSTrond Myklebust * 10021d6757fbSTrond Myklebust * We force revalidation in the cases where the VFS sets LOOKUP_REVAL, 10031d6757fbSTrond Myklebust * or if the intent information indicates that we're about to open this 10041d6757fbSTrond Myklebust * particular file and the "nocto" mount flag is not set. 10051d6757fbSTrond Myklebust * 10061d6757fbSTrond Myklebust */ 100765a0c149STrond Myklebust static 1008fa3c56bbSAl Viro int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags) 10091da177e4SLinus Torvalds { 10101da177e4SLinus Torvalds struct nfs_server *server = NFS_SERVER(inode); 101165a0c149STrond Myklebust int ret; 10121da177e4SLinus Torvalds 101336d43a43SDavid Howells if (IS_AUTOMOUNT(inode)) 10144e99a1ffSTrond Myklebust return 0; 10151da177e4SLinus Torvalds /* VFS wants an on-the-wire revalidation */ 1016fa3c56bbSAl Viro if (flags & LOOKUP_REVAL) 10171da177e4SLinus Torvalds goto out_force; 10181da177e4SLinus Torvalds /* This is an open(2) */ 1019fa3c56bbSAl Viro if ((flags & LOOKUP_OPEN) && !(server->flags & NFS_MOUNT_NOCTO) && 1020fa3c56bbSAl Viro (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) 10211da177e4SLinus Torvalds goto out_force; 102265a0c149STrond Myklebust out: 102365a0c149STrond Myklebust return (inode->i_nlink == 0) ? -ENOENT : 0; 10241da177e4SLinus Torvalds out_force: 10251fa1e384SNeilBrown if (flags & LOOKUP_RCU) 10261fa1e384SNeilBrown return -ECHILD; 102765a0c149STrond Myklebust ret = __nfs_revalidate_inode(server, inode); 102865a0c149STrond Myklebust if (ret != 0) 102965a0c149STrond Myklebust return ret; 103065a0c149STrond Myklebust goto out; 10311da177e4SLinus Torvalds } 10321da177e4SLinus Torvalds 10331da177e4SLinus Torvalds /* 10341da177e4SLinus Torvalds * We judge how long we want to trust negative 10351da177e4SLinus Torvalds * dentries by looking at the parent inode mtime. 10361da177e4SLinus Torvalds * 10371da177e4SLinus Torvalds * If parent mtime has changed, we revalidate, else we wait for a 10381da177e4SLinus Torvalds * period corresponding to the parent's attribute cache timeout value. 1039912a108dSNeilBrown * 1040912a108dSNeilBrown * If LOOKUP_RCU prevents us from performing a full check, return 1 1041912a108dSNeilBrown * suggesting a reval is needed. 10421da177e4SLinus Torvalds */ 10431da177e4SLinus Torvalds static inline 10441da177e4SLinus Torvalds int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry, 1045fa3c56bbSAl Viro unsigned int flags) 10461da177e4SLinus Torvalds { 10471da177e4SLinus Torvalds /* Don't revalidate a negative dentry if we're creating a new file */ 1048fa3c56bbSAl Viro if (flags & LOOKUP_CREATE) 10491da177e4SLinus Torvalds return 0; 10504eec952eSTrond Myklebust if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) 10514eec952eSTrond Myklebust return 1; 1052912a108dSNeilBrown return !nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU); 10531da177e4SLinus Torvalds } 10541da177e4SLinus Torvalds 10551da177e4SLinus Torvalds /* 10561da177e4SLinus Torvalds * This is called every time the dcache has a lookup hit, 10571da177e4SLinus Torvalds * and we should check whether we can really trust that 10581da177e4SLinus Torvalds * lookup. 10591da177e4SLinus Torvalds * 10601da177e4SLinus Torvalds * NOTE! The hit can be a negative hit too, don't assume 10611da177e4SLinus Torvalds * we have an inode! 10621da177e4SLinus Torvalds * 10631da177e4SLinus Torvalds * If the parent directory is seen to have changed, we throw out the 10641da177e4SLinus Torvalds * cached dentry and do a new lookup. 10651da177e4SLinus Torvalds */ 10660b728e19SAl Viro static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags) 10671da177e4SLinus Torvalds { 10681da177e4SLinus Torvalds struct inode *dir; 10691da177e4SLinus Torvalds struct inode *inode; 10701da177e4SLinus Torvalds struct dentry *parent; 1071e1fb4d05STrond Myklebust struct nfs_fh *fhandle = NULL; 1072e1fb4d05STrond Myklebust struct nfs_fattr *fattr = NULL; 10731775fd3eSDavid Quigley struct nfs4_label *label = NULL; 10741da177e4SLinus Torvalds int error; 10751da177e4SLinus Torvalds 1076d51ac1a8SNeilBrown if (flags & LOOKUP_RCU) { 10776aa7de05SMark Rutland parent = READ_ONCE(dentry->d_parent); 10782b0143b5SDavid Howells dir = d_inode_rcu(parent); 1079d51ac1a8SNeilBrown if (!dir) 108034286d66SNick Piggin return -ECHILD; 1081d51ac1a8SNeilBrown } else { 10821da177e4SLinus Torvalds parent = dget_parent(dentry); 10832b0143b5SDavid Howells dir = d_inode(parent); 1084d51ac1a8SNeilBrown } 108591d5b470SChuck Lever nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE); 10862b0143b5SDavid Howells inode = d_inode(dentry); 10871da177e4SLinus Torvalds 10881da177e4SLinus Torvalds if (!inode) { 1089912a108dSNeilBrown if (nfs_neg_need_reval(dir, dentry, flags)) { 1090d51ac1a8SNeilBrown if (flags & LOOKUP_RCU) 1091d51ac1a8SNeilBrown return -ECHILD; 10921da177e4SLinus Torvalds goto out_bad; 1093912a108dSNeilBrown } 109463519fbcSTrond Myklebust goto out_valid; 10951da177e4SLinus Torvalds } 10961da177e4SLinus Torvalds 10971da177e4SLinus Torvalds if (is_bad_inode(inode)) { 1098d51ac1a8SNeilBrown if (flags & LOOKUP_RCU) 1099d51ac1a8SNeilBrown return -ECHILD; 11006de1472fSAl Viro dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n", 11016de1472fSAl Viro __func__, dentry); 11021da177e4SLinus Torvalds goto out_bad; 11031da177e4SLinus Torvalds } 11041da177e4SLinus Torvalds 1105011e2a7fSBryan Schumaker if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ)) 110615860ab1STrond Myklebust goto out_set_verifier; 110715860ab1STrond Myklebust 1108912a108dSNeilBrown /* Force a full look up iff the parent directory has changed */ 1109912a108dSNeilBrown if (!nfs_is_exclusive_create(dir, flags) && 1110912a108dSNeilBrown nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU)) { 1111cc89684cSNeilBrown error = nfs_lookup_verify_inode(inode, flags); 1112cc89684cSNeilBrown if (error) { 1113d51ac1a8SNeilBrown if (flags & LOOKUP_RCU) 1114d51ac1a8SNeilBrown return -ECHILD; 1115cc89684cSNeilBrown if (error == -ESTALE) 11161da177e4SLinus Torvalds goto out_zap_parent; 1117cc89684cSNeilBrown goto out_error; 11181fa1e384SNeilBrown } 111963519fbcSTrond Myklebust nfs_advise_use_readdirplus(dir); 11201da177e4SLinus Torvalds goto out_valid; 11211da177e4SLinus Torvalds } 11221da177e4SLinus Torvalds 1123912a108dSNeilBrown if (flags & LOOKUP_RCU) 1124912a108dSNeilBrown return -ECHILD; 1125912a108dSNeilBrown 11261da177e4SLinus Torvalds if (NFS_STALE(inode)) 11271da177e4SLinus Torvalds goto out_bad; 11281da177e4SLinus Torvalds 1129e1fb4d05STrond Myklebust error = -ENOMEM; 1130e1fb4d05STrond Myklebust fhandle = nfs_alloc_fhandle(); 1131e1fb4d05STrond Myklebust fattr = nfs_alloc_fattr(); 1132e1fb4d05STrond Myklebust if (fhandle == NULL || fattr == NULL) 1133e1fb4d05STrond Myklebust goto out_error; 1134e1fb4d05STrond Myklebust 113514c43f76SDavid Quigley label = nfs4_label_alloc(NFS_SERVER(inode), GFP_NOWAIT); 113614c43f76SDavid Quigley if (IS_ERR(label)) 113714c43f76SDavid Quigley goto out_error; 113814c43f76SDavid Quigley 11396e0d0be7STrond Myklebust trace_nfs_lookup_revalidate_enter(dir, dentry, flags); 11401775fd3eSDavid Quigley error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label); 11416e0d0be7STrond Myklebust trace_nfs_lookup_revalidate_exit(dir, dentry, flags, error); 1142cc89684cSNeilBrown if (error == -ESTALE || error == -ENOENT) 11431da177e4SLinus Torvalds goto out_bad; 1144cc89684cSNeilBrown if (error) 1145cc89684cSNeilBrown goto out_error; 1146e1fb4d05STrond Myklebust if (nfs_compare_fh(NFS_FH(inode), fhandle)) 11471da177e4SLinus Torvalds goto out_bad; 1148e1fb4d05STrond Myklebust if ((error = nfs_refresh_inode(inode, fattr)) != 0) 11491da177e4SLinus Torvalds goto out_bad; 11501da177e4SLinus Torvalds 1151aa9c2669SDavid Quigley nfs_setsecurity(inode, fattr, label); 1152aa9c2669SDavid Quigley 1153e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1154e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 115514c43f76SDavid Quigley nfs4_label_free(label); 115614c43f76SDavid Quigley 115763519fbcSTrond Myklebust /* set a readdirplus hint that we had a cache miss */ 115863519fbcSTrond Myklebust nfs_force_use_readdirplus(dir); 115963519fbcSTrond Myklebust 116015860ab1STrond Myklebust out_set_verifier: 1161cf8ba45eSTrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 11621da177e4SLinus Torvalds out_valid: 1163d51ac1a8SNeilBrown if (flags & LOOKUP_RCU) { 11646aa7de05SMark Rutland if (parent != READ_ONCE(dentry->d_parent)) 1165d51ac1a8SNeilBrown return -ECHILD; 1166d51ac1a8SNeilBrown } else 11671da177e4SLinus Torvalds dput(parent); 11686de1472fSAl Viro dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is valid\n", 11696de1472fSAl Viro __func__, dentry); 11701da177e4SLinus Torvalds return 1; 11711da177e4SLinus Torvalds out_zap_parent: 11721da177e4SLinus Torvalds nfs_zap_caches(dir); 11731da177e4SLinus Torvalds out_bad: 1174d51ac1a8SNeilBrown WARN_ON(flags & LOOKUP_RCU); 1175c44600c9SAl Viro nfs_free_fattr(fattr); 1176c44600c9SAl Viro nfs_free_fhandle(fhandle); 117714c43f76SDavid Quigley nfs4_label_free(label); 1178a1643a92STrond Myklebust nfs_mark_for_revalidate(dir); 11791da177e4SLinus Torvalds if (inode && S_ISDIR(inode->i_mode)) { 11801da177e4SLinus Torvalds /* Purge readdir caches. */ 11811da177e4SLinus Torvalds nfs_zap_caches(inode); 1182a3f432bfSJ. Bruce Fields /* 1183a3f432bfSJ. Bruce Fields * We can't d_drop the root of a disconnected tree: 1184a3f432bfSJ. Bruce Fields * its d_hash is on the s_anon list and d_drop() would hide 1185a3f432bfSJ. Bruce Fields * it from shrink_dcache_for_unmount(), leading to busy 1186a3f432bfSJ. Bruce Fields * inodes on unmount and further oopses. 1187a3f432bfSJ. Bruce Fields */ 1188a3f432bfSJ. Bruce Fields if (IS_ROOT(dentry)) 1189d9e80b7dSAl Viro goto out_valid; 11901da177e4SLinus Torvalds } 11911da177e4SLinus Torvalds dput(parent); 11926de1472fSAl Viro dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is invalid\n", 11936de1472fSAl Viro __func__, dentry); 11941da177e4SLinus Torvalds return 0; 1195e1fb4d05STrond Myklebust out_error: 1196d51ac1a8SNeilBrown WARN_ON(flags & LOOKUP_RCU); 1197e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1198e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 119914c43f76SDavid Quigley nfs4_label_free(label); 1200e1fb4d05STrond Myklebust dput(parent); 12016de1472fSAl Viro dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) lookup returned error %d\n", 12026de1472fSAl Viro __func__, dentry, error); 1203e1fb4d05STrond Myklebust return error; 12041da177e4SLinus Torvalds } 12051da177e4SLinus Torvalds 12061da177e4SLinus Torvalds /* 12072b0143b5SDavid Howells * A weaker form of d_revalidate for revalidating just the d_inode(dentry) 1208ecf3d1f1SJeff Layton * when we don't really care about the dentry name. This is called when a 1209ecf3d1f1SJeff Layton * pathwalk ends on a dentry that was not found via a normal lookup in the 1210ecf3d1f1SJeff Layton * parent dir (e.g.: ".", "..", procfs symlinks or mountpoint traversals). 1211ecf3d1f1SJeff Layton * 1212ecf3d1f1SJeff Layton * In this situation, we just want to verify that the inode itself is OK 1213ecf3d1f1SJeff Layton * since the dentry might have changed on the server. 1214ecf3d1f1SJeff Layton */ 1215ecf3d1f1SJeff Layton static int nfs_weak_revalidate(struct dentry *dentry, unsigned int flags) 1216ecf3d1f1SJeff Layton { 12172b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 12189cdd1d3fSTrond Myklebust int error = 0; 1219ecf3d1f1SJeff Layton 1220ecf3d1f1SJeff Layton /* 1221ecf3d1f1SJeff Layton * I believe we can only get a negative dentry here in the case of a 1222ecf3d1f1SJeff Layton * procfs-style symlink. Just assume it's correct for now, but we may 1223ecf3d1f1SJeff Layton * eventually need to do something more here. 1224ecf3d1f1SJeff Layton */ 1225ecf3d1f1SJeff Layton if (!inode) { 12266de1472fSAl Viro dfprintk(LOOKUPCACHE, "%s: %pd2 has negative inode\n", 12276de1472fSAl Viro __func__, dentry); 1228ecf3d1f1SJeff Layton return 1; 1229ecf3d1f1SJeff Layton } 1230ecf3d1f1SJeff Layton 1231ecf3d1f1SJeff Layton if (is_bad_inode(inode)) { 12326de1472fSAl Viro dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n", 12336de1472fSAl Viro __func__, dentry); 1234ecf3d1f1SJeff Layton return 0; 1235ecf3d1f1SJeff Layton } 1236ecf3d1f1SJeff Layton 1237b688741cSNeilBrown error = nfs_lookup_verify_inode(inode, flags); 1238ecf3d1f1SJeff Layton dfprintk(LOOKUPCACHE, "NFS: %s: inode %lu is %s\n", 1239ecf3d1f1SJeff Layton __func__, inode->i_ino, error ? "invalid" : "valid"); 1240ecf3d1f1SJeff Layton return !error; 1241ecf3d1f1SJeff Layton } 1242ecf3d1f1SJeff Layton 1243ecf3d1f1SJeff Layton /* 12441da177e4SLinus Torvalds * This is called from dput() when d_count is going to 0. 12451da177e4SLinus Torvalds */ 1246fe15ce44SNick Piggin static int nfs_dentry_delete(const struct dentry *dentry) 12471da177e4SLinus Torvalds { 12486de1472fSAl Viro dfprintk(VFS, "NFS: dentry_delete(%pd2, %x)\n", 12496de1472fSAl Viro dentry, dentry->d_flags); 12501da177e4SLinus Torvalds 125177f11192STrond Myklebust /* Unhash any dentry with a stale inode */ 12522b0143b5SDavid Howells if (d_really_is_positive(dentry) && NFS_STALE(d_inode(dentry))) 125377f11192STrond Myklebust return 1; 125477f11192STrond Myklebust 12551da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 12561da177e4SLinus Torvalds /* Unhash it, so that ->d_iput() would be called */ 12571da177e4SLinus Torvalds return 1; 12581da177e4SLinus Torvalds } 1259*1751e8a6SLinus Torvalds if (!(dentry->d_sb->s_flags & SB_ACTIVE)) { 12601da177e4SLinus Torvalds /* Unhash it, so that ancestors of killed async unlink 12611da177e4SLinus Torvalds * files will be cleaned up during umount */ 12621da177e4SLinus Torvalds return 1; 12631da177e4SLinus Torvalds } 12641da177e4SLinus Torvalds return 0; 12651da177e4SLinus Torvalds 12661da177e4SLinus Torvalds } 12671da177e4SLinus Torvalds 12681f018458STrond Myklebust /* Ensure that we revalidate inode->i_nlink */ 12691b83d707STrond Myklebust static void nfs_drop_nlink(struct inode *inode) 12701b83d707STrond Myklebust { 12711b83d707STrond Myklebust spin_lock(&inode->i_lock); 12721f018458STrond Myklebust /* drop the inode if we're reasonably sure this is the last link */ 12731f018458STrond Myklebust if (inode->i_nlink == 1) 12741f018458STrond Myklebust clear_nlink(inode); 12751f018458STrond Myklebust NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR; 12761b83d707STrond Myklebust spin_unlock(&inode->i_lock); 12771b83d707STrond Myklebust } 12781b83d707STrond Myklebust 12791da177e4SLinus Torvalds /* 12801da177e4SLinus Torvalds * Called when the dentry loses inode. 12811da177e4SLinus Torvalds * We use it to clean up silly-renamed files. 12821da177e4SLinus Torvalds */ 12831da177e4SLinus Torvalds static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode) 12841da177e4SLinus Torvalds { 128583672d39SNeil Brown if (S_ISDIR(inode->i_mode)) 128683672d39SNeil Brown /* drop any readdir cache as it could easily be old */ 128783672d39SNeil Brown NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA; 128883672d39SNeil Brown 12891da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 1290e4eff1a6STrond Myklebust nfs_complete_unlink(dentry, inode); 12911f018458STrond Myklebust nfs_drop_nlink(inode); 12921da177e4SLinus Torvalds } 12931da177e4SLinus Torvalds iput(inode); 12941da177e4SLinus Torvalds } 12951da177e4SLinus Torvalds 1296b1942c5fSAl Viro static void nfs_d_release(struct dentry *dentry) 1297b1942c5fSAl Viro { 1298b1942c5fSAl Viro /* free cached devname value, if it survived that far */ 1299b1942c5fSAl Viro if (unlikely(dentry->d_fsdata)) { 1300b1942c5fSAl Viro if (dentry->d_flags & DCACHE_NFSFS_RENAMED) 1301b1942c5fSAl Viro WARN_ON(1); 1302b1942c5fSAl Viro else 1303b1942c5fSAl Viro kfree(dentry->d_fsdata); 1304b1942c5fSAl Viro } 1305b1942c5fSAl Viro } 1306b1942c5fSAl Viro 1307f786aa90SAl Viro const struct dentry_operations nfs_dentry_operations = { 13081da177e4SLinus Torvalds .d_revalidate = nfs_lookup_revalidate, 1309ecf3d1f1SJeff Layton .d_weak_revalidate = nfs_weak_revalidate, 13101da177e4SLinus Torvalds .d_delete = nfs_dentry_delete, 13111da177e4SLinus Torvalds .d_iput = nfs_dentry_iput, 131236d43a43SDavid Howells .d_automount = nfs_d_automount, 1313b1942c5fSAl Viro .d_release = nfs_d_release, 13141da177e4SLinus Torvalds }; 1315ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_dentry_operations); 13161da177e4SLinus Torvalds 1317597d9289SBryan Schumaker struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags) 13181da177e4SLinus Torvalds { 13191da177e4SLinus Torvalds struct dentry *res; 13201da177e4SLinus Torvalds struct inode *inode = NULL; 1321e1fb4d05STrond Myklebust struct nfs_fh *fhandle = NULL; 1322e1fb4d05STrond Myklebust struct nfs_fattr *fattr = NULL; 13231775fd3eSDavid Quigley struct nfs4_label *label = NULL; 13241da177e4SLinus Torvalds int error; 13251da177e4SLinus Torvalds 13266de1472fSAl Viro dfprintk(VFS, "NFS: lookup(%pd2)\n", dentry); 132791d5b470SChuck Lever nfs_inc_stats(dir, NFSIOS_VFSLOOKUP); 13281da177e4SLinus Torvalds 1329130f9ab7SAl Viro if (unlikely(dentry->d_name.len > NFS_SERVER(dir)->namelen)) 1330130f9ab7SAl Viro return ERR_PTR(-ENAMETOOLONG); 13311da177e4SLinus Torvalds 1332fd684071STrond Myklebust /* 1333fd684071STrond Myklebust * If we're doing an exclusive create, optimize away the lookup 1334fd684071STrond Myklebust * but don't hash the dentry. 1335fd684071STrond Myklebust */ 1336130f9ab7SAl Viro if (nfs_is_exclusive_create(dir, flags)) 1337130f9ab7SAl Viro return NULL; 13381da177e4SLinus Torvalds 1339e1fb4d05STrond Myklebust res = ERR_PTR(-ENOMEM); 1340e1fb4d05STrond Myklebust fhandle = nfs_alloc_fhandle(); 1341e1fb4d05STrond Myklebust fattr = nfs_alloc_fattr(); 1342e1fb4d05STrond Myklebust if (fhandle == NULL || fattr == NULL) 1343e1fb4d05STrond Myklebust goto out; 1344e1fb4d05STrond Myklebust 134514c43f76SDavid Quigley label = nfs4_label_alloc(NFS_SERVER(dir), GFP_NOWAIT); 134614c43f76SDavid Quigley if (IS_ERR(label)) 134714c43f76SDavid Quigley goto out; 134814c43f76SDavid Quigley 13496e0d0be7STrond Myklebust trace_nfs_lookup_enter(dir, dentry, flags); 13501775fd3eSDavid Quigley error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label); 13511da177e4SLinus Torvalds if (error == -ENOENT) 13521da177e4SLinus Torvalds goto no_entry; 13531da177e4SLinus Torvalds if (error < 0) { 13541da177e4SLinus Torvalds res = ERR_PTR(error); 1355bf130914SAl Viro goto out_label; 13561da177e4SLinus Torvalds } 13571775fd3eSDavid Quigley inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label); 1358bf0c84f1SNamhyung Kim res = ERR_CAST(inode); 135903f28e3aSTrond Myklebust if (IS_ERR(res)) 1360bf130914SAl Viro goto out_label; 136154ceac45SDavid Howells 136263519fbcSTrond Myklebust /* Notify readdir to use READDIRPLUS */ 136363519fbcSTrond Myklebust nfs_force_use_readdirplus(dir); 1364d69ee9b8STrond Myklebust 13651da177e4SLinus Torvalds no_entry: 136641d28bcaSAl Viro res = d_splice_alias(inode, dentry); 13679eaef27bSTrond Myklebust if (res != NULL) { 13689eaef27bSTrond Myklebust if (IS_ERR(res)) 1369bf130914SAl Viro goto out_label; 13701da177e4SLinus Torvalds dentry = res; 13719eaef27bSTrond Myklebust } 13721da177e4SLinus Torvalds nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 1373bf130914SAl Viro out_label: 13746e0d0be7STrond Myklebust trace_nfs_lookup_exit(dir, dentry, flags, error); 137514c43f76SDavid Quigley nfs4_label_free(label); 13761da177e4SLinus Torvalds out: 1377e1fb4d05STrond Myklebust nfs_free_fattr(fattr); 1378e1fb4d05STrond Myklebust nfs_free_fhandle(fhandle); 13791da177e4SLinus Torvalds return res; 13801da177e4SLinus Torvalds } 1381ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_lookup); 13821da177e4SLinus Torvalds 138389d77c8fSBryan Schumaker #if IS_ENABLED(CONFIG_NFS_V4) 13840b728e19SAl Viro static int nfs4_lookup_revalidate(struct dentry *, unsigned int); 13851da177e4SLinus Torvalds 1386f786aa90SAl Viro const struct dentry_operations nfs4_dentry_operations = { 13870ef97dcfSMiklos Szeredi .d_revalidate = nfs4_lookup_revalidate, 1388b688741cSNeilBrown .d_weak_revalidate = nfs_weak_revalidate, 13891da177e4SLinus Torvalds .d_delete = nfs_dentry_delete, 13901da177e4SLinus Torvalds .d_iput = nfs_dentry_iput, 139136d43a43SDavid Howells .d_automount = nfs_d_automount, 1392b1942c5fSAl Viro .d_release = nfs_d_release, 13931da177e4SLinus Torvalds }; 139489d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs4_dentry_operations); 13951da177e4SLinus Torvalds 13968a5e929dSAl Viro static fmode_t flags_to_mode(int flags) 13978a5e929dSAl Viro { 13988a5e929dSAl Viro fmode_t res = (__force fmode_t)flags & FMODE_EXEC; 13998a5e929dSAl Viro if ((flags & O_ACCMODE) != O_WRONLY) 14008a5e929dSAl Viro res |= FMODE_READ; 14018a5e929dSAl Viro if ((flags & O_ACCMODE) != O_RDONLY) 14028a5e929dSAl Viro res |= FMODE_WRITE; 14038a5e929dSAl Viro return res; 14048a5e929dSAl Viro } 14058a5e929dSAl Viro 1406532d4defSNeilBrown static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags, struct file *filp) 1407cd9a1c0eSTrond Myklebust { 1408532d4defSNeilBrown return alloc_nfs_open_context(dentry, flags_to_mode(open_flags), filp); 1409cd9a1c0eSTrond Myklebust } 1410cd9a1c0eSTrond Myklebust 1411cd9a1c0eSTrond Myklebust static int do_open(struct inode *inode, struct file *filp) 1412cd9a1c0eSTrond Myklebust { 1413f1fe29b4SDavid Howells nfs_fscache_open_file(inode, filp); 1414cd9a1c0eSTrond Myklebust return 0; 1415cd9a1c0eSTrond Myklebust } 1416cd9a1c0eSTrond Myklebust 1417d9585277SAl Viro static int nfs_finish_open(struct nfs_open_context *ctx, 14180dd2b474SMiklos Szeredi struct dentry *dentry, 141930d90494SAl Viro struct file *file, unsigned open_flags, 142047237687SAl Viro int *opened) 1421cd9a1c0eSTrond Myklebust { 14220dd2b474SMiklos Szeredi int err; 14230dd2b474SMiklos Szeredi 142430d90494SAl Viro err = finish_open(file, dentry, do_open, opened); 142530d90494SAl Viro if (err) 1426d9585277SAl Viro goto out; 1427eaa2b82cSNeilBrown if (S_ISREG(file->f_path.dentry->d_inode->i_mode)) 142830d90494SAl Viro nfs_file_set_open_context(file, ctx); 1429eaa2b82cSNeilBrown else 1430eaa2b82cSNeilBrown err = -ESTALE; 1431cd9a1c0eSTrond Myklebust out: 1432d9585277SAl Viro return err; 1433cd9a1c0eSTrond Myklebust } 1434cd9a1c0eSTrond Myklebust 143573a79706SBryan Schumaker int nfs_atomic_open(struct inode *dir, struct dentry *dentry, 143630d90494SAl Viro struct file *file, unsigned open_flags, 143747237687SAl Viro umode_t mode, int *opened) 14381da177e4SLinus Torvalds { 1439c94c0953SAl Viro DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); 1440cd9a1c0eSTrond Myklebust struct nfs_open_context *ctx; 14410dd2b474SMiklos Szeredi struct dentry *res; 14420dd2b474SMiklos Szeredi struct iattr attr = { .ia_valid = ATTR_OPEN }; 1443f46e0bd3STrond Myklebust struct inode *inode; 14441472b83eSTrond Myklebust unsigned int lookup_flags = 0; 1445c94c0953SAl Viro bool switched = false; 1446898f635cSTrond Myklebust int err; 14471da177e4SLinus Torvalds 14480dd2b474SMiklos Szeredi /* Expect a negative dentry */ 14492b0143b5SDavid Howells BUG_ON(d_inode(dentry)); 14500dd2b474SMiklos Szeredi 14511e8968c5SNiels de Vos dfprintk(VFS, "NFS: atomic_open(%s/%lu), %pd\n", 14526de1472fSAl Viro dir->i_sb->s_id, dir->i_ino, dentry); 14531e7cb3dcSChuck Lever 14549597c13bSJeff Layton err = nfs_check_flags(open_flags); 14559597c13bSJeff Layton if (err) 14569597c13bSJeff Layton return err; 14579597c13bSJeff Layton 14580dd2b474SMiklos Szeredi /* NFS only supports OPEN on regular files */ 14590dd2b474SMiklos Szeredi if ((open_flags & O_DIRECTORY)) { 146000699ad8SAl Viro if (!d_in_lookup(dentry)) { 14610dd2b474SMiklos Szeredi /* 14620dd2b474SMiklos Szeredi * Hashed negative dentry with O_DIRECTORY: dentry was 14630dd2b474SMiklos Szeredi * revalidated and is fine, no need to perform lookup 14640dd2b474SMiklos Szeredi * again 14650dd2b474SMiklos Szeredi */ 1466d9585277SAl Viro return -ENOENT; 14670dd2b474SMiklos Szeredi } 14681472b83eSTrond Myklebust lookup_flags = LOOKUP_OPEN|LOOKUP_DIRECTORY; 14691da177e4SLinus Torvalds goto no_open; 14701da177e4SLinus Torvalds } 14711da177e4SLinus Torvalds 14720dd2b474SMiklos Szeredi if (dentry->d_name.len > NFS_SERVER(dir)->namelen) 1473d9585277SAl Viro return -ENAMETOOLONG; 14741da177e4SLinus Torvalds 14750dd2b474SMiklos Szeredi if (open_flags & O_CREAT) { 1476dff25ddbSAndreas Gruenbacher struct nfs_server *server = NFS_SERVER(dir); 1477dff25ddbSAndreas Gruenbacher 1478dff25ddbSAndreas Gruenbacher if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK)) 1479dff25ddbSAndreas Gruenbacher mode &= ~current_umask(); 1480dff25ddbSAndreas Gruenbacher 1481536e43d1STrond Myklebust attr.ia_valid |= ATTR_MODE; 1482dff25ddbSAndreas Gruenbacher attr.ia_mode = mode; 14830dd2b474SMiklos Szeredi } 1484536e43d1STrond Myklebust if (open_flags & O_TRUNC) { 1485536e43d1STrond Myklebust attr.ia_valid |= ATTR_SIZE; 1486536e43d1STrond Myklebust attr.ia_size = 0; 1487cd9a1c0eSTrond Myklebust } 1488cd9a1c0eSTrond Myklebust 1489c94c0953SAl Viro if (!(open_flags & O_CREAT) && !d_in_lookup(dentry)) { 1490c94c0953SAl Viro d_drop(dentry); 1491c94c0953SAl Viro switched = true; 1492c94c0953SAl Viro dentry = d_alloc_parallel(dentry->d_parent, 1493c94c0953SAl Viro &dentry->d_name, &wq); 1494c94c0953SAl Viro if (IS_ERR(dentry)) 1495c94c0953SAl Viro return PTR_ERR(dentry); 1496c94c0953SAl Viro if (unlikely(!d_in_lookup(dentry))) 1497c94c0953SAl Viro return finish_no_open(file, dentry); 1498c94c0953SAl Viro } 1499c94c0953SAl Viro 1500532d4defSNeilBrown ctx = create_nfs_open_context(dentry, open_flags, file); 15010dd2b474SMiklos Szeredi err = PTR_ERR(ctx); 15020dd2b474SMiklos Szeredi if (IS_ERR(ctx)) 1503d9585277SAl Viro goto out; 15040dd2b474SMiklos Szeredi 15056e0d0be7STrond Myklebust trace_nfs_atomic_open_enter(dir, ctx, open_flags); 15065bc2afc2STrond Myklebust inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr, opened); 1507275bb307STrond Myklebust if (IS_ERR(inode)) { 15080dd2b474SMiklos Szeredi err = PTR_ERR(inode); 15096e0d0be7STrond Myklebust trace_nfs_atomic_open_exit(dir, ctx, open_flags, err); 15102d9db750STrond Myklebust put_nfs_open_context(ctx); 1511d20cb71dSAl Viro d_drop(dentry); 15120dd2b474SMiklos Szeredi switch (err) { 15131da177e4SLinus Torvalds case -ENOENT: 1514774d9513SPeng Tao d_splice_alias(NULL, dentry); 1515809fd143STrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 15160dd2b474SMiklos Szeredi break; 15171788ea6eSJeff Layton case -EISDIR: 15186f926b5bSTrond Myklebust case -ENOTDIR: 15196f926b5bSTrond Myklebust goto no_open; 15201da177e4SLinus Torvalds case -ELOOP: 15210dd2b474SMiklos Szeredi if (!(open_flags & O_NOFOLLOW)) 15221da177e4SLinus Torvalds goto no_open; 15230dd2b474SMiklos Szeredi break; 15241da177e4SLinus Torvalds /* case -EINVAL: */ 15251da177e4SLinus Torvalds default: 15260dd2b474SMiklos Szeredi break; 15271da177e4SLinus Torvalds } 15281da177e4SLinus Torvalds goto out; 15291da177e4SLinus Torvalds } 15300dd2b474SMiklos Szeredi 1531275bb307STrond Myklebust err = nfs_finish_open(ctx, ctx->dentry, file, open_flags, opened); 15326e0d0be7STrond Myklebust trace_nfs_atomic_open_exit(dir, ctx, open_flags, err); 15332d9db750STrond Myklebust put_nfs_open_context(ctx); 1534d9585277SAl Viro out: 1535c94c0953SAl Viro if (unlikely(switched)) { 1536c94c0953SAl Viro d_lookup_done(dentry); 1537c94c0953SAl Viro dput(dentry); 1538c94c0953SAl Viro } 1539d9585277SAl Viro return err; 15400dd2b474SMiklos Szeredi 15411da177e4SLinus Torvalds no_open: 15421472b83eSTrond Myklebust res = nfs_lookup(dir, dentry, lookup_flags); 1543c94c0953SAl Viro if (switched) { 1544c94c0953SAl Viro d_lookup_done(dentry); 1545c94c0953SAl Viro if (!res) 1546c94c0953SAl Viro res = dentry; 1547c94c0953SAl Viro else 1548c94c0953SAl Viro dput(dentry); 1549c94c0953SAl Viro } 15500dd2b474SMiklos Szeredi if (IS_ERR(res)) 1551c94c0953SAl Viro return PTR_ERR(res); 1552e45198a6SAl Viro return finish_no_open(file, res); 15531da177e4SLinus Torvalds } 155489d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_atomic_open); 15551da177e4SLinus Torvalds 15560b728e19SAl Viro static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags) 15571da177e4SLinus Torvalds { 1558657e94b6SNick Piggin struct inode *inode; 155950de348cSMiklos Szeredi int ret = 0; 15601da177e4SLinus Torvalds 1561fa3c56bbSAl Viro if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY)) 1562eda72afbSMiklos Szeredi goto no_open; 1563eda72afbSMiklos Szeredi if (d_mountpoint(dentry)) 15645584c306STrond Myklebust goto no_open; 156549f9a0faSTrond Myklebust if (NFS_SB(dentry->d_sb)->caps & NFS_CAP_ATOMIC_OPEN_V1) 156649f9a0faSTrond Myklebust goto no_open; 15672b484297STrond Myklebust 15682b0143b5SDavid Howells inode = d_inode(dentry); 15692b484297STrond Myklebust 15701da177e4SLinus Torvalds /* We can't create new files in nfs_open_revalidate(), so we 15711da177e4SLinus Torvalds * optimize away revalidation of negative dentries. 15721da177e4SLinus Torvalds */ 1573216d5d06STrond Myklebust if (inode == NULL) { 157449317a7fSNeilBrown struct dentry *parent; 157549317a7fSNeilBrown struct inode *dir; 157649317a7fSNeilBrown 1577912a108dSNeilBrown if (flags & LOOKUP_RCU) { 15786aa7de05SMark Rutland parent = READ_ONCE(dentry->d_parent); 15792b0143b5SDavid Howells dir = d_inode_rcu(parent); 1580912a108dSNeilBrown if (!dir) 1581d51ac1a8SNeilBrown return -ECHILD; 1582912a108dSNeilBrown } else { 158349317a7fSNeilBrown parent = dget_parent(dentry); 15842b0143b5SDavid Howells dir = d_inode(parent); 1585912a108dSNeilBrown } 1586fa3c56bbSAl Viro if (!nfs_neg_need_reval(dir, dentry, flags)) 1587216d5d06STrond Myklebust ret = 1; 1588912a108dSNeilBrown else if (flags & LOOKUP_RCU) 1589912a108dSNeilBrown ret = -ECHILD; 1590912a108dSNeilBrown if (!(flags & LOOKUP_RCU)) 159149317a7fSNeilBrown dput(parent); 15926aa7de05SMark Rutland else if (parent != READ_ONCE(dentry->d_parent)) 1593912a108dSNeilBrown return -ECHILD; 15941da177e4SLinus Torvalds goto out; 1595216d5d06STrond Myklebust } 1596216d5d06STrond Myklebust 15971da177e4SLinus Torvalds /* NFS only supports OPEN on regular files */ 15981da177e4SLinus Torvalds if (!S_ISREG(inode->i_mode)) 159949317a7fSNeilBrown goto no_open; 16001da177e4SLinus Torvalds /* We cannot do exclusive creation on a positive dentry */ 1601fa3c56bbSAl Viro if (flags & LOOKUP_EXCL) 160249317a7fSNeilBrown goto no_open; 16031da177e4SLinus Torvalds 16040ef97dcfSMiklos Szeredi /* Let f_op->open() actually open (and revalidate) the file */ 1605898f635cSTrond Myklebust ret = 1; 16060ef97dcfSMiklos Szeredi 16071da177e4SLinus Torvalds out: 16081da177e4SLinus Torvalds return ret; 1609535918f1STrond Myklebust 16105584c306STrond Myklebust no_open: 16110b728e19SAl Viro return nfs_lookup_revalidate(dentry, flags); 1612c0204fd2STrond Myklebust } 1613c0204fd2STrond Myklebust 16141da177e4SLinus Torvalds #endif /* CONFIG_NFSV4 */ 16151da177e4SLinus Torvalds 16161da177e4SLinus Torvalds /* 16171da177e4SLinus Torvalds * Code common to create, mkdir, and mknod. 16181da177e4SLinus Torvalds */ 16191da177e4SLinus Torvalds int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle, 16201775fd3eSDavid Quigley struct nfs_fattr *fattr, 16211775fd3eSDavid Quigley struct nfs4_label *label) 16221da177e4SLinus Torvalds { 1623fab728e1STrond Myklebust struct dentry *parent = dget_parent(dentry); 16242b0143b5SDavid Howells struct inode *dir = d_inode(parent); 16251da177e4SLinus Torvalds struct inode *inode; 16261da177e4SLinus Torvalds int error = -EACCES; 16271da177e4SLinus Torvalds 1628fab728e1STrond Myklebust d_drop(dentry); 1629fab728e1STrond Myklebust 16301da177e4SLinus Torvalds /* We may have been initialized further down */ 16312b0143b5SDavid Howells if (d_really_is_positive(dentry)) 1632fab728e1STrond Myklebust goto out; 16331da177e4SLinus Torvalds if (fhandle->size == 0) { 16341775fd3eSDavid Quigley error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, NULL); 16351da177e4SLinus Torvalds if (error) 1636fab728e1STrond Myklebust goto out_error; 16371da177e4SLinus Torvalds } 16385724ab37STrond Myklebust nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 16391da177e4SLinus Torvalds if (!(fattr->valid & NFS_ATTR_FATTR)) { 16401da177e4SLinus Torvalds struct nfs_server *server = NFS_SB(dentry->d_sb); 16411775fd3eSDavid Quigley error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr, NULL); 16421da177e4SLinus Torvalds if (error < 0) 1643fab728e1STrond Myklebust goto out_error; 16441da177e4SLinus Torvalds } 16451775fd3eSDavid Quigley inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label); 164603f28e3aSTrond Myklebust error = PTR_ERR(inode); 164703f28e3aSTrond Myklebust if (IS_ERR(inode)) 1648fab728e1STrond Myklebust goto out_error; 1649fab728e1STrond Myklebust d_add(dentry, inode); 1650fab728e1STrond Myklebust out: 1651fab728e1STrond Myklebust dput(parent); 16521da177e4SLinus Torvalds return 0; 1653fab728e1STrond Myklebust out_error: 1654fab728e1STrond Myklebust nfs_mark_for_revalidate(dir); 1655fab728e1STrond Myklebust dput(parent); 1656fab728e1STrond Myklebust return error; 16571da177e4SLinus Torvalds } 1658ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_instantiate); 16591da177e4SLinus Torvalds 16601da177e4SLinus Torvalds /* 16611da177e4SLinus Torvalds * Following a failed create operation, we drop the dentry rather 16621da177e4SLinus Torvalds * than retain a negative dentry. This avoids a problem in the event 16631da177e4SLinus Torvalds * that the operation succeeded on the server, but an error in the 16641da177e4SLinus Torvalds * reply path made it appear to have failed. 16651da177e4SLinus Torvalds */ 1666597d9289SBryan Schumaker int nfs_create(struct inode *dir, struct dentry *dentry, 1667ebfc3b49SAl Viro umode_t mode, bool excl) 16681da177e4SLinus Torvalds { 16691da177e4SLinus Torvalds struct iattr attr; 1670ebfc3b49SAl Viro int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT; 16711da177e4SLinus Torvalds int error; 16721da177e4SLinus Torvalds 16731e8968c5SNiels de Vos dfprintk(VFS, "NFS: create(%s/%lu), %pd\n", 16746de1472fSAl Viro dir->i_sb->s_id, dir->i_ino, dentry); 16751da177e4SLinus Torvalds 16761da177e4SLinus Torvalds attr.ia_mode = mode; 16771da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 16781da177e4SLinus Torvalds 16798b0ad3d4STrond Myklebust trace_nfs_create_enter(dir, dentry, open_flags); 16808867fe58SMiklos Szeredi error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags); 16818b0ad3d4STrond Myklebust trace_nfs_create_exit(dir, dentry, open_flags, error); 16821da177e4SLinus Torvalds if (error != 0) 16831da177e4SLinus Torvalds goto out_err; 16841da177e4SLinus Torvalds return 0; 16851da177e4SLinus Torvalds out_err: 16861da177e4SLinus Torvalds d_drop(dentry); 16871da177e4SLinus Torvalds return error; 16881da177e4SLinus Torvalds } 1689ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_create); 16901da177e4SLinus Torvalds 16911da177e4SLinus Torvalds /* 16921da177e4SLinus Torvalds * See comments for nfs_proc_create regarding failed operations. 16931da177e4SLinus Torvalds */ 1694597d9289SBryan Schumaker int 16951a67aafbSAl Viro nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev) 16961da177e4SLinus Torvalds { 16971da177e4SLinus Torvalds struct iattr attr; 16981da177e4SLinus Torvalds int status; 16991da177e4SLinus Torvalds 17001e8968c5SNiels de Vos dfprintk(VFS, "NFS: mknod(%s/%lu), %pd\n", 17016de1472fSAl Viro dir->i_sb->s_id, dir->i_ino, dentry); 17021da177e4SLinus Torvalds 17031da177e4SLinus Torvalds attr.ia_mode = mode; 17041da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 17051da177e4SLinus Torvalds 17061ca42382STrond Myklebust trace_nfs_mknod_enter(dir, dentry); 17071da177e4SLinus Torvalds status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev); 17081ca42382STrond Myklebust trace_nfs_mknod_exit(dir, dentry, status); 17091da177e4SLinus Torvalds if (status != 0) 17101da177e4SLinus Torvalds goto out_err; 17111da177e4SLinus Torvalds return 0; 17121da177e4SLinus Torvalds out_err: 17131da177e4SLinus Torvalds d_drop(dentry); 17141da177e4SLinus Torvalds return status; 17151da177e4SLinus Torvalds } 1716ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_mknod); 17171da177e4SLinus Torvalds 17181da177e4SLinus Torvalds /* 17191da177e4SLinus Torvalds * See comments for nfs_proc_create regarding failed operations. 17201da177e4SLinus Torvalds */ 1721597d9289SBryan Schumaker int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) 17221da177e4SLinus Torvalds { 17231da177e4SLinus Torvalds struct iattr attr; 17241da177e4SLinus Torvalds int error; 17251da177e4SLinus Torvalds 17261e8968c5SNiels de Vos dfprintk(VFS, "NFS: mkdir(%s/%lu), %pd\n", 17276de1472fSAl Viro dir->i_sb->s_id, dir->i_ino, dentry); 17281da177e4SLinus Torvalds 17291da177e4SLinus Torvalds attr.ia_valid = ATTR_MODE; 17301da177e4SLinus Torvalds attr.ia_mode = mode | S_IFDIR; 17311da177e4SLinus Torvalds 17321ca42382STrond Myklebust trace_nfs_mkdir_enter(dir, dentry); 17331da177e4SLinus Torvalds error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr); 17341ca42382STrond Myklebust trace_nfs_mkdir_exit(dir, dentry, error); 17351da177e4SLinus Torvalds if (error != 0) 17361da177e4SLinus Torvalds goto out_err; 17371da177e4SLinus Torvalds return 0; 17381da177e4SLinus Torvalds out_err: 17391da177e4SLinus Torvalds d_drop(dentry); 17401da177e4SLinus Torvalds return error; 17411da177e4SLinus Torvalds } 1742ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_mkdir); 17431da177e4SLinus Torvalds 1744d45b9d8bSTrond Myklebust static void nfs_dentry_handle_enoent(struct dentry *dentry) 1745d45b9d8bSTrond Myklebust { 1746dc3f4198SAl Viro if (simple_positive(dentry)) 1747d45b9d8bSTrond Myklebust d_delete(dentry); 1748d45b9d8bSTrond Myklebust } 1749d45b9d8bSTrond Myklebust 1750597d9289SBryan Schumaker int nfs_rmdir(struct inode *dir, struct dentry *dentry) 17511da177e4SLinus Torvalds { 17521da177e4SLinus Torvalds int error; 17531da177e4SLinus Torvalds 17541e8968c5SNiels de Vos dfprintk(VFS, "NFS: rmdir(%s/%lu), %pd\n", 17556de1472fSAl Viro dir->i_sb->s_id, dir->i_ino, dentry); 17561da177e4SLinus Torvalds 17571ca42382STrond Myklebust trace_nfs_rmdir_enter(dir, dentry); 17582b0143b5SDavid Howells if (d_really_is_positive(dentry)) { 1759884be175SAl Viro down_write(&NFS_I(d_inode(dentry))->rmdir_sem); 17601da177e4SLinus Torvalds error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name); 17611da177e4SLinus Torvalds /* Ensure the VFS deletes this inode */ 1762ba6c0592STrond Myklebust switch (error) { 1763ba6c0592STrond Myklebust case 0: 17642b0143b5SDavid Howells clear_nlink(d_inode(dentry)); 1765ba6c0592STrond Myklebust break; 1766ba6c0592STrond Myklebust case -ENOENT: 1767d45b9d8bSTrond Myklebust nfs_dentry_handle_enoent(dentry); 1768ba6c0592STrond Myklebust } 1769884be175SAl Viro up_write(&NFS_I(d_inode(dentry))->rmdir_sem); 1770ba6c0592STrond Myklebust } else 1771ba6c0592STrond Myklebust error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name); 17721ca42382STrond Myklebust trace_nfs_rmdir_exit(dir, dentry, error); 17731da177e4SLinus Torvalds 17741da177e4SLinus Torvalds return error; 17751da177e4SLinus Torvalds } 1776ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_rmdir); 17771da177e4SLinus Torvalds 17781da177e4SLinus Torvalds /* 17791da177e4SLinus Torvalds * Remove a file after making sure there are no pending writes, 17801da177e4SLinus Torvalds * and after checking that the file has only one user. 17811da177e4SLinus Torvalds * 17821da177e4SLinus Torvalds * We invalidate the attribute cache and free the inode prior to the operation 17831da177e4SLinus Torvalds * to avoid possible races if the server reuses the inode. 17841da177e4SLinus Torvalds */ 17851da177e4SLinus Torvalds static int nfs_safe_remove(struct dentry *dentry) 17861da177e4SLinus Torvalds { 17872b0143b5SDavid Howells struct inode *dir = d_inode(dentry->d_parent); 17882b0143b5SDavid Howells struct inode *inode = d_inode(dentry); 17891da177e4SLinus Torvalds int error = -EBUSY; 17901da177e4SLinus Torvalds 17916de1472fSAl Viro dfprintk(VFS, "NFS: safe_remove(%pd2)\n", dentry); 17921da177e4SLinus Torvalds 17931da177e4SLinus Torvalds /* If the dentry was sillyrenamed, we simply call d_delete() */ 17941da177e4SLinus Torvalds if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { 17951da177e4SLinus Torvalds error = 0; 17961da177e4SLinus Torvalds goto out; 17971da177e4SLinus Torvalds } 17981da177e4SLinus Torvalds 17991ca42382STrond Myklebust trace_nfs_remove_enter(dir, dentry); 18001da177e4SLinus Torvalds if (inode != NULL) { 180157ec14c5SBryan Schumaker NFS_PROTO(inode)->return_delegation(inode); 18021da177e4SLinus Torvalds error = NFS_PROTO(dir)->remove(dir, &dentry->d_name); 18031da177e4SLinus Torvalds if (error == 0) 18041b83d707STrond Myklebust nfs_drop_nlink(inode); 18051da177e4SLinus Torvalds } else 18061da177e4SLinus Torvalds error = NFS_PROTO(dir)->remove(dir, &dentry->d_name); 1807d45b9d8bSTrond Myklebust if (error == -ENOENT) 1808d45b9d8bSTrond Myklebust nfs_dentry_handle_enoent(dentry); 18091ca42382STrond Myklebust trace_nfs_remove_exit(dir, dentry, error); 18101da177e4SLinus Torvalds out: 18111da177e4SLinus Torvalds return error; 18121da177e4SLinus Torvalds } 18131da177e4SLinus Torvalds 18141da177e4SLinus Torvalds /* We do silly rename. In case sillyrename() returns -EBUSY, the inode 18151da177e4SLinus Torvalds * belongs to an active ".nfs..." file and we return -EBUSY. 18161da177e4SLinus Torvalds * 18171da177e4SLinus Torvalds * If sillyrename() returns 0, we do nothing, otherwise we unlink. 18181da177e4SLinus Torvalds */ 1819597d9289SBryan Schumaker int nfs_unlink(struct inode *dir, struct dentry *dentry) 18201da177e4SLinus Torvalds { 18211da177e4SLinus Torvalds int error; 18221da177e4SLinus Torvalds int need_rehash = 0; 18231da177e4SLinus Torvalds 18241e8968c5SNiels de Vos dfprintk(VFS, "NFS: unlink(%s/%lu, %pd)\n", dir->i_sb->s_id, 18256de1472fSAl Viro dir->i_ino, dentry); 18261da177e4SLinus Torvalds 18271ca42382STrond Myklebust trace_nfs_unlink_enter(dir, dentry); 18281da177e4SLinus Torvalds spin_lock(&dentry->d_lock); 182984d08fa8SAl Viro if (d_count(dentry) > 1) { 18301da177e4SLinus Torvalds spin_unlock(&dentry->d_lock); 1831ccfeb506STrond Myklebust /* Start asynchronous writeout of the inode */ 18322b0143b5SDavid Howells write_inode_now(d_inode(dentry), 0); 18331da177e4SLinus Torvalds error = nfs_sillyrename(dir, dentry); 18341ca42382STrond Myklebust goto out; 18351da177e4SLinus Torvalds } 18361da177e4SLinus Torvalds if (!d_unhashed(dentry)) { 18371da177e4SLinus Torvalds __d_drop(dentry); 18381da177e4SLinus Torvalds need_rehash = 1; 18391da177e4SLinus Torvalds } 18401da177e4SLinus Torvalds spin_unlock(&dentry->d_lock); 18411da177e4SLinus Torvalds error = nfs_safe_remove(dentry); 1842d45b9d8bSTrond Myklebust if (!error || error == -ENOENT) { 18431da177e4SLinus Torvalds nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); 18441da177e4SLinus Torvalds } else if (need_rehash) 18451da177e4SLinus Torvalds d_rehash(dentry); 18461ca42382STrond Myklebust out: 18471ca42382STrond Myklebust trace_nfs_unlink_exit(dir, dentry, error); 18481da177e4SLinus Torvalds return error; 18491da177e4SLinus Torvalds } 1850ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_unlink); 18511da177e4SLinus Torvalds 1852873101b3SChuck Lever /* 1853873101b3SChuck Lever * To create a symbolic link, most file systems instantiate a new inode, 1854873101b3SChuck Lever * add a page to it containing the path, then write it out to the disk 1855873101b3SChuck Lever * using prepare_write/commit_write. 1856873101b3SChuck Lever * 1857873101b3SChuck Lever * Unfortunately the NFS client can't create the in-core inode first 1858873101b3SChuck Lever * because it needs a file handle to create an in-core inode (see 1859873101b3SChuck Lever * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the 1860873101b3SChuck Lever * symlink request has completed on the server. 1861873101b3SChuck Lever * 1862873101b3SChuck Lever * So instead we allocate a raw page, copy the symname into it, then do 1863873101b3SChuck Lever * the SYMLINK request with the page as the buffer. If it succeeds, we 1864873101b3SChuck Lever * now have a new file handle and can instantiate an in-core NFS inode 1865873101b3SChuck Lever * and move the raw page into its mapping. 1866873101b3SChuck Lever */ 1867597d9289SBryan Schumaker int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname) 18681da177e4SLinus Torvalds { 1869873101b3SChuck Lever struct page *page; 1870873101b3SChuck Lever char *kaddr; 18711da177e4SLinus Torvalds struct iattr attr; 1872873101b3SChuck Lever unsigned int pathlen = strlen(symname); 18731da177e4SLinus Torvalds int error; 18741da177e4SLinus Torvalds 18751e8968c5SNiels de Vos dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s)\n", dir->i_sb->s_id, 18766de1472fSAl Viro dir->i_ino, dentry, symname); 18771da177e4SLinus Torvalds 1878873101b3SChuck Lever if (pathlen > PAGE_SIZE) 1879873101b3SChuck Lever return -ENAMETOOLONG; 18801da177e4SLinus Torvalds 1881873101b3SChuck Lever attr.ia_mode = S_IFLNK | S_IRWXUGO; 1882873101b3SChuck Lever attr.ia_valid = ATTR_MODE; 18831da177e4SLinus Torvalds 1884e8ecde25SAl Viro page = alloc_page(GFP_USER); 188576566991STrond Myklebust if (!page) 1886873101b3SChuck Lever return -ENOMEM; 1887873101b3SChuck Lever 1888e8ecde25SAl Viro kaddr = page_address(page); 1889873101b3SChuck Lever memcpy(kaddr, symname, pathlen); 1890873101b3SChuck Lever if (pathlen < PAGE_SIZE) 1891873101b3SChuck Lever memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen); 1892873101b3SChuck Lever 18931ca42382STrond Myklebust trace_nfs_symlink_enter(dir, dentry); 189494a6d753SChuck Lever error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr); 18951ca42382STrond Myklebust trace_nfs_symlink_exit(dir, dentry, error); 1896873101b3SChuck Lever if (error != 0) { 18971e8968c5SNiels de Vos dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s) error %d\n", 1898873101b3SChuck Lever dir->i_sb->s_id, dir->i_ino, 18996de1472fSAl Viro dentry, symname, error); 19001da177e4SLinus Torvalds d_drop(dentry); 1901873101b3SChuck Lever __free_page(page); 19021da177e4SLinus Torvalds return error; 19031da177e4SLinus Torvalds } 19041da177e4SLinus Torvalds 1905873101b3SChuck Lever /* 1906873101b3SChuck Lever * No big deal if we can't add this page to the page cache here. 1907873101b3SChuck Lever * READLINK will get the missing page from the server if needed. 1908873101b3SChuck Lever */ 19092b0143b5SDavid Howells if (!add_to_page_cache_lru(page, d_inode(dentry)->i_mapping, 0, 1910873101b3SChuck Lever GFP_KERNEL)) { 1911873101b3SChuck Lever SetPageUptodate(page); 1912873101b3SChuck Lever unlock_page(page); 1913a0b54addSRafael Aquini /* 1914a0b54addSRafael Aquini * add_to_page_cache_lru() grabs an extra page refcount. 1915a0b54addSRafael Aquini * Drop it here to avoid leaking this page later. 1916a0b54addSRafael Aquini */ 191709cbfeafSKirill A. Shutemov put_page(page); 1918873101b3SChuck Lever } else 1919873101b3SChuck Lever __free_page(page); 1920873101b3SChuck Lever 1921873101b3SChuck Lever return 0; 1922873101b3SChuck Lever } 1923ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_symlink); 1924873101b3SChuck Lever 1925597d9289SBryan Schumaker int 19261da177e4SLinus Torvalds nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) 19271da177e4SLinus Torvalds { 19282b0143b5SDavid Howells struct inode *inode = d_inode(old_dentry); 19291da177e4SLinus Torvalds int error; 19301da177e4SLinus Torvalds 19316de1472fSAl Viro dfprintk(VFS, "NFS: link(%pd2 -> %pd2)\n", 19326de1472fSAl Viro old_dentry, dentry); 19331da177e4SLinus Torvalds 19341fd1085bSTrond Myklebust trace_nfs_link_enter(inode, dir, dentry); 193557ec14c5SBryan Schumaker NFS_PROTO(inode)->return_delegation(inode); 19369a3936aaSTrond Myklebust 19379697d234STrond Myklebust d_drop(dentry); 19381da177e4SLinus Torvalds error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name); 1939cf809556STrond Myklebust if (error == 0) { 19407de9c6eeSAl Viro ihold(inode); 19419697d234STrond Myklebust d_add(dentry, inode); 1942cf809556STrond Myklebust } 19431fd1085bSTrond Myklebust trace_nfs_link_exit(inode, dir, dentry, error); 19441da177e4SLinus Torvalds return error; 19451da177e4SLinus Torvalds } 1946ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_link); 19471da177e4SLinus Torvalds 19481da177e4SLinus Torvalds /* 19491da177e4SLinus Torvalds * RENAME 19501da177e4SLinus Torvalds * FIXME: Some nfsds, like the Linux user space nfsd, may generate a 19511da177e4SLinus Torvalds * different file handle for the same inode after a rename (e.g. when 19521da177e4SLinus Torvalds * moving to a different directory). A fail-safe method to do so would 19531da177e4SLinus Torvalds * be to look up old_dir/old_name, create a link to new_dir/new_name and 19541da177e4SLinus Torvalds * rename the old file using the sillyrename stuff. This way, the original 19551da177e4SLinus Torvalds * file in old_dir will go away when the last process iput()s the inode. 19561da177e4SLinus Torvalds * 19571da177e4SLinus Torvalds * FIXED. 19581da177e4SLinus Torvalds * 19591da177e4SLinus Torvalds * It actually works quite well. One needs to have the possibility for 19601da177e4SLinus Torvalds * at least one ".nfs..." file in each directory the file ever gets 19611da177e4SLinus Torvalds * moved or linked to which happens automagically with the new 19621da177e4SLinus Torvalds * implementation that only depends on the dcache stuff instead of 19631da177e4SLinus Torvalds * using the inode layer 19641da177e4SLinus Torvalds * 19651da177e4SLinus Torvalds * Unfortunately, things are a little more complicated than indicated 19661da177e4SLinus Torvalds * above. For a cross-directory move, we want to make sure we can get 19671da177e4SLinus Torvalds * rid of the old inode after the operation. This means there must be 19681da177e4SLinus Torvalds * no pending writes (if it's a file), and the use count must be 1. 19691da177e4SLinus Torvalds * If these conditions are met, we can drop the dentries before doing 19701da177e4SLinus Torvalds * the rename. 19711da177e4SLinus Torvalds */ 1972597d9289SBryan Schumaker int nfs_rename(struct inode *old_dir, struct dentry *old_dentry, 19731cd66c93SMiklos Szeredi struct inode *new_dir, struct dentry *new_dentry, 19741cd66c93SMiklos Szeredi unsigned int flags) 19751da177e4SLinus Torvalds { 19762b0143b5SDavid Howells struct inode *old_inode = d_inode(old_dentry); 19772b0143b5SDavid Howells struct inode *new_inode = d_inode(new_dentry); 1978d9f29500SBenjamin Coddington struct dentry *dentry = NULL, *rehash = NULL; 197980a491fdSJeff Layton struct rpc_task *task; 19801da177e4SLinus Torvalds int error = -EBUSY; 19811da177e4SLinus Torvalds 19821cd66c93SMiklos Szeredi if (flags) 19831cd66c93SMiklos Szeredi return -EINVAL; 19841cd66c93SMiklos Szeredi 19856de1472fSAl Viro dfprintk(VFS, "NFS: rename(%pd2 -> %pd2, ct=%d)\n", 19866de1472fSAl Viro old_dentry, new_dentry, 198784d08fa8SAl Viro d_count(new_dentry)); 19881da177e4SLinus Torvalds 198970ded201STrond Myklebust trace_nfs_rename_enter(old_dir, old_dentry, new_dir, new_dentry); 19901da177e4SLinus Torvalds /* 199128f79a1aSMiklos Szeredi * For non-directories, check whether the target is busy and if so, 199228f79a1aSMiklos Szeredi * make a copy of the dentry and then do a silly-rename. If the 199328f79a1aSMiklos Szeredi * silly-rename succeeds, the copied dentry is hashed and becomes 199428f79a1aSMiklos Szeredi * the new target. 19951da177e4SLinus Torvalds */ 199627226104SMiklos Szeredi if (new_inode && !S_ISDIR(new_inode->i_mode)) { 199727226104SMiklos Szeredi /* 199827226104SMiklos Szeredi * To prevent any new references to the target during the 199927226104SMiklos Szeredi * rename, we unhash the dentry in advance. 200027226104SMiklos Szeredi */ 2001d9f29500SBenjamin Coddington if (!d_unhashed(new_dentry)) { 200227226104SMiklos Szeredi d_drop(new_dentry); 2003d9f29500SBenjamin Coddington rehash = new_dentry; 2004d9f29500SBenjamin Coddington } 200527226104SMiklos Szeredi 200684d08fa8SAl Viro if (d_count(new_dentry) > 2) { 20071da177e4SLinus Torvalds int err; 200827226104SMiklos Szeredi 20091da177e4SLinus Torvalds /* copy the target dentry's name */ 20101da177e4SLinus Torvalds dentry = d_alloc(new_dentry->d_parent, 20111da177e4SLinus Torvalds &new_dentry->d_name); 20121da177e4SLinus Torvalds if (!dentry) 20131da177e4SLinus Torvalds goto out; 20141da177e4SLinus Torvalds 20151da177e4SLinus Torvalds /* silly-rename the existing target ... */ 20161da177e4SLinus Torvalds err = nfs_sillyrename(new_dir, new_dentry); 201724e93025SMiklos Szeredi if (err) 20181da177e4SLinus Torvalds goto out; 201924e93025SMiklos Szeredi 202024e93025SMiklos Szeredi new_dentry = dentry; 2021d9f29500SBenjamin Coddington rehash = NULL; 202224e93025SMiklos Szeredi new_inode = NULL; 2023b1e4adf4STrond Myklebust } 202427226104SMiklos Szeredi } 20251da177e4SLinus Torvalds 202657ec14c5SBryan Schumaker NFS_PROTO(old_inode)->return_delegation(old_inode); 2027b1e4adf4STrond Myklebust if (new_inode != NULL) 202857ec14c5SBryan Schumaker NFS_PROTO(new_inode)->return_delegation(new_inode); 20291da177e4SLinus Torvalds 2030d9f29500SBenjamin Coddington task = nfs_async_rename(old_dir, new_dir, old_dentry, new_dentry, NULL); 203180a491fdSJeff Layton if (IS_ERR(task)) { 203280a491fdSJeff Layton error = PTR_ERR(task); 203380a491fdSJeff Layton goto out; 203480a491fdSJeff Layton } 203580a491fdSJeff Layton 203680a491fdSJeff Layton error = rpc_wait_for_completion_task(task); 2037818a8dbeSBenjamin Coddington if (error != 0) { 2038818a8dbeSBenjamin Coddington ((struct nfs_renamedata *)task->tk_calldata)->cancelled = 1; 2039818a8dbeSBenjamin Coddington /* Paired with the atomic_dec_and_test() barrier in rpc_do_put_task() */ 2040818a8dbeSBenjamin Coddington smp_wmb(); 2041818a8dbeSBenjamin Coddington } else 204280a491fdSJeff Layton error = task->tk_status; 204380a491fdSJeff Layton rpc_put_task(task); 2044d9f29500SBenjamin Coddington nfs_mark_for_revalidate(old_inode); 20451da177e4SLinus Torvalds out: 2046d9f29500SBenjamin Coddington if (rehash) 2047d9f29500SBenjamin Coddington d_rehash(rehash); 204870ded201STrond Myklebust trace_nfs_rename_exit(old_dir, old_dentry, 204970ded201STrond Myklebust new_dir, new_dentry, error); 2050d9f29500SBenjamin Coddington if (!error) { 2051d9f29500SBenjamin Coddington if (new_inode != NULL) 2052d9f29500SBenjamin Coddington nfs_drop_nlink(new_inode); 2053d9f29500SBenjamin Coddington /* 2054d9f29500SBenjamin Coddington * The d_move() should be here instead of in an async RPC completion 2055d9f29500SBenjamin Coddington * handler because we need the proper locks to move the dentry. If 2056d9f29500SBenjamin Coddington * we're interrupted by a signal, the async RPC completion handler 2057d9f29500SBenjamin Coddington * should mark the directories for revalidation. 2058d9f29500SBenjamin Coddington */ 2059d9f29500SBenjamin Coddington d_move(old_dentry, new_dentry); 2060d803224cSTrond Myklebust nfs_set_verifier(old_dentry, 2061d9f29500SBenjamin Coddington nfs_save_change_attribute(new_dir)); 2062d9f29500SBenjamin Coddington } else if (error == -ENOENT) 2063d9f29500SBenjamin Coddington nfs_dentry_handle_enoent(old_dentry); 2064d9f29500SBenjamin Coddington 20651da177e4SLinus Torvalds /* new dentry created? */ 20661da177e4SLinus Torvalds if (dentry) 20671da177e4SLinus Torvalds dput(dentry); 20681da177e4SLinus Torvalds return error; 20691da177e4SLinus Torvalds } 2070ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_rename); 20711da177e4SLinus Torvalds 2072cfcea3e8STrond Myklebust static DEFINE_SPINLOCK(nfs_access_lru_lock); 2073cfcea3e8STrond Myklebust static LIST_HEAD(nfs_access_lru_list); 2074cfcea3e8STrond Myklebust static atomic_long_t nfs_access_nr_entries; 2075cfcea3e8STrond Myklebust 20763a505845STrond Myklebust static unsigned long nfs_access_max_cachesize = ULONG_MAX; 20773a505845STrond Myklebust module_param(nfs_access_max_cachesize, ulong, 0644); 20783a505845STrond Myklebust MODULE_PARM_DESC(nfs_access_max_cachesize, "NFS access maximum total cache length"); 20793a505845STrond Myklebust 20801c3c07e9STrond Myklebust static void nfs_access_free_entry(struct nfs_access_entry *entry) 20811c3c07e9STrond Myklebust { 20821c3c07e9STrond Myklebust put_rpccred(entry->cred); 2083f682a398SNeilBrown kfree_rcu(entry, rcu_head); 20844e857c58SPeter Zijlstra smp_mb__before_atomic(); 2085cfcea3e8STrond Myklebust atomic_long_dec(&nfs_access_nr_entries); 20864e857c58SPeter Zijlstra smp_mb__after_atomic(); 20871c3c07e9STrond Myklebust } 20881c3c07e9STrond Myklebust 20891a81bb8aSTrond Myklebust static void nfs_access_free_list(struct list_head *head) 20901a81bb8aSTrond Myklebust { 20911a81bb8aSTrond Myklebust struct nfs_access_entry *cache; 20921a81bb8aSTrond Myklebust 20931a81bb8aSTrond Myklebust while (!list_empty(head)) { 20941a81bb8aSTrond Myklebust cache = list_entry(head->next, struct nfs_access_entry, lru); 20951a81bb8aSTrond Myklebust list_del(&cache->lru); 20961a81bb8aSTrond Myklebust nfs_access_free_entry(cache); 20971a81bb8aSTrond Myklebust } 20981a81bb8aSTrond Myklebust } 20991a81bb8aSTrond Myklebust 21003a505845STrond Myklebust static unsigned long 21013a505845STrond Myklebust nfs_do_access_cache_scan(unsigned int nr_to_scan) 2102979df72eSTrond Myklebust { 2103979df72eSTrond Myklebust LIST_HEAD(head); 2104aa510da5STrond Myklebust struct nfs_inode *nfsi, *next; 2105979df72eSTrond Myklebust struct nfs_access_entry *cache; 21061ab6c499SDave Chinner long freed = 0; 2107979df72eSTrond Myklebust 2108a50f7951STrond Myklebust spin_lock(&nfs_access_lru_lock); 2109aa510da5STrond Myklebust list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) { 2110979df72eSTrond Myklebust struct inode *inode; 2111979df72eSTrond Myklebust 2112979df72eSTrond Myklebust if (nr_to_scan-- == 0) 2113979df72eSTrond Myklebust break; 21149c7e7e23STrond Myklebust inode = &nfsi->vfs_inode; 2115979df72eSTrond Myklebust spin_lock(&inode->i_lock); 2116979df72eSTrond Myklebust if (list_empty(&nfsi->access_cache_entry_lru)) 2117979df72eSTrond Myklebust goto remove_lru_entry; 2118979df72eSTrond Myklebust cache = list_entry(nfsi->access_cache_entry_lru.next, 2119979df72eSTrond Myklebust struct nfs_access_entry, lru); 2120979df72eSTrond Myklebust list_move(&cache->lru, &head); 2121979df72eSTrond Myklebust rb_erase(&cache->rb_node, &nfsi->access_cache); 21221ab6c499SDave Chinner freed++; 2123979df72eSTrond Myklebust if (!list_empty(&nfsi->access_cache_entry_lru)) 2124979df72eSTrond Myklebust list_move_tail(&nfsi->access_cache_inode_lru, 2125979df72eSTrond Myklebust &nfs_access_lru_list); 2126979df72eSTrond Myklebust else { 2127979df72eSTrond Myklebust remove_lru_entry: 2128979df72eSTrond Myklebust list_del_init(&nfsi->access_cache_inode_lru); 21294e857c58SPeter Zijlstra smp_mb__before_atomic(); 2130979df72eSTrond Myklebust clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags); 21314e857c58SPeter Zijlstra smp_mb__after_atomic(); 2132979df72eSTrond Myklebust } 213359844a9bSTrond Myklebust spin_unlock(&inode->i_lock); 2134979df72eSTrond Myklebust } 2135979df72eSTrond Myklebust spin_unlock(&nfs_access_lru_lock); 21361a81bb8aSTrond Myklebust nfs_access_free_list(&head); 21371ab6c499SDave Chinner return freed; 21381ab6c499SDave Chinner } 21391ab6c499SDave Chinner 21401ab6c499SDave Chinner unsigned long 21413a505845STrond Myklebust nfs_access_cache_scan(struct shrinker *shrink, struct shrink_control *sc) 21423a505845STrond Myklebust { 21433a505845STrond Myklebust int nr_to_scan = sc->nr_to_scan; 21443a505845STrond Myklebust gfp_t gfp_mask = sc->gfp_mask; 21453a505845STrond Myklebust 21463a505845STrond Myklebust if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL) 21473a505845STrond Myklebust return SHRINK_STOP; 21483a505845STrond Myklebust return nfs_do_access_cache_scan(nr_to_scan); 21493a505845STrond Myklebust } 21503a505845STrond Myklebust 21513a505845STrond Myklebust 21523a505845STrond Myklebust unsigned long 21531ab6c499SDave Chinner nfs_access_cache_count(struct shrinker *shrink, struct shrink_control *sc) 21541ab6c499SDave Chinner { 215555f841ceSGlauber Costa return vfs_pressure_ratio(atomic_long_read(&nfs_access_nr_entries)); 2156979df72eSTrond Myklebust } 2157979df72eSTrond Myklebust 21583a505845STrond Myklebust static void 21593a505845STrond Myklebust nfs_access_cache_enforce_limit(void) 21603a505845STrond Myklebust { 21613a505845STrond Myklebust long nr_entries = atomic_long_read(&nfs_access_nr_entries); 21623a505845STrond Myklebust unsigned long diff; 21633a505845STrond Myklebust unsigned int nr_to_scan; 21643a505845STrond Myklebust 21653a505845STrond Myklebust if (nr_entries < 0 || nr_entries <= nfs_access_max_cachesize) 21663a505845STrond Myklebust return; 21673a505845STrond Myklebust nr_to_scan = 100; 21683a505845STrond Myklebust diff = nr_entries - nfs_access_max_cachesize; 21693a505845STrond Myklebust if (diff < nr_to_scan) 21703a505845STrond Myklebust nr_to_scan = diff; 21713a505845STrond Myklebust nfs_do_access_cache_scan(nr_to_scan); 21723a505845STrond Myklebust } 21733a505845STrond Myklebust 21741a81bb8aSTrond Myklebust static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head) 21751c3c07e9STrond Myklebust { 21761c3c07e9STrond Myklebust struct rb_root *root_node = &nfsi->access_cache; 21771a81bb8aSTrond Myklebust struct rb_node *n; 21781c3c07e9STrond Myklebust struct nfs_access_entry *entry; 21791c3c07e9STrond Myklebust 21801c3c07e9STrond Myklebust /* Unhook entries from the cache */ 21811c3c07e9STrond Myklebust while ((n = rb_first(root_node)) != NULL) { 21821c3c07e9STrond Myklebust entry = rb_entry(n, struct nfs_access_entry, rb_node); 21831c3c07e9STrond Myklebust rb_erase(n, root_node); 21841a81bb8aSTrond Myklebust list_move(&entry->lru, head); 21851c3c07e9STrond Myklebust } 21861c3c07e9STrond Myklebust nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS; 21871c3c07e9STrond Myklebust } 21881c3c07e9STrond Myklebust 21891c3c07e9STrond Myklebust void nfs_access_zap_cache(struct inode *inode) 21901c3c07e9STrond Myklebust { 21911a81bb8aSTrond Myklebust LIST_HEAD(head); 21921a81bb8aSTrond Myklebust 21931a81bb8aSTrond Myklebust if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0) 21941a81bb8aSTrond Myklebust return; 2195cfcea3e8STrond Myklebust /* Remove from global LRU init */ 2196cfcea3e8STrond Myklebust spin_lock(&nfs_access_lru_lock); 21971a81bb8aSTrond Myklebust if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) 2198cfcea3e8STrond Myklebust list_del_init(&NFS_I(inode)->access_cache_inode_lru); 2199cfcea3e8STrond Myklebust 22001c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 22011a81bb8aSTrond Myklebust __nfs_access_zap_cache(NFS_I(inode), &head); 22021a81bb8aSTrond Myklebust spin_unlock(&inode->i_lock); 22031a81bb8aSTrond Myklebust spin_unlock(&nfs_access_lru_lock); 22041a81bb8aSTrond Myklebust nfs_access_free_list(&head); 22051c3c07e9STrond Myklebust } 22061c606fb7SBryan Schumaker EXPORT_SYMBOL_GPL(nfs_access_zap_cache); 22071c3c07e9STrond Myklebust 22081c3c07e9STrond Myklebust static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred) 22091c3c07e9STrond Myklebust { 22101c3c07e9STrond Myklebust struct rb_node *n = NFS_I(inode)->access_cache.rb_node; 22111c3c07e9STrond Myklebust struct nfs_access_entry *entry; 22121c3c07e9STrond Myklebust 22131c3c07e9STrond Myklebust while (n != NULL) { 22141c3c07e9STrond Myklebust entry = rb_entry(n, struct nfs_access_entry, rb_node); 22151c3c07e9STrond Myklebust 22161c3c07e9STrond Myklebust if (cred < entry->cred) 22171c3c07e9STrond Myklebust n = n->rb_left; 22181c3c07e9STrond Myklebust else if (cred > entry->cred) 22191c3c07e9STrond Myklebust n = n->rb_right; 22201c3c07e9STrond Myklebust else 22211c3c07e9STrond Myklebust return entry; 22221c3c07e9STrond Myklebust } 22231c3c07e9STrond Myklebust return NULL; 22241c3c07e9STrond Myklebust } 22251c3c07e9STrond Myklebust 222657b69181STrond Myklebust static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res, bool may_block) 22271da177e4SLinus Torvalds { 222855296809SChuck Lever struct nfs_inode *nfsi = NFS_I(inode); 22291c3c07e9STrond Myklebust struct nfs_access_entry *cache; 223057b69181STrond Myklebust bool retry = true; 223157b69181STrond Myklebust int err; 22321da177e4SLinus Torvalds 22331c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 223457b69181STrond Myklebust for(;;) { 22351c3c07e9STrond Myklebust if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS) 22361c3c07e9STrond Myklebust goto out_zap; 22371c3c07e9STrond Myklebust cache = nfs_access_search_rbtree(inode, cred); 223857b69181STrond Myklebust err = -ENOENT; 22391c3c07e9STrond Myklebust if (cache == NULL) 22401c3c07e9STrond Myklebust goto out; 224157b69181STrond Myklebust /* Found an entry, is our attribute cache valid? */ 224221c3ba7eSTrond Myklebust if (!nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS)) 224357b69181STrond Myklebust break; 224457b69181STrond Myklebust err = -ECHILD; 224557b69181STrond Myklebust if (!may_block) 224657b69181STrond Myklebust goto out; 224757b69181STrond Myklebust if (!retry) 224857b69181STrond Myklebust goto out_zap; 224957b69181STrond Myklebust spin_unlock(&inode->i_lock); 225057b69181STrond Myklebust err = __nfs_revalidate_inode(NFS_SERVER(inode), inode); 225157b69181STrond Myklebust if (err) 225257b69181STrond Myklebust return err; 225357b69181STrond Myklebust spin_lock(&inode->i_lock); 225457b69181STrond Myklebust retry = false; 225557b69181STrond Myklebust } 22561c3c07e9STrond Myklebust res->cred = cache->cred; 22571c3c07e9STrond Myklebust res->mask = cache->mask; 2258cfcea3e8STrond Myklebust list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru); 22591c3c07e9STrond Myklebust err = 0; 22601c3c07e9STrond Myklebust out: 22611c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 22621c3c07e9STrond Myklebust return err; 22631c3c07e9STrond Myklebust out_zap: 22641a81bb8aSTrond Myklebust spin_unlock(&inode->i_lock); 22651a81bb8aSTrond Myklebust nfs_access_zap_cache(inode); 22661c3c07e9STrond Myklebust return -ENOENT; 22671c3c07e9STrond Myklebust } 22681c3c07e9STrond Myklebust 2269f682a398SNeilBrown static int nfs_access_get_cached_rcu(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res) 2270f682a398SNeilBrown { 2271f682a398SNeilBrown /* Only check the most recently returned cache entry, 2272f682a398SNeilBrown * but do it without locking. 2273f682a398SNeilBrown */ 2274f682a398SNeilBrown struct nfs_inode *nfsi = NFS_I(inode); 2275f682a398SNeilBrown struct nfs_access_entry *cache; 2276f682a398SNeilBrown int err = -ECHILD; 2277f682a398SNeilBrown struct list_head *lh; 2278f682a398SNeilBrown 2279f682a398SNeilBrown rcu_read_lock(); 2280f682a398SNeilBrown if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS) 2281f682a398SNeilBrown goto out; 2282f682a398SNeilBrown lh = rcu_dereference(nfsi->access_cache_entry_lru.prev); 2283f682a398SNeilBrown cache = list_entry(lh, struct nfs_access_entry, lru); 2284f682a398SNeilBrown if (lh == &nfsi->access_cache_entry_lru || 2285f682a398SNeilBrown cred != cache->cred) 2286f682a398SNeilBrown cache = NULL; 2287f682a398SNeilBrown if (cache == NULL) 2288f682a398SNeilBrown goto out; 228921c3ba7eSTrond Myklebust if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS)) 2290f682a398SNeilBrown goto out; 2291f682a398SNeilBrown res->cred = cache->cred; 2292f682a398SNeilBrown res->mask = cache->mask; 229321c3ba7eSTrond Myklebust err = 0; 2294f682a398SNeilBrown out: 2295f682a398SNeilBrown rcu_read_unlock(); 2296f682a398SNeilBrown return err; 2297f682a398SNeilBrown } 2298f682a398SNeilBrown 22991c3c07e9STrond Myklebust static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set) 23001c3c07e9STrond Myklebust { 2301cfcea3e8STrond Myklebust struct nfs_inode *nfsi = NFS_I(inode); 2302cfcea3e8STrond Myklebust struct rb_root *root_node = &nfsi->access_cache; 23031c3c07e9STrond Myklebust struct rb_node **p = &root_node->rb_node; 23041c3c07e9STrond Myklebust struct rb_node *parent = NULL; 23051c3c07e9STrond Myklebust struct nfs_access_entry *entry; 23061c3c07e9STrond Myklebust 23071c3c07e9STrond Myklebust spin_lock(&inode->i_lock); 23081c3c07e9STrond Myklebust while (*p != NULL) { 23091c3c07e9STrond Myklebust parent = *p; 23101c3c07e9STrond Myklebust entry = rb_entry(parent, struct nfs_access_entry, rb_node); 23111c3c07e9STrond Myklebust 23121c3c07e9STrond Myklebust if (set->cred < entry->cred) 23131c3c07e9STrond Myklebust p = &parent->rb_left; 23141c3c07e9STrond Myklebust else if (set->cred > entry->cred) 23151c3c07e9STrond Myklebust p = &parent->rb_right; 23161c3c07e9STrond Myklebust else 23171c3c07e9STrond Myklebust goto found; 23181c3c07e9STrond Myklebust } 23191c3c07e9STrond Myklebust rb_link_node(&set->rb_node, parent, p); 23201c3c07e9STrond Myklebust rb_insert_color(&set->rb_node, root_node); 2321cfcea3e8STrond Myklebust list_add_tail(&set->lru, &nfsi->access_cache_entry_lru); 23221c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 23231c3c07e9STrond Myklebust return; 23241c3c07e9STrond Myklebust found: 23251c3c07e9STrond Myklebust rb_replace_node(parent, &set->rb_node, root_node); 2326cfcea3e8STrond Myklebust list_add_tail(&set->lru, &nfsi->access_cache_entry_lru); 2327cfcea3e8STrond Myklebust list_del(&entry->lru); 23281c3c07e9STrond Myklebust spin_unlock(&inode->i_lock); 23291c3c07e9STrond Myklebust nfs_access_free_entry(entry); 23301da177e4SLinus Torvalds } 23311da177e4SLinus Torvalds 23326168f62cSWeston Andros Adamson void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set) 23331da177e4SLinus Torvalds { 23341c3c07e9STrond Myklebust struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL); 23351c3c07e9STrond Myklebust if (cache == NULL) 23361c3c07e9STrond Myklebust return; 23371c3c07e9STrond Myklebust RB_CLEAR_NODE(&cache->rb_node); 23381c3c07e9STrond Myklebust cache->cred = get_rpccred(set->cred); 23391da177e4SLinus Torvalds cache->mask = set->mask; 23401c3c07e9STrond Myklebust 2341f682a398SNeilBrown /* The above field assignments must be visible 2342f682a398SNeilBrown * before this item appears on the lru. We cannot easily 2343f682a398SNeilBrown * use rcu_assign_pointer, so just force the memory barrier. 2344f682a398SNeilBrown */ 2345f682a398SNeilBrown smp_wmb(); 23461c3c07e9STrond Myklebust nfs_access_add_rbtree(inode, cache); 2347cfcea3e8STrond Myklebust 2348cfcea3e8STrond Myklebust /* Update accounting */ 23494e857c58SPeter Zijlstra smp_mb__before_atomic(); 2350cfcea3e8STrond Myklebust atomic_long_inc(&nfs_access_nr_entries); 23514e857c58SPeter Zijlstra smp_mb__after_atomic(); 2352cfcea3e8STrond Myklebust 2353cfcea3e8STrond Myklebust /* Add inode to global LRU list */ 23541a81bb8aSTrond Myklebust if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) { 2355cfcea3e8STrond Myklebust spin_lock(&nfs_access_lru_lock); 23561a81bb8aSTrond Myklebust if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) 23571a81bb8aSTrond Myklebust list_add_tail(&NFS_I(inode)->access_cache_inode_lru, 23581a81bb8aSTrond Myklebust &nfs_access_lru_list); 2359cfcea3e8STrond Myklebust spin_unlock(&nfs_access_lru_lock); 2360cfcea3e8STrond Myklebust } 23613a505845STrond Myklebust nfs_access_cache_enforce_limit(); 23621da177e4SLinus Torvalds } 23636168f62cSWeston Andros Adamson EXPORT_SYMBOL_GPL(nfs_access_add_cache); 23646168f62cSWeston Andros Adamson 23653c181827SAnna Schumaker #define NFS_MAY_READ (NFS_ACCESS_READ) 23663c181827SAnna Schumaker #define NFS_MAY_WRITE (NFS_ACCESS_MODIFY | \ 23673c181827SAnna Schumaker NFS_ACCESS_EXTEND | \ 23683c181827SAnna Schumaker NFS_ACCESS_DELETE) 23693c181827SAnna Schumaker #define NFS_FILE_MAY_WRITE (NFS_ACCESS_MODIFY | \ 23703c181827SAnna Schumaker NFS_ACCESS_EXTEND) 2371ecbb903cSTrond Myklebust #define NFS_DIR_MAY_WRITE NFS_MAY_WRITE 23723c181827SAnna Schumaker #define NFS_MAY_LOOKUP (NFS_ACCESS_LOOKUP) 23733c181827SAnna Schumaker #define NFS_MAY_EXECUTE (NFS_ACCESS_EXECUTE) 237415d4b73aSTrond Myklebust static int 2375ecbb903cSTrond Myklebust nfs_access_calc_mask(u32 access_result, umode_t umode) 237615d4b73aSTrond Myklebust { 237715d4b73aSTrond Myklebust int mask = 0; 237815d4b73aSTrond Myklebust 237915d4b73aSTrond Myklebust if (access_result & NFS_MAY_READ) 238015d4b73aSTrond Myklebust mask |= MAY_READ; 2381ecbb903cSTrond Myklebust if (S_ISDIR(umode)) { 2382ecbb903cSTrond Myklebust if ((access_result & NFS_DIR_MAY_WRITE) == NFS_DIR_MAY_WRITE) 238315d4b73aSTrond Myklebust mask |= MAY_WRITE; 2384ecbb903cSTrond Myklebust if ((access_result & NFS_MAY_LOOKUP) == NFS_MAY_LOOKUP) 238515d4b73aSTrond Myklebust mask |= MAY_EXEC; 2386ecbb903cSTrond Myklebust } else if (S_ISREG(umode)) { 2387ecbb903cSTrond Myklebust if ((access_result & NFS_FILE_MAY_WRITE) == NFS_FILE_MAY_WRITE) 2388ecbb903cSTrond Myklebust mask |= MAY_WRITE; 2389ecbb903cSTrond Myklebust if ((access_result & NFS_MAY_EXECUTE) == NFS_MAY_EXECUTE) 239015d4b73aSTrond Myklebust mask |= MAY_EXEC; 2391ecbb903cSTrond Myklebust } else if (access_result & NFS_MAY_WRITE) 2392ecbb903cSTrond Myklebust mask |= MAY_WRITE; 239315d4b73aSTrond Myklebust return mask; 239415d4b73aSTrond Myklebust } 239515d4b73aSTrond Myklebust 23966168f62cSWeston Andros Adamson void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result) 23976168f62cSWeston Andros Adamson { 2398bd8b2441STrond Myklebust entry->mask = access_result; 23996168f62cSWeston Andros Adamson } 24006168f62cSWeston Andros Adamson EXPORT_SYMBOL_GPL(nfs_access_set_mask); 24011da177e4SLinus Torvalds 24021da177e4SLinus Torvalds static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask) 24031da177e4SLinus Torvalds { 24041da177e4SLinus Torvalds struct nfs_access_entry cache; 240557b69181STrond Myklebust bool may_block = (mask & MAY_NOT_BLOCK) == 0; 2406bd8b2441STrond Myklebust int cache_mask; 24071da177e4SLinus Torvalds int status; 24081da177e4SLinus Torvalds 2409f4ce1299STrond Myklebust trace_nfs_access_enter(inode); 2410f4ce1299STrond Myklebust 2411f682a398SNeilBrown status = nfs_access_get_cached_rcu(inode, cred, &cache); 2412f682a398SNeilBrown if (status != 0) 241357b69181STrond Myklebust status = nfs_access_get_cached(inode, cred, &cache, may_block); 24141da177e4SLinus Torvalds if (status == 0) 2415f4ce1299STrond Myklebust goto out_cached; 24161da177e4SLinus Torvalds 2417f3324a2aSNeilBrown status = -ECHILD; 241857b69181STrond Myklebust if (!may_block) 2419f3324a2aSNeilBrown goto out; 2420f3324a2aSNeilBrown 24211750d929SAnna Schumaker /* 24221750d929SAnna Schumaker * Determine which access bits we want to ask for... 24231750d929SAnna Schumaker */ 24241750d929SAnna Schumaker cache.mask = NFS_ACCESS_READ | NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND; 24251750d929SAnna Schumaker if (S_ISDIR(inode->i_mode)) 24261750d929SAnna Schumaker cache.mask |= NFS_ACCESS_DELETE | NFS_ACCESS_LOOKUP; 24271750d929SAnna Schumaker else 24281750d929SAnna Schumaker cache.mask |= NFS_ACCESS_EXECUTE; 24291da177e4SLinus Torvalds cache.cred = cred; 24301da177e4SLinus Torvalds status = NFS_PROTO(inode)->access(inode, &cache); 2431a71ee337SSuresh Jayaraman if (status != 0) { 2432a71ee337SSuresh Jayaraman if (status == -ESTALE) { 2433a71ee337SSuresh Jayaraman nfs_zap_caches(inode); 2434a71ee337SSuresh Jayaraman if (!S_ISDIR(inode->i_mode)) 2435a71ee337SSuresh Jayaraman set_bit(NFS_INO_STALE, &NFS_I(inode)->flags); 2436a71ee337SSuresh Jayaraman } 2437f4ce1299STrond Myklebust goto out; 2438a71ee337SSuresh Jayaraman } 24391da177e4SLinus Torvalds nfs_access_add_cache(inode, &cache); 2440f4ce1299STrond Myklebust out_cached: 2441ecbb903cSTrond Myklebust cache_mask = nfs_access_calc_mask(cache.mask, inode->i_mode); 2442bd8b2441STrond Myklebust if ((mask & ~cache_mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) != 0) 2443f4ce1299STrond Myklebust status = -EACCES; 24441da177e4SLinus Torvalds out: 2445f4ce1299STrond Myklebust trace_nfs_access_exit(inode, status); 2446f4ce1299STrond Myklebust return status; 24471da177e4SLinus Torvalds } 24481da177e4SLinus Torvalds 2449af22f94aSTrond Myklebust static int nfs_open_permission_mask(int openflags) 2450af22f94aSTrond Myklebust { 2451af22f94aSTrond Myklebust int mask = 0; 2452af22f94aSTrond Myklebust 2453f8d9a897SWeston Andros Adamson if (openflags & __FMODE_EXEC) { 2454f8d9a897SWeston Andros Adamson /* ONLY check exec rights */ 2455f8d9a897SWeston Andros Adamson mask = MAY_EXEC; 2456f8d9a897SWeston Andros Adamson } else { 24578a5e929dSAl Viro if ((openflags & O_ACCMODE) != O_WRONLY) 2458af22f94aSTrond Myklebust mask |= MAY_READ; 24598a5e929dSAl Viro if ((openflags & O_ACCMODE) != O_RDONLY) 2460af22f94aSTrond Myklebust mask |= MAY_WRITE; 2461f8d9a897SWeston Andros Adamson } 2462f8d9a897SWeston Andros Adamson 2463af22f94aSTrond Myklebust return mask; 2464af22f94aSTrond Myklebust } 2465af22f94aSTrond Myklebust 2466af22f94aSTrond Myklebust int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags) 2467af22f94aSTrond Myklebust { 2468af22f94aSTrond Myklebust return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags)); 2469af22f94aSTrond Myklebust } 247089d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_may_open); 2471af22f94aSTrond Myklebust 24725c5fc09aSTrond Myklebust static int nfs_execute_ok(struct inode *inode, int mask) 24735c5fc09aSTrond Myklebust { 24745c5fc09aSTrond Myklebust struct nfs_server *server = NFS_SERVER(inode); 247521c3ba7eSTrond Myklebust int ret = 0; 24765c5fc09aSTrond Myklebust 247721c3ba7eSTrond Myklebust if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS)) { 24785c5fc09aSTrond Myklebust if (mask & MAY_NOT_BLOCK) 247921c3ba7eSTrond Myklebust return -ECHILD; 248021c3ba7eSTrond Myklebust ret = __nfs_revalidate_inode(server, inode); 248121c3ba7eSTrond Myklebust } 24825c5fc09aSTrond Myklebust if (ret == 0 && !execute_ok(inode)) 24835c5fc09aSTrond Myklebust ret = -EACCES; 24845c5fc09aSTrond Myklebust return ret; 24855c5fc09aSTrond Myklebust } 24865c5fc09aSTrond Myklebust 248710556cb2SAl Viro int nfs_permission(struct inode *inode, int mask) 24881da177e4SLinus Torvalds { 24891da177e4SLinus Torvalds struct rpc_cred *cred; 24901da177e4SLinus Torvalds int res = 0; 24911da177e4SLinus Torvalds 249291d5b470SChuck Lever nfs_inc_stats(inode, NFSIOS_VFSACCESS); 249391d5b470SChuck Lever 2494e6305c43SAl Viro if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) 24951da177e4SLinus Torvalds goto out; 24961da177e4SLinus Torvalds /* Is this sys_access() ? */ 24979cfcac81SEric Paris if (mask & (MAY_ACCESS | MAY_CHDIR)) 24981da177e4SLinus Torvalds goto force_lookup; 24991da177e4SLinus Torvalds 25001da177e4SLinus Torvalds switch (inode->i_mode & S_IFMT) { 25011da177e4SLinus Torvalds case S_IFLNK: 25021da177e4SLinus Torvalds goto out; 25031da177e4SLinus Torvalds case S_IFREG: 2504762674f8STrond Myklebust if ((mask & MAY_OPEN) && 2505762674f8STrond Myklebust nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)) 2506762674f8STrond Myklebust return 0; 25071da177e4SLinus Torvalds break; 25081da177e4SLinus Torvalds case S_IFDIR: 25091da177e4SLinus Torvalds /* 25101da177e4SLinus Torvalds * Optimize away all write operations, since the server 25111da177e4SLinus Torvalds * will check permissions when we perform the op. 25121da177e4SLinus Torvalds */ 25131da177e4SLinus Torvalds if ((mask & MAY_WRITE) && !(mask & MAY_READ)) 25141da177e4SLinus Torvalds goto out; 25151da177e4SLinus Torvalds } 25161da177e4SLinus Torvalds 25171da177e4SLinus Torvalds force_lookup: 25181da177e4SLinus Torvalds if (!NFS_PROTO(inode)->access) 25191da177e4SLinus Torvalds goto out_notsup; 25201da177e4SLinus Torvalds 2521f3324a2aSNeilBrown /* Always try fast lookups first */ 2522f3324a2aSNeilBrown rcu_read_lock(); 2523f3324a2aSNeilBrown cred = rpc_lookup_cred_nonblock(); 2524f3324a2aSNeilBrown if (!IS_ERR(cred)) 2525f3324a2aSNeilBrown res = nfs_do_access(inode, cred, mask|MAY_NOT_BLOCK); 2526f3324a2aSNeilBrown else 2527f3324a2aSNeilBrown res = PTR_ERR(cred); 2528f3324a2aSNeilBrown rcu_read_unlock(); 2529f3324a2aSNeilBrown if (res == -ECHILD && !(mask & MAY_NOT_BLOCK)) { 2530f3324a2aSNeilBrown /* Fast lookup failed, try the slow way */ 253198a8e323STrond Myklebust cred = rpc_lookup_cred(); 25321da177e4SLinus Torvalds if (!IS_ERR(cred)) { 25331da177e4SLinus Torvalds res = nfs_do_access(inode, cred, mask); 25341da177e4SLinus Torvalds put_rpccred(cred); 25351da177e4SLinus Torvalds } else 25361da177e4SLinus Torvalds res = PTR_ERR(cred); 2537f3324a2aSNeilBrown } 25381da177e4SLinus Torvalds out: 25395c5fc09aSTrond Myklebust if (!res && (mask & MAY_EXEC)) 25405c5fc09aSTrond Myklebust res = nfs_execute_ok(inode, mask); 2541f696a365SMiklos Szeredi 25421e8968c5SNiels de Vos dfprintk(VFS, "NFS: permission(%s/%lu), mask=0x%x, res=%d\n", 25431e7cb3dcSChuck Lever inode->i_sb->s_id, inode->i_ino, mask, res); 25441da177e4SLinus Torvalds return res; 25451da177e4SLinus Torvalds out_notsup: 2546d51ac1a8SNeilBrown if (mask & MAY_NOT_BLOCK) 2547d51ac1a8SNeilBrown return -ECHILD; 2548d51ac1a8SNeilBrown 25491da177e4SLinus Torvalds res = nfs_revalidate_inode(NFS_SERVER(inode), inode); 25501da177e4SLinus Torvalds if (res == 0) 25512830ba7fSAl Viro res = generic_permission(inode, mask); 25521e7cb3dcSChuck Lever goto out; 25531da177e4SLinus Torvalds } 2554ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_permission); 25551da177e4SLinus Torvalds 25561da177e4SLinus Torvalds /* 25571da177e4SLinus Torvalds * Local variables: 25581da177e4SLinus Torvalds * version-control: t 25591da177e4SLinus Torvalds * kept-new-versions: 5 25601da177e4SLinus Torvalds * End: 25611da177e4SLinus Torvalds */ 2562