blob: ffea35c638799a4dcb7888e4c530afe1347190ab [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS cell and server record management
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
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 Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
David Howells00d3b7a2007-04-26 15:57:07 -070014#include <linux/key.h>
15#include <linux/ctype.h>
Wang Lei07567a52010-08-04 15:16:38 +010016#include <linux/dns_resolver.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040017#include <linux/sched.h>
David Howells00d3b7a2007-04-26 15:57:07 -070018#include <keys/rxrpc-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "internal.h"
20
21DECLARE_RWSEM(afs_proc_cells_sem);
22LIST_HEAD(afs_proc_cells);
23
Robert P. J. Day0ae52d62008-04-29 01:03:20 -070024static LIST_HEAD(afs_cells);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static DEFINE_RWLOCK(afs_cells_lock);
26static DECLARE_RWSEM(afs_cells_sem); /* add/remove serialisation */
David Howells08e0e7c2007-04-26 15:55:03 -070027static DECLARE_WAIT_QUEUE_HEAD(afs_cells_freeable_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static struct afs_cell *afs_cell_root;
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
David Howells00d3b7a2007-04-26 15:57:07 -070031 * allocate a cell record and fill in its name, VL server address list and
32 * allocate an anonymous key
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
David Howells00d3b7a2007-04-26 15:57:07 -070034static struct afs_cell *afs_cell_alloc(const char *name, char *vllist)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 struct afs_cell *cell;
David Howells76181c12007-10-16 23:29:46 -070037 struct key *key;
David Howells00d3b7a2007-04-26 15:57:07 -070038 size_t namelen;
39 char keyname[4 + AFS_MAXCELLNAME + 1], *cp, *dp, *next;
Wang Lei07567a52010-08-04 15:16:38 +010040 char *dvllist = NULL, *_vllist = NULL;
41 char delimiter = ':';
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int ret;
43
David Howells08e0e7c2007-04-26 15:55:03 -070044 _enter("%s,%s", name, vllist);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 BUG_ON(!name); /* TODO: want to look up "this cell" in the cache */
47
David Howells00d3b7a2007-04-26 15:57:07 -070048 namelen = strlen(name);
Wang Lei07567a52010-08-04 15:16:38 +010049 if (namelen > AFS_MAXCELLNAME) {
50 _leave(" = -ENAMETOOLONG");
David Howells00d3b7a2007-04-26 15:57:07 -070051 return ERR_PTR(-ENAMETOOLONG);
Wang Lei07567a52010-08-04 15:16:38 +010052 }
David Howells00d3b7a2007-04-26 15:57:07 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 /* allocate and initialise a cell record */
David Howells00d3b7a2007-04-26 15:57:07 -070055 cell = kzalloc(sizeof(struct afs_cell) + namelen + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (!cell) {
57 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -070058 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 }
60
David Howells00d3b7a2007-04-26 15:57:07 -070061 memcpy(cell->name, name, namelen);
62 cell->name[namelen] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
David Howells08e0e7c2007-04-26 15:55:03 -070064 atomic_set(&cell->usage, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 INIT_LIST_HEAD(&cell->link);
David Howells08e0e7c2007-04-26 15:55:03 -070066 rwlock_init(&cell->servers_lock);
67 INIT_LIST_HEAD(&cell->servers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 init_rwsem(&cell->vl_sem);
69 INIT_LIST_HEAD(&cell->vl_list);
David Howells08e0e7c2007-04-26 15:55:03 -070070 spin_lock_init(&cell->vl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Wang Lei07567a52010-08-04 15:16:38 +010072 /* 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) {
76 _leave(" = %d", ret);
77 return ERR_PTR(ret);
78 }
79 _vllist = dvllist;
80
81 /* change the delimiter for user-space reply */
82 delimiter = ',';
83
84 } else {
85 _vllist = vllist;
86 }
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* fill in the VL server list from the rest of the string */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 do {
90 unsigned a, b, c, d;
91
Wang Lei07567a52010-08-04 15:16:38 +010092 next = strchr(_vllist, delimiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (next)
94 *next++ = 0;
95
Wang Lei07567a52010-08-04 15:16:38 +010096 if (sscanf(_vllist, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
David Howells00d3b7a2007-04-26 15:57:07 -070097 goto bad_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 if (a > 255 || b > 255 || c > 255 || d > 255)
David Howells00d3b7a2007-04-26 15:57:07 -0700100 goto bad_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 cell->vl_addrs[cell->vl_naddrs++].s_addr =
103 htonl((a << 24) | (b << 16) | (c << 8) | d);
104
Wang Lei07567a52010-08-04 15:16:38 +0100105 } while (cell->vl_naddrs < AFS_CELL_MAX_ADDRS && (_vllist = next));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
David Howells00d3b7a2007-04-26 15:57:07 -0700107 /* create a key to represent an anonymous user */
108 memcpy(keyname, "afs@", 4);
109 dp = keyname + 4;
110 cp = cell->name;
111 do {
112 *dp++ = toupper(*cp);
113 } while (*cp++);
David Howells00d3b7a2007-04-26 15:57:07 -0700114
David Howells76181c12007-10-16 23:29:46 -0700115 key = rxrpc_get_null_key(keyname);
116 if (IS_ERR(key)) {
117 _debug("no key");
118 ret = PTR_ERR(key);
David Howells00d3b7a2007-04-26 15:57:07 -0700119 goto error;
120 }
David Howells76181c12007-10-16 23:29:46 -0700121 cell->anonymous_key = key;
David Howells00d3b7a2007-04-26 15:57:07 -0700122
123 _debug("anon key %p{%x}",
124 cell->anonymous_key, key_serial(cell->anonymous_key));
125
126 _leave(" = %p", cell);
127 return cell;
128
129bad_address:
130 printk(KERN_ERR "kAFS: bad VL server IP address\n");
131 ret = -EINVAL;
132error:
133 key_put(cell->anonymous_key);
Wang Lei07567a52010-08-04 15:16:38 +0100134 kfree(dvllist);
David Howells00d3b7a2007-04-26 15:57:07 -0700135 kfree(cell);
136 _leave(" = %d", ret);
137 return ERR_PTR(ret);
138}
139
140/*
141 * create a cell record
142 * - "name" is the name of the cell
143 * - "vllist" is a colon separated list of IP addresses in "a.b.c.d" format
144 */
145struct afs_cell *afs_cell_create(const char *name, char *vllist)
146{
147 struct afs_cell *cell;
148 int ret;
149
150 _enter("%s,%s", name, vllist);
151
Sven Schnelle5214b722008-03-28 14:15:55 -0700152 down_write(&afs_cells_sem);
153 read_lock(&afs_cells_lock);
154 list_for_each_entry(cell, &afs_cells, link) {
155 if (strcasecmp(cell->name, name) == 0)
156 goto duplicate_name;
157 }
158 read_unlock(&afs_cells_lock);
159
David Howells00d3b7a2007-04-26 15:57:07 -0700160 cell = afs_cell_alloc(name, vllist);
161 if (IS_ERR(cell)) {
162 _leave(" = %ld", PTR_ERR(cell));
Sven Schnellea5f37c32008-04-02 13:17:18 +0100163 up_write(&afs_cells_sem);
David Howells00d3b7a2007-04-26 15:57:07 -0700164 return cell;
165 }
166
David Howells08e0e7c2007-04-26 15:55:03 -0700167 /* add a proc directory for this cell */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ret = afs_proc_cell_setup(cell);
169 if (ret < 0)
170 goto error;
171
David Howells9b3f26c2009-04-03 16:42:41 +0100172#ifdef CONFIG_AFS_FSCACHE
173 /* put it up for caching (this never returns an error) */
174 cell->cache = fscache_acquire_cookie(afs_cache_netfs.primary_index,
175 &afs_cell_cache_index_def,
176 cell);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif
178
179 /* add to the cell lists */
180 write_lock(&afs_cells_lock);
181 list_add_tail(&cell->link, &afs_cells);
182 write_unlock(&afs_cells_lock);
183
184 down_write(&afs_proc_cells_sem);
185 list_add_tail(&cell->proc_link, &afs_proc_cells);
186 up_write(&afs_proc_cells_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 up_write(&afs_cells_sem);
188
David Howells08e0e7c2007-04-26 15:55:03 -0700189 _leave(" = %p", cell);
190 return cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
David Howellsec268152007-04-26 15:49:28 -0700192error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 up_write(&afs_cells_sem);
David Howells00d3b7a2007-04-26 15:57:07 -0700194 key_put(cell->anonymous_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 kfree(cell);
196 _leave(" = %d", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700197 return ERR_PTR(ret);
Sven Schnelle5214b722008-03-28 14:15:55 -0700198
199duplicate_name:
200 read_unlock(&afs_cells_lock);
201 up_write(&afs_cells_sem);
202 return ERR_PTR(-EEXIST);
David Howellsec268152007-04-26 15:49:28 -0700203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
David Howells08e0e7c2007-04-26 15:55:03 -0700206 * set the root cell information
207 * - can be called with a module parameter string
208 * - can be called from a write to /proc/fs/afs/rootcell
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
210int afs_cell_init(char *rootcell)
211{
212 struct afs_cell *old_root, *new_root;
213 char *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 _enter("");
216
217 if (!rootcell) {
218 /* module is loaded with no parameters, or built statically.
219 * - in the future we might initialize cell DB here.
220 */
David Howells08e0e7c2007-04-26 15:55:03 -0700221 _leave(" = 0 [no root]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223 }
224
225 cp = strchr(rootcell, ':');
Wang Lei07567a52010-08-04 15:16:38 +0100226 if (!cp)
227 _debug("kAFS: no VL server IP addresses specified");
228 else
229 *cp++ = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* allocate a cell record for the root cell */
David Howells08e0e7c2007-04-26 15:55:03 -0700232 new_root = afs_cell_create(rootcell, cp);
233 if (IS_ERR(new_root)) {
234 _leave(" = %ld", PTR_ERR(new_root));
235 return PTR_ERR(new_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
David Howells08e0e7c2007-04-26 15:55:03 -0700238 /* install the new cell */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 write_lock(&afs_cells_lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700240 old_root = afs_cell_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 afs_cell_root = new_root;
242 write_unlock(&afs_cells_lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700243 afs_put_cell(old_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
David Howells08e0e7c2007-04-26 15:55:03 -0700245 _leave(" = 0");
246 return 0;
David Howellsec268152007-04-26 15:49:28 -0700247}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * lookup a cell record
251 */
David Howells08e0e7c2007-04-26 15:55:03 -0700252struct afs_cell *afs_cell_lookup(const char *name, unsigned namesz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct afs_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 _enter("\"%*.*s\",", namesz, namesz, name ? name : "");
257
David Howells08e0e7c2007-04-26 15:55:03 -0700258 down_read(&afs_cells_sem);
259 read_lock(&afs_cells_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (name) {
262 /* if the cell was named, look for it in the cell record list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 list_for_each_entry(cell, &afs_cells, link) {
264 if (strncmp(cell->name, name, namesz) == 0) {
265 afs_get_cell(cell);
266 goto found;
267 }
268 }
David Howells08e0e7c2007-04-26 15:55:03 -0700269 cell = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 found:
David Howells08e0e7c2007-04-26 15:55:03 -0700271 ;
David Howellsec268152007-04-26 15:49:28 -0700272 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 cell = afs_cell_root;
274 if (!cell) {
275 /* this should not happen unless user tries to mount
276 * when root cell is not set. Return an impossibly
277 * bizzare errno to alert the user. Things like
278 * ENOENT might be "more appropriate" but they happen
279 * for other reasons.
280 */
David Howells08e0e7c2007-04-26 15:55:03 -0700281 cell = ERR_PTR(-EDESTADDRREQ);
David Howellsec268152007-04-26 15:49:28 -0700282 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 afs_get_cell(cell);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
David Howells08e0e7c2007-04-26 15:55:03 -0700288 read_unlock(&afs_cells_lock);
289 up_read(&afs_cells_sem);
290 _leave(" = %p", cell);
291 return cell;
David Howellsec268152007-04-26 15:49:28 -0700292}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Adrian Bunkc1206a22007-10-16 23:26:41 -0700294#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*
296 * try and get a cell record
297 */
David Howells08e0e7c2007-04-26 15:55:03 -0700298struct afs_cell *afs_get_cell_maybe(struct afs_cell *cell)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 write_lock(&afs_cells_lock);
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (cell && !list_empty(&cell->link))
303 afs_get_cell(cell);
304 else
305 cell = NULL;
306
307 write_unlock(&afs_cells_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return cell;
David Howellsec268152007-04-26 15:49:28 -0700309}
Adrian Bunkc1206a22007-10-16 23:26:41 -0700310#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
313 * destroy a cell record
314 */
315void afs_put_cell(struct afs_cell *cell)
316{
317 if (!cell)
318 return;
319
320 _enter("%p{%d,%s}", cell, atomic_read(&cell->usage), cell->name);
321
David Howells08e0e7c2007-04-26 15:55:03 -0700322 ASSERTCMP(atomic_read(&cell->usage), >, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* to prevent a race, the decrement and the dequeue must be effectively
325 * atomic */
326 write_lock(&afs_cells_lock);
327
328 if (likely(!atomic_dec_and_test(&cell->usage))) {
329 write_unlock(&afs_cells_lock);
330 _leave("");
331 return;
332 }
333
David Howells08e0e7c2007-04-26 15:55:03 -0700334 ASSERT(list_empty(&cell->servers));
335 ASSERT(list_empty(&cell->vl_list));
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 write_unlock(&afs_cells_lock);
338
David Howells08e0e7c2007-04-26 15:55:03 -0700339 wake_up(&afs_cells_freeable_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 _leave(" [unused]");
David Howellsec268152007-04-26 15:49:28 -0700342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
345 * destroy a cell record
David Howells08e0e7c2007-04-26 15:55:03 -0700346 * - must be called with the afs_cells_sem write-locked
347 * - cell->link should have been broken by the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 */
349static void afs_cell_destroy(struct afs_cell *cell)
350{
351 _enter("%p{%d,%s}", cell, atomic_read(&cell->usage), cell->name);
352
David Howells08e0e7c2007-04-26 15:55:03 -0700353 ASSERTCMP(atomic_read(&cell->usage), >=, 0);
354 ASSERT(list_empty(&cell->link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
David Howells08e0e7c2007-04-26 15:55:03 -0700356 /* wait for everyone to stop using the cell */
357 if (atomic_read(&cell->usage) > 0) {
358 DECLARE_WAITQUEUE(myself, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
David Howells08e0e7c2007-04-26 15:55:03 -0700360 _debug("wait for cell %s", cell->name);
361 set_current_state(TASK_UNINTERRUPTIBLE);
362 add_wait_queue(&afs_cells_freeable_wq, &myself);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
David Howells08e0e7c2007-04-26 15:55:03 -0700364 while (atomic_read(&cell->usage) > 0) {
365 schedule();
366 set_current_state(TASK_UNINTERRUPTIBLE);
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
David Howells08e0e7c2007-04-26 15:55:03 -0700369 remove_wait_queue(&afs_cells_freeable_wq, &myself);
370 set_current_state(TASK_RUNNING);
371 }
372
373 _debug("cell dead");
374 ASSERTCMP(atomic_read(&cell->usage), ==, 0);
375 ASSERT(list_empty(&cell->servers));
376 ASSERT(list_empty(&cell->vl_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 afs_proc_cell_remove(cell);
379
380 down_write(&afs_proc_cells_sem);
381 list_del_init(&cell->proc_link);
382 up_write(&afs_proc_cells_sem);
383
David Howells9b3f26c2009-04-03 16:42:41 +0100384#ifdef CONFIG_AFS_FSCACHE
385 fscache_relinquish_cookie(cell->cache, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#endif
David Howells00d3b7a2007-04-26 15:57:07 -0700387 key_put(cell->anonymous_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 kfree(cell);
389
390 _leave(" [destroyed]");
David Howellsec268152007-04-26 15:49:28 -0700391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * purge in-memory cell database on module unload or afs_init() failure
395 * - the timeout daemon is stopped before calling this
396 */
397void afs_cell_purge(void)
398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct afs_cell *cell;
400
401 _enter("");
402
403 afs_put_cell(afs_cell_root);
404
David Howells08e0e7c2007-04-26 15:55:03 -0700405 down_write(&afs_cells_sem);
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 while (!list_empty(&afs_cells)) {
408 cell = NULL;
409
410 /* remove the next cell from the front of the list */
411 write_lock(&afs_cells_lock);
412
413 if (!list_empty(&afs_cells)) {
414 cell = list_entry(afs_cells.next,
415 struct afs_cell, link);
416 list_del_init(&cell->link);
417 }
418
419 write_unlock(&afs_cells_lock);
420
421 if (cell) {
422 _debug("PURGING CELL %s (%d)",
423 cell->name, atomic_read(&cell->usage));
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* now the cell should be left with no references */
426 afs_cell_destroy(cell);
427 }
428 }
429
David Howells08e0e7c2007-04-26 15:55:03 -0700430 up_write(&afs_cells_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700432}