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