2007-04-26 15:49:28 -07:00
|
|
|
/* AFS volume management
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
2007-04-26 15:55:03 -07:00
|
|
|
* Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
|
2005-04-16 15:20:36 -07:00
|
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
static const char *afs_voltypes[] = { "R/W", "R/O", "BAK" };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* lookup a volume by name
|
|
|
|
* - this can be one of the following:
|
|
|
|
* "%[cell:]volume[.]" R/W volume
|
|
|
|
* "#[cell:]volume[.]" R/O or R/W volume (rwparent=0),
|
|
|
|
* or R/W (rwparent=1) volume
|
|
|
|
* "%[cell:]volume.readonly" R/O volume
|
|
|
|
* "#[cell:]volume.readonly" R/O volume
|
|
|
|
* "%[cell:]volume.backup" Backup volume
|
|
|
|
* "#[cell:]volume.backup" Backup volume
|
|
|
|
*
|
|
|
|
* The cell name is optional, and defaults to the current cell.
|
|
|
|
*
|
|
|
|
* See "The Rules of Mount Point Traversal" in Chapter 5 of the AFS SysAdmin
|
|
|
|
* Guide
|
|
|
|
* - Rule 1: Explicit type suffix forces access of that type or nothing
|
|
|
|
* (no suffix, then use Rule 2 & 3)
|
|
|
|
* - Rule 2: If parent volume is R/O, then mount R/O volume by preference, R/W
|
|
|
|
* if not available
|
|
|
|
* - Rule 3: If parent volume is R/W, then only mount R/W volume unless
|
|
|
|
* explicitly told otherwise
|
|
|
|
*/
|
2007-04-26 15:57:07 -07:00
|
|
|
struct afs_volume *afs_volume_lookup(struct afs_mount_params *params)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
|
|
|
struct afs_vlocation *vlocation = NULL;
|
|
|
|
struct afs_volume *volume = NULL;
|
2007-04-26 15:55:03 -07:00
|
|
|
struct afs_server *server = NULL;
|
2005-04-16 15:20:36 -07:00
|
|
|
char srvtmask;
|
2007-04-26 15:57:07 -07:00
|
|
|
int ret, loop;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-04-26 15:57:07 -07:00
|
|
|
_enter("{%*.*s,%d}",
|
|
|
|
params->volnamesz, params->volnamesz, params->volname, params->rwpath);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* lookup the volume location record */
|
2017-11-02 15:27:45 +00:00
|
|
|
vlocation = afs_vlocation_lookup(params->net, params->cell, params->key,
|
2007-04-26 15:57:07 -07:00
|
|
|
params->volname, params->volnamesz);
|
2007-04-26 15:55:03 -07:00
|
|
|
if (IS_ERR(vlocation)) {
|
|
|
|
ret = PTR_ERR(vlocation);
|
|
|
|
vlocation = NULL;
|
2005-04-16 15:20:36 -07:00
|
|
|
goto error;
|
2007-04-26 15:55:03 -07:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* make the final decision on the type we want */
|
|
|
|
ret = -ENOMEDIUM;
|
2007-04-26 15:57:07 -07:00
|
|
|
if (params->force && !(vlocation->vldb.vidmask & (1 << params->type)))
|
2005-04-16 15:20:36 -07:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
srvtmask = 0;
|
|
|
|
for (loop = 0; loop < vlocation->vldb.nservers; loop++)
|
|
|
|
srvtmask |= vlocation->vldb.srvtmask[loop];
|
|
|
|
|
2007-04-26 15:57:07 -07:00
|
|
|
if (params->force) {
|
|
|
|
if (!(srvtmask & (1 << params->type)))
|
2005-04-16 15:20:36 -07:00
|
|
|
goto error;
|
2007-04-26 15:49:28 -07:00
|
|
|
} else if (srvtmask & AFS_VOL_VTM_RO) {
|
2007-04-26 15:57:07 -07:00
|
|
|
params->type = AFSVL_ROVOL;
|
2007-04-26 15:49:28 -07:00
|
|
|
} else if (srvtmask & AFS_VOL_VTM_RW) {
|
2007-04-26 15:57:07 -07:00
|
|
|
params->type = AFSVL_RWVOL;
|
2007-04-26 15:49:28 -07:00
|
|
|
} else {
|
2005-04-16 15:20:36 -07:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2007-04-26 15:57:07 -07:00
|
|
|
down_write(¶ms->cell->vl_sem);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* is the volume already active? */
|
2007-04-26 15:57:07 -07:00
|
|
|
if (vlocation->vols[params->type]) {
|
2005-04-16 15:20:36 -07:00
|
|
|
/* yes - re-use it */
|
2007-04-26 15:57:07 -07:00
|
|
|
volume = vlocation->vols[params->type];
|
2005-04-16 15:20:36 -07:00
|
|
|
afs_get_volume(volume);
|
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new volume record */
|
|
|
|
_debug("creating new volume record");
|
|
|
|
|
|
|
|
ret = -ENOMEM;
|
2006-09-27 01:49:37 -07:00
|
|
|
volume = kzalloc(sizeof(struct afs_volume), GFP_KERNEL);
|
2005-04-16 15:20:36 -07:00
|
|
|
if (!volume)
|
|
|
|
goto error_up;
|
|
|
|
|
|
|
|
atomic_set(&volume->usage, 1);
|
2007-04-26 15:57:07 -07:00
|
|
|
volume->type = params->type;
|
|
|
|
volume->type_force = params->force;
|
|
|
|
volume->cell = params->cell;
|
|
|
|
volume->vid = vlocation->vldb.vid[params->type];
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
init_rwsem(&volume->server_sem);
|
|
|
|
|
|
|
|
/* look up all the applicable server records */
|
|
|
|
for (loop = 0; loop < 8; loop++) {
|
|
|
|
if (vlocation->vldb.srvtmask[loop] & (1 << volume->type)) {
|
2007-04-26 15:55:03 -07:00
|
|
|
server = afs_lookup_server(
|
|
|
|
volume->cell, &vlocation->vldb.servers[loop]);
|
|
|
|
if (IS_ERR(server)) {
|
|
|
|
ret = PTR_ERR(server);
|
2005-04-16 15:20:36 -07:00
|
|
|
goto error_discard;
|
2007-04-26 15:55:03 -07:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-04-26 15:55:03 -07:00
|
|
|
volume->servers[volume->nservers] = server;
|
2005-04-16 15:20:36 -07:00
|
|
|
volume->nservers++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* attach the cache and volume location */
|
2009-04-03 16:42:41 +01:00
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
2017-11-02 15:27:47 +00:00
|
|
|
volume->cache = fscache_acquire_cookie(volume->cell->cache,
|
2009-04-03 16:42:41 +01:00
|
|
|
&afs_volume_cache_index_def,
|
FS-Cache: Provide the ability to enable/disable cookies
Provide the ability to enable and disable fscache cookies. A disabled cookie
will reject or ignore further requests to:
Acquire a child cookie
Invalidate and update backing objects
Check the consistency of a backing object
Allocate storage for backing page
Read backing pages
Write to backing pages
but still allows:
Checks/waits on the completion of already in-progress objects
Uncaching of pages
Relinquishment of cookies
Two new operations are provided:
(1) Disable a cookie:
void fscache_disable_cookie(struct fscache_cookie *cookie,
bool invalidate);
If the cookie is not already disabled, this locks the cookie against other
dis/enablement ops, marks the cookie as being disabled, discards or
invalidates any backing objects and waits for cessation of activity on any
associated object.
This is a wrapper around a chunk split out of fscache_relinquish_cookie(),
but it reinitialises the cookie such that it can be reenabled.
All possible failures are handled internally. The caller should consider
calling fscache_uncache_all_inode_pages() afterwards to make sure all page
markings are cleared up.
(2) Enable a cookie:
void fscache_enable_cookie(struct fscache_cookie *cookie,
bool (*can_enable)(void *data),
void *data)
If the cookie is not already enabled, this locks the cookie against other
dis/enablement ops, invokes can_enable() and, if the cookie is not an
index cookie, will begin the procedure of acquiring backing objects.
The optional can_enable() function is passed the data argument and returns
a ruling as to whether or not enablement should actually be permitted to
begin.
All possible failures are handled internally. The cookie will only be
marked as enabled if provisional backing objects are allocated.
A later patch will introduce these to NFS. Cookie enablement during nfs_open()
is then contingent on i_writecount <= 0. can_enable() checks for a race
between open(O_RDONLY) and open(O_WRONLY/O_RDWR). This simplifies NFS's cookie
handling and allows us to get rid of open(O_RDONLY) accidentally introducing
caching to an inode that's open for writing already.
One operation has its API modified:
(3) Acquire a cookie.
struct fscache_cookie *fscache_acquire_cookie(
struct fscache_cookie *parent,
const struct fscache_cookie_def *def,
void *netfs_data,
bool enable);
This now has an additional argument that indicates whether the requested
cookie should be enabled by default. It doesn't need the can_enable()
function because the caller must prevent multiple calls for the same netfs
object and it doesn't need to take the enablement lock because no one else
can get at the cookie before this returns.
Signed-off-by: David Howells <dhowells@redhat.com
2013-09-21 00:09:31 +01:00
|
|
|
volume, true);
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|
|
|
|
afs_get_vlocation(vlocation);
|
|
|
|
volume->vlocation = vlocation;
|
|
|
|
|
2007-04-26 15:57:07 -07:00
|
|
|
vlocation->vols[volume->type] = volume;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-04-26 15:49:28 -07:00
|
|
|
success:
|
2005-04-16 15:20:36 -07:00
|
|
|
_debug("kAFS selected %s volume %08x",
|
|
|
|
afs_voltypes[volume->type], volume->vid);
|
2007-04-26 15:57:07 -07:00
|
|
|
up_write(¶ms->cell->vl_sem);
|
2017-11-02 15:27:45 +00:00
|
|
|
afs_put_vlocation(params->net, vlocation);
|
2007-04-26 15:55:03 -07:00
|
|
|
_leave(" = %p", volume);
|
|
|
|
return volume;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* clean up */
|
2007-04-26 15:49:28 -07:00
|
|
|
error_up:
|
2007-04-26 15:57:07 -07:00
|
|
|
up_write(¶ms->cell->vl_sem);
|
2007-04-26 15:49:28 -07:00
|
|
|
error:
|
2017-11-02 15:27:45 +00:00
|
|
|
afs_put_vlocation(params->net, vlocation);
|
2007-04-26 15:55:03 -07:00
|
|
|
_leave(" = %d", ret);
|
|
|
|
return ERR_PTR(ret);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-04-26 15:49:28 -07:00
|
|
|
error_discard:
|
2007-04-26 15:57:07 -07:00
|
|
|
up_write(¶ms->cell->vl_sem);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2017-11-02 15:27:49 +00:00
|
|
|
for (loop = volume->nservers - 1; loop >= 0; loop--) {
|
|
|
|
afs_put_cb_interest(params->net, volume->cb_interests[loop]);
|
2017-11-02 15:27:46 +00:00
|
|
|
afs_put_server(params->net, volume->servers[loop]);
|
2017-11-02 15:27:49 +00:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
kfree(volume);
|
|
|
|
goto error;
|
2007-04-26 15:49:28 -07:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* destroy a volume record
|
|
|
|
*/
|
2017-11-02 15:27:46 +00:00
|
|
|
void afs_put_volume(struct afs_cell *cell, struct afs_volume *volume)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
|
|
|
struct afs_vlocation *vlocation;
|
|
|
|
int loop;
|
|
|
|
|
|
|
|
if (!volume)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_enter("%p", volume);
|
|
|
|
|
2007-04-26 15:55:03 -07:00
|
|
|
ASSERTCMP(atomic_read(&volume->usage), >, 0);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-04-26 15:55:03 -07:00
|
|
|
vlocation = volume->vlocation;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* to prevent a race, the decrement and the dequeue must be effectively
|
|
|
|
* atomic */
|
2017-11-02 15:27:46 +00:00
|
|
|
down_write(&cell->vl_sem);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
if (likely(!atomic_dec_and_test(&volume->usage))) {
|
|
|
|
up_write(&vlocation->cell->vl_sem);
|
|
|
|
_leave("");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vlocation->vols[volume->type] = NULL;
|
|
|
|
|
2017-11-02 15:27:46 +00:00
|
|
|
up_write(&cell->vl_sem);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* finish cleaning up the volume */
|
2009-04-03 16:42:41 +01:00
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
|
|
|
fscache_relinquish_cookie(volume->cache, 0);
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|
2017-11-02 15:27:46 +00:00
|
|
|
afs_put_vlocation(cell->net, vlocation);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2017-11-02 15:27:49 +00:00
|
|
|
for (loop = volume->nservers - 1; loop >= 0; loop--) {
|
|
|
|
afs_put_cb_interest(cell->net, volume->cb_interests[loop]);
|
2017-11-02 15:27:46 +00:00
|
|
|
afs_put_server(cell->net, volume->servers[loop]);
|
2017-11-02 15:27:49 +00:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
kfree(volume);
|
|
|
|
|
|
|
|
_leave(" [destroyed]");
|
2007-04-26 15:49:28 -07:00
|
|
|
}
|