blob: 6e689208def255c946cf39d1f44c562aedf51448 [file] [log] [blame]
David Howells08e0e7c2007-04-26 15:55:03 -07001/* AFS volume location 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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "internal.h"
17
Adrian Bunkc1206a22007-10-16 23:26:41 -070018static unsigned afs_vlocation_timeout = 10; /* volume location timeout in seconds */
19static unsigned afs_vlocation_update_timeout = 10 * 60;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
David Howells08e0e7c2007-04-26 15:55:03 -070021static void afs_vlocation_reaper(struct work_struct *);
22static void afs_vlocation_updater(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
David Howells08e0e7c2007-04-26 15:55:03 -070024static LIST_HEAD(afs_vlocation_updates);
25static LIST_HEAD(afs_vlocation_graveyard);
26static DEFINE_SPINLOCK(afs_vlocation_updates_lock);
27static DEFINE_SPINLOCK(afs_vlocation_graveyard_lock);
28static DECLARE_DELAYED_WORK(afs_vlocation_reap, afs_vlocation_reaper);
29static DECLARE_DELAYED_WORK(afs_vlocation_update, afs_vlocation_updater);
30static struct workqueue_struct *afs_vlocation_update_worker;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/*
33 * iterate through the VL servers in a cell until one of them admits knowing
34 * about the volume in question
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
David Howells08e0e7c2007-04-26 15:55:03 -070036static int afs_vlocation_access_vl_by_name(struct afs_vlocation *vl,
David Howells00d3b7a2007-04-26 15:57:07 -070037 struct key *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct afs_cache_vlocation *vldb)
39{
David Howells08e0e7c2007-04-26 15:55:03 -070040 struct afs_cell *cell = vl->cell;
41 struct in_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int count, ret;
43
David Howells08e0e7c2007-04-26 15:55:03 -070044 _enter("%s,%s", cell->name, vl->vldb.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
David Howells08e0e7c2007-04-26 15:55:03 -070046 down_write(&vl->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ret = -ENOMEDIUM;
48 for (count = cell->vl_naddrs; count > 0; count--) {
David Howells08e0e7c2007-04-26 15:55:03 -070049 addr = cell->vl_addrs[cell->vl_curr_svix];
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
David Howells08e0e7c2007-04-26 15:55:03 -070051 _debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 /* attempt to access the VL server */
David Howells00d3b7a2007-04-26 15:57:07 -070054 ret = afs_vl_get_entry_by_name(&addr, key, vl->vldb.name, vldb,
David Howells08e0e7c2007-04-26 15:55:03 -070055 &afs_sync_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 switch (ret) {
57 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 goto out;
59 case -ENOMEM:
60 case -ENONET:
61 case -ENETUNREACH:
62 case -EHOSTUNREACH:
63 case -ECONNREFUSED:
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (ret == -ENOMEM || ret == -ENONET)
65 goto out;
66 goto rotate;
67 case -ENOMEDIUM:
David Howells005411c2009-06-16 21:36:49 +010068 case -EKEYREJECTED:
69 case -EKEYEXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 goto out;
71 default:
David Howells08e0e7c2007-04-26 15:55:03 -070072 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 goto rotate;
74 }
75
76 /* rotate the server records upon lookup failure */
77 rotate:
78 cell->vl_curr_svix++;
79 cell->vl_curr_svix %= cell->vl_naddrs;
80 }
81
David Howellsec268152007-04-26 15:49:28 -070082out:
David Howells08e0e7c2007-04-26 15:55:03 -070083 up_write(&vl->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 _leave(" = %d", ret);
85 return ret;
David Howellsec268152007-04-26 15:49:28 -070086}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
89 * iterate through the VL servers in a cell until one of them admits knowing
90 * about the volume in question
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
David Howells08e0e7c2007-04-26 15:55:03 -070092static int afs_vlocation_access_vl_by_id(struct afs_vlocation *vl,
David Howells00d3b7a2007-04-26 15:57:07 -070093 struct key *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 afs_volid_t volid,
95 afs_voltype_t voltype,
96 struct afs_cache_vlocation *vldb)
97{
David Howells08e0e7c2007-04-26 15:55:03 -070098 struct afs_cell *cell = vl->cell;
99 struct in_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 int count, ret;
101
102 _enter("%s,%x,%d,", cell->name, volid, voltype);
103
David Howells08e0e7c2007-04-26 15:55:03 -0700104 down_write(&vl->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 ret = -ENOMEDIUM;
106 for (count = cell->vl_naddrs; count > 0; count--) {
David Howells08e0e7c2007-04-26 15:55:03 -0700107 addr = cell->vl_addrs[cell->vl_curr_svix];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
David Howells08e0e7c2007-04-26 15:55:03 -0700109 _debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* attempt to access the VL server */
David Howells00d3b7a2007-04-26 15:57:07 -0700112 ret = afs_vl_get_entry_by_id(&addr, key, volid, voltype, vldb,
David Howells08e0e7c2007-04-26 15:55:03 -0700113 &afs_sync_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 switch (ret) {
115 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto out;
117 case -ENOMEM:
118 case -ENONET:
119 case -ENETUNREACH:
120 case -EHOSTUNREACH:
121 case -ECONNREFUSED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (ret == -ENOMEM || ret == -ENONET)
123 goto out;
124 goto rotate;
David Howells08e0e7c2007-04-26 15:55:03 -0700125 case -EBUSY:
126 vl->upd_busy_cnt++;
127 if (vl->upd_busy_cnt <= 3) {
128 if (vl->upd_busy_cnt > 1) {
129 /* second+ BUSY - sleep a little bit */
130 set_current_state(TASK_UNINTERRUPTIBLE);
131 schedule_timeout(1);
132 __set_current_state(TASK_RUNNING);
133 }
134 continue;
135 }
136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 case -ENOMEDIUM:
David Howells08e0e7c2007-04-26 15:55:03 -0700138 vl->upd_rej_cnt++;
139 goto rotate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 default:
David Howells08e0e7c2007-04-26 15:55:03 -0700141 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto rotate;
143 }
144
145 /* rotate the server records upon lookup failure */
146 rotate:
147 cell->vl_curr_svix++;
148 cell->vl_curr_svix %= cell->vl_naddrs;
David Howells08e0e7c2007-04-26 15:55:03 -0700149 vl->upd_busy_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
David Howellsec268152007-04-26 15:49:28 -0700152out:
David Howells08e0e7c2007-04-26 15:55:03 -0700153 if (ret < 0 && vl->upd_rej_cnt > 0) {
154 printk(KERN_NOTICE "kAFS:"
155 " Active volume no longer valid '%s'\n",
156 vl->vldb.name);
157 vl->valid = 0;
158 ret = -ENOMEDIUM;
159 }
160
161 up_write(&vl->cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 _leave(" = %d", ret);
163 return ret;
David Howellsec268152007-04-26 15:49:28 -0700164}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
David Howells08e0e7c2007-04-26 15:55:03 -0700167 * allocate a volume location record
168 */
169static struct afs_vlocation *afs_vlocation_alloc(struct afs_cell *cell,
170 const char *name,
171 size_t namesz)
172{
173 struct afs_vlocation *vl;
174
175 vl = kzalloc(sizeof(struct afs_vlocation), GFP_KERNEL);
176 if (vl) {
177 vl->cell = cell;
178 vl->state = AFS_VL_NEW;
179 atomic_set(&vl->usage, 1);
180 INIT_LIST_HEAD(&vl->link);
181 INIT_LIST_HEAD(&vl->grave);
182 INIT_LIST_HEAD(&vl->update);
183 init_waitqueue_head(&vl->waitq);
David S. Miller39bf0942007-04-26 20:39:14 -0700184 spin_lock_init(&vl->lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700185 memcpy(vl->vldb.name, name, namesz);
186 }
187
188 _leave(" = %p", vl);
189 return vl;
190}
191
192/*
193 * update record if we found it in the cache
194 */
195static int afs_vlocation_update_record(struct afs_vlocation *vl,
David Howells00d3b7a2007-04-26 15:57:07 -0700196 struct key *key,
David Howells08e0e7c2007-04-26 15:55:03 -0700197 struct afs_cache_vlocation *vldb)
198{
199 afs_voltype_t voltype;
200 afs_volid_t vid;
201 int ret;
202
203 /* try to look up a cached volume in the cell VL databases by ID */
204 _debug("Locally Cached: %s %02x { %08x(%x) %08x(%x) %08x(%x) }",
205 vl->vldb.name,
206 vl->vldb.vidmask,
207 ntohl(vl->vldb.servers[0].s_addr),
208 vl->vldb.srvtmask[0],
209 ntohl(vl->vldb.servers[1].s_addr),
210 vl->vldb.srvtmask[1],
211 ntohl(vl->vldb.servers[2].s_addr),
212 vl->vldb.srvtmask[2]);
213
214 _debug("Vids: %08x %08x %08x",
215 vl->vldb.vid[0],
216 vl->vldb.vid[1],
217 vl->vldb.vid[2]);
218
219 if (vl->vldb.vidmask & AFS_VOL_VTM_RW) {
220 vid = vl->vldb.vid[0];
221 voltype = AFSVL_RWVOL;
222 } else if (vl->vldb.vidmask & AFS_VOL_VTM_RO) {
223 vid = vl->vldb.vid[1];
224 voltype = AFSVL_ROVOL;
225 } else if (vl->vldb.vidmask & AFS_VOL_VTM_BAK) {
226 vid = vl->vldb.vid[2];
227 voltype = AFSVL_BACKVOL;
228 } else {
229 BUG();
230 vid = 0;
231 voltype = 0;
232 }
233
234 /* contact the server to make sure the volume is still available
235 * - TODO: need to handle disconnected operation here
236 */
David Howells00d3b7a2007-04-26 15:57:07 -0700237 ret = afs_vlocation_access_vl_by_id(vl, key, vid, voltype, vldb);
David Howells08e0e7c2007-04-26 15:55:03 -0700238 switch (ret) {
239 /* net error */
240 default:
241 printk(KERN_WARNING "kAFS:"
242 " failed to update volume '%s' (%x) up in '%s': %d\n",
243 vl->vldb.name, vid, vl->cell->name, ret);
244 _leave(" = %d", ret);
245 return ret;
246
247 /* pulled from local cache into memory */
248 case 0:
249 _leave(" = 0");
250 return 0;
251
252 /* uh oh... looks like the volume got deleted */
253 case -ENOMEDIUM:
254 printk(KERN_ERR "kAFS:"
255 " volume '%s' (%x) does not exist '%s'\n",
256 vl->vldb.name, vid, vl->cell->name);
257
258 /* TODO: make existing record unavailable */
259 _leave(" = %d", ret);
260 return ret;
261 }
262}
263
264/*
265 * apply the update to a VL record
266 */
267static void afs_vlocation_apply_update(struct afs_vlocation *vl,
268 struct afs_cache_vlocation *vldb)
269{
270 _debug("Done VL Lookup: %s %02x { %08x(%x) %08x(%x) %08x(%x) }",
271 vldb->name, vldb->vidmask,
272 ntohl(vldb->servers[0].s_addr), vldb->srvtmask[0],
273 ntohl(vldb->servers[1].s_addr), vldb->srvtmask[1],
274 ntohl(vldb->servers[2].s_addr), vldb->srvtmask[2]);
275
276 _debug("Vids: %08x %08x %08x",
277 vldb->vid[0], vldb->vid[1], vldb->vid[2]);
278
279 if (strcmp(vldb->name, vl->vldb.name) != 0)
280 printk(KERN_NOTICE "kAFS:"
281 " name of volume '%s' changed to '%s' on server\n",
282 vl->vldb.name, vldb->name);
283
284 vl->vldb = *vldb;
285
David Howells9b3f26c2009-04-03 16:42:41 +0100286#ifdef CONFIG_AFS_FSCACHE
287 fscache_update_cookie(vl->cache);
David Howells08e0e7c2007-04-26 15:55:03 -0700288#endif
289}
290
291/*
292 * fill in a volume location record, consulting the cache and the VL server
293 * both
294 */
David Howells00d3b7a2007-04-26 15:57:07 -0700295static int afs_vlocation_fill_in_record(struct afs_vlocation *vl,
296 struct key *key)
David Howells08e0e7c2007-04-26 15:55:03 -0700297{
298 struct afs_cache_vlocation vldb;
299 int ret;
300
301 _enter("");
302
303 ASSERTCMP(vl->valid, ==, 0);
304
305 memset(&vldb, 0, sizeof(vldb));
306
307 /* see if we have an in-cache copy (will set vl->valid if there is) */
David Howells9b3f26c2009-04-03 16:42:41 +0100308#ifdef CONFIG_AFS_FSCACHE
309 vl->cache = fscache_acquire_cookie(vl->cell->cache,
310 &afs_vlocation_cache_index_def, vl);
David Howells08e0e7c2007-04-26 15:55:03 -0700311#endif
312
313 if (vl->valid) {
314 /* try to update a known volume in the cell VL databases by
315 * ID as the name may have changed */
316 _debug("found in cache");
David Howells00d3b7a2007-04-26 15:57:07 -0700317 ret = afs_vlocation_update_record(vl, key, &vldb);
David Howells08e0e7c2007-04-26 15:55:03 -0700318 } else {
319 /* try to look up an unknown volume in the cell VL databases by
320 * name */
David Howells00d3b7a2007-04-26 15:57:07 -0700321 ret = afs_vlocation_access_vl_by_name(vl, key, &vldb);
David Howells08e0e7c2007-04-26 15:55:03 -0700322 if (ret < 0) {
323 printk("kAFS: failed to locate '%s' in cell '%s'\n",
324 vl->vldb.name, vl->cell->name);
325 return ret;
326 }
327 }
328
329 afs_vlocation_apply_update(vl, &vldb);
330 _leave(" = 0");
331 return 0;
332}
333
334/*
335 * queue a vlocation record for updates
336 */
Adrian Bunkc1206a22007-10-16 23:26:41 -0700337static void afs_vlocation_queue_for_updates(struct afs_vlocation *vl)
David Howells08e0e7c2007-04-26 15:55:03 -0700338{
339 struct afs_vlocation *xvl;
340
341 /* wait at least 10 minutes before updating... */
342 vl->update_at = get_seconds() + afs_vlocation_update_timeout;
343
344 spin_lock(&afs_vlocation_updates_lock);
345
346 if (!list_empty(&afs_vlocation_updates)) {
347 /* ... but wait at least 1 second more than the newest record
348 * already queued so that we don't spam the VL server suddenly
349 * with lots of requests
350 */
351 xvl = list_entry(afs_vlocation_updates.prev,
352 struct afs_vlocation, update);
353 if (vl->update_at <= xvl->update_at)
354 vl->update_at = xvl->update_at + 1;
355 } else {
356 queue_delayed_work(afs_vlocation_update_worker,
357 &afs_vlocation_update,
358 afs_vlocation_update_timeout * HZ);
359 }
360
361 list_add_tail(&vl->update, &afs_vlocation_updates);
362 spin_unlock(&afs_vlocation_updates_lock);
363}
364
365/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * lookup volume location
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * - iterate through the VL servers in a cell until one of them admits knowing
368 * about the volume in question
369 * - lookup in the local cache if not able to find on the VL server
370 * - insert/update in the local cache if did get a VL response
371 */
David Howells08e0e7c2007-04-26 15:55:03 -0700372struct afs_vlocation *afs_vlocation_lookup(struct afs_cell *cell,
David Howells00d3b7a2007-04-26 15:57:07 -0700373 struct key *key,
David Howells08e0e7c2007-04-26 15:55:03 -0700374 const char *name,
375 size_t namesz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
David Howells08e0e7c2007-04-26 15:55:03 -0700377 struct afs_vlocation *vl;
378 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
David Howells00d3b7a2007-04-26 15:57:07 -0700380 _enter("{%s},{%x},%*.*s,%zu",
381 cell->name, key_serial(key),
382 (int) namesz, (int) namesz, name, namesz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Adrian Bunk65511982007-11-05 14:50:57 -0800384 if (namesz >= sizeof(vl->vldb.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 _leave(" = -ENAMETOOLONG");
David Howells08e0e7c2007-04-26 15:55:03 -0700386 return ERR_PTR(-ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
David Howells08e0e7c2007-04-26 15:55:03 -0700389 /* see if we have an in-memory copy first */
390 down_write(&cell->vl_sem);
391 spin_lock(&cell->vl_lock);
392 list_for_each_entry(vl, &cell->vl_list, link) {
393 if (vl->vldb.name[namesz] != '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 continue;
David Howells08e0e7c2007-04-26 15:55:03 -0700395 if (memcmp(vl->vldb.name, name, namesz) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto found_in_memory;
397 }
David Howells08e0e7c2007-04-26 15:55:03 -0700398 spin_unlock(&cell->vl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* not in the cell's in-memory lists - create a new record */
David Howells08e0e7c2007-04-26 15:55:03 -0700401 vl = afs_vlocation_alloc(cell, name, namesz);
402 if (!vl) {
403 up_write(&cell->vl_sem);
404 return ERR_PTR(-ENOMEM);
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 afs_get_cell(cell);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
David Howells08e0e7c2007-04-26 15:55:03 -0700409 list_add_tail(&vl->link, &cell->vl_list);
410 vl->state = AFS_VL_CREATING;
411 up_write(&cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
David Howells08e0e7c2007-04-26 15:55:03 -0700413fill_in_record:
David Howells00d3b7a2007-04-26 15:57:07 -0700414 ret = afs_vlocation_fill_in_record(vl, key);
David Howells08e0e7c2007-04-26 15:55:03 -0700415 if (ret < 0)
416 goto error_abandon;
David S. Miller39bf0942007-04-26 20:39:14 -0700417 spin_lock(&vl->lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700418 vl->state = AFS_VL_VALID;
David S. Miller39bf0942007-04-26 20:39:14 -0700419 spin_unlock(&vl->lock);
David Howells47051a22007-04-27 15:26:30 -0700420 wake_up(&vl->waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
David Howells9b3f26c2009-04-03 16:42:41 +0100422 /* update volume entry in local cache */
423#ifdef CONFIG_AFS_FSCACHE
424 fscache_update_cookie(vl->cache);
425#endif
426
David Howells08e0e7c2007-04-26 15:55:03 -0700427 /* schedule for regular updates */
428 afs_vlocation_queue_for_updates(vl);
429 goto success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David Howellsec268152007-04-26 15:49:28 -0700431found_in_memory:
David Howells08e0e7c2007-04-26 15:55:03 -0700432 /* found in memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 _debug("found in memory");
David Howells08e0e7c2007-04-26 15:55:03 -0700434 atomic_inc(&vl->usage);
435 spin_unlock(&cell->vl_lock);
436 if (!list_empty(&vl->grave)) {
437 spin_lock(&afs_vlocation_graveyard_lock);
438 list_del_init(&vl->grave);
439 spin_unlock(&afs_vlocation_graveyard_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
David Howells08e0e7c2007-04-26 15:55:03 -0700441 up_write(&cell->vl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
David Howells08e0e7c2007-04-26 15:55:03 -0700443 /* see if it was an abandoned record that we might try filling in */
David S. Miller39bf0942007-04-26 20:39:14 -0700444 spin_lock(&vl->lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700445 while (vl->state != AFS_VL_VALID) {
446 afs_vlocation_state_t state = vl->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
David Howells08e0e7c2007-04-26 15:55:03 -0700448 _debug("invalid [state %d]", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
David Howells47051a22007-04-27 15:26:30 -0700450 if (state == AFS_VL_NEW || state == AFS_VL_NO_VOLUME) {
David S. Miller39bf0942007-04-26 20:39:14 -0700451 vl->state = AFS_VL_CREATING;
452 spin_unlock(&vl->lock);
453 goto fill_in_record;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
David Howells08e0e7c2007-04-26 15:55:03 -0700456 /* must now wait for creation or update by someone else to
457 * complete */
458 _debug("wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
David S. Miller39bf0942007-04-26 20:39:14 -0700460 spin_unlock(&vl->lock);
David Howells47051a22007-04-27 15:26:30 -0700461 ret = wait_event_interruptible(vl->waitq,
462 vl->state == AFS_VL_NEW ||
463 vl->state == AFS_VL_VALID ||
464 vl->state == AFS_VL_NO_VOLUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (ret < 0)
David Howells08e0e7c2007-04-26 15:55:03 -0700466 goto error;
David S. Miller39bf0942007-04-26 20:39:14 -0700467 spin_lock(&vl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
David S. Miller39bf0942007-04-26 20:39:14 -0700469 spin_unlock(&vl->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
David Howells08e0e7c2007-04-26 15:55:03 -0700471success:
David Howells9b3f26c2009-04-03 16:42:41 +0100472 _leave(" = %p", vl);
David Howells08e0e7c2007-04-26 15:55:03 -0700473 return vl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
David Howells08e0e7c2007-04-26 15:55:03 -0700475error_abandon:
David S. Miller39bf0942007-04-26 20:39:14 -0700476 spin_lock(&vl->lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700477 vl->state = AFS_VL_NEW;
David S. Miller39bf0942007-04-26 20:39:14 -0700478 spin_unlock(&vl->lock);
David Howells47051a22007-04-27 15:26:30 -0700479 wake_up(&vl->waitq);
David Howells08e0e7c2007-04-26 15:55:03 -0700480error:
481 ASSERT(vl != NULL);
482 afs_put_vlocation(vl);
483 _leave(" = %d", ret);
484 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
David Howells08e0e7c2007-04-26 15:55:03 -0700488 * finish using a volume location record
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
David Howells08e0e7c2007-04-26 15:55:03 -0700490void afs_put_vlocation(struct afs_vlocation *vl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
David Howells08e0e7c2007-04-26 15:55:03 -0700492 if (!vl)
493 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
David Howells08e0e7c2007-04-26 15:55:03 -0700495 _enter("%s", vl->vldb.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
David Howells08e0e7c2007-04-26 15:55:03 -0700497 ASSERTCMP(atomic_read(&vl->usage), >, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
David Howells08e0e7c2007-04-26 15:55:03 -0700499 if (likely(!atomic_dec_and_test(&vl->usage))) {
500 _leave("");
501 return;
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David Howells08e0e7c2007-04-26 15:55:03 -0700504 spin_lock(&afs_vlocation_graveyard_lock);
505 if (atomic_read(&vl->usage) == 0) {
506 _debug("buried");
507 list_move_tail(&vl->grave, &afs_vlocation_graveyard);
508 vl->time_of_death = get_seconds();
509 schedule_delayed_work(&afs_vlocation_reap,
510 afs_vlocation_timeout * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David Howells08e0e7c2007-04-26 15:55:03 -0700512 /* suspend updates on this record */
513 if (!list_empty(&vl->update)) {
514 spin_lock(&afs_vlocation_updates_lock);
515 list_del_init(&vl->update);
516 spin_unlock(&afs_vlocation_updates_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 }
David Howells08e0e7c2007-04-26 15:55:03 -0700519 spin_unlock(&afs_vlocation_graveyard_lock);
520 _leave(" [killed?]");
David Howellsec268152007-04-26 15:49:28 -0700521}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
David Howells08e0e7c2007-04-26 15:55:03 -0700524 * destroy a dead volume location record
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 */
David Howells08e0e7c2007-04-26 15:55:03 -0700526static void afs_vlocation_destroy(struct afs_vlocation *vl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
David Howells08e0e7c2007-04-26 15:55:03 -0700528 _enter("%p", vl);
529
David Howells9b3f26c2009-04-03 16:42:41 +0100530#ifdef CONFIG_AFS_FSCACHE
531 fscache_relinquish_cookie(vl->cache, 0);
David Howells08e0e7c2007-04-26 15:55:03 -0700532#endif
David Howells08e0e7c2007-04-26 15:55:03 -0700533 afs_put_cell(vl->cell);
534 kfree(vl);
535}
536
537/*
538 * reap dead volume location records
539 */
540static void afs_vlocation_reaper(struct work_struct *work)
541{
542 LIST_HEAD(corpses);
543 struct afs_vlocation *vl;
544 unsigned long delay, expiry;
545 time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 _enter("");
548
David Howells08e0e7c2007-04-26 15:55:03 -0700549 now = get_seconds();
550 spin_lock(&afs_vlocation_graveyard_lock);
551
552 while (!list_empty(&afs_vlocation_graveyard)) {
553 vl = list_entry(afs_vlocation_graveyard.next,
554 struct afs_vlocation, grave);
555
556 _debug("check %p", vl);
557
558 /* the queue is ordered most dead first */
559 expiry = vl->time_of_death + afs_vlocation_timeout;
560 if (expiry > now) {
561 delay = (expiry - now) * HZ;
562 _debug("delay %lu", delay);
563 if (!schedule_delayed_work(&afs_vlocation_reap,
564 delay)) {
565 cancel_delayed_work(&afs_vlocation_reap);
566 schedule_delayed_work(&afs_vlocation_reap,
567 delay);
568 }
569 break;
570 }
571
572 spin_lock(&vl->cell->vl_lock);
573 if (atomic_read(&vl->usage) > 0) {
574 _debug("no reap");
575 list_del_init(&vl->grave);
576 } else {
577 _debug("reap");
578 list_move_tail(&vl->grave, &corpses);
579 list_del_init(&vl->link);
580 }
581 spin_unlock(&vl->cell->vl_lock);
582 }
583
584 spin_unlock(&afs_vlocation_graveyard_lock);
585
586 /* now reap the corpses we've extracted */
587 while (!list_empty(&corpses)) {
588 vl = list_entry(corpses.next, struct afs_vlocation, grave);
589 list_del(&vl->grave);
590 afs_vlocation_destroy(vl);
591 }
592
593 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700594}
David Howells08e0e7c2007-04-26 15:55:03 -0700595
596/*
597 * initialise the VL update process
598 */
599int __init afs_vlocation_update_init(void)
600{
601 afs_vlocation_update_worker =
602 create_singlethread_workqueue("kafs_vlupdated");
603 return afs_vlocation_update_worker ? 0 : -ENOMEM;
604}
605
606/*
607 * discard all the volume location records for rmmod
608 */
David Howellsfbb3fcb2007-05-03 03:12:46 -0700609void afs_vlocation_purge(void)
David Howells08e0e7c2007-04-26 15:55:03 -0700610{
611 afs_vlocation_timeout = 0;
612
613 spin_lock(&afs_vlocation_updates_lock);
614 list_del_init(&afs_vlocation_updates);
615 spin_unlock(&afs_vlocation_updates_lock);
616 cancel_delayed_work(&afs_vlocation_update);
617 queue_delayed_work(afs_vlocation_update_worker,
618 &afs_vlocation_update, 0);
619 destroy_workqueue(afs_vlocation_update_worker);
620
621 cancel_delayed_work(&afs_vlocation_reap);
622 schedule_delayed_work(&afs_vlocation_reap, 0);
623}
624
625/*
626 * update a volume location
627 */
628static void afs_vlocation_updater(struct work_struct *work)
629{
630 struct afs_cache_vlocation vldb;
631 struct afs_vlocation *vl, *xvl;
632 time_t now;
633 long timeout;
634 int ret;
635
636 _enter("");
637
638 now = get_seconds();
639
640 /* find a record to update */
641 spin_lock(&afs_vlocation_updates_lock);
642 for (;;) {
643 if (list_empty(&afs_vlocation_updates)) {
644 spin_unlock(&afs_vlocation_updates_lock);
645 _leave(" [nothing]");
646 return;
647 }
648
649 vl = list_entry(afs_vlocation_updates.next,
650 struct afs_vlocation, update);
651 if (atomic_read(&vl->usage) > 0)
652 break;
653 list_del_init(&vl->update);
654 }
655
656 timeout = vl->update_at - now;
657 if (timeout > 0) {
658 queue_delayed_work(afs_vlocation_update_worker,
659 &afs_vlocation_update, timeout * HZ);
660 spin_unlock(&afs_vlocation_updates_lock);
661 _leave(" [nothing]");
662 return;
663 }
664
665 list_del_init(&vl->update);
666 atomic_inc(&vl->usage);
667 spin_unlock(&afs_vlocation_updates_lock);
668
669 /* we can now perform the update */
670 _debug("update %s", vl->vldb.name);
671 vl->state = AFS_VL_UPDATING;
672 vl->upd_rej_cnt = 0;
673 vl->upd_busy_cnt = 0;
674
David Howells00d3b7a2007-04-26 15:57:07 -0700675 ret = afs_vlocation_update_record(vl, NULL, &vldb);
David S. Miller39bf0942007-04-26 20:39:14 -0700676 spin_lock(&vl->lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700677 switch (ret) {
678 case 0:
679 afs_vlocation_apply_update(vl, &vldb);
680 vl->state = AFS_VL_VALID;
681 break;
682 case -ENOMEDIUM:
683 vl->state = AFS_VL_VOLUME_DELETED;
684 break;
685 default:
686 vl->state = AFS_VL_UNCERTAIN;
687 break;
688 }
David S. Miller39bf0942007-04-26 20:39:14 -0700689 spin_unlock(&vl->lock);
David Howells47051a22007-04-27 15:26:30 -0700690 wake_up(&vl->waitq);
David Howells08e0e7c2007-04-26 15:55:03 -0700691
692 /* and then reschedule */
693 _debug("reschedule");
694 vl->update_at = get_seconds() + afs_vlocation_update_timeout;
695
696 spin_lock(&afs_vlocation_updates_lock);
697
698 if (!list_empty(&afs_vlocation_updates)) {
699 /* next update in 10 minutes, but wait at least 1 second more
700 * than the newest record already queued so that we don't spam
701 * the VL server suddenly with lots of requests
702 */
703 xvl = list_entry(afs_vlocation_updates.prev,
704 struct afs_vlocation, update);
705 if (vl->update_at <= xvl->update_at)
706 vl->update_at = xvl->update_at + 1;
707 xvl = list_entry(afs_vlocation_updates.next,
708 struct afs_vlocation, update);
709 timeout = xvl->update_at - now;
710 if (timeout < 0)
711 timeout = 0;
712 } else {
713 timeout = afs_vlocation_update_timeout;
714 }
715
716 ASSERT(list_empty(&vl->update));
717
718 list_add_tail(&vl->update, &afs_vlocation_updates);
719
720 _debug("timeout %ld", timeout);
721 queue_delayed_work(afs_vlocation_update_worker,
722 &afs_vlocation_update, timeout * HZ);
723 spin_unlock(&afs_vlocation_updates_lock);
724 afs_put_vlocation(vl);
725}