Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 1 | /* |
| 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 Adamson | 98fc685 | 2012-04-27 17:53:45 -0400 | [diff] [blame] | 33 | #include <linux/module.h> |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 34 | |
Tom Haynes | b596872 | 2014-05-12 14:35:52 -0700 | [diff] [blame] | 35 | #include "../internal.h" |
| 36 | #include "../nfs4session.h" |
| 37 | #include "filelayout.h" |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 38 | |
| 39 | #define NFSDBG_FACILITY NFSDBG_PNFS_LD |
| 40 | |
Andy Adamson | 98fc685 | 2012-04-27 17:53:45 -0400 | [diff] [blame] | 41 | static unsigned int dataserver_timeo = NFS4_DEF_DS_TIMEO; |
| 42 | static unsigned int dataserver_retrans = NFS4_DEF_DS_RETRANS; |
| 43 | |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 44 | /* |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 45 | * Create an rpc connection to the nfs4_pnfs_ds data server |
Weston Andros Adamson | 35dbbc9 | 2011-06-01 16:32:21 -0400 | [diff] [blame] | 46 | * Currently only supports IPv4 and IPv6 addresses |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 47 | */ |
| 48 | static int |
| 49 | nfs4_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds) |
| 50 | { |
Weston Andros Adamson | 7e574f0 | 2011-05-31 18:48:58 -0400 | [diff] [blame] | 51 | struct nfs_client *clp = ERR_PTR(-EIO); |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 52 | struct nfs4_pnfs_ds_addr *da; |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 53 | int status = 0; |
| 54 | |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 55 | dprintk("--> %s DS %s au_flavor %d\n", __func__, ds->ds_remotestr, |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 56 | mds_srv->nfs_client->cl_rpcclient->cl_auth->au_flavor); |
| 57 | |
Weston Andros Adamson | 7e574f0 | 2011-05-31 18:48:58 -0400 | [diff] [blame] | 58 | 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 Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 61 | |
Weston Andros Adamson | 7e574f0 | 2011-05-31 18:48:58 -0400 | [diff] [blame] | 62 | clp = nfs4_set_ds_client(mds_srv->nfs_client, |
Andy Adamson | 98fc685 | 2012-04-27 17:53:45 -0400 | [diff] [blame] | 63 | (struct sockaddr *)&da->da_addr, |
| 64 | da->da_addrlen, IPPROTO_TCP, |
| 65 | dataserver_timeo, dataserver_retrans); |
Weston Andros Adamson | 7e574f0 | 2011-05-31 18:48:58 -0400 | [diff] [blame] | 66 | if (!IS_ERR(clp)) |
| 67 | break; |
| 68 | } |
| 69 | |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 70 | if (IS_ERR(clp)) { |
| 71 | status = PTR_ERR(clp); |
| 72 | goto out; |
| 73 | } |
| 74 | |
Trond Myklebust | 7b38c36 | 2012-05-23 13:23:31 -0400 | [diff] [blame] | 75 | status = nfs4_init_ds_session(clp, mds_srv->nfs_client->cl_lease_time); |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 76 | if (status) |
| 77 | goto out_put; |
| 78 | |
Trond Myklebust | acd65e5 | 2013-09-26 14:32:56 -0400 | [diff] [blame] | 79 | smp_wmb(); |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 80 | ds->ds_clp = clp; |
Weston Andros Adamson | c9895cb | 2011-05-31 18:48:56 -0400 | [diff] [blame] | 81 | dprintk("%s [new] addr: %s\n", __func__, ds->ds_remotestr); |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 82 | out: |
| 83 | return status; |
| 84 | out_put: |
| 85 | nfs_put_client(clp); |
| 86 | goto out; |
| 87 | } |
| 88 | |
Benny Halevy | 1775bc3 | 2011-05-20 13:47:33 +0200 | [diff] [blame] | 89 | void |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 90 | nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr) |
| 91 | { |
| 92 | struct nfs4_pnfs_ds *ds; |
| 93 | int i; |
| 94 | |
Benny Halevy | a1eaecb | 2011-05-19 22:14:47 -0400 | [diff] [blame] | 95 | nfs4_print_deviceid(&dsaddr->id_node.deviceid); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 96 | |
| 97 | for (i = 0; i < dsaddr->ds_num; i++) { |
| 98 | ds = dsaddr->ds_list[i]; |
Peng Tao | 875ae06 | 2014-05-29 21:06:57 +0800 | [diff] [blame] | 99 | if (ds != NULL) |
| 100 | nfs4_pnfs_ds_put(ds); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 101 | } |
| 102 | kfree(dsaddr->stripe_indices); |
| 103 | kfree(dsaddr); |
| 104 | } |
| 105 | |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 106 | /* Decode opaque device data and return the result */ |
Christoph Hellwig | 661373b | 2014-09-02 21:27:57 -0700 | [diff] [blame] | 107 | struct nfs4_file_layout_dsaddr * |
| 108 | nfs4_fl_alloc_deviceid_node(struct nfs_server *server, struct pnfs_device *pdev, |
| 109 | gfp_t gfp_flags) |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 110 | { |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 111 | int i; |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 112 | u32 cnt, num; |
| 113 | u8 *indexp; |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 114 | __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 Halevy | f7da7a1 | 2011-05-19 14:16:47 -0400 | [diff] [blame] | 119 | struct xdr_buf buf; |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 120 | struct page *scratch; |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 121 | struct list_head dsaddrs; |
| 122 | struct nfs4_pnfs_ds_addr *da; |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 123 | |
| 124 | /* set up xdr stream */ |
Trond Myklebust | a75b9df | 2011-05-11 18:00:51 -0400 | [diff] [blame] | 125 | scratch = alloc_page(gfp_flags); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 126 | if (!scratch) |
| 127 | goto out_err; |
| 128 | |
Benny Halevy | f7da7a1 | 2011-05-19 14:16:47 -0400 | [diff] [blame] | 129 | xdr_init_decode_pages(&stream, &buf, pdev->pages, pdev->pglen); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 130 | xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 131 | |
| 132 | /* Get the stripe count (number of stripe index) */ |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 133 | p = xdr_inline_decode(&stream, 4); |
| 134 | if (unlikely(!p)) |
| 135 | goto out_err_free_scratch; |
| 136 | |
| 137 | cnt = be32_to_cpup(p); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 138 | dprintk("%s stripe count %d\n", __func__, cnt); |
| 139 | if (cnt > NFS4_PNFS_MAX_STRIPE_CNT) { |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 140 | printk(KERN_WARNING "NFS: %s: stripe count %d greater than " |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 141 | "supported maximum %d\n", __func__, |
| 142 | cnt, NFS4_PNFS_MAX_STRIPE_CNT); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 143 | goto out_err_free_scratch; |
| 144 | } |
| 145 | |
| 146 | /* read stripe indices */ |
Trond Myklebust | a75b9df | 2011-05-11 18:00:51 -0400 | [diff] [blame] | 147 | stripe_indices = kcalloc(cnt, sizeof(u8), gfp_flags); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 148 | 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 Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* Check the multipath list count */ |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 164 | 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 Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 169 | dprintk("%s ds_num %u\n", __func__, num); |
| 170 | if (num > NFS4_PNFS_MAX_MULTI_CNT) { |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 171 | printk(KERN_WARNING "NFS: %s: multipath count %d greater than " |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 172 | "supported maximum %d\n", __func__, |
| 173 | num, NFS4_PNFS_MAX_MULTI_CNT); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 174 | goto out_err_free_stripe_indices; |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 175 | } |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 176 | |
| 177 | /* validate stripe indices are all < num */ |
| 178 | if (max_stripe_index >= num) { |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 179 | printk(KERN_WARNING "NFS: %s: stripe index %u >= num ds %u\n", |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 180 | __func__, max_stripe_index, num); |
| 181 | goto out_err_free_stripe_indices; |
| 182 | } |
| 183 | |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 184 | dsaddr = kzalloc(sizeof(*dsaddr) + |
| 185 | (sizeof(struct nfs4_pnfs_ds *) * (num - 1)), |
Trond Myklebust | a75b9df | 2011-05-11 18:00:51 -0400 | [diff] [blame] | 186 | gfp_flags); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 187 | if (!dsaddr) |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 188 | goto out_err_free_stripe_indices; |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 189 | |
| 190 | dsaddr->stripe_count = cnt; |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 191 | dsaddr->stripe_indices = stripe_indices; |
| 192 | stripe_indices = NULL; |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 193 | dsaddr->ds_num = num; |
Christoph Hellwig | 661373b | 2014-09-02 21:27:57 -0700 | [diff] [blame] | 194 | nfs4_init_deviceid_node(&dsaddr->id_node, server, &pdev->dev_id); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 195 | |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 196 | INIT_LIST_HEAD(&dsaddrs); |
| 197 | |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 198 | for (i = 0; i < dsaddr->ds_num; i++) { |
| 199 | int j; |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 200 | u32 mp_count; |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 201 | |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 202 | 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 Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 207 | for (j = 0; j < mp_count; j++) { |
Peng Tao | 6b7f3cf | 2014-05-29 21:06:59 +0800 | [diff] [blame^] | 208 | da = nfs4_decode_mp_ds_addr(server->nfs_client->cl_net, |
| 209 | &stream, gfp_flags); |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 210 | 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 Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 218 | |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 219 | 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 Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 222 | |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 223 | /* 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 Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 231 | } |
| 232 | } |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 233 | |
| 234 | __free_page(scratch); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 235 | return dsaddr; |
| 236 | |
Weston Andros Adamson | 14f9a60 | 2011-05-31 18:48:57 -0400 | [diff] [blame] | 237 | out_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 Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 245 | out_err_free_deviceid: |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 246 | nfs4_fl_free_deviceid(dsaddr); |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 247 | /* stripe_indicies was part of dsaddr */ |
| 248 | goto out_err_free_scratch; |
| 249 | out_err_free_stripe_indices: |
| 250 | kfree(stripe_indices); |
| 251 | out_err_free_scratch: |
| 252 | __free_page(scratch); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 253 | out_err: |
| 254 | dprintk("%s ERROR: returning NULL\n", __func__); |
| 255 | return NULL; |
| 256 | } |
| 257 | |
Christoph Hellwig | ea8eecd | 2011-03-01 01:34:21 +0000 | [diff] [blame] | 258 | void |
| 259 | nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr) |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 260 | { |
Benny Halevy | 1775bc3 | 2011-05-20 13:47:33 +0200 | [diff] [blame] | 261 | nfs4_put_deviceid_node(&dsaddr->id_node); |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 262 | } |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 263 | |
| 264 | /* |
| 265 | * Want res = (offset - layout->pattern_offset)/ layout->stripe_unit |
| 266 | * Then: ((res + fsi) % dsaddr->stripe_count) |
| 267 | */ |
| 268 | u32 |
| 269 | nfs4_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 | |
| 280 | u32 |
| 281 | nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j) |
| 282 | { |
| 283 | return FILELAYOUT_LSEG(lseg)->dsaddr->stripe_indices[j]; |
| 284 | } |
| 285 | |
| 286 | struct nfs_fh * |
| 287 | nfs4_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 Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 305 | static void nfs4_wait_ds_connect(struct nfs4_pnfs_ds *ds) |
| 306 | { |
| 307 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 308 | wait_on_bit_action(&ds->ds_state, NFS4DS_CONNECTING, |
| 309 | nfs_wait_bit_killable, TASK_KILLABLE); |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | static void nfs4_clear_ds_conn_bit(struct nfs4_pnfs_ds *ds) |
| 313 | { |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 314 | smp_mb__before_atomic(); |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 315 | clear_bit(NFS4DS_CONNECTING, &ds->ds_state); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 316 | smp_mb__after_atomic(); |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 317 | wake_up_bit(&ds->ds_state, NFS4DS_CONNECTING); |
| 318 | } |
| 319 | |
| 320 | |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 321 | struct nfs4_pnfs_ds * |
| 322 | nfs4_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 Adamson | 554d458 | 2012-04-27 17:53:42 -0400 | [diff] [blame] | 326 | struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg); |
Trond Myklebust | 52b26a3 | 2013-09-26 14:08:36 -0400 | [diff] [blame] | 327 | struct nfs4_pnfs_ds *ret = ds; |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 328 | |
| 329 | if (ds == NULL) { |
Weston Andros Adamson | a030889 | 2012-01-26 13:32:23 -0500 | [diff] [blame] | 330 | printk(KERN_ERR "NFS: %s: No data server for offset index %d\n", |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 331 | __func__, ds_idx); |
Tom Haynes | f54bcf2 | 2014-12-11 15:34:59 -0500 | [diff] [blame] | 332 | pnfs_generic_mark_devid_invalid(devid); |
Trond Myklebust | 52b26a3 | 2013-09-26 14:08:36 -0400 | [diff] [blame] | 333 | goto out; |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 334 | } |
Trond Myklebust | acd65e5 | 2013-09-26 14:32:56 -0400 | [diff] [blame] | 335 | smp_rmb(); |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 336 | if (ds->ds_clp) |
Trond Myklebust | 52b26a3 | 2013-09-26 14:08:36 -0400 | [diff] [blame] | 337 | goto out_test_devid; |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 338 | |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 339 | if (test_and_set_bit(NFS4DS_CONNECTING, &ds->ds_state) == 0) { |
Andy Adamson | 568e8c4 | 2011-03-01 01:34:22 +0000 | [diff] [blame] | 340 | struct nfs_server *s = NFS_SERVER(lseg->pls_layout->plh_inode); |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 341 | int err; |
| 342 | |
Andy Adamson | 568e8c4 | 2011-03-01 01:34:22 +0000 | [diff] [blame] | 343 | err = nfs4_ds_connect(s, ds); |
Trond Myklebust | 52b26a3 | 2013-09-26 14:08:36 -0400 | [diff] [blame] | 344 | if (err) |
Trond Myklebust | 1dfed27 | 2012-09-18 19:51:12 -0400 | [diff] [blame] | 345 | nfs4_mark_deviceid_unavailable(devid); |
Andy Adamson | c23266d | 2013-05-08 16:21:18 -0400 | [diff] [blame] | 346 | nfs4_clear_ds_conn_bit(ds); |
| 347 | } else { |
| 348 | /* Either ds is connected, or ds is NULL */ |
| 349 | nfs4_wait_ds_connect(ds); |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 350 | } |
Trond Myklebust | 52b26a3 | 2013-09-26 14:08:36 -0400 | [diff] [blame] | 351 | out_test_devid: |
| 352 | if (filelayout_test_devid_unavailable(devid)) |
| 353 | ret = NULL; |
| 354 | out: |
| 355 | return ret; |
Fred Isaman | cfe7f41 | 2011-03-01 01:34:18 +0000 | [diff] [blame] | 356 | } |
Andy Adamson | 98fc685 | 2012-04-27 17:53:45 -0400 | [diff] [blame] | 357 | |
| 358 | module_param(dataserver_retrans, uint, 0644); |
| 359 | MODULE_PARM_DESC(dataserver_retrans, "The number of times the NFSv4.1 client " |
| 360 | "retries a request before it attempts further " |
| 361 | " recovery action."); |
| 362 | module_param(dataserver_timeo, uint, 0644); |
| 363 | MODULE_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."); |