David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 1 | /* AFS volume location management |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 3 | * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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/kernel.h> |
| 13 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 16 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "internal.h" |
| 18 | |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 19 | static unsigned afs_vlocation_timeout = 10; /* volume location timeout in seconds */ |
| 20 | static unsigned afs_vlocation_update_timeout = 10 * 60; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 22 | static void afs_vlocation_reaper(struct work_struct *); |
| 23 | static void afs_vlocation_updater(struct work_struct *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 25 | static LIST_HEAD(afs_vlocation_updates); |
| 26 | static LIST_HEAD(afs_vlocation_graveyard); |
| 27 | static DEFINE_SPINLOCK(afs_vlocation_updates_lock); |
| 28 | static DEFINE_SPINLOCK(afs_vlocation_graveyard_lock); |
| 29 | static DECLARE_DELAYED_WORK(afs_vlocation_reap, afs_vlocation_reaper); |
| 30 | static DECLARE_DELAYED_WORK(afs_vlocation_update, afs_vlocation_updater); |
| 31 | static struct workqueue_struct *afs_vlocation_update_worker; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* |
| 34 | * iterate through the VL servers in a cell until one of them admits knowing |
| 35 | * about the volume in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 37 | static int afs_vlocation_access_vl_by_name(struct afs_vlocation *vl, |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 38 | struct key *key, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | struct afs_cache_vlocation *vldb) |
| 40 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 41 | struct afs_cell *cell = vl->cell; |
| 42 | struct in_addr addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | int count, ret; |
| 44 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 45 | _enter("%s,%s", cell->name, vl->vldb.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 47 | down_write(&vl->cell->vl_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | ret = -ENOMEDIUM; |
| 49 | for (count = cell->vl_naddrs; count > 0; count--) { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 50 | addr = cell->vl_addrs[cell->vl_curr_svix]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 52 | _debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /* attempt to access the VL server */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 55 | ret = afs_vl_get_entry_by_name(&addr, key, vl->vldb.name, vldb, |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 56 | &afs_sync_call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | switch (ret) { |
| 58 | case 0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | goto out; |
| 60 | case -ENOMEM: |
| 61 | case -ENONET: |
| 62 | case -ENETUNREACH: |
| 63 | case -EHOSTUNREACH: |
| 64 | case -ECONNREFUSED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | if (ret == -ENOMEM || ret == -ENONET) |
| 66 | goto out; |
| 67 | goto rotate; |
| 68 | case -ENOMEDIUM: |
David Howells | 005411c | 2009-06-16 21:36:49 +0100 | [diff] [blame] | 69 | case -EKEYREJECTED: |
| 70 | case -EKEYEXPIRED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | goto out; |
| 72 | default: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 73 | ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | goto rotate; |
| 75 | } |
| 76 | |
| 77 | /* rotate the server records upon lookup failure */ |
| 78 | rotate: |
| 79 | cell->vl_curr_svix++; |
| 80 | cell->vl_curr_svix %= cell->vl_naddrs; |
| 81 | } |
| 82 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 83 | out: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 84 | up_write(&vl->cell->vl_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | _leave(" = %d", ret); |
| 86 | return ret; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 87 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* |
| 90 | * iterate through the VL servers in a cell until one of them admits knowing |
| 91 | * about the volume in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 93 | static int afs_vlocation_access_vl_by_id(struct afs_vlocation *vl, |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 94 | struct key *key, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | afs_volid_t volid, |
| 96 | afs_voltype_t voltype, |
| 97 | struct afs_cache_vlocation *vldb) |
| 98 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 99 | struct afs_cell *cell = vl->cell; |
| 100 | struct in_addr addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | int count, ret; |
| 102 | |
| 103 | _enter("%s,%x,%d,", cell->name, volid, voltype); |
| 104 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 105 | down_write(&vl->cell->vl_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | ret = -ENOMEDIUM; |
| 107 | for (count = cell->vl_naddrs; count > 0; count--) { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 108 | addr = cell->vl_addrs[cell->vl_curr_svix]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 110 | _debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /* attempt to access the VL server */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 113 | ret = afs_vl_get_entry_by_id(&addr, key, volid, voltype, vldb, |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 114 | &afs_sync_call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | switch (ret) { |
| 116 | case 0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | goto out; |
| 118 | case -ENOMEM: |
| 119 | case -ENONET: |
| 120 | case -ENETUNREACH: |
| 121 | case -EHOSTUNREACH: |
| 122 | case -ECONNREFUSED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | if (ret == -ENOMEM || ret == -ENONET) |
| 124 | goto out; |
| 125 | goto rotate; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 126 | case -EBUSY: |
| 127 | vl->upd_busy_cnt++; |
| 128 | if (vl->upd_busy_cnt <= 3) { |
| 129 | if (vl->upd_busy_cnt > 1) { |
| 130 | /* second+ BUSY - sleep a little bit */ |
| 131 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 132 | schedule_timeout(1); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 133 | } |
| 134 | continue; |
| 135 | } |
| 136 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | case -ENOMEDIUM: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 138 | vl->upd_rej_cnt++; |
| 139 | goto rotate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | default: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 141 | ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | 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 Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 149 | vl->upd_busy_cnt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 152 | out: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 153 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | _leave(" = %d", ret); |
| 163 | return ret; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 164 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 167 | * allocate a volume location record |
| 168 | */ |
| 169 | static 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. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 184 | spin_lock_init(&vl->lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 185 | 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 | */ |
| 195 | static int afs_vlocation_update_record(struct afs_vlocation *vl, |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 196 | struct key *key, |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 197 | 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 Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 237 | ret = afs_vlocation_access_vl_by_id(vl, key, vid, voltype, vldb); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 238 | 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 | */ |
| 267 | static 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 Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 286 | #ifdef CONFIG_AFS_FSCACHE |
| 287 | fscache_update_cookie(vl->cache); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 288 | #endif |
| 289 | } |
| 290 | |
| 291 | /* |
| 292 | * fill in a volume location record, consulting the cache and the VL server |
| 293 | * both |
| 294 | */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 295 | static int afs_vlocation_fill_in_record(struct afs_vlocation *vl, |
| 296 | struct key *key) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 297 | { |
| 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 Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 308 | #ifdef CONFIG_AFS_FSCACHE |
| 309 | vl->cache = fscache_acquire_cookie(vl->cell->cache, |
David Howells | 94d30ae | 2013-09-21 00:09:31 +0100 | [diff] [blame] | 310 | &afs_vlocation_cache_index_def, vl, |
| 311 | true); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 312 | #endif |
| 313 | |
| 314 | if (vl->valid) { |
| 315 | /* try to update a known volume in the cell VL databases by |
| 316 | * ID as the name may have changed */ |
| 317 | _debug("found in cache"); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 318 | ret = afs_vlocation_update_record(vl, key, &vldb); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 319 | } else { |
| 320 | /* try to look up an unknown volume in the cell VL databases by |
| 321 | * name */ |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 322 | ret = afs_vlocation_access_vl_by_name(vl, key, &vldb); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 323 | if (ret < 0) { |
| 324 | printk("kAFS: failed to locate '%s' in cell '%s'\n", |
| 325 | vl->vldb.name, vl->cell->name); |
| 326 | return ret; |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | afs_vlocation_apply_update(vl, &vldb); |
| 331 | _leave(" = 0"); |
| 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | /* |
| 336 | * queue a vlocation record for updates |
| 337 | */ |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 338 | static void afs_vlocation_queue_for_updates(struct afs_vlocation *vl) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 339 | { |
| 340 | struct afs_vlocation *xvl; |
| 341 | |
| 342 | /* wait at least 10 minutes before updating... */ |
| 343 | vl->update_at = get_seconds() + afs_vlocation_update_timeout; |
| 344 | |
| 345 | spin_lock(&afs_vlocation_updates_lock); |
| 346 | |
| 347 | if (!list_empty(&afs_vlocation_updates)) { |
| 348 | /* ... but wait at least 1 second more than the newest record |
| 349 | * already queued so that we don't spam the VL server suddenly |
| 350 | * with lots of requests |
| 351 | */ |
| 352 | xvl = list_entry(afs_vlocation_updates.prev, |
| 353 | struct afs_vlocation, update); |
| 354 | if (vl->update_at <= xvl->update_at) |
| 355 | vl->update_at = xvl->update_at + 1; |
| 356 | } else { |
| 357 | queue_delayed_work(afs_vlocation_update_worker, |
| 358 | &afs_vlocation_update, |
| 359 | afs_vlocation_update_timeout * HZ); |
| 360 | } |
| 361 | |
| 362 | list_add_tail(&vl->update, &afs_vlocation_updates); |
| 363 | spin_unlock(&afs_vlocation_updates_lock); |
| 364 | } |
| 365 | |
| 366 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | * lookup volume location |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | * - iterate through the VL servers in a cell until one of them admits knowing |
| 369 | * about the volume in question |
| 370 | * - lookup in the local cache if not able to find on the VL server |
| 371 | * - insert/update in the local cache if did get a VL response |
| 372 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 373 | struct afs_vlocation *afs_vlocation_lookup(struct afs_cell *cell, |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 374 | struct key *key, |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 375 | const char *name, |
| 376 | size_t namesz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 378 | struct afs_vlocation *vl; |
| 379 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 381 | _enter("{%s},{%x},%*.*s,%zu", |
| 382 | cell->name, key_serial(key), |
| 383 | (int) namesz, (int) namesz, name, namesz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
Adrian Bunk | 6551198 | 2007-11-05 14:50:57 -0800 | [diff] [blame] | 385 | if (namesz >= sizeof(vl->vldb.name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | _leave(" = -ENAMETOOLONG"); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 387 | return ERR_PTR(-ENAMETOOLONG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 390 | /* see if we have an in-memory copy first */ |
| 391 | down_write(&cell->vl_sem); |
| 392 | spin_lock(&cell->vl_lock); |
| 393 | list_for_each_entry(vl, &cell->vl_list, link) { |
| 394 | if (vl->vldb.name[namesz] != '\0') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | continue; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 396 | if (memcmp(vl->vldb.name, name, namesz) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | goto found_in_memory; |
| 398 | } |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 399 | spin_unlock(&cell->vl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | /* not in the cell's in-memory lists - create a new record */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 402 | vl = afs_vlocation_alloc(cell, name, namesz); |
| 403 | if (!vl) { |
| 404 | up_write(&cell->vl_sem); |
| 405 | return ERR_PTR(-ENOMEM); |
| 406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | afs_get_cell(cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 410 | list_add_tail(&vl->link, &cell->vl_list); |
| 411 | vl->state = AFS_VL_CREATING; |
| 412 | up_write(&cell->vl_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 414 | fill_in_record: |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 415 | ret = afs_vlocation_fill_in_record(vl, key); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 416 | if (ret < 0) |
| 417 | goto error_abandon; |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 418 | spin_lock(&vl->lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 419 | vl->state = AFS_VL_VALID; |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 420 | spin_unlock(&vl->lock); |
David Howells | 47051a2 | 2007-04-27 15:26:30 -0700 | [diff] [blame] | 421 | wake_up(&vl->waitq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
David Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 423 | /* update volume entry in local cache */ |
| 424 | #ifdef CONFIG_AFS_FSCACHE |
| 425 | fscache_update_cookie(vl->cache); |
| 426 | #endif |
| 427 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 428 | /* schedule for regular updates */ |
| 429 | afs_vlocation_queue_for_updates(vl); |
| 430 | goto success; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 432 | found_in_memory: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 433 | /* found in memory */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | _debug("found in memory"); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 435 | atomic_inc(&vl->usage); |
| 436 | spin_unlock(&cell->vl_lock); |
| 437 | if (!list_empty(&vl->grave)) { |
| 438 | spin_lock(&afs_vlocation_graveyard_lock); |
| 439 | list_del_init(&vl->grave); |
| 440 | spin_unlock(&afs_vlocation_graveyard_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 442 | up_write(&cell->vl_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 444 | /* see if it was an abandoned record that we might try filling in */ |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 445 | spin_lock(&vl->lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 446 | while (vl->state != AFS_VL_VALID) { |
| 447 | afs_vlocation_state_t state = vl->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 449 | _debug("invalid [state %d]", state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
David Howells | 47051a2 | 2007-04-27 15:26:30 -0700 | [diff] [blame] | 451 | if (state == AFS_VL_NEW || state == AFS_VL_NO_VOLUME) { |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 452 | vl->state = AFS_VL_CREATING; |
| 453 | spin_unlock(&vl->lock); |
| 454 | goto fill_in_record; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 457 | /* must now wait for creation or update by someone else to |
| 458 | * complete */ |
| 459 | _debug("wait"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 461 | spin_unlock(&vl->lock); |
David Howells | 47051a2 | 2007-04-27 15:26:30 -0700 | [diff] [blame] | 462 | ret = wait_event_interruptible(vl->waitq, |
| 463 | vl->state == AFS_VL_NEW || |
| 464 | vl->state == AFS_VL_VALID || |
| 465 | vl->state == AFS_VL_NO_VOLUME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | if (ret < 0) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 467 | goto error; |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 468 | spin_lock(&vl->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 470 | spin_unlock(&vl->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 472 | success: |
David Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 473 | _leave(" = %p", vl); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 474 | return vl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 476 | error_abandon: |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 477 | spin_lock(&vl->lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 478 | vl->state = AFS_VL_NEW; |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 479 | spin_unlock(&vl->lock); |
David Howells | 47051a2 | 2007-04-27 15:26:30 -0700 | [diff] [blame] | 480 | wake_up(&vl->waitq); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 481 | error: |
| 482 | ASSERT(vl != NULL); |
| 483 | afs_put_vlocation(vl); |
| 484 | _leave(" = %d", ret); |
| 485 | return ERR_PTR(ret); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 489 | * finish using a volume location record |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 491 | void afs_put_vlocation(struct afs_vlocation *vl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 493 | if (!vl) |
| 494 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 496 | _enter("%s", vl->vldb.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 498 | ASSERTCMP(atomic_read(&vl->usage), >, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 500 | if (likely(!atomic_dec_and_test(&vl->usage))) { |
| 501 | _leave(""); |
| 502 | return; |
| 503 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 505 | spin_lock(&afs_vlocation_graveyard_lock); |
| 506 | if (atomic_read(&vl->usage) == 0) { |
| 507 | _debug("buried"); |
| 508 | list_move_tail(&vl->grave, &afs_vlocation_graveyard); |
| 509 | vl->time_of_death = get_seconds(); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 510 | queue_delayed_work(afs_wq, &afs_vlocation_reap, |
| 511 | afs_vlocation_timeout * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 513 | /* suspend updates on this record */ |
| 514 | if (!list_empty(&vl->update)) { |
| 515 | spin_lock(&afs_vlocation_updates_lock); |
| 516 | list_del_init(&vl->update); |
| 517 | spin_unlock(&afs_vlocation_updates_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | } |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 520 | spin_unlock(&afs_vlocation_graveyard_lock); |
| 521 | _leave(" [killed?]"); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 525 | * destroy a dead volume location record |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 527 | static void afs_vlocation_destroy(struct afs_vlocation *vl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 529 | _enter("%p", vl); |
| 530 | |
David Howells | 9b3f26c | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 531 | #ifdef CONFIG_AFS_FSCACHE |
| 532 | fscache_relinquish_cookie(vl->cache, 0); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 533 | #endif |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 534 | afs_put_cell(vl->cell); |
| 535 | kfree(vl); |
| 536 | } |
| 537 | |
| 538 | /* |
| 539 | * reap dead volume location records |
| 540 | */ |
| 541 | static void afs_vlocation_reaper(struct work_struct *work) |
| 542 | { |
| 543 | LIST_HEAD(corpses); |
| 544 | struct afs_vlocation *vl; |
| 545 | unsigned long delay, expiry; |
| 546 | time_t now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | _enter(""); |
| 549 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 550 | now = get_seconds(); |
| 551 | spin_lock(&afs_vlocation_graveyard_lock); |
| 552 | |
| 553 | while (!list_empty(&afs_vlocation_graveyard)) { |
| 554 | vl = list_entry(afs_vlocation_graveyard.next, |
| 555 | struct afs_vlocation, grave); |
| 556 | |
| 557 | _debug("check %p", vl); |
| 558 | |
| 559 | /* the queue is ordered most dead first */ |
| 560 | expiry = vl->time_of_death + afs_vlocation_timeout; |
| 561 | if (expiry > now) { |
| 562 | delay = (expiry - now) * HZ; |
| 563 | _debug("delay %lu", delay); |
Tejun Heo | 41f63c5 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 564 | mod_delayed_work(afs_wq, &afs_vlocation_reap, delay); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 565 | break; |
| 566 | } |
| 567 | |
| 568 | spin_lock(&vl->cell->vl_lock); |
| 569 | if (atomic_read(&vl->usage) > 0) { |
| 570 | _debug("no reap"); |
| 571 | list_del_init(&vl->grave); |
| 572 | } else { |
| 573 | _debug("reap"); |
| 574 | list_move_tail(&vl->grave, &corpses); |
| 575 | list_del_init(&vl->link); |
| 576 | } |
| 577 | spin_unlock(&vl->cell->vl_lock); |
| 578 | } |
| 579 | |
| 580 | spin_unlock(&afs_vlocation_graveyard_lock); |
| 581 | |
| 582 | /* now reap the corpses we've extracted */ |
| 583 | while (!list_empty(&corpses)) { |
| 584 | vl = list_entry(corpses.next, struct afs_vlocation, grave); |
| 585 | list_del(&vl->grave); |
| 586 | afs_vlocation_destroy(vl); |
| 587 | } |
| 588 | |
| 589 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 590 | } |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 591 | |
| 592 | /* |
| 593 | * initialise the VL update process |
| 594 | */ |
| 595 | int __init afs_vlocation_update_init(void) |
| 596 | { |
| 597 | afs_vlocation_update_worker = |
| 598 | create_singlethread_workqueue("kafs_vlupdated"); |
| 599 | return afs_vlocation_update_worker ? 0 : -ENOMEM; |
| 600 | } |
| 601 | |
| 602 | /* |
| 603 | * discard all the volume location records for rmmod |
| 604 | */ |
David Howells | fbb3fcb | 2007-05-03 03:12:46 -0700 | [diff] [blame] | 605 | void afs_vlocation_purge(void) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 606 | { |
| 607 | afs_vlocation_timeout = 0; |
| 608 | |
| 609 | spin_lock(&afs_vlocation_updates_lock); |
| 610 | list_del_init(&afs_vlocation_updates); |
| 611 | spin_unlock(&afs_vlocation_updates_lock); |
Tejun Heo | 41f63c5 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 612 | mod_delayed_work(afs_vlocation_update_worker, &afs_vlocation_update, 0); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 613 | destroy_workqueue(afs_vlocation_update_worker); |
| 614 | |
Tejun Heo | 41f63c5 | 2012-08-03 10:30:47 -0700 | [diff] [blame] | 615 | mod_delayed_work(afs_wq, &afs_vlocation_reap, 0); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | /* |
| 619 | * update a volume location |
| 620 | */ |
| 621 | static void afs_vlocation_updater(struct work_struct *work) |
| 622 | { |
| 623 | struct afs_cache_vlocation vldb; |
| 624 | struct afs_vlocation *vl, *xvl; |
| 625 | time_t now; |
| 626 | long timeout; |
| 627 | int ret; |
| 628 | |
| 629 | _enter(""); |
| 630 | |
| 631 | now = get_seconds(); |
| 632 | |
| 633 | /* find a record to update */ |
| 634 | spin_lock(&afs_vlocation_updates_lock); |
| 635 | for (;;) { |
| 636 | if (list_empty(&afs_vlocation_updates)) { |
| 637 | spin_unlock(&afs_vlocation_updates_lock); |
| 638 | _leave(" [nothing]"); |
| 639 | return; |
| 640 | } |
| 641 | |
| 642 | vl = list_entry(afs_vlocation_updates.next, |
| 643 | struct afs_vlocation, update); |
| 644 | if (atomic_read(&vl->usage) > 0) |
| 645 | break; |
| 646 | list_del_init(&vl->update); |
| 647 | } |
| 648 | |
| 649 | timeout = vl->update_at - now; |
| 650 | if (timeout > 0) { |
| 651 | queue_delayed_work(afs_vlocation_update_worker, |
| 652 | &afs_vlocation_update, timeout * HZ); |
| 653 | spin_unlock(&afs_vlocation_updates_lock); |
| 654 | _leave(" [nothing]"); |
| 655 | return; |
| 656 | } |
| 657 | |
| 658 | list_del_init(&vl->update); |
| 659 | atomic_inc(&vl->usage); |
| 660 | spin_unlock(&afs_vlocation_updates_lock); |
| 661 | |
| 662 | /* we can now perform the update */ |
| 663 | _debug("update %s", vl->vldb.name); |
| 664 | vl->state = AFS_VL_UPDATING; |
| 665 | vl->upd_rej_cnt = 0; |
| 666 | vl->upd_busy_cnt = 0; |
| 667 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 668 | ret = afs_vlocation_update_record(vl, NULL, &vldb); |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 669 | spin_lock(&vl->lock); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 670 | switch (ret) { |
| 671 | case 0: |
| 672 | afs_vlocation_apply_update(vl, &vldb); |
| 673 | vl->state = AFS_VL_VALID; |
| 674 | break; |
| 675 | case -ENOMEDIUM: |
| 676 | vl->state = AFS_VL_VOLUME_DELETED; |
| 677 | break; |
| 678 | default: |
| 679 | vl->state = AFS_VL_UNCERTAIN; |
| 680 | break; |
| 681 | } |
David S. Miller | 39bf094 | 2007-04-26 20:39:14 -0700 | [diff] [blame] | 682 | spin_unlock(&vl->lock); |
David Howells | 47051a2 | 2007-04-27 15:26:30 -0700 | [diff] [blame] | 683 | wake_up(&vl->waitq); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 684 | |
| 685 | /* and then reschedule */ |
| 686 | _debug("reschedule"); |
| 687 | vl->update_at = get_seconds() + afs_vlocation_update_timeout; |
| 688 | |
| 689 | spin_lock(&afs_vlocation_updates_lock); |
| 690 | |
| 691 | if (!list_empty(&afs_vlocation_updates)) { |
| 692 | /* next update in 10 minutes, but wait at least 1 second more |
| 693 | * than the newest record already queued so that we don't spam |
| 694 | * the VL server suddenly with lots of requests |
| 695 | */ |
| 696 | xvl = list_entry(afs_vlocation_updates.prev, |
| 697 | struct afs_vlocation, update); |
| 698 | if (vl->update_at <= xvl->update_at) |
| 699 | vl->update_at = xvl->update_at + 1; |
| 700 | xvl = list_entry(afs_vlocation_updates.next, |
| 701 | struct afs_vlocation, update); |
| 702 | timeout = xvl->update_at - now; |
| 703 | if (timeout < 0) |
| 704 | timeout = 0; |
| 705 | } else { |
| 706 | timeout = afs_vlocation_update_timeout; |
| 707 | } |
| 708 | |
| 709 | ASSERT(list_empty(&vl->update)); |
| 710 | |
| 711 | list_add_tail(&vl->update, &afs_vlocation_updates); |
| 712 | |
| 713 | _debug("timeout %ld", timeout); |
| 714 | queue_delayed_work(afs_vlocation_update_worker, |
| 715 | &afs_vlocation_update, timeout * HZ); |
| 716 | spin_unlock(&afs_vlocation_updates_lock); |
| 717 | afs_put_vlocation(vl); |
| 718 | } |