David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 1 | /* AFS cell and server record management |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved. |
| 4 | * 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/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/slab.h> |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 14 | #include <linux/key.h> |
| 15 | #include <linux/ctype.h> |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 16 | #include <linux/dns_resolver.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 17 | #include <linux/sched.h> |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 18 | #include <keys/rxrpc-type.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "internal.h" |
| 20 | |
| 21 | DECLARE_RWSEM(afs_proc_cells_sem); |
| 22 | LIST_HEAD(afs_proc_cells); |
| 23 | |
Robert P. J. Day | 0ae52d6 | 2008-04-29 01:03:20 -0700 | [diff] [blame] | 24 | static LIST_HEAD(afs_cells); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | static DEFINE_RWLOCK(afs_cells_lock); |
| 26 | static DECLARE_RWSEM(afs_cells_sem); /* add/remove serialisation */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 27 | static DECLARE_WAIT_QUEUE_HEAD(afs_cells_freeable_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | static struct afs_cell *afs_cell_root; |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 31 | * allocate a cell record and fill in its name, VL server address list and |
| 32 | * allocate an anonymous key |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 34 | static struct afs_cell *afs_cell_alloc(const char *name, char *vllist) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
| 36 | struct afs_cell *cell; |
David Howells | 76181c1 | 2007-10-16 23:29:46 -0700 | [diff] [blame] | 37 | struct key *key; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 38 | size_t namelen; |
| 39 | char keyname[4 + AFS_MAXCELLNAME + 1], *cp, *dp, *next; |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 40 | char *dvllist = NULL, *_vllist = NULL; |
| 41 | char delimiter = ':'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | int ret; |
| 43 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 44 | _enter("%s,%s", name, vllist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | BUG_ON(!name); /* TODO: want to look up "this cell" in the cache */ |
| 47 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 48 | namelen = strlen(name); |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 49 | if (namelen > AFS_MAXCELLNAME) { |
| 50 | _leave(" = -ENAMETOOLONG"); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 51 | return ERR_PTR(-ENAMETOOLONG); |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 52 | } |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* allocate and initialise a cell record */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 55 | cell = kzalloc(sizeof(struct afs_cell) + namelen + 1, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | if (!cell) { |
| 57 | _leave(" = -ENOMEM"); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 58 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 61 | memcpy(cell->name, name, namelen); |
| 62 | cell->name[namelen] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 64 | atomic_set(&cell->usage, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | INIT_LIST_HEAD(&cell->link); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 66 | rwlock_init(&cell->servers_lock); |
| 67 | INIT_LIST_HEAD(&cell->servers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | init_rwsem(&cell->vl_sem); |
| 69 | INIT_LIST_HEAD(&cell->vl_list); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 70 | spin_lock_init(&cell->vl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 72 | /* if the ip address is invalid, try dns query */ |
| 73 | if (!vllist || strlen(vllist) < 7) { |
| 74 | ret = dns_query("afsdb", name, namelen, "ipv4", &dvllist, NULL); |
| 75 | if (ret < 0) { |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame^] | 76 | if (ret == -ENODATA || ret == -EAGAIN || ret == -ENOKEY) |
| 77 | /* translate these errors into something |
| 78 | * userspace might understand */ |
| 79 | ret = -EDESTADDRREQ; |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 80 | _leave(" = %d", ret); |
| 81 | return ERR_PTR(ret); |
| 82 | } |
| 83 | _vllist = dvllist; |
| 84 | |
| 85 | /* change the delimiter for user-space reply */ |
| 86 | delimiter = ','; |
| 87 | |
| 88 | } else { |
| 89 | _vllist = vllist; |
| 90 | } |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* fill in the VL server list from the rest of the string */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | do { |
| 94 | unsigned a, b, c, d; |
| 95 | |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 96 | next = strchr(_vllist, delimiter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | if (next) |
| 98 | *next++ = 0; |
| 99 | |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 100 | if (sscanf(_vllist, "%u.%u.%u.%u", &a, &b, &c, &d) != 4) |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 101 | goto bad_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | if (a > 255 || b > 255 || c > 255 || d > 255) |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 104 | goto bad_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | cell->vl_addrs[cell->vl_naddrs++].s_addr = |
| 107 | htonl((a << 24) | (b << 16) | (c << 8) | d); |
| 108 | |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 109 | } while (cell->vl_naddrs < AFS_CELL_MAX_ADDRS && (_vllist = next)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 111 | /* create a key to represent an anonymous user */ |
| 112 | memcpy(keyname, "afs@", 4); |
| 113 | dp = keyname + 4; |
| 114 | cp = cell->name; |
| 115 | do { |
| 116 | *dp++ = toupper(*cp); |
| 117 | } while (*cp++); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 118 | |
David Howells | 76181c1 | 2007-10-16 23:29:46 -0700 | [diff] [blame] | 119 | key = rxrpc_get_null_key(keyname); |
| 120 | if (IS_ERR(key)) { |
| 121 | _debug("no key"); |
| 122 | ret = PTR_ERR(key); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 123 | goto error; |
| 124 | } |
David Howells | 76181c1 | 2007-10-16 23:29:46 -0700 | [diff] [blame] | 125 | cell->anonymous_key = key; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 126 | |
| 127 | _debug("anon key %p{%x}", |
| 128 | cell->anonymous_key, key_serial(cell->anonymous_key)); |
| 129 | |
| 130 | _leave(" = %p", cell); |
| 131 | return cell; |
| 132 | |
| 133 | bad_address: |
| 134 | printk(KERN_ERR "kAFS: bad VL server IP address\n"); |
| 135 | ret = -EINVAL; |
| 136 | error: |
| 137 | key_put(cell->anonymous_key); |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 138 | kfree(dvllist); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 139 | kfree(cell); |
| 140 | _leave(" = %d", ret); |
| 141 | return ERR_PTR(ret); |
| 142 | } |
| 143 | |
| 144 | /* |
| 145 | * create a cell record |
| 146 | * - "name" is the name of the cell |
| 147 | * - "vllist" is a colon separated list of IP addresses in "a.b.c.d" format |
| 148 | */ |
| 149 | struct afs_cell *afs_cell_create(const char *name, char *vllist) |
| 150 | { |
| 151 | struct afs_cell *cell; |
| 152 | int ret; |
| 153 | |
| 154 | _enter("%s,%s", name, vllist); |
| 155 | |
Sven Schnelle | 5214b72 | 2008-03-28 14:15:55 -0700 | [diff] [blame] | 156 | down_write(&afs_cells_sem); |
| 157 | read_lock(&afs_cells_lock); |
| 158 | list_for_each_entry(cell, &afs_cells, link) { |
| 159 | if (strcasecmp(cell->name, name) == 0) |
| 160 | goto duplicate_name; |
| 161 | } |
| 162 | read_unlock(&afs_cells_lock); |
| 163 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 164 | cell = afs_cell_alloc(name, vllist); |
| 165 | if (IS_ERR(cell)) { |
| 166 | _leave(" = %ld", PTR_ERR(cell)); |
Sven Schnelle | a5f37c3 | 2008-04-02 13:17:18 +0100 | [diff] [blame] | 167 | up_write(&afs_cells_sem); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 168 | return cell; |
| 169 | } |
| 170 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 171 | /* add a proc directory for this cell */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | ret = afs_proc_cell_setup(cell); |
| 173 | if (ret < 0) |
| 174 | goto error; |
| 175 | |
David Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 176 | #ifdef CONFIG_AFS_FSCACHE |
| 177 | /* put it up for caching (this never returns an error) */ |
| 178 | cell->cache = fscache_acquire_cookie(afs_cache_netfs.primary_index, |
| 179 | &afs_cell_cache_index_def, |
| 180 | cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | #endif |
| 182 | |
| 183 | /* add to the cell lists */ |
| 184 | write_lock(&afs_cells_lock); |
| 185 | list_add_tail(&cell->link, &afs_cells); |
| 186 | write_unlock(&afs_cells_lock); |
| 187 | |
| 188 | down_write(&afs_proc_cells_sem); |
| 189 | list_add_tail(&cell->proc_link, &afs_proc_cells); |
| 190 | up_write(&afs_proc_cells_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | up_write(&afs_cells_sem); |
| 192 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 193 | _leave(" = %p", cell); |
| 194 | return cell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 196 | error: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | up_write(&afs_cells_sem); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 198 | key_put(cell->anonymous_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | kfree(cell); |
| 200 | _leave(" = %d", ret); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 201 | return ERR_PTR(ret); |
Sven Schnelle | 5214b72 | 2008-03-28 14:15:55 -0700 | [diff] [blame] | 202 | |
| 203 | duplicate_name: |
| 204 | read_unlock(&afs_cells_lock); |
| 205 | up_write(&afs_cells_sem); |
| 206 | return ERR_PTR(-EEXIST); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 210 | * set the root cell information |
| 211 | * - can be called with a module parameter string |
| 212 | * - can be called from a write to /proc/fs/afs/rootcell |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | */ |
| 214 | int afs_cell_init(char *rootcell) |
| 215 | { |
| 216 | struct afs_cell *old_root, *new_root; |
| 217 | char *cp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
| 219 | _enter(""); |
| 220 | |
| 221 | if (!rootcell) { |
| 222 | /* module is loaded with no parameters, or built statically. |
| 223 | * - in the future we might initialize cell DB here. |
| 224 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 225 | _leave(" = 0 [no root]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | cp = strchr(rootcell, ':'); |
Wang Lei | 07567a5 | 2010-08-04 15:16:38 +0100 | [diff] [blame] | 230 | if (!cp) |
| 231 | _debug("kAFS: no VL server IP addresses specified"); |
| 232 | else |
| 233 | *cp++ = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /* allocate a cell record for the root cell */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 236 | new_root = afs_cell_create(rootcell, cp); |
| 237 | if (IS_ERR(new_root)) { |
| 238 | _leave(" = %ld", PTR_ERR(new_root)); |
| 239 | return PTR_ERR(new_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 242 | /* install the new cell */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | write_lock(&afs_cells_lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 244 | old_root = afs_cell_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | afs_cell_root = new_root; |
| 246 | write_unlock(&afs_cells_lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 247 | afs_put_cell(old_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 249 | _leave(" = 0"); |
| 250 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 251 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | /* |
| 254 | * lookup a cell record |
| 255 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 256 | struct afs_cell *afs_cell_lookup(const char *name, unsigned namesz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { |
| 258 | struct afs_cell *cell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
| 260 | _enter("\"%*.*s\",", namesz, namesz, name ? name : ""); |
| 261 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 262 | down_read(&afs_cells_sem); |
| 263 | read_lock(&afs_cells_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | if (name) { |
| 266 | /* if the cell was named, look for it in the cell record list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | list_for_each_entry(cell, &afs_cells, link) { |
| 268 | if (strncmp(cell->name, name, namesz) == 0) { |
| 269 | afs_get_cell(cell); |
| 270 | goto found; |
| 271 | } |
| 272 | } |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 273 | cell = ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | found: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 275 | ; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 276 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | cell = afs_cell_root; |
| 278 | if (!cell) { |
| 279 | /* this should not happen unless user tries to mount |
| 280 | * when root cell is not set. Return an impossibly |
| 281 | * bizzare errno to alert the user. Things like |
| 282 | * ENOENT might be "more appropriate" but they happen |
| 283 | * for other reasons. |
| 284 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 285 | cell = ERR_PTR(-EDESTADDRREQ); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 286 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | afs_get_cell(cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 292 | read_unlock(&afs_cells_lock); |
| 293 | up_read(&afs_cells_sem); |
| 294 | _leave(" = %p", cell); |
| 295 | return cell; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 298 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* |
| 300 | * try and get a cell record |
| 301 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 302 | struct afs_cell *afs_get_cell_maybe(struct afs_cell *cell) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | write_lock(&afs_cells_lock); |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (cell && !list_empty(&cell->link)) |
| 307 | afs_get_cell(cell); |
| 308 | else |
| 309 | cell = NULL; |
| 310 | |
| 311 | write_unlock(&afs_cells_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | return cell; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 313 | } |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 314 | #endif /* 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | /* |
| 317 | * destroy a cell record |
| 318 | */ |
| 319 | void afs_put_cell(struct afs_cell *cell) |
| 320 | { |
| 321 | if (!cell) |
| 322 | return; |
| 323 | |
| 324 | _enter("%p{%d,%s}", cell, atomic_read(&cell->usage), cell->name); |
| 325 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 326 | ASSERTCMP(atomic_read(&cell->usage), >, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
| 328 | /* to prevent a race, the decrement and the dequeue must be effectively |
| 329 | * atomic */ |
| 330 | write_lock(&afs_cells_lock); |
| 331 | |
| 332 | if (likely(!atomic_dec_and_test(&cell->usage))) { |
| 333 | write_unlock(&afs_cells_lock); |
| 334 | _leave(""); |
| 335 | return; |
| 336 | } |
| 337 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 338 | ASSERT(list_empty(&cell->servers)); |
| 339 | ASSERT(list_empty(&cell->vl_list)); |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | write_unlock(&afs_cells_lock); |
| 342 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 343 | wake_up(&afs_cells_freeable_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | _leave(" [unused]"); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /* |
| 349 | * destroy a cell record |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 350 | * - must be called with the afs_cells_sem write-locked |
| 351 | * - cell->link should have been broken by the caller |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | */ |
| 353 | static void afs_cell_destroy(struct afs_cell *cell) |
| 354 | { |
| 355 | _enter("%p{%d,%s}", cell, atomic_read(&cell->usage), cell->name); |
| 356 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 357 | ASSERTCMP(atomic_read(&cell->usage), >=, 0); |
| 358 | ASSERT(list_empty(&cell->link)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 360 | /* wait for everyone to stop using the cell */ |
| 361 | if (atomic_read(&cell->usage) > 0) { |
| 362 | DECLARE_WAITQUEUE(myself, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 364 | _debug("wait for cell %s", cell->name); |
| 365 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 366 | add_wait_queue(&afs_cells_freeable_wq, &myself); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 368 | while (atomic_read(&cell->usage) > 0) { |
| 369 | schedule(); |
| 370 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 373 | remove_wait_queue(&afs_cells_freeable_wq, &myself); |
| 374 | set_current_state(TASK_RUNNING); |
| 375 | } |
| 376 | |
| 377 | _debug("cell dead"); |
| 378 | ASSERTCMP(atomic_read(&cell->usage), ==, 0); |
| 379 | ASSERT(list_empty(&cell->servers)); |
| 380 | ASSERT(list_empty(&cell->vl_list)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | afs_proc_cell_remove(cell); |
| 383 | |
| 384 | down_write(&afs_proc_cells_sem); |
| 385 | list_del_init(&cell->proc_link); |
| 386 | up_write(&afs_proc_cells_sem); |
| 387 | |
David Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 388 | #ifdef CONFIG_AFS_FSCACHE |
| 389 | fscache_relinquish_cookie(cell->cache, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | #endif |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 391 | key_put(cell->anonymous_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | kfree(cell); |
| 393 | |
| 394 | _leave(" [destroyed]"); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 395 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | * purge in-memory cell database on module unload or afs_init() failure |
| 399 | * - the timeout daemon is stopped before calling this |
| 400 | */ |
| 401 | void afs_cell_purge(void) |
| 402 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | struct afs_cell *cell; |
| 404 | |
| 405 | _enter(""); |
| 406 | |
| 407 | afs_put_cell(afs_cell_root); |
| 408 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 409 | down_write(&afs_cells_sem); |
| 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | while (!list_empty(&afs_cells)) { |
| 412 | cell = NULL; |
| 413 | |
| 414 | /* remove the next cell from the front of the list */ |
| 415 | write_lock(&afs_cells_lock); |
| 416 | |
| 417 | if (!list_empty(&afs_cells)) { |
| 418 | cell = list_entry(afs_cells.next, |
| 419 | struct afs_cell, link); |
| 420 | list_del_init(&cell->link); |
| 421 | } |
| 422 | |
| 423 | write_unlock(&afs_cells_lock); |
| 424 | |
| 425 | if (cell) { |
| 426 | _debug("PURGING CELL %s (%d)", |
| 427 | cell->name, atomic_read(&cell->usage)); |
| 428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /* now the cell should be left with no references */ |
| 430 | afs_cell_destroy(cell); |
| 431 | } |
| 432 | } |
| 433 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 434 | up_write(&afs_cells_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 436 | } |