blob: 546f9d01710b5b66706331968edc557306ed848e [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS volume management
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells08e0e7c2007-04-26 15:55:03 -07003 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/fs.h>
17#include <linux/pagemap.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "internal.h"
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021static const char *afs_voltypes[] = { "R/W", "R/O", "BAK" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * lookup a volume by name
25 * - this can be one of the following:
26 * "%[cell:]volume[.]" R/W volume
27 * "#[cell:]volume[.]" R/O or R/W volume (rwparent=0),
28 * or R/W (rwparent=1) volume
29 * "%[cell:]volume.readonly" R/O volume
30 * "#[cell:]volume.readonly" R/O volume
31 * "%[cell:]volume.backup" Backup volume
32 * "#[cell:]volume.backup" Backup volume
33 *
34 * The cell name is optional, and defaults to the current cell.
35 *
36 * See "The Rules of Mount Point Traversal" in Chapter 5 of the AFS SysAdmin
37 * Guide
38 * - Rule 1: Explicit type suffix forces access of that type or nothing
39 * (no suffix, then use Rule 2 & 3)
40 * - Rule 2: If parent volume is R/O, then mount R/O volume by preference, R/W
41 * if not available
42 * - Rule 3: If parent volume is R/W, then only mount R/W volume unless
43 * explicitly told otherwise
44 */
David Howells00d3b7a2007-04-26 15:57:07 -070045struct afs_volume *afs_volume_lookup(struct afs_mount_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 struct afs_vlocation *vlocation = NULL;
48 struct afs_volume *volume = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -070049 struct afs_server *server = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 char srvtmask;
David Howells00d3b7a2007-04-26 15:57:07 -070051 int ret, loop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Howells00d3b7a2007-04-26 15:57:07 -070053 _enter("{%*.*s,%d}",
54 params->volnamesz, params->volnamesz, params->volname, params->rwpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 /* lookup the volume location record */
David Howells00d3b7a2007-04-26 15:57:07 -070057 vlocation = afs_vlocation_lookup(params->cell, params->key,
58 params->volname, params->volnamesz);
David Howells08e0e7c2007-04-26 15:55:03 -070059 if (IS_ERR(vlocation)) {
60 ret = PTR_ERR(vlocation);
61 vlocation = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -070063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* make the final decision on the type we want */
66 ret = -ENOMEDIUM;
David Howells00d3b7a2007-04-26 15:57:07 -070067 if (params->force && !(vlocation->vldb.vidmask & (1 << params->type)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 goto error;
69
70 srvtmask = 0;
71 for (loop = 0; loop < vlocation->vldb.nservers; loop++)
72 srvtmask |= vlocation->vldb.srvtmask[loop];
73
David Howells00d3b7a2007-04-26 15:57:07 -070074 if (params->force) {
75 if (!(srvtmask & (1 << params->type)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 goto error;
David Howellsec268152007-04-26 15:49:28 -070077 } else if (srvtmask & AFS_VOL_VTM_RO) {
David Howells00d3b7a2007-04-26 15:57:07 -070078 params->type = AFSVL_ROVOL;
David Howellsec268152007-04-26 15:49:28 -070079 } else if (srvtmask & AFS_VOL_VTM_RW) {
David Howells00d3b7a2007-04-26 15:57:07 -070080 params->type = AFSVL_RWVOL;
David Howellsec268152007-04-26 15:49:28 -070081 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 goto error;
83 }
84
David Howells00d3b7a2007-04-26 15:57:07 -070085 down_write(&params->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* is the volume already active? */
David Howells00d3b7a2007-04-26 15:57:07 -070088 if (vlocation->vols[params->type]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* yes - re-use it */
David Howells00d3b7a2007-04-26 15:57:07 -070090 volume = vlocation->vols[params->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 afs_get_volume(volume);
92 goto success;
93 }
94
95 /* create a new volume record */
96 _debug("creating new volume record");
97
98 ret = -ENOMEM;
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -070099 volume = kzalloc(sizeof(struct afs_volume), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (!volume)
101 goto error_up;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 atomic_set(&volume->usage, 1);
David Howells00d3b7a2007-04-26 15:57:07 -0700104 volume->type = params->type;
105 volume->type_force = params->force;
106 volume->cell = params->cell;
107 volume->vid = vlocation->vldb.vid[params->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
David Howells91b467e2017-01-05 10:38:35 +0000109 volume->bdi.ra_pages = VM_MAX_READAHEAD*1024/PAGE_SIZE;
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100110 ret = bdi_setup_and_register(&volume->bdi, "afs");
Jens Axboee1da0222010-04-22 11:58:18 +0200111 if (ret)
112 goto error_bdi;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 init_rwsem(&volume->server_sem);
115
116 /* look up all the applicable server records */
117 for (loop = 0; loop < 8; loop++) {
118 if (vlocation->vldb.srvtmask[loop] & (1 << volume->type)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700119 server = afs_lookup_server(
120 volume->cell, &vlocation->vldb.servers[loop]);
121 if (IS_ERR(server)) {
122 ret = PTR_ERR(server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 goto error_discard;
David Howells08e0e7c2007-04-26 15:55:03 -0700124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
David Howells08e0e7c2007-04-26 15:55:03 -0700126 volume->servers[volume->nservers] = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 volume->nservers++;
128 }
129 }
130
131 /* attach the cache and volume location */
David Howells9b3f26c2009-04-03 16:42:41 +0100132#ifdef CONFIG_AFS_FSCACHE
133 volume->cache = fscache_acquire_cookie(vlocation->cache,
134 &afs_volume_cache_index_def,
David Howells94d30ae2013-09-21 00:09:31 +0100135 volume, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 afs_get_vlocation(vlocation);
138 volume->vlocation = vlocation;
139
David Howells00d3b7a2007-04-26 15:57:07 -0700140 vlocation->vols[volume->type] = volume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
David Howellsec268152007-04-26 15:49:28 -0700142success:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 _debug("kAFS selected %s volume %08x",
144 afs_voltypes[volume->type], volume->vid);
David Howells00d3b7a2007-04-26 15:57:07 -0700145 up_write(&params->cell->vl_sem);
David Howells08e0e7c2007-04-26 15:55:03 -0700146 afs_put_vlocation(vlocation);
David Howells08e0e7c2007-04-26 15:55:03 -0700147 _leave(" = %p", volume);
148 return volume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* clean up */
David Howellsec268152007-04-26 15:49:28 -0700151error_up:
David Howells00d3b7a2007-04-26 15:57:07 -0700152 up_write(&params->cell->vl_sem);
David Howellsec268152007-04-26 15:49:28 -0700153error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 afs_put_vlocation(vlocation);
David Howells08e0e7c2007-04-26 15:55:03 -0700155 _leave(" = %d", ret);
156 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
David Howellsec268152007-04-26 15:49:28 -0700158error_discard:
Jens Axboee1da0222010-04-22 11:58:18 +0200159 bdi_destroy(&volume->bdi);
160error_bdi:
David Howells00d3b7a2007-04-26 15:57:07 -0700161 up_write(&params->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 for (loop = volume->nservers - 1; loop >= 0; loop--)
164 afs_put_server(volume->servers[loop]);
165
166 kfree(volume);
167 goto error;
David Howellsec268152007-04-26 15:49:28 -0700168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * destroy a volume record
172 */
173void afs_put_volume(struct afs_volume *volume)
174{
175 struct afs_vlocation *vlocation;
176 int loop;
177
178 if (!volume)
179 return;
180
181 _enter("%p", volume);
182
David Howells08e0e7c2007-04-26 15:55:03 -0700183 ASSERTCMP(atomic_read(&volume->usage), >, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
David Howells08e0e7c2007-04-26 15:55:03 -0700185 vlocation = volume->vlocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* to prevent a race, the decrement and the dequeue must be effectively
188 * atomic */
189 down_write(&vlocation->cell->vl_sem);
190
191 if (likely(!atomic_dec_and_test(&volume->usage))) {
192 up_write(&vlocation->cell->vl_sem);
193 _leave("");
194 return;
195 }
196
197 vlocation->vols[volume->type] = NULL;
198
199 up_write(&vlocation->cell->vl_sem);
200
201 /* finish cleaning up the volume */
David Howells9b3f26c2009-04-03 16:42:41 +0100202#ifdef CONFIG_AFS_FSCACHE
203 fscache_relinquish_cookie(volume->cache, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif
205 afs_put_vlocation(vlocation);
206
207 for (loop = volume->nservers - 1; loop >= 0; loop--)
208 afs_put_server(volume->servers[loop]);
209
Jens Axboee1da0222010-04-22 11:58:18 +0200210 bdi_destroy(&volume->bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 kfree(volume);
212
213 _leave(" [destroyed]");
David Howellsec268152007-04-26 15:49:28 -0700214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * pick a server to use to try accessing this volume
218 * - returns with an elevated usage count on the server chosen
219 */
David Howells08e0e7c2007-04-26 15:55:03 -0700220struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
David Howells08e0e7c2007-04-26 15:55:03 -0700222 struct afs_volume *volume = vnode->volume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct afs_server *server;
224 int ret, state, loop;
225
226 _enter("%s", volume->vlocation->vldb.name);
227
David Howells08e0e7c2007-04-26 15:55:03 -0700228 /* stick with the server we're already using if we can */
229 if (vnode->server && vnode->server->fs_state == 0) {
230 afs_get_server(vnode->server);
231 _leave(" = %p [current]", vnode->server);
232 return vnode->server;
233 }
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 down_read(&volume->server_sem);
236
237 /* handle the no-server case */
238 if (volume->nservers == 0) {
239 ret = volume->rjservers ? -ENOMEDIUM : -ESTALE;
240 up_read(&volume->server_sem);
241 _leave(" = %d [no servers]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700242 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 /* basically, just search the list for the first live server and use
246 * that */
247 ret = 0;
248 for (loop = 0; loop < volume->nservers; loop++) {
249 server = volume->servers[loop];
250 state = server->fs_state;
251
David Howells08e0e7c2007-04-26 15:55:03 -0700252 _debug("consider %d [%d]", loop, state);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 switch (state) {
255 /* found an apparently healthy server */
256 case 0:
257 afs_get_server(server);
258 up_read(&volume->server_sem);
David Howells08e0e7c2007-04-26 15:55:03 -0700259 _leave(" = %p (picked %08x)",
260 server, ntohl(server->addr.s_addr));
261 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 case -ENETUNREACH:
264 if (ret == 0)
265 ret = state;
266 break;
267
268 case -EHOSTUNREACH:
269 if (ret == 0 ||
270 ret == -ENETUNREACH)
271 ret = state;
272 break;
273
274 case -ECONNREFUSED:
275 if (ret == 0 ||
276 ret == -ENETUNREACH ||
277 ret == -EHOSTUNREACH)
278 ret = state;
279 break;
280
281 default:
282 case -EREMOTEIO:
283 if (ret == 0 ||
284 ret == -ENETUNREACH ||
285 ret == -EHOSTUNREACH ||
286 ret == -ECONNREFUSED)
287 ret = state;
288 break;
289 }
290 }
291
292 /* no available servers
293 * - TODO: handle the no active servers case better
294 */
295 up_read(&volume->server_sem);
296 _leave(" = %d", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700297 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
301 * release a server after use
302 * - releases the ref on the server struct that was acquired by picking
303 * - records result of using a particular server to access a volume
304 * - return 0 to try again, 1 if okay or to issue error
David Howells260a9802007-04-26 15:59:35 -0700305 * - the caller must release the server struct if result was 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
David Howells08e0e7c2007-04-26 15:55:03 -0700307int afs_volume_release_fileserver(struct afs_vnode *vnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct afs_server *server,
309 int result)
310{
David Howells08e0e7c2007-04-26 15:55:03 -0700311 struct afs_volume *volume = vnode->volume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 unsigned loop;
313
314 _enter("%s,%08x,%d",
315 volume->vlocation->vldb.name, ntohl(server->addr.s_addr),
316 result);
317
318 switch (result) {
319 /* success */
320 case 0:
321 server->fs_act_jif = jiffies;
David Howells08e0e7c2007-04-26 15:55:03 -0700322 server->fs_state = 0;
David Howells260a9802007-04-26 15:59:35 -0700323 _leave("");
324 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* the fileserver denied all knowledge of the volume */
327 case -ENOMEDIUM:
328 server->fs_act_jif = jiffies;
329 down_write(&volume->server_sem);
330
David Howells08e0e7c2007-04-26 15:55:03 -0700331 /* firstly, find where the server is in the active list (if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * is) */
333 for (loop = 0; loop < volume->nservers; loop++)
334 if (volume->servers[loop] == server)
335 goto present;
336
337 /* no longer there - may have been discarded by another op */
338 goto try_next_server_upw;
339
340 present:
341 volume->nservers--;
342 memmove(&volume->servers[loop],
343 &volume->servers[loop + 1],
344 sizeof(volume->servers[loop]) *
345 (volume->nservers - loop));
346 volume->servers[volume->nservers] = NULL;
347 afs_put_server(server);
348 volume->rjservers++;
349
350 if (volume->nservers > 0)
351 /* another server might acknowledge its existence */
352 goto try_next_server_upw;
353
354 /* handle the case where all the fileservers have rejected the
355 * volume
356 * - TODO: try asking the fileservers for volume information
357 * - TODO: contact the VL server again to see if the volume is
358 * no longer registered
359 */
360 up_write(&volume->server_sem);
361 afs_put_server(server);
362 _leave(" [completely rejected]");
363 return 1;
364
365 /* problem reaching the server */
366 case -ENETUNREACH:
367 case -EHOSTUNREACH:
368 case -ECONNREFUSED:
David Howells08e0e7c2007-04-26 15:55:03 -0700369 case -ETIME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 case -ETIMEDOUT:
371 case -EREMOTEIO:
372 /* mark the server as dead
373 * TODO: vary dead timeout depending on error
374 */
375 spin_lock(&server->fs_lock);
376 if (!server->fs_state) {
377 server->fs_dead_jif = jiffies + HZ * 10;
378 server->fs_state = result;
379 printk("kAFS: SERVER DEAD state=%d\n", result);
380 }
381 spin_unlock(&server->fs_lock);
382 goto try_next_server;
383
384 /* miscellaneous error */
385 default:
386 server->fs_act_jif = jiffies;
387 case -ENOMEM:
388 case -ENONET:
David Howells260a9802007-04-26 15:59:35 -0700389 /* tell the caller to accept the result */
390 afs_put_server(server);
391 _leave(" [local failure]");
392 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* tell the caller to loop around and try the next server */
David Howellsec268152007-04-26 15:49:28 -0700396try_next_server_upw:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 up_write(&volume->server_sem);
David Howellsec268152007-04-26 15:49:28 -0700398try_next_server:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 afs_put_server(server);
400 _leave(" [try next server]");
401 return 0;
David Howellsec268152007-04-26 15:49:28 -0700402}