blob: c7f6041a287fd79de055f1dbd6e7796e967b9a0a [file] [log] [blame]
Andy Adamson16b374c2010-10-20 00:18:04 -04001/*
2 * Device operations for the pnfs nfs4 file layout driver.
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 * Garth Goodson <Garth.Goodson@netapp.com>
10 *
11 * Permission is granted to use, copy, create derivative works, and
12 * redistribute this software and such derivative works for any purpose,
13 * so long as the name of the University of Michigan is not used in
14 * any advertising or publicity pertaining to the use or distribution
15 * of this software without specific, written prior authorization. If
16 * the above copyright notice or any other identification of the
17 * University of Michigan is included in any copy of any portion of
18 * this software, then the disclaimer below must also be included.
19 *
20 * This software is provided as is, without representation or warranty
21 * of any kind either express or implied, including without limitation
22 * the implied warranties of merchantability, fitness for a particular
23 * purpose, or noninfringement. The Regents of the University of
24 * Michigan shall not be liable for any damages, including special,
25 * indirect, incidental, or consequential damages, with respect to any
26 * claim arising out of or in connection with the use of the software,
27 * even if it has been or is hereafter advised of the possibility of
28 * such damages.
29 */
30
31#include <linux/nfs_fs.h>
32#include <linux/vmalloc.h>
Andy Adamson98fc6852012-04-27 17:53:45 -040033#include <linux/module.h>
Andy Adamson16b374c2010-10-20 00:18:04 -040034
Tom Haynesb5968722014-05-12 14:35:52 -070035#include "../internal.h"
36#include "../nfs4session.h"
37#include "filelayout.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040038
39#define NFSDBG_FACILITY NFSDBG_PNFS_LD
40
Andy Adamson98fc6852012-04-27 17:53:45 -040041static unsigned int dataserver_timeo = NFS4_DEF_DS_TIMEO;
42static unsigned int dataserver_retrans = NFS4_DEF_DS_RETRANS;
43
Andy Adamson16b374c2010-10-20 00:18:04 -040044/*
Andy Adamsond83217c2011-03-01 01:34:17 +000045 * Create an rpc connection to the nfs4_pnfs_ds data server
Weston Andros Adamson35dbbc92011-06-01 16:32:21 -040046 * Currently only supports IPv4 and IPv6 addresses
Andy Adamsond83217c2011-03-01 01:34:17 +000047 */
48static int
49nfs4_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds)
50{
Weston Andros Adamson7e574f02011-05-31 18:48:58 -040051 struct nfs_client *clp = ERR_PTR(-EIO);
Weston Andros Adamson14f9a602011-05-31 18:48:57 -040052 struct nfs4_pnfs_ds_addr *da;
Andy Adamsond83217c2011-03-01 01:34:17 +000053 int status = 0;
54
Weston Andros Adamson14f9a602011-05-31 18:48:57 -040055 dprintk("--> %s DS %s au_flavor %d\n", __func__, ds->ds_remotestr,
Andy Adamsond83217c2011-03-01 01:34:17 +000056 mds_srv->nfs_client->cl_rpcclient->cl_auth->au_flavor);
57
Weston Andros Adamson7e574f02011-05-31 18:48:58 -040058 list_for_each_entry(da, &ds->ds_addrs, da_node) {
59 dprintk("%s: DS %s: trying address %s\n",
60 __func__, ds->ds_remotestr, da->da_remotestr);
Weston Andros Adamson14f9a602011-05-31 18:48:57 -040061
Weston Andros Adamson7e574f02011-05-31 18:48:58 -040062 clp = nfs4_set_ds_client(mds_srv->nfs_client,
Andy Adamson98fc6852012-04-27 17:53:45 -040063 (struct sockaddr *)&da->da_addr,
64 da->da_addrlen, IPPROTO_TCP,
65 dataserver_timeo, dataserver_retrans);
Weston Andros Adamson7e574f02011-05-31 18:48:58 -040066 if (!IS_ERR(clp))
67 break;
68 }
69
Andy Adamsond83217c2011-03-01 01:34:17 +000070 if (IS_ERR(clp)) {
71 status = PTR_ERR(clp);
72 goto out;
73 }
74
Trond Myklebust7b38c362012-05-23 13:23:31 -040075 status = nfs4_init_ds_session(clp, mds_srv->nfs_client->cl_lease_time);
Andy Adamsond83217c2011-03-01 01:34:17 +000076 if (status)
77 goto out_put;
78
Trond Myklebustacd65e52013-09-26 14:32:56 -040079 smp_wmb();
Andy Adamsond83217c2011-03-01 01:34:17 +000080 ds->ds_clp = clp;
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -040081 dprintk("%s [new] addr: %s\n", __func__, ds->ds_remotestr);
Andy Adamsond83217c2011-03-01 01:34:17 +000082out:
83 return status;
84out_put:
85 nfs_put_client(clp);
86 goto out;
87}
88
Benny Halevy1775bc32011-05-20 13:47:33 +020089void
Andy Adamson16b374c2010-10-20 00:18:04 -040090nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr)
91{
92 struct nfs4_pnfs_ds *ds;
93 int i;
94
Benny Halevya1eaecb2011-05-19 22:14:47 -040095 nfs4_print_deviceid(&dsaddr->id_node.deviceid);
Andy Adamson16b374c2010-10-20 00:18:04 -040096
97 for (i = 0; i < dsaddr->ds_num; i++) {
98 ds = dsaddr->ds_list[i];
Peng Tao875ae062014-05-29 21:06:57 +080099 if (ds != NULL)
100 nfs4_pnfs_ds_put(ds);
Andy Adamson16b374c2010-10-20 00:18:04 -0400101 }
102 kfree(dsaddr->stripe_indices);
103 kfree(dsaddr);
104}
105
Andy Adamson16b374c2010-10-20 00:18:04 -0400106/* Decode opaque device data and return the result */
Christoph Hellwig661373b2014-09-02 21:27:57 -0700107struct nfs4_file_layout_dsaddr *
108nfs4_fl_alloc_deviceid_node(struct nfs_server *server, struct pnfs_device *pdev,
109 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400110{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400111 int i;
Andy Adamson16b374c2010-10-20 00:18:04 -0400112 u32 cnt, num;
113 u8 *indexp;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400114 __be32 *p;
115 u8 *stripe_indices;
116 u8 max_stripe_index;
117 struct nfs4_file_layout_dsaddr *dsaddr = NULL;
118 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400119 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400120 struct page *scratch;
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400121 struct list_head dsaddrs;
122 struct nfs4_pnfs_ds_addr *da;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400123
124 /* set up xdr stream */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400125 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400126 if (!scratch)
127 goto out_err;
128
Benny Halevyf7da7a12011-05-19 14:16:47 -0400129 xdr_init_decode_pages(&stream, &buf, pdev->pages, pdev->pglen);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400130 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
Andy Adamson16b374c2010-10-20 00:18:04 -0400131
132 /* Get the stripe count (number of stripe index) */
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400133 p = xdr_inline_decode(&stream, 4);
134 if (unlikely(!p))
135 goto out_err_free_scratch;
136
137 cnt = be32_to_cpup(p);
Andy Adamson16b374c2010-10-20 00:18:04 -0400138 dprintk("%s stripe count %d\n", __func__, cnt);
139 if (cnt > NFS4_PNFS_MAX_STRIPE_CNT) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500140 printk(KERN_WARNING "NFS: %s: stripe count %d greater than "
Andy Adamson16b374c2010-10-20 00:18:04 -0400141 "supported maximum %d\n", __func__,
142 cnt, NFS4_PNFS_MAX_STRIPE_CNT);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400143 goto out_err_free_scratch;
144 }
145
146 /* read stripe indices */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400147 stripe_indices = kcalloc(cnt, sizeof(u8), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400148 if (!stripe_indices)
149 goto out_err_free_scratch;
150
151 p = xdr_inline_decode(&stream, cnt << 2);
152 if (unlikely(!p))
153 goto out_err_free_stripe_indices;
154
155 indexp = &stripe_indices[0];
156 max_stripe_index = 0;
157 for (i = 0; i < cnt; i++) {
158 *indexp = be32_to_cpup(p++);
159 max_stripe_index = max(max_stripe_index, *indexp);
160 indexp++;
Andy Adamson16b374c2010-10-20 00:18:04 -0400161 }
162
163 /* Check the multipath list count */
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400164 p = xdr_inline_decode(&stream, 4);
165 if (unlikely(!p))
166 goto out_err_free_stripe_indices;
167
168 num = be32_to_cpup(p);
Andy Adamson16b374c2010-10-20 00:18:04 -0400169 dprintk("%s ds_num %u\n", __func__, num);
170 if (num > NFS4_PNFS_MAX_MULTI_CNT) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500171 printk(KERN_WARNING "NFS: %s: multipath count %d greater than "
Andy Adamson16b374c2010-10-20 00:18:04 -0400172 "supported maximum %d\n", __func__,
173 num, NFS4_PNFS_MAX_MULTI_CNT);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400174 goto out_err_free_stripe_indices;
Andy Adamson16b374c2010-10-20 00:18:04 -0400175 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400176
177 /* validate stripe indices are all < num */
178 if (max_stripe_index >= num) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500179 printk(KERN_WARNING "NFS: %s: stripe index %u >= num ds %u\n",
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400180 __func__, max_stripe_index, num);
181 goto out_err_free_stripe_indices;
182 }
183
Andy Adamson16b374c2010-10-20 00:18:04 -0400184 dsaddr = kzalloc(sizeof(*dsaddr) +
185 (sizeof(struct nfs4_pnfs_ds *) * (num - 1)),
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400186 gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400187 if (!dsaddr)
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400188 goto out_err_free_stripe_indices;
Andy Adamson16b374c2010-10-20 00:18:04 -0400189
190 dsaddr->stripe_count = cnt;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400191 dsaddr->stripe_indices = stripe_indices;
192 stripe_indices = NULL;
Andy Adamson16b374c2010-10-20 00:18:04 -0400193 dsaddr->ds_num = num;
Christoph Hellwig661373b2014-09-02 21:27:57 -0700194 nfs4_init_deviceid_node(&dsaddr->id_node, server, &pdev->dev_id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400195
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400196 INIT_LIST_HEAD(&dsaddrs);
197
Andy Adamson16b374c2010-10-20 00:18:04 -0400198 for (i = 0; i < dsaddr->ds_num; i++) {
199 int j;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400200 u32 mp_count;
Andy Adamson16b374c2010-10-20 00:18:04 -0400201
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400202 p = xdr_inline_decode(&stream, 4);
203 if (unlikely(!p))
204 goto out_err_free_deviceid;
205
206 mp_count = be32_to_cpup(p); /* multipath count */
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400207 for (j = 0; j < mp_count; j++) {
Peng Tao6b7f3cf2014-05-29 21:06:59 +0800208 da = nfs4_decode_mp_ds_addr(server->nfs_client->cl_net,
209 &stream, gfp_flags);
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400210 if (da)
211 list_add_tail(&da->da_node, &dsaddrs);
212 }
213 if (list_empty(&dsaddrs)) {
214 dprintk("%s: no suitable DS addresses found\n",
215 __func__);
216 goto out_err_free_deviceid;
217 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400218
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400219 dsaddr->ds_list[i] = nfs4_pnfs_ds_add(&dsaddrs, gfp_flags);
220 if (!dsaddr->ds_list[i])
221 goto out_err_drain_dsaddrs;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400222
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400223 /* If DS was already in cache, free ds addrs */
224 while (!list_empty(&dsaddrs)) {
225 da = list_first_entry(&dsaddrs,
226 struct nfs4_pnfs_ds_addr,
227 da_node);
228 list_del_init(&da->da_node);
229 kfree(da->da_remotestr);
230 kfree(da);
Andy Adamson16b374c2010-10-20 00:18:04 -0400231 }
232 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400233
234 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400235 return dsaddr;
236
Weston Andros Adamson14f9a602011-05-31 18:48:57 -0400237out_err_drain_dsaddrs:
238 while (!list_empty(&dsaddrs)) {
239 da = list_first_entry(&dsaddrs, struct nfs4_pnfs_ds_addr,
240 da_node);
241 list_del_init(&da->da_node);
242 kfree(da->da_remotestr);
243 kfree(da);
244 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400245out_err_free_deviceid:
Andy Adamson16b374c2010-10-20 00:18:04 -0400246 nfs4_fl_free_deviceid(dsaddr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400247 /* stripe_indicies was part of dsaddr */
248 goto out_err_free_scratch;
249out_err_free_stripe_indices:
250 kfree(stripe_indices);
251out_err_free_scratch:
252 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400253out_err:
254 dprintk("%s ERROR: returning NULL\n", __func__);
255 return NULL;
256}
257
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000258void
259nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr)
Andy Adamson16b374c2010-10-20 00:18:04 -0400260{
Benny Halevy1775bc32011-05-20 13:47:33 +0200261 nfs4_put_deviceid_node(&dsaddr->id_node);
Andy Adamson16b374c2010-10-20 00:18:04 -0400262}
Fred Isamancfe7f412011-03-01 01:34:18 +0000263
264/*
265 * Want res = (offset - layout->pattern_offset)/ layout->stripe_unit
266 * Then: ((res + fsi) % dsaddr->stripe_count)
267 */
268u32
269nfs4_fl_calc_j_index(struct pnfs_layout_segment *lseg, loff_t offset)
270{
271 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
272 u64 tmp;
273
274 tmp = offset - flseg->pattern_offset;
275 do_div(tmp, flseg->stripe_unit);
276 tmp += flseg->first_stripe_index;
277 return do_div(tmp, flseg->dsaddr->stripe_count);
278}
279
280u32
281nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j)
282{
283 return FILELAYOUT_LSEG(lseg)->dsaddr->stripe_indices[j];
284}
285
286struct nfs_fh *
287nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j)
288{
289 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
290 u32 i;
291
292 if (flseg->stripe_type == STRIPE_SPARSE) {
293 if (flseg->num_fh == 1)
294 i = 0;
295 else if (flseg->num_fh == 0)
296 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
297 return NULL;
298 else
299 i = nfs4_fl_calc_ds_index(lseg, j);
300 } else
301 i = j;
302 return flseg->fh_array[i];
303}
304
Andy Adamsonc23266d2013-05-08 16:21:18 -0400305static void nfs4_wait_ds_connect(struct nfs4_pnfs_ds *ds)
306{
307 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +1000308 wait_on_bit_action(&ds->ds_state, NFS4DS_CONNECTING,
309 nfs_wait_bit_killable, TASK_KILLABLE);
Andy Adamsonc23266d2013-05-08 16:21:18 -0400310}
311
312static void nfs4_clear_ds_conn_bit(struct nfs4_pnfs_ds *ds)
313{
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100314 smp_mb__before_atomic();
Andy Adamsonc23266d2013-05-08 16:21:18 -0400315 clear_bit(NFS4DS_CONNECTING, &ds->ds_state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100316 smp_mb__after_atomic();
Andy Adamsonc23266d2013-05-08 16:21:18 -0400317 wake_up_bit(&ds->ds_state, NFS4DS_CONNECTING);
318}
319
320
Fred Isamancfe7f412011-03-01 01:34:18 +0000321struct nfs4_pnfs_ds *
322nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg, u32 ds_idx)
323{
324 struct nfs4_file_layout_dsaddr *dsaddr = FILELAYOUT_LSEG(lseg)->dsaddr;
325 struct nfs4_pnfs_ds *ds = dsaddr->ds_list[ds_idx];
Andy Adamson554d4582012-04-27 17:53:42 -0400326 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Trond Myklebust52b26a32013-09-26 14:08:36 -0400327 struct nfs4_pnfs_ds *ret = ds;
Fred Isamancfe7f412011-03-01 01:34:18 +0000328
329 if (ds == NULL) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500330 printk(KERN_ERR "NFS: %s: No data server for offset index %d\n",
Fred Isamancfe7f412011-03-01 01:34:18 +0000331 __func__, ds_idx);
Tom Haynesf54bcf22014-12-11 15:34:59 -0500332 pnfs_generic_mark_devid_invalid(devid);
Trond Myklebust52b26a32013-09-26 14:08:36 -0400333 goto out;
Fred Isamancfe7f412011-03-01 01:34:18 +0000334 }
Trond Myklebustacd65e52013-09-26 14:32:56 -0400335 smp_rmb();
Andy Adamsonc23266d2013-05-08 16:21:18 -0400336 if (ds->ds_clp)
Trond Myklebust52b26a32013-09-26 14:08:36 -0400337 goto out_test_devid;
Fred Isamancfe7f412011-03-01 01:34:18 +0000338
Andy Adamsonc23266d2013-05-08 16:21:18 -0400339 if (test_and_set_bit(NFS4DS_CONNECTING, &ds->ds_state) == 0) {
Andy Adamson568e8c42011-03-01 01:34:22 +0000340 struct nfs_server *s = NFS_SERVER(lseg->pls_layout->plh_inode);
Fred Isamancfe7f412011-03-01 01:34:18 +0000341 int err;
342
Andy Adamson568e8c42011-03-01 01:34:22 +0000343 err = nfs4_ds_connect(s, ds);
Trond Myklebust52b26a32013-09-26 14:08:36 -0400344 if (err)
Trond Myklebust1dfed272012-09-18 19:51:12 -0400345 nfs4_mark_deviceid_unavailable(devid);
Andy Adamsonc23266d2013-05-08 16:21:18 -0400346 nfs4_clear_ds_conn_bit(ds);
347 } else {
348 /* Either ds is connected, or ds is NULL */
349 nfs4_wait_ds_connect(ds);
Fred Isamancfe7f412011-03-01 01:34:18 +0000350 }
Trond Myklebust52b26a32013-09-26 14:08:36 -0400351out_test_devid:
352 if (filelayout_test_devid_unavailable(devid))
353 ret = NULL;
354out:
355 return ret;
Fred Isamancfe7f412011-03-01 01:34:18 +0000356}
Andy Adamson98fc6852012-04-27 17:53:45 -0400357
358module_param(dataserver_retrans, uint, 0644);
359MODULE_PARM_DESC(dataserver_retrans, "The number of times the NFSv4.1 client "
360 "retries a request before it attempts further "
361 " recovery action.");
362module_param(dataserver_timeo, uint, 0644);
363MODULE_PARM_DESC(dataserver_timeo, "The time (in tenths of a second) the "
364 "NFSv4.1 client waits for a response from a "
365 " data server before it retries an NFS request.");