blob: db52d965857060b782c5072a2b4cf59f7ffe69cc [file] [log] [blame]
Ricardo Labiaga85e174b2010-10-20 00:17:58 -04001/*
2 * pNFS client data structures.
3 *
4 * Copyright (c) 2002
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 *
10 * Permission is granted to use, copy, create derivative works, and
11 * redistribute this software and such derivative works for any purpose,
12 * so long as the name of the University of Michigan is not used in
13 * any advertising or publicity pertaining to the use or distribution
14 * of this software without specific, written prior authorization. If
15 * the above copyright notice or any other identification of the
16 * University of Michigan is included in any copy of any portion of
17 * this software, then the disclaimer below must also be included.
18 *
19 * This software is provided as is, without representation or warranty
20 * of any kind either express or implied, including without limitation
21 * the implied warranties of merchantability, fitness for a particular
22 * purpose, or noninfringement. The Regents of the University of
23 * Michigan shall not be liable for any damages, including special,
24 * indirect, incidental, or consequential damages, with respect to any
25 * claim arising out of or in connection with the use of the software,
26 * even if it has been or is hereafter advised of the possibility of
27 * such damages.
28 */
29
30#ifndef FS_NFS_PNFS_H
31#define FS_NFS_PNFS_H
32
Fred Isaman94ad1c82011-03-01 01:34:14 +000033#include <linux/nfs_page.h>
34
Fred Isaman4541d162011-01-06 11:36:23 +000035enum {
36 NFS_LSEG_VALID = 0, /* cleared when lseg is recalled/returned */
Fred Isamanf7e89172011-01-06 11:36:32 +000037 NFS_LSEG_ROC, /* roc bit received from server */
Fred Isaman4541d162011-01-06 11:36:23 +000038};
39
Andy Adamson974cec82010-10-20 00:18:02 -040040struct pnfs_layout_segment {
Fred Isaman566052c2011-01-06 11:36:20 +000041 struct list_head pls_list;
42 struct pnfs_layout_range pls_range;
Fred Isaman4541d162011-01-06 11:36:23 +000043 atomic_t pls_refcount;
44 unsigned long pls_flags;
Fred Isaman566052c2011-01-06 11:36:20 +000045 struct pnfs_layout_hdr *pls_layout;
Andy Adamson974cec82010-10-20 00:18:02 -040046};
47
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040048#ifdef CONFIG_NFS_V4_1
49
50#define LAYOUT_NFSV4_1_MODULE_PREFIX "nfs-layouttype4"
51
Benny Halevye5e94012010-10-20 00:18:01 -040052enum {
53 NFS_LAYOUT_RO_FAILED = 0, /* get ro layout failed stop trying */
54 NFS_LAYOUT_RW_FAILED, /* get rw layout failed stop trying */
Fred Isaman43f1b3d2011-01-06 11:36:30 +000055 NFS_LAYOUT_BULK_RECALL, /* bulk recall affecting layout */
Fred Isamanf7e89172011-01-06 11:36:32 +000056 NFS_LAYOUT_ROC, /* some lseg had roc bit set */
Fred Isaman4541d162011-01-06 11:36:23 +000057 NFS_LAYOUT_DESTROYED, /* no new use of layout allowed */
Benny Halevye5e94012010-10-20 00:18:01 -040058};
59
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040060/* Per-layout driver specific registration structure */
61struct pnfs_layoutdriver_type {
Fred Isaman02c35fc2010-10-20 00:17:59 -040062 struct list_head pnfs_tblid;
63 const u32 id;
64 const char *name;
65 struct module *owner;
Trond Myklebust1c787092010-10-21 16:56:48 -040066 int (*set_layoutdriver) (struct nfs_server *);
67 int (*clear_layoutdriver) (struct nfs_server *);
Andy Adamsonb1f69b72010-10-20 00:18:03 -040068 struct pnfs_layout_segment * (*alloc_lseg) (struct pnfs_layout_hdr *layoutid, struct nfs4_layoutget_res *lgr);
69 void (*free_lseg) (struct pnfs_layout_segment *lseg);
Fred Isaman94ad1c82011-03-01 01:34:14 +000070
71 /* test for nfs page cache coalescing */
72 int (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, struct nfs_page *);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040073};
74
Benny Halevye5e94012010-10-20 00:18:01 -040075struct pnfs_layout_hdr {
Fred Isamancc6e5342011-01-06 11:36:28 +000076 atomic_t plh_refcount;
Fred Isamanb7edfaa2011-01-06 11:36:21 +000077 struct list_head plh_layouts; /* other client layouts */
Fred Isaman43f1b3d2011-01-06 11:36:30 +000078 struct list_head plh_bulk_recall; /* clnt list of bulk recalls */
Fred Isamanb7edfaa2011-01-06 11:36:21 +000079 struct list_head plh_segs; /* layout segments list */
Fred Isamanb7edfaa2011-01-06 11:36:21 +000080 nfs4_stateid plh_stateid;
Fred Isamancf7d63f2011-01-06 11:36:25 +000081 atomic_t plh_outstanding; /* number of RPCs out */
Fred Isamanf7e89172011-01-06 11:36:32 +000082 unsigned long plh_block_lgets; /* block LAYOUTGET if >0 */
Fred Isaman43f1b3d2011-01-06 11:36:30 +000083 u32 plh_barrier; /* ignore lower seqids */
Fred Isaman566052c2011-01-06 11:36:20 +000084 unsigned long plh_flags;
Fred Isamanb7edfaa2011-01-06 11:36:21 +000085 struct inode *plh_inode;
Benny Halevye5e94012010-10-20 00:18:01 -040086};
87
Andy Adamsonb1f69b72010-10-20 00:18:03 -040088struct pnfs_device {
89 struct nfs4_deviceid dev_id;
90 unsigned int layout_type;
91 unsigned int mincount;
92 struct page **pages;
93 void *area;
94 unsigned int pgbase;
95 unsigned int pglen;
96};
97
98/*
99 * Device ID RCU cache. A device ID is unique per client ID and layout type.
100 */
101#define NFS4_DEVICE_ID_HASH_BITS 5
102#define NFS4_DEVICE_ID_HASH_SIZE (1 << NFS4_DEVICE_ID_HASH_BITS)
103#define NFS4_DEVICE_ID_HASH_MASK (NFS4_DEVICE_ID_HASH_SIZE - 1)
104
105static inline u32
106nfs4_deviceid_hash(struct nfs4_deviceid *id)
107{
108 unsigned char *cptr = (unsigned char *)id->data;
109 unsigned int nbytes = NFS4_DEVICEID4_SIZE;
110 u32 x = 0;
111
112 while (nbytes--) {
113 x *= 37;
114 x += *cptr++;
115 }
116 return x & NFS4_DEVICE_ID_HASH_MASK;
117}
118
119struct pnfs_deviceid_node {
120 struct hlist_node de_node;
121 struct nfs4_deviceid de_id;
122 atomic_t de_ref;
123};
124
125struct pnfs_deviceid_cache {
126 spinlock_t dc_lock;
127 atomic_t dc_ref;
128 void (*dc_free_callback)(struct pnfs_deviceid_node *);
129 struct hlist_head dc_deviceids[NFS4_DEVICE_ID_HASH_SIZE];
130};
131
132extern int pnfs_alloc_init_deviceid_cache(struct nfs_client *,
133 void (*free_callback)(struct pnfs_deviceid_node *));
134extern void pnfs_put_deviceid_cache(struct nfs_client *);
135extern struct pnfs_deviceid_node *pnfs_find_get_deviceid(
136 struct pnfs_deviceid_cache *,
137 struct nfs4_deviceid *);
138extern struct pnfs_deviceid_node *pnfs_add_deviceid(
139 struct pnfs_deviceid_cache *,
140 struct pnfs_deviceid_node *);
141extern void pnfs_put_deviceid(struct pnfs_deviceid_cache *c,
142 struct pnfs_deviceid_node *devid);
143
Fred Isaman02c35fc2010-10-20 00:17:59 -0400144extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *);
145extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *);
146
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400147/* nfs4proc.c */
148extern int nfs4_proc_getdeviceinfo(struct nfs_server *server,
149 struct pnfs_device *dev);
150extern int nfs4_proc_layoutget(struct nfs4_layoutget *lgp);
151
152/* pnfs.c */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000153void get_layout_hdr(struct pnfs_layout_hdr *lo);
Benny Halevye5e94012010-10-20 00:18:01 -0400154struct pnfs_layout_segment *
155pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
156 enum pnfs_iomode access_type);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400157void set_pnfs_layoutdriver(struct nfs_server *, u32 id);
158void unset_pnfs_layoutdriver(struct nfs_server *);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000159void pnfs_pageio_init_read(struct nfs_pageio_descriptor *, struct inode *);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400160int pnfs_layout_process(struct nfs4_layoutget *lgp);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000161void pnfs_free_lseg_list(struct list_head *tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400162void pnfs_destroy_layout(struct nfs_inode *);
Andy Adamson974cec82010-10-20 00:18:02 -0400163void pnfs_destroy_all_layouts(struct nfs_client *);
Fred Isamancc6e5342011-01-06 11:36:28 +0000164void put_layout_hdr(struct pnfs_layout_hdr *lo);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000165void pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo,
166 const nfs4_stateid *new,
167 bool update_barrier);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000168int pnfs_choose_layoutget_stateid(nfs4_stateid *dst,
169 struct pnfs_layout_hdr *lo,
170 struct nfs4_state *open_state);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000171int mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
172 struct list_head *tmp_list,
173 u32 iomode);
Fred Isamanf7e89172011-01-06 11:36:32 +0000174bool pnfs_roc(struct inode *ino);
175void pnfs_roc_release(struct inode *ino);
176void pnfs_roc_set_barrier(struct inode *ino, u32 barrier);
177bool pnfs_roc_drain(struct inode *ino, u32 *barrier);
Benny Halevye5e94012010-10-20 00:18:01 -0400178
179
180static inline int lo_fail_bit(u32 iomode)
181{
182 return iomode == IOMODE_RW ?
183 NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
184}
185
Fred Isamand684d2a2011-03-01 01:34:13 +0000186static inline struct pnfs_layout_segment *
187get_lseg(struct pnfs_layout_segment *lseg)
188{
189 if (lseg) {
190 atomic_inc(&lseg->pls_refcount);
191 smp_mb__after_atomic_inc();
192 }
193 return lseg;
194}
195
Benny Halevye5e94012010-10-20 00:18:01 -0400196/* Return true if a layout driver is being used for this mountpoint */
197static inline int pnfs_enabled_sb(struct nfs_server *nfss)
198{
199 return nfss->pnfs_curr_ld != NULL;
200}
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400201
202#else /* CONFIG_NFS_V4_1 */
203
Andy Adamson974cec82010-10-20 00:18:02 -0400204static inline void pnfs_destroy_all_layouts(struct nfs_client *clp)
205{
206}
207
Benny Halevye5e94012010-10-20 00:18:01 -0400208static inline void pnfs_destroy_layout(struct nfs_inode *nfsi)
209{
210}
211
212static inline struct pnfs_layout_segment *
Fred Isamand684d2a2011-03-01 01:34:13 +0000213get_lseg(struct pnfs_layout_segment *lseg)
214{
215 return NULL;
216}
217
218static inline void put_lseg(struct pnfs_layout_segment *lseg)
219{
220}
221
222static inline struct pnfs_layout_segment *
Benny Halevye5e94012010-10-20 00:18:01 -0400223pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
224 enum pnfs_iomode access_type)
225{
226 return NULL;
227}
228
Fred Isamanf7e89172011-01-06 11:36:32 +0000229static inline bool
230pnfs_roc(struct inode *ino)
231{
232 return false;
233}
234
235static inline void
236pnfs_roc_release(struct inode *ino)
237{
238}
239
240static inline void
241pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
242{
243}
244
245static inline bool
246pnfs_roc_drain(struct inode *ino, u32 *barrier)
247{
248 return false;
249}
250
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400251static inline void set_pnfs_layoutdriver(struct nfs_server *s, u32 id)
252{
253}
254
255static inline void unset_pnfs_layoutdriver(struct nfs_server *s)
256{
257}
258
Fred Isaman94ad1c82011-03-01 01:34:14 +0000259static inline void
260pnfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, struct inode *ino)
261{
262 pgio->pg_test = NULL;
263}
264
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400265#endif /* CONFIG_NFS_V4_1 */
266
267#endif /* FS_NFS_PNFS_H */