1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 29cf514ccSChristoph Hellwig /* 39cf514ccSChristoph Hellwig * Copyright (c) 2014 Christoph Hellwig. 49cf514ccSChristoph Hellwig */ 5f99d4fbdSChristoph Hellwig #include <linux/blkdev.h> 6c5c707f9SChristoph Hellwig #include <linux/kmod.h> 7c5c707f9SChristoph Hellwig #include <linux/file.h> 89cf514ccSChristoph Hellwig #include <linux/jhash.h> 99cf514ccSChristoph Hellwig #include <linux/sched.h> 10c5c707f9SChristoph Hellwig #include <linux/sunrpc/addr.h> 119cf514ccSChristoph Hellwig 129cf514ccSChristoph Hellwig #include "pnfs.h" 139cf514ccSChristoph Hellwig #include "netns.h" 1431ef83dcSChristoph Hellwig #include "trace.h" 159cf514ccSChristoph Hellwig 169cf514ccSChristoph Hellwig #define NFSDDBG_FACILITY NFSDDBG_PNFS 179cf514ccSChristoph Hellwig 189cf514ccSChristoph Hellwig struct nfs4_layout { 199cf514ccSChristoph Hellwig struct list_head lo_perstate; 209cf514ccSChristoph Hellwig struct nfs4_layout_stateid *lo_state; 219cf514ccSChristoph Hellwig struct nfsd4_layout_seg lo_seg; 229cf514ccSChristoph Hellwig }; 239cf514ccSChristoph Hellwig 249cf514ccSChristoph Hellwig static struct kmem_cache *nfs4_layout_cache; 259cf514ccSChristoph Hellwig static struct kmem_cache *nfs4_layout_stateid_cache; 269cf514ccSChristoph Hellwig 27c4cb8974SJulia Lawall static const struct nfsd4_callback_ops nfsd4_cb_layout_ops; 28c5c707f9SChristoph Hellwig static const struct lock_manager_operations nfsd4_layouts_lm_ops; 29c5c707f9SChristoph Hellwig 309cf514ccSChristoph Hellwig const struct nfsd4_layout_ops *nfsd4_layout_ops[LAYOUT_TYPE_MAX] = { 319b9960a0STom Haynes #ifdef CONFIG_NFSD_FLEXFILELAYOUT 329b9960a0STom Haynes [LAYOUT_FLEX_FILES] = &ff_layout_ops, 339b9960a0STom Haynes #endif 3481c39329SChristoph Hellwig #ifdef CONFIG_NFSD_BLOCKLAYOUT 358650b8a0SChristoph Hellwig [LAYOUT_BLOCK_VOLUME] = &bl_layout_ops, 3681c39329SChristoph Hellwig #endif 37f99d4fbdSChristoph Hellwig #ifdef CONFIG_NFSD_SCSILAYOUT 38f99d4fbdSChristoph Hellwig [LAYOUT_SCSI] = &scsi_layout_ops, 39f99d4fbdSChristoph Hellwig #endif 409cf514ccSChristoph Hellwig }; 419cf514ccSChristoph Hellwig 429cf514ccSChristoph Hellwig /* pNFS device ID to export fsid mapping */ 439cf514ccSChristoph Hellwig #define DEVID_HASH_BITS 8 449cf514ccSChristoph Hellwig #define DEVID_HASH_SIZE (1 << DEVID_HASH_BITS) 459cf514ccSChristoph Hellwig #define DEVID_HASH_MASK (DEVID_HASH_SIZE - 1) 469cf514ccSChristoph Hellwig static u64 nfsd_devid_seq = 1; 479cf514ccSChristoph Hellwig static struct list_head nfsd_devid_hash[DEVID_HASH_SIZE]; 489cf514ccSChristoph Hellwig static DEFINE_SPINLOCK(nfsd_devid_lock); 499cf514ccSChristoph Hellwig 509cf514ccSChristoph Hellwig static inline u32 devid_hashfn(u64 idx) 519cf514ccSChristoph Hellwig { 529cf514ccSChristoph Hellwig return jhash_2words(idx, idx >> 32, 0) & DEVID_HASH_MASK; 539cf514ccSChristoph Hellwig } 549cf514ccSChristoph Hellwig 559cf514ccSChristoph Hellwig static void 569cf514ccSChristoph Hellwig nfsd4_alloc_devid_map(const struct svc_fh *fhp) 579cf514ccSChristoph Hellwig { 589cf514ccSChristoph Hellwig const struct knfsd_fh *fh = &fhp->fh_handle; 599cf514ccSChristoph Hellwig size_t fsid_len = key_len(fh->fh_fsid_type); 609cf514ccSChristoph Hellwig struct nfsd4_deviceid_map *map, *old; 619cf514ccSChristoph Hellwig int i; 629cf514ccSChristoph Hellwig 639cf514ccSChristoph Hellwig map = kzalloc(sizeof(*map) + fsid_len, GFP_KERNEL); 649cf514ccSChristoph Hellwig if (!map) 659cf514ccSChristoph Hellwig return; 669cf514ccSChristoph Hellwig 679cf514ccSChristoph Hellwig map->fsid_type = fh->fh_fsid_type; 689cf514ccSChristoph Hellwig memcpy(&map->fsid, fh->fh_fsid, fsid_len); 699cf514ccSChristoph Hellwig 709cf514ccSChristoph Hellwig spin_lock(&nfsd_devid_lock); 719cf514ccSChristoph Hellwig if (fhp->fh_export->ex_devid_map) 729cf514ccSChristoph Hellwig goto out_unlock; 739cf514ccSChristoph Hellwig 749cf514ccSChristoph Hellwig for (i = 0; i < DEVID_HASH_SIZE; i++) { 759cf514ccSChristoph Hellwig list_for_each_entry(old, &nfsd_devid_hash[i], hash) { 769cf514ccSChristoph Hellwig if (old->fsid_type != fh->fh_fsid_type) 779cf514ccSChristoph Hellwig continue; 789cf514ccSChristoph Hellwig if (memcmp(old->fsid, fh->fh_fsid, 799cf514ccSChristoph Hellwig key_len(old->fsid_type))) 809cf514ccSChristoph Hellwig continue; 819cf514ccSChristoph Hellwig 829cf514ccSChristoph Hellwig fhp->fh_export->ex_devid_map = old; 839cf514ccSChristoph Hellwig goto out_unlock; 849cf514ccSChristoph Hellwig } 859cf514ccSChristoph Hellwig } 869cf514ccSChristoph Hellwig 879cf514ccSChristoph Hellwig map->idx = nfsd_devid_seq++; 889cf514ccSChristoph Hellwig list_add_tail_rcu(&map->hash, &nfsd_devid_hash[devid_hashfn(map->idx)]); 899cf514ccSChristoph Hellwig fhp->fh_export->ex_devid_map = map; 909cf514ccSChristoph Hellwig map = NULL; 919cf514ccSChristoph Hellwig 929cf514ccSChristoph Hellwig out_unlock: 939cf514ccSChristoph Hellwig spin_unlock(&nfsd_devid_lock); 949cf514ccSChristoph Hellwig kfree(map); 959cf514ccSChristoph Hellwig } 969cf514ccSChristoph Hellwig 979cf514ccSChristoph Hellwig struct nfsd4_deviceid_map * 989cf514ccSChristoph Hellwig nfsd4_find_devid_map(int idx) 999cf514ccSChristoph Hellwig { 1009cf514ccSChristoph Hellwig struct nfsd4_deviceid_map *map, *ret = NULL; 1019cf514ccSChristoph Hellwig 1029cf514ccSChristoph Hellwig rcu_read_lock(); 1039cf514ccSChristoph Hellwig list_for_each_entry_rcu(map, &nfsd_devid_hash[devid_hashfn(idx)], hash) 1049cf514ccSChristoph Hellwig if (map->idx == idx) 1059cf514ccSChristoph Hellwig ret = map; 1069cf514ccSChristoph Hellwig rcu_read_unlock(); 1079cf514ccSChristoph Hellwig 1089cf514ccSChristoph Hellwig return ret; 1099cf514ccSChristoph Hellwig } 1109cf514ccSChristoph Hellwig 1119cf514ccSChristoph Hellwig int 1129cf514ccSChristoph Hellwig nfsd4_set_deviceid(struct nfsd4_deviceid *id, const struct svc_fh *fhp, 1139cf514ccSChristoph Hellwig u32 device_generation) 1149cf514ccSChristoph Hellwig { 1159cf514ccSChristoph Hellwig if (!fhp->fh_export->ex_devid_map) { 1169cf514ccSChristoph Hellwig nfsd4_alloc_devid_map(fhp); 1179cf514ccSChristoph Hellwig if (!fhp->fh_export->ex_devid_map) 1189cf514ccSChristoph Hellwig return -ENOMEM; 1199cf514ccSChristoph Hellwig } 1209cf514ccSChristoph Hellwig 1219cf514ccSChristoph Hellwig id->fsid_idx = fhp->fh_export->ex_devid_map->idx; 1229cf514ccSChristoph Hellwig id->generation = device_generation; 1239cf514ccSChristoph Hellwig id->pad = 0; 1249cf514ccSChristoph Hellwig return 0; 1259cf514ccSChristoph Hellwig } 1269cf514ccSChristoph Hellwig 1279cf514ccSChristoph Hellwig void nfsd4_setup_layout_type(struct svc_export *exp) 1289cf514ccSChristoph Hellwig { 1299b9960a0STom Haynes #if defined(CONFIG_NFSD_BLOCKLAYOUT) || defined(CONFIG_NFSD_SCSILAYOUT) 1308650b8a0SChristoph Hellwig struct super_block *sb = exp->ex_path.mnt->mnt_sb; 1319b9960a0STom Haynes #endif 1328650b8a0SChristoph Hellwig 133f3f03330SChristoph Hellwig if (!(exp->ex_flags & NFSEXP_PNFS)) 1349cf514ccSChristoph Hellwig return; 1358650b8a0SChristoph Hellwig 1369b9960a0STom Haynes #ifdef CONFIG_NFSD_FLEXFILELAYOUT 1378a4c3926SJeff Layton exp->ex_layout_types |= 1 << LAYOUT_FLEX_FILES; 1389b9960a0STom Haynes #endif 13981c39329SChristoph Hellwig #ifdef CONFIG_NFSD_BLOCKLAYOUT 1408650b8a0SChristoph Hellwig if (sb->s_export_op->get_uuid && 1418650b8a0SChristoph Hellwig sb->s_export_op->map_blocks && 1428650b8a0SChristoph Hellwig sb->s_export_op->commit_blocks) 1438a4c3926SJeff Layton exp->ex_layout_types |= 1 << LAYOUT_BLOCK_VOLUME; 14481c39329SChristoph Hellwig #endif 145f99d4fbdSChristoph Hellwig #ifdef CONFIG_NFSD_SCSILAYOUT 146f99d4fbdSChristoph Hellwig if (sb->s_export_op->map_blocks && 147f99d4fbdSChristoph Hellwig sb->s_export_op->commit_blocks && 1488163496eSBenjamin Coddington sb->s_bdev && sb->s_bdev->bd_disk->fops->pr_ops && 1498163496eSBenjamin Coddington blk_queue_scsi_passthrough(sb->s_bdev->bd_disk->queue)) 1508a4c3926SJeff Layton exp->ex_layout_types |= 1 << LAYOUT_SCSI; 151f99d4fbdSChristoph Hellwig #endif 1529cf514ccSChristoph Hellwig } 1539cf514ccSChristoph Hellwig 1549cf514ccSChristoph Hellwig static void 1559cf514ccSChristoph Hellwig nfsd4_free_layout_stateid(struct nfs4_stid *stid) 1569cf514ccSChristoph Hellwig { 1579cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls = layoutstateid(stid); 1589cf514ccSChristoph Hellwig struct nfs4_client *clp = ls->ls_stid.sc_client; 1599cf514ccSChristoph Hellwig struct nfs4_file *fp = ls->ls_stid.sc_file; 1609cf514ccSChristoph Hellwig 161f394b62bSChuck Lever trace_nfsd_layoutstate_free(&ls->ls_stid.sc_stateid); 16231ef83dcSChristoph Hellwig 1639cf514ccSChristoph Hellwig spin_lock(&clp->cl_lock); 1649cf514ccSChristoph Hellwig list_del_init(&ls->ls_perclnt); 1659cf514ccSChristoph Hellwig spin_unlock(&clp->cl_lock); 1669cf514ccSChristoph Hellwig 1679cf514ccSChristoph Hellwig spin_lock(&fp->fi_lock); 1689cf514ccSChristoph Hellwig list_del_init(&ls->ls_perfile); 1699cf514ccSChristoph Hellwig spin_unlock(&fp->fi_lock); 1709cf514ccSChristoph Hellwig 1711983a66fSJeff Layton if (!nfsd4_layout_ops[ls->ls_layout_type]->disable_recalls) 172*eb82dd39SJeff Layton vfs_setlease(ls->ls_file->nf_file, F_UNLCK, NULL, (void **)&ls); 173*eb82dd39SJeff Layton nfsd_file_put(ls->ls_file); 174c5c707f9SChristoph Hellwig 175c5c707f9SChristoph Hellwig if (ls->ls_recalled) 176c5c707f9SChristoph Hellwig atomic_dec(&ls->ls_stid.sc_file->fi_lo_recalls); 177c5c707f9SChristoph Hellwig 1789cf514ccSChristoph Hellwig kmem_cache_free(nfs4_layout_stateid_cache, ls); 1799cf514ccSChristoph Hellwig } 1809cf514ccSChristoph Hellwig 181c5c707f9SChristoph Hellwig static int 182c5c707f9SChristoph Hellwig nfsd4_layout_setlease(struct nfs4_layout_stateid *ls) 183c5c707f9SChristoph Hellwig { 184c5c707f9SChristoph Hellwig struct file_lock *fl; 185c5c707f9SChristoph Hellwig int status; 186c5c707f9SChristoph Hellwig 1871983a66fSJeff Layton if (nfsd4_layout_ops[ls->ls_layout_type]->disable_recalls) 1881983a66fSJeff Layton return 0; 1891983a66fSJeff Layton 190c5c707f9SChristoph Hellwig fl = locks_alloc_lock(); 191c5c707f9SChristoph Hellwig if (!fl) 192c5c707f9SChristoph Hellwig return -ENOMEM; 193c5c707f9SChristoph Hellwig locks_init_lock(fl); 194c5c707f9SChristoph Hellwig fl->fl_lmops = &nfsd4_layouts_lm_ops; 195c5c707f9SChristoph Hellwig fl->fl_flags = FL_LAYOUT; 196c5c707f9SChristoph Hellwig fl->fl_type = F_RDLCK; 197c5c707f9SChristoph Hellwig fl->fl_end = OFFSET_MAX; 198c5c707f9SChristoph Hellwig fl->fl_owner = ls; 199c5c707f9SChristoph Hellwig fl->fl_pid = current->tgid; 200*eb82dd39SJeff Layton fl->fl_file = ls->ls_file->nf_file; 201c5c707f9SChristoph Hellwig 202c5c707f9SChristoph Hellwig status = vfs_setlease(fl->fl_file, fl->fl_type, &fl, NULL); 203c5c707f9SChristoph Hellwig if (status) { 204c5c707f9SChristoph Hellwig locks_free_lock(fl); 205c5c707f9SChristoph Hellwig return status; 206c5c707f9SChristoph Hellwig } 207c5c707f9SChristoph Hellwig BUG_ON(fl != NULL); 208c5c707f9SChristoph Hellwig return 0; 209c5c707f9SChristoph Hellwig } 210c5c707f9SChristoph Hellwig 2119cf514ccSChristoph Hellwig static struct nfs4_layout_stateid * 2129cf514ccSChristoph Hellwig nfsd4_alloc_layout_stateid(struct nfsd4_compound_state *cstate, 2139cf514ccSChristoph Hellwig struct nfs4_stid *parent, u32 layout_type) 2149cf514ccSChristoph Hellwig { 2159cf514ccSChristoph Hellwig struct nfs4_client *clp = cstate->clp; 2169cf514ccSChristoph Hellwig struct nfs4_file *fp = parent->sc_file; 2179cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls; 2189cf514ccSChristoph Hellwig struct nfs4_stid *stp; 2199cf514ccSChristoph Hellwig 220d19fb70dSKinglong Mee stp = nfs4_alloc_stid(cstate->clp, nfs4_layout_stateid_cache, 221d19fb70dSKinglong Mee nfsd4_free_layout_stateid); 2229cf514ccSChristoph Hellwig if (!stp) 2239cf514ccSChristoph Hellwig return NULL; 224d19fb70dSKinglong Mee 2259cf514ccSChristoph Hellwig get_nfs4_file(fp); 2269cf514ccSChristoph Hellwig stp->sc_file = fp; 2279cf514ccSChristoph Hellwig 2289cf514ccSChristoph Hellwig ls = layoutstateid(stp); 2299cf514ccSChristoph Hellwig INIT_LIST_HEAD(&ls->ls_perclnt); 2309cf514ccSChristoph Hellwig INIT_LIST_HEAD(&ls->ls_perfile); 2319cf514ccSChristoph Hellwig spin_lock_init(&ls->ls_lock); 2329cf514ccSChristoph Hellwig INIT_LIST_HEAD(&ls->ls_layouts); 233cc8a5532SJeff Layton mutex_init(&ls->ls_mutex); 2349cf514ccSChristoph Hellwig ls->ls_layout_type = layout_type; 235c5c707f9SChristoph Hellwig nfsd4_init_cb(&ls->ls_recall, clp, &nfsd4_cb_layout_ops, 236c5c707f9SChristoph Hellwig NFSPROC4_CLNT_CB_LAYOUT); 237c5c707f9SChristoph Hellwig 238c5c707f9SChristoph Hellwig if (parent->sc_type == NFS4_DELEG_STID) 239*eb82dd39SJeff Layton ls->ls_file = nfsd_file_get(fp->fi_deleg_file); 240c5c707f9SChristoph Hellwig else 241c5c707f9SChristoph Hellwig ls->ls_file = find_any_file(fp); 242c5c707f9SChristoph Hellwig BUG_ON(!ls->ls_file); 243c5c707f9SChristoph Hellwig 244c5c707f9SChristoph Hellwig if (nfsd4_layout_setlease(ls)) { 245*eb82dd39SJeff Layton nfsd_file_put(ls->ls_file); 246c5c707f9SChristoph Hellwig put_nfs4_file(fp); 247c5c707f9SChristoph Hellwig kmem_cache_free(nfs4_layout_stateid_cache, ls); 248c5c707f9SChristoph Hellwig return NULL; 249c5c707f9SChristoph Hellwig } 2509cf514ccSChristoph Hellwig 2519cf514ccSChristoph Hellwig spin_lock(&clp->cl_lock); 2529cf514ccSChristoph Hellwig stp->sc_type = NFS4_LAYOUT_STID; 2539cf514ccSChristoph Hellwig list_add(&ls->ls_perclnt, &clp->cl_lo_states); 2549cf514ccSChristoph Hellwig spin_unlock(&clp->cl_lock); 2559cf514ccSChristoph Hellwig 2569cf514ccSChristoph Hellwig spin_lock(&fp->fi_lock); 2579cf514ccSChristoph Hellwig list_add(&ls->ls_perfile, &fp->fi_lo_states); 2589cf514ccSChristoph Hellwig spin_unlock(&fp->fi_lock); 2599cf514ccSChristoph Hellwig 260f394b62bSChuck Lever trace_nfsd_layoutstate_alloc(&ls->ls_stid.sc_stateid); 2619cf514ccSChristoph Hellwig return ls; 2629cf514ccSChristoph Hellwig } 2639cf514ccSChristoph Hellwig 2649cf514ccSChristoph Hellwig __be32 2659cf514ccSChristoph Hellwig nfsd4_preprocess_layout_stateid(struct svc_rqst *rqstp, 2669cf514ccSChristoph Hellwig struct nfsd4_compound_state *cstate, stateid_t *stateid, 2679cf514ccSChristoph Hellwig bool create, u32 layout_type, struct nfs4_layout_stateid **lsp) 2689cf514ccSChristoph Hellwig { 2699cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls; 2709cf514ccSChristoph Hellwig struct nfs4_stid *stid; 2719cf514ccSChristoph Hellwig unsigned char typemask = NFS4_LAYOUT_STID; 2729cf514ccSChristoph Hellwig __be32 status; 2739cf514ccSChristoph Hellwig 2749cf514ccSChristoph Hellwig if (create) 2759cf514ccSChristoph Hellwig typemask |= (NFS4_OPEN_STID | NFS4_LOCK_STID | NFS4_DELEG_STID); 2769cf514ccSChristoph Hellwig 2779cf514ccSChristoph Hellwig status = nfsd4_lookup_stateid(cstate, stateid, typemask, &stid, 2789cf514ccSChristoph Hellwig net_generic(SVC_NET(rqstp), nfsd_net_id)); 2799cf514ccSChristoph Hellwig if (status) 2809cf514ccSChristoph Hellwig goto out; 2819cf514ccSChristoph Hellwig 2829cf514ccSChristoph Hellwig if (!fh_match(&cstate->current_fh.fh_handle, 2839cf514ccSChristoph Hellwig &stid->sc_file->fi_fhandle)) { 2849cf514ccSChristoph Hellwig status = nfserr_bad_stateid; 2859cf514ccSChristoph Hellwig goto out_put_stid; 2869cf514ccSChristoph Hellwig } 2879cf514ccSChristoph Hellwig 2889cf514ccSChristoph Hellwig if (stid->sc_type != NFS4_LAYOUT_STID) { 2899cf514ccSChristoph Hellwig ls = nfsd4_alloc_layout_stateid(cstate, stid, layout_type); 2909cf514ccSChristoph Hellwig nfs4_put_stid(stid); 2919cf514ccSChristoph Hellwig 2929cf514ccSChristoph Hellwig status = nfserr_jukebox; 2939cf514ccSChristoph Hellwig if (!ls) 2949cf514ccSChristoph Hellwig goto out; 295cc8a5532SJeff Layton mutex_lock(&ls->ls_mutex); 2969cf514ccSChristoph Hellwig } else { 2979cf514ccSChristoph Hellwig ls = container_of(stid, struct nfs4_layout_stateid, ls_stid); 2989cf514ccSChristoph Hellwig 2999cf514ccSChristoph Hellwig status = nfserr_bad_stateid; 300cc8a5532SJeff Layton mutex_lock(&ls->ls_mutex); 30114b7f4a1SJeff Layton if (nfsd4_stateid_generation_after(stateid, &stid->sc_stateid)) 302cc8a5532SJeff Layton goto out_unlock_stid; 3039cf514ccSChristoph Hellwig if (layout_type != ls->ls_layout_type) 304cc8a5532SJeff Layton goto out_unlock_stid; 3059cf514ccSChristoph Hellwig } 3069cf514ccSChristoph Hellwig 3079cf514ccSChristoph Hellwig *lsp = ls; 3089cf514ccSChristoph Hellwig return 0; 3099cf514ccSChristoph Hellwig 310cc8a5532SJeff Layton out_unlock_stid: 311cc8a5532SJeff Layton mutex_unlock(&ls->ls_mutex); 3129cf514ccSChristoph Hellwig out_put_stid: 3139cf514ccSChristoph Hellwig nfs4_put_stid(stid); 3149cf514ccSChristoph Hellwig out: 3159cf514ccSChristoph Hellwig return status; 3169cf514ccSChristoph Hellwig } 3179cf514ccSChristoph Hellwig 318c5c707f9SChristoph Hellwig static void 319c5c707f9SChristoph Hellwig nfsd4_recall_file_layout(struct nfs4_layout_stateid *ls) 320c5c707f9SChristoph Hellwig { 321c5c707f9SChristoph Hellwig spin_lock(&ls->ls_lock); 322c5c707f9SChristoph Hellwig if (ls->ls_recalled) 323c5c707f9SChristoph Hellwig goto out_unlock; 324c5c707f9SChristoph Hellwig 325c5c707f9SChristoph Hellwig ls->ls_recalled = true; 326c5c707f9SChristoph Hellwig atomic_inc(&ls->ls_stid.sc_file->fi_lo_recalls); 327c5c707f9SChristoph Hellwig if (list_empty(&ls->ls_layouts)) 328c5c707f9SChristoph Hellwig goto out_unlock; 329c5c707f9SChristoph Hellwig 330f394b62bSChuck Lever trace_nfsd_layout_recall(&ls->ls_stid.sc_stateid); 33131ef83dcSChristoph Hellwig 332a15dfcd5SElena Reshetova refcount_inc(&ls->ls_stid.sc_count); 333c5c707f9SChristoph Hellwig nfsd4_run_cb(&ls->ls_recall); 334c5c707f9SChristoph Hellwig 335c5c707f9SChristoph Hellwig out_unlock: 336c5c707f9SChristoph Hellwig spin_unlock(&ls->ls_lock); 337c5c707f9SChristoph Hellwig } 338c5c707f9SChristoph Hellwig 3399cf514ccSChristoph Hellwig static inline u64 3409cf514ccSChristoph Hellwig layout_end(struct nfsd4_layout_seg *seg) 3419cf514ccSChristoph Hellwig { 3429cf514ccSChristoph Hellwig u64 end = seg->offset + seg->length; 3439cf514ccSChristoph Hellwig return end >= seg->offset ? end : NFS4_MAX_UINT64; 3449cf514ccSChristoph Hellwig } 3459cf514ccSChristoph Hellwig 3469cf514ccSChristoph Hellwig static void 3479cf514ccSChristoph Hellwig layout_update_len(struct nfsd4_layout_seg *lo, u64 end) 3489cf514ccSChristoph Hellwig { 3499cf514ccSChristoph Hellwig if (end == NFS4_MAX_UINT64) 3509cf514ccSChristoph Hellwig lo->length = NFS4_MAX_UINT64; 3519cf514ccSChristoph Hellwig else 3529cf514ccSChristoph Hellwig lo->length = end - lo->offset; 3539cf514ccSChristoph Hellwig } 3549cf514ccSChristoph Hellwig 3559cf514ccSChristoph Hellwig static bool 3569cf514ccSChristoph Hellwig layouts_overlapping(struct nfs4_layout *lo, struct nfsd4_layout_seg *s) 3579cf514ccSChristoph Hellwig { 3589cf514ccSChristoph Hellwig if (s->iomode != IOMODE_ANY && s->iomode != lo->lo_seg.iomode) 3599cf514ccSChristoph Hellwig return false; 3609cf514ccSChristoph Hellwig if (layout_end(&lo->lo_seg) <= s->offset) 3619cf514ccSChristoph Hellwig return false; 3629cf514ccSChristoph Hellwig if (layout_end(s) <= lo->lo_seg.offset) 3639cf514ccSChristoph Hellwig return false; 3649cf514ccSChristoph Hellwig return true; 3659cf514ccSChristoph Hellwig } 3669cf514ccSChristoph Hellwig 3679cf514ccSChristoph Hellwig static bool 3689cf514ccSChristoph Hellwig layouts_try_merge(struct nfsd4_layout_seg *lo, struct nfsd4_layout_seg *new) 3699cf514ccSChristoph Hellwig { 3709cf514ccSChristoph Hellwig if (lo->iomode != new->iomode) 3719cf514ccSChristoph Hellwig return false; 3729cf514ccSChristoph Hellwig if (layout_end(new) < lo->offset) 3739cf514ccSChristoph Hellwig return false; 3749cf514ccSChristoph Hellwig if (layout_end(lo) < new->offset) 3759cf514ccSChristoph Hellwig return false; 3769cf514ccSChristoph Hellwig 3779cf514ccSChristoph Hellwig lo->offset = min(lo->offset, new->offset); 3789cf514ccSChristoph Hellwig layout_update_len(lo, max(layout_end(lo), layout_end(new))); 3799cf514ccSChristoph Hellwig return true; 3809cf514ccSChristoph Hellwig } 3819cf514ccSChristoph Hellwig 382c5c707f9SChristoph Hellwig static __be32 383c5c707f9SChristoph Hellwig nfsd4_recall_conflict(struct nfs4_layout_stateid *ls) 384c5c707f9SChristoph Hellwig { 385c5c707f9SChristoph Hellwig struct nfs4_file *fp = ls->ls_stid.sc_file; 386c5c707f9SChristoph Hellwig struct nfs4_layout_stateid *l, *n; 387c5c707f9SChristoph Hellwig __be32 nfserr = nfs_ok; 388c5c707f9SChristoph Hellwig 389c5c707f9SChristoph Hellwig assert_spin_locked(&fp->fi_lock); 390c5c707f9SChristoph Hellwig 391c5c707f9SChristoph Hellwig list_for_each_entry_safe(l, n, &fp->fi_lo_states, ls_perfile) { 392c5c707f9SChristoph Hellwig if (l != ls) { 393c5c707f9SChristoph Hellwig nfsd4_recall_file_layout(l); 394c5c707f9SChristoph Hellwig nfserr = nfserr_recallconflict; 395c5c707f9SChristoph Hellwig } 396c5c707f9SChristoph Hellwig } 397c5c707f9SChristoph Hellwig 398c5c707f9SChristoph Hellwig return nfserr; 399c5c707f9SChristoph Hellwig } 400c5c707f9SChristoph Hellwig 4019cf514ccSChristoph Hellwig __be32 4029cf514ccSChristoph Hellwig nfsd4_insert_layout(struct nfsd4_layoutget *lgp, struct nfs4_layout_stateid *ls) 4039cf514ccSChristoph Hellwig { 4049cf514ccSChristoph Hellwig struct nfsd4_layout_seg *seg = &lgp->lg_seg; 405c5c707f9SChristoph Hellwig struct nfs4_file *fp = ls->ls_stid.sc_file; 4069cf514ccSChristoph Hellwig struct nfs4_layout *lp, *new = NULL; 407c5c707f9SChristoph Hellwig __be32 nfserr; 4089cf514ccSChristoph Hellwig 409c5c707f9SChristoph Hellwig spin_lock(&fp->fi_lock); 410c5c707f9SChristoph Hellwig nfserr = nfsd4_recall_conflict(ls); 411c5c707f9SChristoph Hellwig if (nfserr) 412c5c707f9SChristoph Hellwig goto out; 4139cf514ccSChristoph Hellwig spin_lock(&ls->ls_lock); 4149cf514ccSChristoph Hellwig list_for_each_entry(lp, &ls->ls_layouts, lo_perstate) { 4159cf514ccSChristoph Hellwig if (layouts_try_merge(&lp->lo_seg, seg)) 4169cf514ccSChristoph Hellwig goto done; 4179cf514ccSChristoph Hellwig } 4189cf514ccSChristoph Hellwig spin_unlock(&ls->ls_lock); 419c5c707f9SChristoph Hellwig spin_unlock(&fp->fi_lock); 4209cf514ccSChristoph Hellwig 4219cf514ccSChristoph Hellwig new = kmem_cache_alloc(nfs4_layout_cache, GFP_KERNEL); 4229cf514ccSChristoph Hellwig if (!new) 4239cf514ccSChristoph Hellwig return nfserr_jukebox; 4249cf514ccSChristoph Hellwig memcpy(&new->lo_seg, seg, sizeof(lp->lo_seg)); 4259cf514ccSChristoph Hellwig new->lo_state = ls; 4269cf514ccSChristoph Hellwig 427c5c707f9SChristoph Hellwig spin_lock(&fp->fi_lock); 428c5c707f9SChristoph Hellwig nfserr = nfsd4_recall_conflict(ls); 429c5c707f9SChristoph Hellwig if (nfserr) 430c5c707f9SChristoph Hellwig goto out; 4319cf514ccSChristoph Hellwig spin_lock(&ls->ls_lock); 4329cf514ccSChristoph Hellwig list_for_each_entry(lp, &ls->ls_layouts, lo_perstate) { 4339cf514ccSChristoph Hellwig if (layouts_try_merge(&lp->lo_seg, seg)) 4349cf514ccSChristoph Hellwig goto done; 4359cf514ccSChristoph Hellwig } 4369cf514ccSChristoph Hellwig 437a15dfcd5SElena Reshetova refcount_inc(&ls->ls_stid.sc_count); 4389cf514ccSChristoph Hellwig list_add_tail(&new->lo_perstate, &ls->ls_layouts); 4399cf514ccSChristoph Hellwig new = NULL; 4409cf514ccSChristoph Hellwig done: 4419767feb2SJeff Layton nfs4_inc_and_copy_stateid(&lgp->lg_sid, &ls->ls_stid); 4429cf514ccSChristoph Hellwig spin_unlock(&ls->ls_lock); 443c5c707f9SChristoph Hellwig out: 444c5c707f9SChristoph Hellwig spin_unlock(&fp->fi_lock); 4459cf514ccSChristoph Hellwig if (new) 4469cf514ccSChristoph Hellwig kmem_cache_free(nfs4_layout_cache, new); 447c5c707f9SChristoph Hellwig return nfserr; 4489cf514ccSChristoph Hellwig } 4499cf514ccSChristoph Hellwig 4509cf514ccSChristoph Hellwig static void 4519cf514ccSChristoph Hellwig nfsd4_free_layouts(struct list_head *reaplist) 4529cf514ccSChristoph Hellwig { 4539cf514ccSChristoph Hellwig while (!list_empty(reaplist)) { 4549cf514ccSChristoph Hellwig struct nfs4_layout *lp = list_first_entry(reaplist, 4559cf514ccSChristoph Hellwig struct nfs4_layout, lo_perstate); 4569cf514ccSChristoph Hellwig 4579cf514ccSChristoph Hellwig list_del(&lp->lo_perstate); 4589cf514ccSChristoph Hellwig nfs4_put_stid(&lp->lo_state->ls_stid); 4599cf514ccSChristoph Hellwig kmem_cache_free(nfs4_layout_cache, lp); 4609cf514ccSChristoph Hellwig } 4619cf514ccSChristoph Hellwig } 4629cf514ccSChristoph Hellwig 4639cf514ccSChristoph Hellwig static void 4649cf514ccSChristoph Hellwig nfsd4_return_file_layout(struct nfs4_layout *lp, struct nfsd4_layout_seg *seg, 4659cf514ccSChristoph Hellwig struct list_head *reaplist) 4669cf514ccSChristoph Hellwig { 4679cf514ccSChristoph Hellwig struct nfsd4_layout_seg *lo = &lp->lo_seg; 4689cf514ccSChristoph Hellwig u64 end = layout_end(lo); 4699cf514ccSChristoph Hellwig 4709cf514ccSChristoph Hellwig if (seg->offset <= lo->offset) { 4719cf514ccSChristoph Hellwig if (layout_end(seg) >= end) { 4729cf514ccSChristoph Hellwig list_move_tail(&lp->lo_perstate, reaplist); 4739cf514ccSChristoph Hellwig return; 4749cf514ccSChristoph Hellwig } 4757890203dSKinglong Mee lo->offset = layout_end(seg); 4769cf514ccSChristoph Hellwig } else { 4779cf514ccSChristoph Hellwig /* retain the whole layout segment on a split. */ 4789cf514ccSChristoph Hellwig if (layout_end(seg) < end) { 4799cf514ccSChristoph Hellwig dprintk("%s: split not supported\n", __func__); 4809cf514ccSChristoph Hellwig return; 4819cf514ccSChristoph Hellwig } 4827890203dSKinglong Mee end = seg->offset; 4839cf514ccSChristoph Hellwig } 4849cf514ccSChristoph Hellwig 4859cf514ccSChristoph Hellwig layout_update_len(lo, end); 4869cf514ccSChristoph Hellwig } 4879cf514ccSChristoph Hellwig 4889cf514ccSChristoph Hellwig __be32 4899cf514ccSChristoph Hellwig nfsd4_return_file_layouts(struct svc_rqst *rqstp, 4909cf514ccSChristoph Hellwig struct nfsd4_compound_state *cstate, 4919cf514ccSChristoph Hellwig struct nfsd4_layoutreturn *lrp) 4929cf514ccSChristoph Hellwig { 4939cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls; 4949cf514ccSChristoph Hellwig struct nfs4_layout *lp, *n; 4959cf514ccSChristoph Hellwig LIST_HEAD(reaplist); 4969cf514ccSChristoph Hellwig __be32 nfserr; 4979cf514ccSChristoph Hellwig int found = 0; 4989cf514ccSChristoph Hellwig 4999cf514ccSChristoph Hellwig nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lrp->lr_sid, 5009cf514ccSChristoph Hellwig false, lrp->lr_layout_type, 5019cf514ccSChristoph Hellwig &ls); 50231ef83dcSChristoph Hellwig if (nfserr) { 503f394b62bSChuck Lever trace_nfsd_layout_return_lookup_fail(&lrp->lr_sid); 5049cf514ccSChristoph Hellwig return nfserr; 50531ef83dcSChristoph Hellwig } 5069cf514ccSChristoph Hellwig 5079cf514ccSChristoph Hellwig spin_lock(&ls->ls_lock); 5089cf514ccSChristoph Hellwig list_for_each_entry_safe(lp, n, &ls->ls_layouts, lo_perstate) { 5099cf514ccSChristoph Hellwig if (layouts_overlapping(lp, &lrp->lr_seg)) { 5109cf514ccSChristoph Hellwig nfsd4_return_file_layout(lp, &lrp->lr_seg, &reaplist); 5119cf514ccSChristoph Hellwig found++; 5129cf514ccSChristoph Hellwig } 5139cf514ccSChristoph Hellwig } 5149cf514ccSChristoph Hellwig if (!list_empty(&ls->ls_layouts)) { 5159767feb2SJeff Layton if (found) 5169767feb2SJeff Layton nfs4_inc_and_copy_stateid(&lrp->lr_sid, &ls->ls_stid); 5179cf514ccSChristoph Hellwig lrp->lrs_present = 1; 5189cf514ccSChristoph Hellwig } else { 519f394b62bSChuck Lever trace_nfsd_layoutstate_unhash(&ls->ls_stid.sc_stateid); 5209cf514ccSChristoph Hellwig nfs4_unhash_stid(&ls->ls_stid); 5219cf514ccSChristoph Hellwig lrp->lrs_present = 0; 5229cf514ccSChristoph Hellwig } 5239cf514ccSChristoph Hellwig spin_unlock(&ls->ls_lock); 5249cf514ccSChristoph Hellwig 525cc8a5532SJeff Layton mutex_unlock(&ls->ls_mutex); 5269cf514ccSChristoph Hellwig nfs4_put_stid(&ls->ls_stid); 5279cf514ccSChristoph Hellwig nfsd4_free_layouts(&reaplist); 5289cf514ccSChristoph Hellwig return nfs_ok; 5299cf514ccSChristoph Hellwig } 5309cf514ccSChristoph Hellwig 5319cf514ccSChristoph Hellwig __be32 5329cf514ccSChristoph Hellwig nfsd4_return_client_layouts(struct svc_rqst *rqstp, 5339cf514ccSChristoph Hellwig struct nfsd4_compound_state *cstate, 5349cf514ccSChristoph Hellwig struct nfsd4_layoutreturn *lrp) 5359cf514ccSChristoph Hellwig { 5369cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls, *n; 5379cf514ccSChristoph Hellwig struct nfs4_client *clp = cstate->clp; 5389cf514ccSChristoph Hellwig struct nfs4_layout *lp, *t; 5399cf514ccSChristoph Hellwig LIST_HEAD(reaplist); 5409cf514ccSChristoph Hellwig 5419cf514ccSChristoph Hellwig lrp->lrs_present = 0; 5429cf514ccSChristoph Hellwig 5439cf514ccSChristoph Hellwig spin_lock(&clp->cl_lock); 5449cf514ccSChristoph Hellwig list_for_each_entry_safe(ls, n, &clp->cl_lo_states, ls_perclnt) { 5456f8f28ecSKinglong Mee if (ls->ls_layout_type != lrp->lr_layout_type) 5466f8f28ecSKinglong Mee continue; 5476f8f28ecSKinglong Mee 5489cf514ccSChristoph Hellwig if (lrp->lr_return_type == RETURN_FSID && 5499cf514ccSChristoph Hellwig !fh_fsid_match(&ls->ls_stid.sc_file->fi_fhandle, 5509cf514ccSChristoph Hellwig &cstate->current_fh.fh_handle)) 5519cf514ccSChristoph Hellwig continue; 5529cf514ccSChristoph Hellwig 5539cf514ccSChristoph Hellwig spin_lock(&ls->ls_lock); 5549cf514ccSChristoph Hellwig list_for_each_entry_safe(lp, t, &ls->ls_layouts, lo_perstate) { 5559cf514ccSChristoph Hellwig if (lrp->lr_seg.iomode == IOMODE_ANY || 5569cf514ccSChristoph Hellwig lrp->lr_seg.iomode == lp->lo_seg.iomode) 5579cf514ccSChristoph Hellwig list_move_tail(&lp->lo_perstate, &reaplist); 5589cf514ccSChristoph Hellwig } 5599cf514ccSChristoph Hellwig spin_unlock(&ls->ls_lock); 5609cf514ccSChristoph Hellwig } 5619cf514ccSChristoph Hellwig spin_unlock(&clp->cl_lock); 5629cf514ccSChristoph Hellwig 5639cf514ccSChristoph Hellwig nfsd4_free_layouts(&reaplist); 5649cf514ccSChristoph Hellwig return 0; 5659cf514ccSChristoph Hellwig } 5669cf514ccSChristoph Hellwig 5679cf514ccSChristoph Hellwig static void 5689cf514ccSChristoph Hellwig nfsd4_return_all_layouts(struct nfs4_layout_stateid *ls, 5699cf514ccSChristoph Hellwig struct list_head *reaplist) 5709cf514ccSChristoph Hellwig { 5719cf514ccSChristoph Hellwig spin_lock(&ls->ls_lock); 5729cf514ccSChristoph Hellwig list_splice_init(&ls->ls_layouts, reaplist); 5739cf514ccSChristoph Hellwig spin_unlock(&ls->ls_lock); 5749cf514ccSChristoph Hellwig } 5759cf514ccSChristoph Hellwig 5769cf514ccSChristoph Hellwig void 5779cf514ccSChristoph Hellwig nfsd4_return_all_client_layouts(struct nfs4_client *clp) 5789cf514ccSChristoph Hellwig { 5799cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls, *n; 5809cf514ccSChristoph Hellwig LIST_HEAD(reaplist); 5819cf514ccSChristoph Hellwig 5829cf514ccSChristoph Hellwig spin_lock(&clp->cl_lock); 5839cf514ccSChristoph Hellwig list_for_each_entry_safe(ls, n, &clp->cl_lo_states, ls_perclnt) 5849cf514ccSChristoph Hellwig nfsd4_return_all_layouts(ls, &reaplist); 5859cf514ccSChristoph Hellwig spin_unlock(&clp->cl_lock); 5869cf514ccSChristoph Hellwig 5879cf514ccSChristoph Hellwig nfsd4_free_layouts(&reaplist); 5889cf514ccSChristoph Hellwig } 5899cf514ccSChristoph Hellwig 5909cf514ccSChristoph Hellwig void 5919cf514ccSChristoph Hellwig nfsd4_return_all_file_layouts(struct nfs4_client *clp, struct nfs4_file *fp) 5929cf514ccSChristoph Hellwig { 5939cf514ccSChristoph Hellwig struct nfs4_layout_stateid *ls, *n; 5949cf514ccSChristoph Hellwig LIST_HEAD(reaplist); 5959cf514ccSChristoph Hellwig 5969cf514ccSChristoph Hellwig spin_lock(&fp->fi_lock); 5979cf514ccSChristoph Hellwig list_for_each_entry_safe(ls, n, &fp->fi_lo_states, ls_perfile) { 5989cf514ccSChristoph Hellwig if (ls->ls_stid.sc_client == clp) 5999cf514ccSChristoph Hellwig nfsd4_return_all_layouts(ls, &reaplist); 6009cf514ccSChristoph Hellwig } 6019cf514ccSChristoph Hellwig spin_unlock(&fp->fi_lock); 6029cf514ccSChristoph Hellwig 6039cf514ccSChristoph Hellwig nfsd4_free_layouts(&reaplist); 6049cf514ccSChristoph Hellwig } 6059cf514ccSChristoph Hellwig 606c5c707f9SChristoph Hellwig static void 607c5c707f9SChristoph Hellwig nfsd4_cb_layout_fail(struct nfs4_layout_stateid *ls) 608c5c707f9SChristoph Hellwig { 609c5c707f9SChristoph Hellwig struct nfs4_client *clp = ls->ls_stid.sc_client; 610c5c707f9SChristoph Hellwig char addr_str[INET6_ADDRSTRLEN]; 611377e7a27SGreg Kroah-Hartman static char const nfsd_recall_failed[] = "/sbin/nfsd-recall-failed"; 612c5c707f9SChristoph Hellwig static char *envp[] = { 613c5c707f9SChristoph Hellwig "HOME=/", 614c5c707f9SChristoph Hellwig "TERM=linux", 615c5c707f9SChristoph Hellwig "PATH=/sbin:/usr/sbin:/bin:/usr/bin", 616c5c707f9SChristoph Hellwig NULL 617c5c707f9SChristoph Hellwig }; 618c5c707f9SChristoph Hellwig char *argv[8]; 619c5c707f9SChristoph Hellwig int error; 620c5c707f9SChristoph Hellwig 621c5c707f9SChristoph Hellwig rpc_ntop((struct sockaddr *)&clp->cl_addr, addr_str, sizeof(addr_str)); 622c5c707f9SChristoph Hellwig 623c5c707f9SChristoph Hellwig printk(KERN_WARNING 624c5c707f9SChristoph Hellwig "nfsd: client %s failed to respond to layout recall. " 625c5c707f9SChristoph Hellwig " Fencing..\n", addr_str); 626c5c707f9SChristoph Hellwig 627377e7a27SGreg Kroah-Hartman argv[0] = (char *)nfsd_recall_failed; 628c5c707f9SChristoph Hellwig argv[1] = addr_str; 629*eb82dd39SJeff Layton argv[2] = ls->ls_file->nf_file->f_path.mnt->mnt_sb->s_id; 630c5c707f9SChristoph Hellwig argv[3] = NULL; 631c5c707f9SChristoph Hellwig 632377e7a27SGreg Kroah-Hartman error = call_usermodehelper(nfsd_recall_failed, argv, envp, 633377e7a27SGreg Kroah-Hartman UMH_WAIT_PROC); 634c5c707f9SChristoph Hellwig if (error) { 635c5c707f9SChristoph Hellwig printk(KERN_ERR "nfsd: fence failed for client %s: %d!\n", 636c5c707f9SChristoph Hellwig addr_str, error); 637c5c707f9SChristoph Hellwig } 638c5c707f9SChristoph Hellwig } 639c5c707f9SChristoph Hellwig 640cc8a5532SJeff Layton static void 641cc8a5532SJeff Layton nfsd4_cb_layout_prepare(struct nfsd4_callback *cb) 642cc8a5532SJeff Layton { 643cc8a5532SJeff Layton struct nfs4_layout_stateid *ls = 644cc8a5532SJeff Layton container_of(cb, struct nfs4_layout_stateid, ls_recall); 645cc8a5532SJeff Layton 646cc8a5532SJeff Layton mutex_lock(&ls->ls_mutex); 6479767feb2SJeff Layton nfs4_inc_and_copy_stateid(&ls->ls_recall_sid, &ls->ls_stid); 648be20aa00SJeff Layton mutex_unlock(&ls->ls_mutex); 649cc8a5532SJeff Layton } 650cc8a5532SJeff Layton 651c5c707f9SChristoph Hellwig static int 652c5c707f9SChristoph Hellwig nfsd4_cb_layout_done(struct nfsd4_callback *cb, struct rpc_task *task) 653c5c707f9SChristoph Hellwig { 654c5c707f9SChristoph Hellwig struct nfs4_layout_stateid *ls = 655c5c707f9SChristoph Hellwig container_of(cb, struct nfs4_layout_stateid, ls_recall); 6566b9b2107SJeff Layton struct nfsd_net *nn; 6576b9b2107SJeff Layton ktime_t now, cutoff; 658f99d4fbdSChristoph Hellwig const struct nfsd4_layout_ops *ops; 659c5c707f9SChristoph Hellwig 6606b9b2107SJeff Layton 661c5c707f9SChristoph Hellwig switch (task->tk_status) { 662c5c707f9SChristoph Hellwig case 0: 6636b9b2107SJeff Layton case -NFS4ERR_DELAY: 6646b9b2107SJeff Layton /* 6656b9b2107SJeff Layton * Anything left? If not, then call it done. Note that we don't 6666b9b2107SJeff Layton * take the spinlock since this is an optimization and nothing 6676b9b2107SJeff Layton * should get added until the cb counter goes to zero. 6686b9b2107SJeff Layton */ 6696b9b2107SJeff Layton if (list_empty(&ls->ls_layouts)) 670c5c707f9SChristoph Hellwig return 1; 6716b9b2107SJeff Layton 6726b9b2107SJeff Layton /* Poll the client until it's done with the layout */ 6736b9b2107SJeff Layton now = ktime_get(); 6746b9b2107SJeff Layton nn = net_generic(ls->ls_stid.sc_client->net, nfsd_net_id); 6756b9b2107SJeff Layton 6766b9b2107SJeff Layton /* Client gets 2 lease periods to return it */ 6776b9b2107SJeff Layton cutoff = ktime_add_ns(task->tk_start, 6786b9b2107SJeff Layton nn->nfsd4_lease * NSEC_PER_SEC * 2); 6796b9b2107SJeff Layton 6806b9b2107SJeff Layton if (ktime_before(now, cutoff)) { 6816b9b2107SJeff Layton rpc_delay(task, HZ/100); /* 10 mili-seconds */ 6826b9b2107SJeff Layton return 0; 6836b9b2107SJeff Layton } 6846b9b2107SJeff Layton /* Fallthrough */ 685c5c707f9SChristoph Hellwig default: 686c5c707f9SChristoph Hellwig /* 687c5c707f9SChristoph Hellwig * Unknown error or non-responding client, we'll need to fence. 688c5c707f9SChristoph Hellwig */ 689f394b62bSChuck Lever trace_nfsd_layout_recall_fail(&ls->ls_stid.sc_stateid); 690f99d4fbdSChristoph Hellwig 691f99d4fbdSChristoph Hellwig ops = nfsd4_layout_ops[ls->ls_layout_type]; 692f99d4fbdSChristoph Hellwig if (ops->fence_client) 693f99d4fbdSChristoph Hellwig ops->fence_client(ls); 694f99d4fbdSChristoph Hellwig else 695c5c707f9SChristoph Hellwig nfsd4_cb_layout_fail(ls); 6961c73b9d2SScott Mayhew return 1; 697851238a2SJeff Layton case -NFS4ERR_NOMATCHING_LAYOUT: 698f394b62bSChuck Lever trace_nfsd_layout_recall_done(&ls->ls_stid.sc_stateid); 699851238a2SJeff Layton task->tk_status = 0; 700851238a2SJeff Layton return 1; 701c5c707f9SChristoph Hellwig } 702c5c707f9SChristoph Hellwig } 703c5c707f9SChristoph Hellwig 704c5c707f9SChristoph Hellwig static void 705c5c707f9SChristoph Hellwig nfsd4_cb_layout_release(struct nfsd4_callback *cb) 706c5c707f9SChristoph Hellwig { 707c5c707f9SChristoph Hellwig struct nfs4_layout_stateid *ls = 708c5c707f9SChristoph Hellwig container_of(cb, struct nfs4_layout_stateid, ls_recall); 709c5c707f9SChristoph Hellwig LIST_HEAD(reaplist); 710c5c707f9SChristoph Hellwig 711f394b62bSChuck Lever trace_nfsd_layout_recall_release(&ls->ls_stid.sc_stateid); 71231ef83dcSChristoph Hellwig 713c5c707f9SChristoph Hellwig nfsd4_return_all_layouts(ls, &reaplist); 714c5c707f9SChristoph Hellwig nfsd4_free_layouts(&reaplist); 715c5c707f9SChristoph Hellwig nfs4_put_stid(&ls->ls_stid); 716c5c707f9SChristoph Hellwig } 717c5c707f9SChristoph Hellwig 718c4cb8974SJulia Lawall static const struct nfsd4_callback_ops nfsd4_cb_layout_ops = { 719cc8a5532SJeff Layton .prepare = nfsd4_cb_layout_prepare, 720c5c707f9SChristoph Hellwig .done = nfsd4_cb_layout_done, 721c5c707f9SChristoph Hellwig .release = nfsd4_cb_layout_release, 722c5c707f9SChristoph Hellwig }; 723c5c707f9SChristoph Hellwig 724c5c707f9SChristoph Hellwig static bool 725c5c707f9SChristoph Hellwig nfsd4_layout_lm_break(struct file_lock *fl) 726c5c707f9SChristoph Hellwig { 727c5c707f9SChristoph Hellwig /* 728c5c707f9SChristoph Hellwig * We don't want the locks code to timeout the lease for us; 729c5c707f9SChristoph Hellwig * we'll remove it ourself if a layout isn't returned 730c5c707f9SChristoph Hellwig * in time: 731c5c707f9SChristoph Hellwig */ 732c5c707f9SChristoph Hellwig fl->fl_break_time = 0; 733c5c707f9SChristoph Hellwig nfsd4_recall_file_layout(fl->fl_owner); 734c5c707f9SChristoph Hellwig return false; 735c5c707f9SChristoph Hellwig } 736c5c707f9SChristoph Hellwig 737c5c707f9SChristoph Hellwig static int 738c5c707f9SChristoph Hellwig nfsd4_layout_lm_change(struct file_lock *onlist, int arg, 739c5c707f9SChristoph Hellwig struct list_head *dispose) 740c5c707f9SChristoph Hellwig { 741c5c707f9SChristoph Hellwig BUG_ON(!(arg & F_UNLCK)); 742c5c707f9SChristoph Hellwig return lease_modify(onlist, arg, dispose); 743c5c707f9SChristoph Hellwig } 744c5c707f9SChristoph Hellwig 745c5c707f9SChristoph Hellwig static const struct lock_manager_operations nfsd4_layouts_lm_ops = { 746c5c707f9SChristoph Hellwig .lm_break = nfsd4_layout_lm_break, 747c5c707f9SChristoph Hellwig .lm_change = nfsd4_layout_lm_change, 748c5c707f9SChristoph Hellwig }; 749c5c707f9SChristoph Hellwig 7509cf514ccSChristoph Hellwig int 7519cf514ccSChristoph Hellwig nfsd4_init_pnfs(void) 7529cf514ccSChristoph Hellwig { 7539cf514ccSChristoph Hellwig int i; 7549cf514ccSChristoph Hellwig 7559cf514ccSChristoph Hellwig for (i = 0; i < DEVID_HASH_SIZE; i++) 7569cf514ccSChristoph Hellwig INIT_LIST_HEAD(&nfsd_devid_hash[i]); 7579cf514ccSChristoph Hellwig 7589cf514ccSChristoph Hellwig nfs4_layout_cache = kmem_cache_create("nfs4_layout", 7599cf514ccSChristoph Hellwig sizeof(struct nfs4_layout), 0, 0, NULL); 7609cf514ccSChristoph Hellwig if (!nfs4_layout_cache) 7619cf514ccSChristoph Hellwig return -ENOMEM; 7629cf514ccSChristoph Hellwig 7639cf514ccSChristoph Hellwig nfs4_layout_stateid_cache = kmem_cache_create("nfs4_layout_stateid", 7649cf514ccSChristoph Hellwig sizeof(struct nfs4_layout_stateid), 0, 0, NULL); 7659cf514ccSChristoph Hellwig if (!nfs4_layout_stateid_cache) { 7669cf514ccSChristoph Hellwig kmem_cache_destroy(nfs4_layout_cache); 7679cf514ccSChristoph Hellwig return -ENOMEM; 7689cf514ccSChristoph Hellwig } 7699cf514ccSChristoph Hellwig return 0; 7709cf514ccSChristoph Hellwig } 7719cf514ccSChristoph Hellwig 7729cf514ccSChristoph Hellwig void 7739cf514ccSChristoph Hellwig nfsd4_exit_pnfs(void) 7749cf514ccSChristoph Hellwig { 7759cf514ccSChristoph Hellwig int i; 7769cf514ccSChristoph Hellwig 7779cf514ccSChristoph Hellwig kmem_cache_destroy(nfs4_layout_cache); 7789cf514ccSChristoph Hellwig kmem_cache_destroy(nfs4_layout_stateid_cache); 7799cf514ccSChristoph Hellwig 7809cf514ccSChristoph Hellwig for (i = 0; i < DEVID_HASH_SIZE; i++) { 7819cf514ccSChristoph Hellwig struct nfsd4_deviceid_map *map, *n; 7829cf514ccSChristoph Hellwig 7839cf514ccSChristoph Hellwig list_for_each_entry_safe(map, n, &nfsd_devid_hash[i], hash) 7849cf514ccSChristoph Hellwig kfree(map); 7859cf514ccSChristoph Hellwig } 7869cf514ccSChristoph Hellwig } 787