blob: 5107d14db4855f55e573b886622b94994343de31 [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);
Fred Isamanbae724e2011-03-01 01:34:15 +0000154void put_lseg(struct pnfs_layout_segment *lseg);
Benny Halevye5e94012010-10-20 00:18:01 -0400155struct pnfs_layout_segment *
156pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
157 enum pnfs_iomode access_type);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400158void set_pnfs_layoutdriver(struct nfs_server *, u32 id);
159void unset_pnfs_layoutdriver(struct nfs_server *);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000160void pnfs_pageio_init_read(struct nfs_pageio_descriptor *, struct inode *);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400161int pnfs_layout_process(struct nfs4_layoutget *lgp);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000162void pnfs_free_lseg_list(struct list_head *tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400163void pnfs_destroy_layout(struct nfs_inode *);
Andy Adamson974cec82010-10-20 00:18:02 -0400164void pnfs_destroy_all_layouts(struct nfs_client *);
Fred Isamancc6e5342011-01-06 11:36:28 +0000165void put_layout_hdr(struct pnfs_layout_hdr *lo);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000166void pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo,
167 const nfs4_stateid *new,
168 bool update_barrier);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000169int pnfs_choose_layoutget_stateid(nfs4_stateid *dst,
170 struct pnfs_layout_hdr *lo,
171 struct nfs4_state *open_state);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000172int mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
173 struct list_head *tmp_list,
174 u32 iomode);
Fred Isamanf7e89172011-01-06 11:36:32 +0000175bool pnfs_roc(struct inode *ino);
176void pnfs_roc_release(struct inode *ino);
177void pnfs_roc_set_barrier(struct inode *ino, u32 barrier);
178bool pnfs_roc_drain(struct inode *ino, u32 *barrier);
Benny Halevye5e94012010-10-20 00:18:01 -0400179
180
181static inline int lo_fail_bit(u32 iomode)
182{
183 return iomode == IOMODE_RW ?
184 NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
185}
186
Fred Isamand684d2a2011-03-01 01:34:13 +0000187static inline struct pnfs_layout_segment *
188get_lseg(struct pnfs_layout_segment *lseg)
189{
190 if (lseg) {
191 atomic_inc(&lseg->pls_refcount);
192 smp_mb__after_atomic_inc();
193 }
194 return lseg;
195}
196
Benny Halevye5e94012010-10-20 00:18:01 -0400197/* Return true if a layout driver is being used for this mountpoint */
198static inline int pnfs_enabled_sb(struct nfs_server *nfss)
199{
200 return nfss->pnfs_curr_ld != NULL;
201}
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400202
203#else /* CONFIG_NFS_V4_1 */
204
Andy Adamson974cec82010-10-20 00:18:02 -0400205static inline void pnfs_destroy_all_layouts(struct nfs_client *clp)
206{
207}
208
Benny Halevye5e94012010-10-20 00:18:01 -0400209static inline void pnfs_destroy_layout(struct nfs_inode *nfsi)
210{
211}
212
213static inline struct pnfs_layout_segment *
Fred Isamand684d2a2011-03-01 01:34:13 +0000214get_lseg(struct pnfs_layout_segment *lseg)
215{
216 return NULL;
217}
218
219static inline void put_lseg(struct pnfs_layout_segment *lseg)
220{
221}
222
223static inline struct pnfs_layout_segment *
Benny Halevye5e94012010-10-20 00:18:01 -0400224pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
225 enum pnfs_iomode access_type)
226{
227 return NULL;
228}
229
Fred Isamanf7e89172011-01-06 11:36:32 +0000230static inline bool
231pnfs_roc(struct inode *ino)
232{
233 return false;
234}
235
236static inline void
237pnfs_roc_release(struct inode *ino)
238{
239}
240
241static inline void
242pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
243{
244}
245
246static inline bool
247pnfs_roc_drain(struct inode *ino, u32 *barrier)
248{
249 return false;
250}
251
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400252static inline void set_pnfs_layoutdriver(struct nfs_server *s, u32 id)
253{
254}
255
256static inline void unset_pnfs_layoutdriver(struct nfs_server *s)
257{
258}
259
Fred Isaman94ad1c82011-03-01 01:34:14 +0000260static inline void
261pnfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, struct inode *ino)
262{
263 pgio->pg_test = NULL;
264}
265
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400266#endif /* CONFIG_NFS_V4_1 */
267
268#endif /* FS_NFS_PNFS_H */