Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * dlmmod.c |
| 5 | * |
| 6 | * standalone DLM module |
| 7 | * |
| 8 | * Copyright (C) 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public |
| 21 | * License along with this program; if not, write to the |
| 22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | * Boston, MA 021110-1307, USA. |
| 24 | * |
| 25 | */ |
| 26 | |
| 27 | |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/fs.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/slab.h> |
| 32 | #include <linux/highmem.h> |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 33 | #include <linux/init.h> |
| 34 | #include <linux/sysctl.h> |
| 35 | #include <linux/random.h> |
| 36 | #include <linux/blkdev.h> |
| 37 | #include <linux/socket.h> |
| 38 | #include <linux/inet.h> |
| 39 | #include <linux/spinlock.h> |
| 40 | #include <linux/delay.h> |
| 41 | |
| 42 | |
| 43 | #include "cluster/heartbeat.h" |
| 44 | #include "cluster/nodemanager.h" |
| 45 | #include "cluster/tcp.h" |
| 46 | |
| 47 | #include "dlmapi.h" |
| 48 | #include "dlmcommon.h" |
Adrian Bunk | 82353b5 | 2005-12-19 11:16:07 -0800 | [diff] [blame] | 49 | #include "dlmdomain.h" |
Sunil Mushran | e5a0334 | 2008-03-10 15:16:28 -0700 | [diff] [blame] | 50 | #include "dlmdebug.h" |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 51 | |
| 52 | #define MLOG_MASK_PREFIX (ML_DLM|ML_DLM_MASTER) |
| 53 | #include "cluster/masklog.h" |
| 54 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 55 | static void dlm_mle_node_down(struct dlm_ctxt *dlm, |
| 56 | struct dlm_master_list_entry *mle, |
| 57 | struct o2nm_node *node, |
| 58 | int idx); |
| 59 | static void dlm_mle_node_up(struct dlm_ctxt *dlm, |
| 60 | struct dlm_master_list_entry *mle, |
| 61 | struct o2nm_node *node, |
| 62 | int idx); |
| 63 | |
| 64 | static void dlm_assert_master_worker(struct dlm_work_item *item, void *data); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 65 | static int dlm_do_assert_master(struct dlm_ctxt *dlm, |
| 66 | struct dlm_lock_resource *res, |
| 67 | void *nodemap, u32 flags); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 68 | static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 69 | |
| 70 | static inline int dlm_mle_equal(struct dlm_ctxt *dlm, |
| 71 | struct dlm_master_list_entry *mle, |
| 72 | const char *name, |
| 73 | unsigned int namelen) |
| 74 | { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 75 | if (dlm != mle->dlm) |
| 76 | return 0; |
| 77 | |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 78 | if (namelen != mle->mnamelen || |
| 79 | memcmp(name, mle->mname, namelen) != 0) |
Sunil Mushran | f77a9a7 | 2009-02-26 15:00:38 -0800 | [diff] [blame] | 80 | return 0; |
| 81 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 82 | return 1; |
| 83 | } |
| 84 | |
Fabian Frederick | 1a5c4e2 | 2014-06-04 16:06:06 -0700 | [diff] [blame] | 85 | static struct kmem_cache *dlm_lockres_cache; |
| 86 | static struct kmem_cache *dlm_lockname_cache; |
| 87 | static struct kmem_cache *dlm_mle_cache; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 88 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 89 | static void dlm_mle_release(struct kref *kref); |
| 90 | static void dlm_init_mle(struct dlm_master_list_entry *mle, |
| 91 | enum dlm_mle_type type, |
| 92 | struct dlm_ctxt *dlm, |
| 93 | struct dlm_lock_resource *res, |
| 94 | const char *name, |
| 95 | unsigned int namelen); |
| 96 | static void dlm_put_mle(struct dlm_master_list_entry *mle); |
| 97 | static void __dlm_put_mle(struct dlm_master_list_entry *mle); |
| 98 | static int dlm_find_mle(struct dlm_ctxt *dlm, |
| 99 | struct dlm_master_list_entry **mle, |
| 100 | char *name, unsigned int namelen); |
| 101 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 102 | static int dlm_do_master_request(struct dlm_lock_resource *res, |
| 103 | struct dlm_master_list_entry *mle, int to); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 104 | |
| 105 | |
| 106 | static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm, |
| 107 | struct dlm_lock_resource *res, |
| 108 | struct dlm_master_list_entry *mle, |
| 109 | int *blocked); |
| 110 | static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm, |
| 111 | struct dlm_lock_resource *res, |
| 112 | struct dlm_master_list_entry *mle, |
| 113 | int blocked); |
| 114 | static int dlm_add_migration_mle(struct dlm_ctxt *dlm, |
| 115 | struct dlm_lock_resource *res, |
| 116 | struct dlm_master_list_entry *mle, |
| 117 | struct dlm_master_list_entry **oldmle, |
| 118 | const char *name, unsigned int namelen, |
| 119 | u8 new_master, u8 master); |
| 120 | |
| 121 | static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm, |
| 122 | struct dlm_lock_resource *res); |
| 123 | static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm, |
| 124 | struct dlm_lock_resource *res); |
| 125 | static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm, |
| 126 | struct dlm_lock_resource *res, |
| 127 | u8 target); |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 128 | static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm, |
| 129 | struct dlm_lock_resource *res); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 130 | |
| 131 | |
| 132 | int dlm_is_host_down(int errno) |
| 133 | { |
| 134 | switch (errno) { |
| 135 | case -EBADF: |
| 136 | case -ECONNREFUSED: |
| 137 | case -ENOTCONN: |
| 138 | case -ECONNRESET: |
| 139 | case -EPIPE: |
| 140 | case -EHOSTDOWN: |
| 141 | case -EHOSTUNREACH: |
| 142 | case -ETIMEDOUT: |
| 143 | case -ECONNABORTED: |
| 144 | case -ENETDOWN: |
| 145 | case -ENETUNREACH: |
| 146 | case -ENETRESET: |
| 147 | case -ESHUTDOWN: |
| 148 | case -ENOPROTOOPT: |
| 149 | case -EINVAL: /* if returned from our tcp code, |
| 150 | this means there is no socket */ |
| 151 | return 1; |
| 152 | } |
| 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | |
| 157 | /* |
| 158 | * MASTER LIST FUNCTIONS |
| 159 | */ |
| 160 | |
| 161 | |
| 162 | /* |
| 163 | * regarding master list entries and heartbeat callbacks: |
| 164 | * |
| 165 | * in order to avoid sleeping and allocation that occurs in |
| 166 | * heartbeat, master list entries are simply attached to the |
| 167 | * dlm's established heartbeat callbacks. the mle is attached |
| 168 | * when it is created, and since the dlm->spinlock is held at |
| 169 | * that time, any heartbeat event will be properly discovered |
| 170 | * by the mle. the mle needs to be detached from the |
| 171 | * dlm->mle_hb_events list as soon as heartbeat events are no |
| 172 | * longer useful to the mle, and before the mle is freed. |
| 173 | * |
| 174 | * as a general rule, heartbeat events are no longer needed by |
| 175 | * the mle once an "answer" regarding the lock master has been |
| 176 | * received. |
| 177 | */ |
| 178 | static inline void __dlm_mle_attach_hb_events(struct dlm_ctxt *dlm, |
| 179 | struct dlm_master_list_entry *mle) |
| 180 | { |
| 181 | assert_spin_locked(&dlm->spinlock); |
| 182 | |
| 183 | list_add_tail(&mle->hb_events, &dlm->mle_hb_events); |
| 184 | } |
| 185 | |
| 186 | |
| 187 | static inline void __dlm_mle_detach_hb_events(struct dlm_ctxt *dlm, |
| 188 | struct dlm_master_list_entry *mle) |
| 189 | { |
| 190 | if (!list_empty(&mle->hb_events)) |
| 191 | list_del_init(&mle->hb_events); |
| 192 | } |
| 193 | |
| 194 | |
| 195 | static inline void dlm_mle_detach_hb_events(struct dlm_ctxt *dlm, |
| 196 | struct dlm_master_list_entry *mle) |
| 197 | { |
| 198 | spin_lock(&dlm->spinlock); |
| 199 | __dlm_mle_detach_hb_events(dlm, mle); |
| 200 | spin_unlock(&dlm->spinlock); |
| 201 | } |
| 202 | |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 203 | static void dlm_get_mle_inuse(struct dlm_master_list_entry *mle) |
| 204 | { |
| 205 | struct dlm_ctxt *dlm; |
| 206 | dlm = mle->dlm; |
| 207 | |
| 208 | assert_spin_locked(&dlm->spinlock); |
| 209 | assert_spin_locked(&dlm->master_lock); |
| 210 | mle->inuse++; |
| 211 | kref_get(&mle->mle_refs); |
| 212 | } |
| 213 | |
| 214 | static void dlm_put_mle_inuse(struct dlm_master_list_entry *mle) |
| 215 | { |
| 216 | struct dlm_ctxt *dlm; |
| 217 | dlm = mle->dlm; |
| 218 | |
| 219 | spin_lock(&dlm->spinlock); |
| 220 | spin_lock(&dlm->master_lock); |
| 221 | mle->inuse--; |
| 222 | __dlm_put_mle(mle); |
| 223 | spin_unlock(&dlm->master_lock); |
| 224 | spin_unlock(&dlm->spinlock); |
| 225 | |
| 226 | } |
| 227 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 228 | /* remove from list and free */ |
| 229 | static void __dlm_put_mle(struct dlm_master_list_entry *mle) |
| 230 | { |
| 231 | struct dlm_ctxt *dlm; |
| 232 | dlm = mle->dlm; |
| 233 | |
| 234 | assert_spin_locked(&dlm->spinlock); |
| 235 | assert_spin_locked(&dlm->master_lock); |
Kurt Hackel | aa85235 | 2006-04-27 19:04:49 -0700 | [diff] [blame] | 236 | if (!atomic_read(&mle->mle_refs.refcount)) { |
| 237 | /* this may or may not crash, but who cares. |
| 238 | * it's a BUG. */ |
| 239 | mlog(ML_ERROR, "bad mle: %p\n", mle); |
| 240 | dlm_print_one_mle(mle); |
| 241 | BUG(); |
| 242 | } else |
| 243 | kref_put(&mle->mle_refs, dlm_mle_release); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | |
| 247 | /* must not have any spinlocks coming in */ |
| 248 | static void dlm_put_mle(struct dlm_master_list_entry *mle) |
| 249 | { |
| 250 | struct dlm_ctxt *dlm; |
| 251 | dlm = mle->dlm; |
| 252 | |
| 253 | spin_lock(&dlm->spinlock); |
| 254 | spin_lock(&dlm->master_lock); |
| 255 | __dlm_put_mle(mle); |
| 256 | spin_unlock(&dlm->master_lock); |
| 257 | spin_unlock(&dlm->spinlock); |
| 258 | } |
| 259 | |
| 260 | static inline void dlm_get_mle(struct dlm_master_list_entry *mle) |
| 261 | { |
| 262 | kref_get(&mle->mle_refs); |
| 263 | } |
| 264 | |
| 265 | static void dlm_init_mle(struct dlm_master_list_entry *mle, |
| 266 | enum dlm_mle_type type, |
| 267 | struct dlm_ctxt *dlm, |
| 268 | struct dlm_lock_resource *res, |
| 269 | const char *name, |
| 270 | unsigned int namelen) |
| 271 | { |
| 272 | assert_spin_locked(&dlm->spinlock); |
| 273 | |
| 274 | mle->dlm = dlm; |
| 275 | mle->type = type; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 276 | INIT_HLIST_NODE(&mle->master_hash_node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 277 | INIT_LIST_HEAD(&mle->hb_events); |
| 278 | memset(mle->maybe_map, 0, sizeof(mle->maybe_map)); |
| 279 | spin_lock_init(&mle->spinlock); |
| 280 | init_waitqueue_head(&mle->wq); |
| 281 | atomic_set(&mle->woken, 0); |
| 282 | kref_init(&mle->mle_refs); |
| 283 | memset(mle->response_map, 0, sizeof(mle->response_map)); |
| 284 | mle->master = O2NM_MAX_NODES; |
| 285 | mle->new_master = O2NM_MAX_NODES; |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 286 | mle->inuse = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 287 | |
Sunil Mushran | f77a9a7 | 2009-02-26 15:00:38 -0800 | [diff] [blame] | 288 | BUG_ON(mle->type != DLM_MLE_BLOCK && |
| 289 | mle->type != DLM_MLE_MASTER && |
| 290 | mle->type != DLM_MLE_MIGRATION); |
| 291 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 292 | if (mle->type == DLM_MLE_MASTER) { |
| 293 | BUG_ON(!res); |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 294 | mle->mleres = res; |
| 295 | memcpy(mle->mname, res->lockname.name, res->lockname.len); |
| 296 | mle->mnamelen = res->lockname.len; |
| 297 | mle->mnamehash = res->lockname.hash; |
Sunil Mushran | f77a9a7 | 2009-02-26 15:00:38 -0800 | [diff] [blame] | 298 | } else { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 299 | BUG_ON(!name); |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 300 | mle->mleres = NULL; |
| 301 | memcpy(mle->mname, name, namelen); |
| 302 | mle->mnamelen = namelen; |
| 303 | mle->mnamehash = dlm_lockid_hash(name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 304 | } |
| 305 | |
Sunil Mushran | 2041d8f | 2009-02-26 15:00:43 -0800 | [diff] [blame] | 306 | atomic_inc(&dlm->mle_tot_count[mle->type]); |
| 307 | atomic_inc(&dlm->mle_cur_count[mle->type]); |
| 308 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 309 | /* copy off the node_map and register hb callbacks on our copy */ |
| 310 | memcpy(mle->node_map, dlm->domain_map, sizeof(mle->node_map)); |
| 311 | memcpy(mle->vote_map, dlm->domain_map, sizeof(mle->vote_map)); |
| 312 | clear_bit(dlm->node_num, mle->vote_map); |
| 313 | clear_bit(dlm->node_num, mle->node_map); |
| 314 | |
| 315 | /* attach the mle to the domain node up/down events */ |
| 316 | __dlm_mle_attach_hb_events(dlm, mle); |
| 317 | } |
| 318 | |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 319 | void __dlm_unlink_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle) |
| 320 | { |
| 321 | assert_spin_locked(&dlm->spinlock); |
| 322 | assert_spin_locked(&dlm->master_lock); |
| 323 | |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 324 | if (!hlist_unhashed(&mle->master_hash_node)) |
| 325 | hlist_del_init(&mle->master_hash_node); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | void __dlm_insert_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle) |
| 329 | { |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 330 | struct hlist_head *bucket; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 331 | |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 332 | assert_spin_locked(&dlm->master_lock); |
| 333 | |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 334 | bucket = dlm_master_hash(dlm, mle->mnamehash); |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 335 | hlist_add_head(&mle->master_hash_node, bucket); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 336 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 337 | |
| 338 | /* returns 1 if found, 0 if not */ |
| 339 | static int dlm_find_mle(struct dlm_ctxt *dlm, |
| 340 | struct dlm_master_list_entry **mle, |
| 341 | char *name, unsigned int namelen) |
| 342 | { |
| 343 | struct dlm_master_list_entry *tmpmle; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 344 | struct hlist_head *bucket; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 345 | unsigned int hash; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 346 | |
| 347 | assert_spin_locked(&dlm->master_lock); |
| 348 | |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 349 | hash = dlm_lockid_hash(name, namelen); |
| 350 | bucket = dlm_master_hash(dlm, hash); |
Dong Fang | df53cd3 | 2013-09-11 14:19:50 -0700 | [diff] [blame] | 351 | hlist_for_each_entry(tmpmle, bucket, master_hash_node) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 352 | if (!dlm_mle_equal(dlm, tmpmle, name, namelen)) |
| 353 | continue; |
| 354 | dlm_get_mle(tmpmle); |
| 355 | *mle = tmpmle; |
| 356 | return 1; |
| 357 | } |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | void dlm_hb_event_notify_attached(struct dlm_ctxt *dlm, int idx, int node_up) |
| 362 | { |
| 363 | struct dlm_master_list_entry *mle; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 364 | |
| 365 | assert_spin_locked(&dlm->spinlock); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 366 | |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 367 | list_for_each_entry(mle, &dlm->mle_hb_events, hb_events) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 368 | if (node_up) |
| 369 | dlm_mle_node_up(dlm, mle, NULL, idx); |
| 370 | else |
| 371 | dlm_mle_node_down(dlm, mle, NULL, idx); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | static void dlm_mle_node_down(struct dlm_ctxt *dlm, |
| 376 | struct dlm_master_list_entry *mle, |
| 377 | struct o2nm_node *node, int idx) |
| 378 | { |
| 379 | spin_lock(&mle->spinlock); |
| 380 | |
| 381 | if (!test_bit(idx, mle->node_map)) |
| 382 | mlog(0, "node %u already removed from nodemap!\n", idx); |
| 383 | else |
| 384 | clear_bit(idx, mle->node_map); |
| 385 | |
| 386 | spin_unlock(&mle->spinlock); |
| 387 | } |
| 388 | |
| 389 | static void dlm_mle_node_up(struct dlm_ctxt *dlm, |
| 390 | struct dlm_master_list_entry *mle, |
| 391 | struct o2nm_node *node, int idx) |
| 392 | { |
| 393 | spin_lock(&mle->spinlock); |
| 394 | |
| 395 | if (test_bit(idx, mle->node_map)) |
| 396 | mlog(0, "node %u already in node map!\n", idx); |
| 397 | else |
| 398 | set_bit(idx, mle->node_map); |
| 399 | |
| 400 | spin_unlock(&mle->spinlock); |
| 401 | } |
| 402 | |
| 403 | |
| 404 | int dlm_init_mle_cache(void) |
| 405 | { |
Sunil Mushran | 12eb003 | 2008-03-10 15:16:19 -0700 | [diff] [blame] | 406 | dlm_mle_cache = kmem_cache_create("o2dlm_mle", |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 407 | sizeof(struct dlm_master_list_entry), |
| 408 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 409 | NULL); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 410 | if (dlm_mle_cache == NULL) |
| 411 | return -ENOMEM; |
| 412 | return 0; |
| 413 | } |
| 414 | |
| 415 | void dlm_destroy_mle_cache(void) |
| 416 | { |
| 417 | if (dlm_mle_cache) |
| 418 | kmem_cache_destroy(dlm_mle_cache); |
| 419 | } |
| 420 | |
| 421 | static void dlm_mle_release(struct kref *kref) |
| 422 | { |
| 423 | struct dlm_master_list_entry *mle; |
| 424 | struct dlm_ctxt *dlm; |
| 425 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 426 | mle = container_of(kref, struct dlm_master_list_entry, mle_refs); |
| 427 | dlm = mle->dlm; |
| 428 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 429 | assert_spin_locked(&dlm->spinlock); |
| 430 | assert_spin_locked(&dlm->master_lock); |
| 431 | |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 432 | mlog(0, "Releasing mle for %.*s, type %d\n", mle->mnamelen, mle->mname, |
| 433 | mle->type); |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 434 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 435 | /* remove from list if not already */ |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 436 | __dlm_unlink_mle(dlm, mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 437 | |
| 438 | /* detach the mle from the domain node up/down events */ |
| 439 | __dlm_mle_detach_hb_events(dlm, mle); |
| 440 | |
Sunil Mushran | 2041d8f | 2009-02-26 15:00:43 -0800 | [diff] [blame] | 441 | atomic_dec(&dlm->mle_cur_count[mle->type]); |
| 442 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 443 | /* NOTE: kfree under spinlock here. |
| 444 | * if this is bad, we can move this to a freelist. */ |
| 445 | kmem_cache_free(dlm_mle_cache, mle); |
| 446 | } |
| 447 | |
| 448 | |
| 449 | /* |
| 450 | * LOCK RESOURCE FUNCTIONS |
| 451 | */ |
| 452 | |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 453 | int dlm_init_master_caches(void) |
| 454 | { |
| 455 | dlm_lockres_cache = kmem_cache_create("o2dlm_lockres", |
| 456 | sizeof(struct dlm_lock_resource), |
| 457 | 0, SLAB_HWCACHE_ALIGN, NULL); |
| 458 | if (!dlm_lockres_cache) |
| 459 | goto bail; |
| 460 | |
| 461 | dlm_lockname_cache = kmem_cache_create("o2dlm_lockname", |
| 462 | DLM_LOCKID_NAME_MAX, 0, |
| 463 | SLAB_HWCACHE_ALIGN, NULL); |
| 464 | if (!dlm_lockname_cache) |
| 465 | goto bail; |
| 466 | |
| 467 | return 0; |
| 468 | bail: |
| 469 | dlm_destroy_master_caches(); |
| 470 | return -ENOMEM; |
| 471 | } |
| 472 | |
| 473 | void dlm_destroy_master_caches(void) |
| 474 | { |
Joseph Qi | 66db6cf | 2014-05-22 11:54:22 -0700 | [diff] [blame] | 475 | if (dlm_lockname_cache) { |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 476 | kmem_cache_destroy(dlm_lockname_cache); |
Joseph Qi | 66db6cf | 2014-05-22 11:54:22 -0700 | [diff] [blame] | 477 | dlm_lockname_cache = NULL; |
| 478 | } |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 479 | |
Joseph Qi | 66db6cf | 2014-05-22 11:54:22 -0700 | [diff] [blame] | 480 | if (dlm_lockres_cache) { |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 481 | kmem_cache_destroy(dlm_lockres_cache); |
Joseph Qi | 66db6cf | 2014-05-22 11:54:22 -0700 | [diff] [blame] | 482 | dlm_lockres_cache = NULL; |
| 483 | } |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 486 | static void dlm_lockres_release(struct kref *kref) |
| 487 | { |
| 488 | struct dlm_lock_resource *res; |
Sunil Mushran | b0d4f817 | 2008-12-16 15:49:22 -0800 | [diff] [blame] | 489 | struct dlm_ctxt *dlm; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 490 | |
| 491 | res = container_of(kref, struct dlm_lock_resource, refs); |
Sunil Mushran | b0d4f817 | 2008-12-16 15:49:22 -0800 | [diff] [blame] | 492 | dlm = res->dlm; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 493 | |
| 494 | /* This should not happen -- all lockres' have a name |
| 495 | * associated with them at init time. */ |
| 496 | BUG_ON(!res->lockname.name); |
| 497 | |
| 498 | mlog(0, "destroying lockres %.*s\n", res->lockname.len, |
| 499 | res->lockname.name); |
| 500 | |
Sunil Mushran | b0d4f817 | 2008-12-16 15:49:22 -0800 | [diff] [blame] | 501 | spin_lock(&dlm->track_lock); |
Sunil Mushran | 29576f8 | 2008-03-10 15:16:21 -0700 | [diff] [blame] | 502 | if (!list_empty(&res->tracking)) |
| 503 | list_del_init(&res->tracking); |
| 504 | else { |
| 505 | mlog(ML_ERROR, "Resource %.*s not on the Tracking list\n", |
| 506 | res->lockname.len, res->lockname.name); |
| 507 | dlm_print_one_lock_resource(res); |
| 508 | } |
Sunil Mushran | b0d4f817 | 2008-12-16 15:49:22 -0800 | [diff] [blame] | 509 | spin_unlock(&dlm->track_lock); |
| 510 | |
Sunil Mushran | 6800791 | 2009-02-26 15:00:44 -0800 | [diff] [blame] | 511 | atomic_dec(&dlm->res_cur_count); |
| 512 | |
Kurt Hackel | a7f90d8 | 2006-04-27 19:24:21 -0700 | [diff] [blame] | 513 | if (!hlist_unhashed(&res->hash_node) || |
| 514 | !list_empty(&res->granted) || |
| 515 | !list_empty(&res->converting) || |
| 516 | !list_empty(&res->blocked) || |
| 517 | !list_empty(&res->dirty) || |
| 518 | !list_empty(&res->recovering) || |
| 519 | !list_empty(&res->purge)) { |
| 520 | mlog(ML_ERROR, |
| 521 | "Going to BUG for resource %.*s." |
| 522 | " We're on a list! [%c%c%c%c%c%c%c]\n", |
| 523 | res->lockname.len, res->lockname.name, |
| 524 | !hlist_unhashed(&res->hash_node) ? 'H' : ' ', |
| 525 | !list_empty(&res->granted) ? 'G' : ' ', |
| 526 | !list_empty(&res->converting) ? 'C' : ' ', |
| 527 | !list_empty(&res->blocked) ? 'B' : ' ', |
| 528 | !list_empty(&res->dirty) ? 'D' : ' ', |
| 529 | !list_empty(&res->recovering) ? 'R' : ' ', |
| 530 | !list_empty(&res->purge) ? 'P' : ' '); |
| 531 | |
| 532 | dlm_print_one_lock_resource(res); |
| 533 | } |
| 534 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 535 | /* By the time we're ready to blow this guy away, we shouldn't |
| 536 | * be on any lists. */ |
Mark Fasheh | 81f2094 | 2006-02-28 17:31:22 -0800 | [diff] [blame] | 537 | BUG_ON(!hlist_unhashed(&res->hash_node)); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 538 | BUG_ON(!list_empty(&res->granted)); |
| 539 | BUG_ON(!list_empty(&res->converting)); |
| 540 | BUG_ON(!list_empty(&res->blocked)); |
| 541 | BUG_ON(!list_empty(&res->dirty)); |
| 542 | BUG_ON(!list_empty(&res->recovering)); |
| 543 | BUG_ON(!list_empty(&res->purge)); |
| 544 | |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 545 | kmem_cache_free(dlm_lockname_cache, (void *)res->lockname.name); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 546 | |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 547 | kmem_cache_free(dlm_lockres_cache, res); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 548 | } |
| 549 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 550 | void dlm_lockres_put(struct dlm_lock_resource *res) |
| 551 | { |
| 552 | kref_put(&res->refs, dlm_lockres_release); |
| 553 | } |
| 554 | |
| 555 | static void dlm_init_lockres(struct dlm_ctxt *dlm, |
| 556 | struct dlm_lock_resource *res, |
| 557 | const char *name, unsigned int namelen) |
| 558 | { |
| 559 | char *qname; |
| 560 | |
| 561 | /* If we memset here, we lose our reference to the kmalloc'd |
| 562 | * res->lockname.name, so be sure to init every field |
| 563 | * correctly! */ |
| 564 | |
| 565 | qname = (char *) res->lockname.name; |
| 566 | memcpy(qname, name, namelen); |
| 567 | |
| 568 | res->lockname.len = namelen; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 569 | res->lockname.hash = dlm_lockid_hash(name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 570 | |
| 571 | init_waitqueue_head(&res->wq); |
| 572 | spin_lock_init(&res->spinlock); |
Mark Fasheh | 81f2094 | 2006-02-28 17:31:22 -0800 | [diff] [blame] | 573 | INIT_HLIST_NODE(&res->hash_node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 574 | INIT_LIST_HEAD(&res->granted); |
| 575 | INIT_LIST_HEAD(&res->converting); |
| 576 | INIT_LIST_HEAD(&res->blocked); |
| 577 | INIT_LIST_HEAD(&res->dirty); |
| 578 | INIT_LIST_HEAD(&res->recovering); |
| 579 | INIT_LIST_HEAD(&res->purge); |
Sunil Mushran | 29576f8 | 2008-03-10 15:16:21 -0700 | [diff] [blame] | 580 | INIT_LIST_HEAD(&res->tracking); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 581 | atomic_set(&res->asts_reserved, 0); |
| 582 | res->migration_pending = 0; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 583 | res->inflight_locks = 0; |
Xue jiufei | ac4fef4 | 2014-06-23 13:22:09 -0700 | [diff] [blame] | 584 | res->inflight_assert_workers = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 585 | |
Sunil Mushran | b0d4f817 | 2008-12-16 15:49:22 -0800 | [diff] [blame] | 586 | res->dlm = dlm; |
| 587 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 588 | kref_init(&res->refs); |
| 589 | |
Sunil Mushran | 6800791 | 2009-02-26 15:00:44 -0800 | [diff] [blame] | 590 | atomic_inc(&dlm->res_tot_count); |
| 591 | atomic_inc(&dlm->res_cur_count); |
| 592 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 593 | /* just for consistency */ |
| 594 | spin_lock(&res->spinlock); |
| 595 | dlm_set_lockres_owner(dlm, res, DLM_LOCK_RES_OWNER_UNKNOWN); |
| 596 | spin_unlock(&res->spinlock); |
| 597 | |
| 598 | res->state = DLM_LOCK_RES_IN_PROGRESS; |
| 599 | |
| 600 | res->last_used = 0; |
| 601 | |
Sunil Mushran | 18c6ac3 | 2008-07-07 10:06:29 -0700 | [diff] [blame] | 602 | spin_lock(&dlm->spinlock); |
Sunil Mushran | 29576f8 | 2008-03-10 15:16:21 -0700 | [diff] [blame] | 603 | list_add_tail(&res->tracking, &dlm->tracking_list); |
Sunil Mushran | 18c6ac3 | 2008-07-07 10:06:29 -0700 | [diff] [blame] | 604 | spin_unlock(&dlm->spinlock); |
Sunil Mushran | 29576f8 | 2008-03-10 15:16:21 -0700 | [diff] [blame] | 605 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 606 | memset(res->lvb, 0, DLM_LVB_LEN); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 607 | memset(res->refmap, 0, sizeof(res->refmap)); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm, |
| 611 | const char *name, |
| 612 | unsigned int namelen) |
| 613 | { |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 614 | struct dlm_lock_resource *res = NULL; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 615 | |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 616 | res = kmem_cache_zalloc(dlm_lockres_cache, GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 617 | if (!res) |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 618 | goto error; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 619 | |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 620 | res->lockname.name = kmem_cache_zalloc(dlm_lockname_cache, GFP_NOFS); |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 621 | if (!res->lockname.name) |
| 622 | goto error; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 623 | |
| 624 | dlm_init_lockres(dlm, res, name, namelen); |
| 625 | return res; |
Sunil Mushran | 724bdca | 2008-03-10 15:16:20 -0700 | [diff] [blame] | 626 | |
| 627 | error: |
| 628 | if (res && res->lockname.name) |
| 629 | kmem_cache_free(dlm_lockname_cache, (void *)res->lockname.name); |
| 630 | |
| 631 | if (res) |
| 632 | kmem_cache_free(dlm_lockres_cache, res); |
| 633 | return NULL; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 634 | } |
| 635 | |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 636 | void dlm_lockres_set_refmap_bit(struct dlm_ctxt *dlm, |
| 637 | struct dlm_lock_resource *res, int bit) |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 638 | { |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 639 | assert_spin_locked(&res->spinlock); |
| 640 | |
| 641 | mlog(0, "res %.*s, set node %u, %ps()\n", res->lockname.len, |
| 642 | res->lockname.name, bit, __builtin_return_address(0)); |
| 643 | |
| 644 | set_bit(bit, res->refmap); |
| 645 | } |
| 646 | |
| 647 | void dlm_lockres_clear_refmap_bit(struct dlm_ctxt *dlm, |
| 648 | struct dlm_lock_resource *res, int bit) |
| 649 | { |
| 650 | assert_spin_locked(&res->spinlock); |
| 651 | |
| 652 | mlog(0, "res %.*s, clr node %u, %ps()\n", res->lockname.len, |
| 653 | res->lockname.name, bit, __builtin_return_address(0)); |
| 654 | |
| 655 | clear_bit(bit, res->refmap); |
| 656 | } |
| 657 | |
| 658 | |
| 659 | void dlm_lockres_grab_inflight_ref(struct dlm_ctxt *dlm, |
| 660 | struct dlm_lock_resource *res) |
| 661 | { |
| 662 | assert_spin_locked(&res->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 663 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 664 | res->inflight_locks++; |
Sunil Mushran | ff0a522 | 2011-07-24 10:29:54 -0700 | [diff] [blame] | 665 | |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 666 | mlog(0, "%s: res %.*s, inflight++: now %u, %ps()\n", dlm->name, |
| 667 | res->lockname.len, res->lockname.name, res->inflight_locks, |
| 668 | __builtin_return_address(0)); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 669 | } |
| 670 | |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 671 | void dlm_lockres_drop_inflight_ref(struct dlm_ctxt *dlm, |
| 672 | struct dlm_lock_resource *res) |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 673 | { |
| 674 | assert_spin_locked(&res->spinlock); |
| 675 | |
| 676 | BUG_ON(res->inflight_locks == 0); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 677 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 678 | res->inflight_locks--; |
Sunil Mushran | ff0a522 | 2011-07-24 10:29:54 -0700 | [diff] [blame] | 679 | |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 680 | mlog(0, "%s: res %.*s, inflight--: now %u, %ps()\n", dlm->name, |
| 681 | res->lockname.len, res->lockname.name, res->inflight_locks, |
| 682 | __builtin_return_address(0)); |
| 683 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 684 | wake_up(&res->wq); |
| 685 | } |
| 686 | |
Xue jiufei | ac4fef4 | 2014-06-23 13:22:09 -0700 | [diff] [blame] | 687 | void __dlm_lockres_grab_inflight_worker(struct dlm_ctxt *dlm, |
| 688 | struct dlm_lock_resource *res) |
| 689 | { |
| 690 | assert_spin_locked(&res->spinlock); |
| 691 | res->inflight_assert_workers++; |
| 692 | mlog(0, "%s:%.*s: inflight assert worker++: now %u\n", |
| 693 | dlm->name, res->lockname.len, res->lockname.name, |
| 694 | res->inflight_assert_workers); |
| 695 | } |
| 696 | |
| 697 | static void dlm_lockres_grab_inflight_worker(struct dlm_ctxt *dlm, |
| 698 | struct dlm_lock_resource *res) |
| 699 | { |
| 700 | spin_lock(&res->spinlock); |
| 701 | __dlm_lockres_grab_inflight_worker(dlm, res); |
| 702 | spin_unlock(&res->spinlock); |
| 703 | } |
| 704 | |
| 705 | static void __dlm_lockres_drop_inflight_worker(struct dlm_ctxt *dlm, |
| 706 | struct dlm_lock_resource *res) |
| 707 | { |
| 708 | assert_spin_locked(&res->spinlock); |
| 709 | BUG_ON(res->inflight_assert_workers == 0); |
| 710 | res->inflight_assert_workers--; |
| 711 | mlog(0, "%s:%.*s: inflight assert worker--: now %u\n", |
| 712 | dlm->name, res->lockname.len, res->lockname.name, |
| 713 | res->inflight_assert_workers); |
| 714 | } |
| 715 | |
| 716 | static void dlm_lockres_drop_inflight_worker(struct dlm_ctxt *dlm, |
| 717 | struct dlm_lock_resource *res) |
| 718 | { |
| 719 | spin_lock(&res->spinlock); |
| 720 | __dlm_lockres_drop_inflight_worker(dlm, res); |
| 721 | spin_unlock(&res->spinlock); |
| 722 | } |
| 723 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 724 | /* |
| 725 | * lookup a lock resource by name. |
| 726 | * may already exist in the hashtable. |
| 727 | * lockid is null terminated |
| 728 | * |
| 729 | * if not, allocate enough for the lockres and for |
| 730 | * the temporary structure used in doing the mastering. |
| 731 | * |
| 732 | * also, do a lookup in the dlm->master_list to see |
| 733 | * if another node has begun mastering the same lock. |
| 734 | * if so, there should be a block entry in there |
| 735 | * for this name, and we should *not* attempt to master |
| 736 | * the lock here. need to wait around for that node |
| 737 | * to assert_master (or die). |
| 738 | * |
| 739 | */ |
| 740 | struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm, |
| 741 | const char *lockid, |
Mark Fasheh | 3384f3d | 2006-09-08 11:38:29 -0700 | [diff] [blame] | 742 | int namelen, |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 743 | int flags) |
| 744 | { |
| 745 | struct dlm_lock_resource *tmpres=NULL, *res=NULL; |
| 746 | struct dlm_master_list_entry *mle = NULL; |
| 747 | struct dlm_master_list_entry *alloc_mle = NULL; |
| 748 | int blocked = 0; |
| 749 | int ret, nodenum; |
| 750 | struct dlm_node_iter iter; |
Mark Fasheh | 3384f3d | 2006-09-08 11:38:29 -0700 | [diff] [blame] | 751 | unsigned int hash; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 752 | int tries = 0; |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 753 | int bit, wait_on_recovery = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 754 | |
| 755 | BUG_ON(!lockid); |
| 756 | |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 757 | hash = dlm_lockid_hash(lockid, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 758 | |
| 759 | mlog(0, "get lockres %s (len %d)\n", lockid, namelen); |
| 760 | |
| 761 | lookup: |
| 762 | spin_lock(&dlm->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 763 | tmpres = __dlm_lookup_lockres_full(dlm, lockid, namelen, hash); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 764 | if (tmpres) { |
Sunil Mushran | 7b791d6 | 2008-12-16 15:49:23 -0800 | [diff] [blame] | 765 | spin_unlock(&dlm->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 766 | spin_lock(&tmpres->spinlock); |
Sunil Mushran | ff0a522 | 2011-07-24 10:29:54 -0700 | [diff] [blame] | 767 | /* Wait on the thread that is mastering the resource */ |
Sunil Mushran | 7b791d6 | 2008-12-16 15:49:23 -0800 | [diff] [blame] | 768 | if (tmpres->owner == DLM_LOCK_RES_OWNER_UNKNOWN) { |
| 769 | __dlm_wait_on_lockres(tmpres); |
| 770 | BUG_ON(tmpres->owner == DLM_LOCK_RES_OWNER_UNKNOWN); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 771 | spin_unlock(&tmpres->spinlock); |
| 772 | dlm_lockres_put(tmpres); |
| 773 | tmpres = NULL; |
| 774 | goto lookup; |
| 775 | } |
| 776 | |
Sunil Mushran | ff0a522 | 2011-07-24 10:29:54 -0700 | [diff] [blame] | 777 | /* Wait on the resource purge to complete before continuing */ |
| 778 | if (tmpres->state & DLM_LOCK_RES_DROPPING_REF) { |
| 779 | BUG_ON(tmpres->owner == dlm->node_num); |
| 780 | __dlm_wait_on_lockres_flags(tmpres, |
| 781 | DLM_LOCK_RES_DROPPING_REF); |
| 782 | spin_unlock(&tmpres->spinlock); |
| 783 | dlm_lockres_put(tmpres); |
| 784 | tmpres = NULL; |
| 785 | goto lookup; |
| 786 | } |
| 787 | |
| 788 | /* Grab inflight ref to pin the resource */ |
| 789 | dlm_lockres_grab_inflight_ref(dlm, tmpres); |
| 790 | |
| 791 | spin_unlock(&tmpres->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 792 | if (res) |
| 793 | dlm_lockres_put(res); |
| 794 | res = tmpres; |
| 795 | goto leave; |
| 796 | } |
| 797 | |
| 798 | if (!res) { |
| 799 | spin_unlock(&dlm->spinlock); |
| 800 | mlog(0, "allocating a new resource\n"); |
| 801 | /* nothing found and we need to allocate one. */ |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 802 | alloc_mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 803 | if (!alloc_mle) |
| 804 | goto leave; |
| 805 | res = dlm_new_lockres(dlm, lockid, namelen); |
| 806 | if (!res) |
| 807 | goto leave; |
| 808 | goto lookup; |
| 809 | } |
| 810 | |
| 811 | mlog(0, "no lockres found, allocated our own: %p\n", res); |
| 812 | |
| 813 | if (flags & LKM_LOCAL) { |
| 814 | /* caller knows it's safe to assume it's not mastered elsewhere |
| 815 | * DONE! return right away */ |
| 816 | spin_lock(&res->spinlock); |
| 817 | dlm_change_lockres_owner(dlm, res, dlm->node_num); |
| 818 | __dlm_insert_lockres(dlm, res); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 819 | dlm_lockres_grab_inflight_ref(dlm, res); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 820 | spin_unlock(&res->spinlock); |
| 821 | spin_unlock(&dlm->spinlock); |
| 822 | /* lockres still marked IN_PROGRESS */ |
| 823 | goto wake_waiters; |
| 824 | } |
| 825 | |
| 826 | /* check master list to see if another node has started mastering it */ |
| 827 | spin_lock(&dlm->master_lock); |
| 828 | |
| 829 | /* if we found a block, wait for lock to be mastered by another node */ |
| 830 | blocked = dlm_find_mle(dlm, &mle, (char *)lockid, namelen); |
| 831 | if (blocked) { |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 832 | int mig; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 833 | if (mle->type == DLM_MLE_MASTER) { |
| 834 | mlog(ML_ERROR, "master entry for nonexistent lock!\n"); |
| 835 | BUG(); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 836 | } |
| 837 | mig = (mle->type == DLM_MLE_MIGRATION); |
| 838 | /* if there is a migration in progress, let the migration |
| 839 | * finish before continuing. we can wait for the absence |
| 840 | * of the MIGRATION mle: either the migrate finished or |
| 841 | * one of the nodes died and the mle was cleaned up. |
| 842 | * if there is a BLOCK here, but it already has a master |
| 843 | * set, we are too late. the master does not have a ref |
| 844 | * for us in the refmap. detach the mle and drop it. |
| 845 | * either way, go back to the top and start over. */ |
| 846 | if (mig || mle->master != O2NM_MAX_NODES) { |
| 847 | BUG_ON(mig && mle->master == dlm->node_num); |
| 848 | /* we arrived too late. the master does not |
| 849 | * have a ref for us. retry. */ |
| 850 | mlog(0, "%s:%.*s: late on %s\n", |
| 851 | dlm->name, namelen, lockid, |
| 852 | mig ? "MIGRATION" : "BLOCK"); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 853 | spin_unlock(&dlm->master_lock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 854 | spin_unlock(&dlm->spinlock); |
| 855 | |
| 856 | /* master is known, detach */ |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 857 | if (!mig) |
| 858 | dlm_mle_detach_hb_events(dlm, mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 859 | dlm_put_mle(mle); |
| 860 | mle = NULL; |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 861 | /* this is lame, but we can't wait on either |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 862 | * the mle or lockres waitqueue here */ |
| 863 | if (mig) |
| 864 | msleep(100); |
| 865 | goto lookup; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 866 | } |
| 867 | } else { |
| 868 | /* go ahead and try to master lock on this node */ |
| 869 | mle = alloc_mle; |
| 870 | /* make sure this does not get freed below */ |
| 871 | alloc_mle = NULL; |
| 872 | dlm_init_mle(mle, DLM_MLE_MASTER, dlm, res, NULL, 0); |
| 873 | set_bit(dlm->node_num, mle->maybe_map); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 874 | __dlm_insert_mle(dlm, mle); |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 875 | |
| 876 | /* still holding the dlm spinlock, check the recovery map |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 877 | * to see if there are any nodes that still need to be |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 878 | * considered. these will not appear in the mle nodemap |
| 879 | * but they might own this lockres. wait on them. */ |
| 880 | bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0); |
| 881 | if (bit < O2NM_MAX_NODES) { |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 882 | mlog(0, "%s: res %.*s, At least one node (%d) " |
| 883 | "to recover before lock mastery can begin\n", |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 884 | dlm->name, namelen, (char *)lockid, bit); |
| 885 | wait_on_recovery = 1; |
| 886 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | /* at this point there is either a DLM_MLE_BLOCK or a |
| 890 | * DLM_MLE_MASTER on the master list, so it's safe to add the |
| 891 | * lockres to the hashtable. anyone who finds the lock will |
| 892 | * still have to wait on the IN_PROGRESS. */ |
| 893 | |
| 894 | /* finally add the lockres to its hash bucket */ |
| 895 | __dlm_insert_lockres(dlm, res); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 896 | |
Sunil Mushran | ff0a522 | 2011-07-24 10:29:54 -0700 | [diff] [blame] | 897 | /* Grab inflight ref to pin the resource */ |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 898 | spin_lock(&res->spinlock); |
| 899 | dlm_lockres_grab_inflight_ref(dlm, res); |
| 900 | spin_unlock(&res->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 901 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 902 | /* get an extra ref on the mle in case this is a BLOCK |
| 903 | * if so, the creator of the BLOCK may try to put the last |
| 904 | * ref at this time in the assert master handler, so we |
| 905 | * need an extra one to keep from a bad ptr deref. */ |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 906 | dlm_get_mle_inuse(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 907 | spin_unlock(&dlm->master_lock); |
| 908 | spin_unlock(&dlm->spinlock); |
| 909 | |
Kurt Hackel | e7e69eb | 2006-05-01 11:49:52 -0700 | [diff] [blame] | 910 | redo_request: |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 911 | while (wait_on_recovery) { |
| 912 | /* any cluster changes that occurred after dropping the |
| 913 | * dlm spinlock would be detectable be a change on the mle, |
| 914 | * so we only need to clear out the recovery map once. */ |
| 915 | if (dlm_is_recovery_lock(lockid, namelen)) { |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 916 | mlog(0, "%s: Recovery map is not empty, but must " |
| 917 | "master $RECOVERY lock now\n", dlm->name); |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 918 | if (!dlm_pre_master_reco_lockres(dlm, res)) |
| 919 | wait_on_recovery = 0; |
| 920 | else { |
| 921 | mlog(0, "%s: waiting 500ms for heartbeat state " |
| 922 | "change\n", dlm->name); |
| 923 | msleep(500); |
| 924 | } |
| 925 | continue; |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 926 | } |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 927 | |
| 928 | dlm_kick_recovery_thread(dlm); |
Kurt Hackel | aa087b8 | 2006-05-01 12:02:07 -0700 | [diff] [blame] | 929 | msleep(1000); |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 930 | dlm_wait_for_recovery(dlm); |
| 931 | |
| 932 | spin_lock(&dlm->spinlock); |
| 933 | bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0); |
| 934 | if (bit < O2NM_MAX_NODES) { |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 935 | mlog(0, "%s: res %.*s, At least one node (%d) " |
| 936 | "to recover before lock mastery can begin\n", |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 937 | dlm->name, namelen, (char *)lockid, bit); |
| 938 | wait_on_recovery = 1; |
| 939 | } else |
| 940 | wait_on_recovery = 0; |
| 941 | spin_unlock(&dlm->spinlock); |
Kurt Hackel | b7084ab | 2006-05-01 13:54:07 -0700 | [diff] [blame] | 942 | |
| 943 | if (wait_on_recovery) |
| 944 | dlm_wait_for_node_recovery(dlm, bit, 10000); |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 945 | } |
| 946 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 947 | /* must wait for lock to be mastered elsewhere */ |
| 948 | if (blocked) |
| 949 | goto wait; |
| 950 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 951 | ret = -EINVAL; |
| 952 | dlm_node_iter_init(mle->vote_map, &iter); |
| 953 | while ((nodenum = dlm_node_iter_next(&iter)) >= 0) { |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 954 | ret = dlm_do_master_request(res, mle, nodenum); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 955 | if (ret < 0) |
| 956 | mlog_errno(ret); |
| 957 | if (mle->master != O2NM_MAX_NODES) { |
| 958 | /* found a master ! */ |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 959 | if (mle->master <= nodenum) |
| 960 | break; |
| 961 | /* if our master request has not reached the master |
| 962 | * yet, keep going until it does. this is how the |
| 963 | * master will know that asserts are needed back to |
| 964 | * the lower nodes. */ |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 965 | mlog(0, "%s: res %.*s, Requests only up to %u but " |
| 966 | "master is %u, keep going\n", dlm->name, namelen, |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 967 | lockid, nodenum, mle->master); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | |
| 971 | wait: |
| 972 | /* keep going until the response map includes all nodes */ |
| 973 | ret = dlm_wait_for_lock_mastery(dlm, res, mle, &blocked); |
| 974 | if (ret < 0) { |
Kurt Hackel | e7e69eb | 2006-05-01 11:49:52 -0700 | [diff] [blame] | 975 | wait_on_recovery = 1; |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 976 | mlog(0, "%s: res %.*s, Node map changed, redo the master " |
| 977 | "request now, blocked=%d\n", dlm->name, res->lockname.len, |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 978 | res->lockname.name, blocked); |
| 979 | if (++tries > 20) { |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 980 | mlog(ML_ERROR, "%s: res %.*s, Spinning on " |
| 981 | "dlm_wait_for_lock_mastery, blocked = %d\n", |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 982 | dlm->name, res->lockname.len, |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 983 | res->lockname.name, blocked); |
| 984 | dlm_print_one_lock_resource(res); |
Mark Fasheh | 8a9343f | 2006-05-01 14:55:10 -0700 | [diff] [blame] | 985 | dlm_print_one_mle(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 986 | tries = 0; |
| 987 | } |
| 988 | goto redo_request; |
| 989 | } |
| 990 | |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 991 | mlog(0, "%s: res %.*s, Mastered by %u\n", dlm->name, res->lockname.len, |
| 992 | res->lockname.name, res->owner); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 993 | /* make sure we never continue without this */ |
| 994 | BUG_ON(res->owner == O2NM_MAX_NODES); |
| 995 | |
| 996 | /* master is known, detach if not already detached */ |
| 997 | dlm_mle_detach_hb_events(dlm, mle); |
| 998 | dlm_put_mle(mle); |
| 999 | /* put the extra ref */ |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1000 | dlm_put_mle_inuse(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1001 | |
| 1002 | wake_waiters: |
| 1003 | spin_lock(&res->spinlock); |
| 1004 | res->state &= ~DLM_LOCK_RES_IN_PROGRESS; |
| 1005 | spin_unlock(&res->spinlock); |
| 1006 | wake_up(&res->wq); |
| 1007 | |
| 1008 | leave: |
| 1009 | /* need to free the unused mle */ |
| 1010 | if (alloc_mle) |
| 1011 | kmem_cache_free(dlm_mle_cache, alloc_mle); |
| 1012 | |
| 1013 | return res; |
| 1014 | } |
| 1015 | |
| 1016 | |
| 1017 | #define DLM_MASTERY_TIMEOUT_MS 5000 |
| 1018 | |
| 1019 | static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm, |
| 1020 | struct dlm_lock_resource *res, |
| 1021 | struct dlm_master_list_entry *mle, |
| 1022 | int *blocked) |
| 1023 | { |
| 1024 | u8 m; |
| 1025 | int ret, bit; |
| 1026 | int map_changed, voting_done; |
| 1027 | int assert, sleep; |
| 1028 | |
| 1029 | recheck: |
| 1030 | ret = 0; |
| 1031 | assert = 0; |
| 1032 | |
| 1033 | /* check if another node has already become the owner */ |
| 1034 | spin_lock(&res->spinlock); |
| 1035 | if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) { |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1036 | mlog(0, "%s:%.*s: owner is suddenly %u\n", dlm->name, |
| 1037 | res->lockname.len, res->lockname.name, res->owner); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1038 | spin_unlock(&res->spinlock); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1039 | /* this will cause the master to re-assert across |
| 1040 | * the whole cluster, freeing up mles */ |
Kurt Hackel | 588e009 | 2006-05-01 11:22:06 -0700 | [diff] [blame] | 1041 | if (res->owner != dlm->node_num) { |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1042 | ret = dlm_do_master_request(res, mle, res->owner); |
Kurt Hackel | 588e009 | 2006-05-01 11:22:06 -0700 | [diff] [blame] | 1043 | if (ret < 0) { |
| 1044 | /* give recovery a chance to run */ |
| 1045 | mlog(ML_ERROR, "link to %u went down?: %d\n", res->owner, ret); |
| 1046 | msleep(500); |
| 1047 | goto recheck; |
| 1048 | } |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1049 | } |
| 1050 | ret = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1051 | goto leave; |
| 1052 | } |
| 1053 | spin_unlock(&res->spinlock); |
| 1054 | |
| 1055 | spin_lock(&mle->spinlock); |
| 1056 | m = mle->master; |
| 1057 | map_changed = (memcmp(mle->vote_map, mle->node_map, |
| 1058 | sizeof(mle->vote_map)) != 0); |
| 1059 | voting_done = (memcmp(mle->vote_map, mle->response_map, |
| 1060 | sizeof(mle->vote_map)) == 0); |
| 1061 | |
| 1062 | /* restart if we hit any errors */ |
| 1063 | if (map_changed) { |
| 1064 | int b; |
| 1065 | mlog(0, "%s: %.*s: node map changed, restarting\n", |
| 1066 | dlm->name, res->lockname.len, res->lockname.name); |
| 1067 | ret = dlm_restart_lock_mastery(dlm, res, mle, *blocked); |
| 1068 | b = (mle->type == DLM_MLE_BLOCK); |
| 1069 | if ((*blocked && !b) || (!*blocked && b)) { |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1070 | mlog(0, "%s:%.*s: status change: old=%d new=%d\n", |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1071 | dlm->name, res->lockname.len, res->lockname.name, |
| 1072 | *blocked, b); |
| 1073 | *blocked = b; |
| 1074 | } |
| 1075 | spin_unlock(&mle->spinlock); |
| 1076 | if (ret < 0) { |
| 1077 | mlog_errno(ret); |
| 1078 | goto leave; |
| 1079 | } |
| 1080 | mlog(0, "%s:%.*s: restart lock mastery succeeded, " |
| 1081 | "rechecking now\n", dlm->name, res->lockname.len, |
| 1082 | res->lockname.name); |
| 1083 | goto recheck; |
Kurt Hackel | aa85235 | 2006-04-27 19:04:49 -0700 | [diff] [blame] | 1084 | } else { |
| 1085 | if (!voting_done) { |
| 1086 | mlog(0, "map not changed and voting not done " |
| 1087 | "for %s:%.*s\n", dlm->name, res->lockname.len, |
| 1088 | res->lockname.name); |
| 1089 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | if (m != O2NM_MAX_NODES) { |
| 1093 | /* another node has done an assert! |
| 1094 | * all done! */ |
| 1095 | sleep = 0; |
| 1096 | } else { |
| 1097 | sleep = 1; |
| 1098 | /* have all nodes responded? */ |
| 1099 | if (voting_done && !*blocked) { |
| 1100 | bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0); |
| 1101 | if (dlm->node_num <= bit) { |
| 1102 | /* my node number is lowest. |
| 1103 | * now tell other nodes that I am |
| 1104 | * mastering this. */ |
| 1105 | mle->master = dlm->node_num; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1106 | /* ref was grabbed in get_lock_resource |
| 1107 | * will be dropped in dlmlock_master */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1108 | assert = 1; |
| 1109 | sleep = 0; |
| 1110 | } |
| 1111 | /* if voting is done, but we have not received |
| 1112 | * an assert master yet, we must sleep */ |
| 1113 | } |
| 1114 | } |
| 1115 | |
| 1116 | spin_unlock(&mle->spinlock); |
| 1117 | |
| 1118 | /* sleep if we haven't finished voting yet */ |
| 1119 | if (sleep) { |
| 1120 | unsigned long timeo = msecs_to_jiffies(DLM_MASTERY_TIMEOUT_MS); |
| 1121 | |
| 1122 | /* |
| 1123 | if (atomic_read(&mle->mle_refs.refcount) < 2) |
| 1124 | mlog(ML_ERROR, "mle (%p) refs=%d, name=%.*s\n", mle, |
| 1125 | atomic_read(&mle->mle_refs.refcount), |
| 1126 | res->lockname.len, res->lockname.name); |
| 1127 | */ |
| 1128 | atomic_set(&mle->woken, 0); |
| 1129 | (void)wait_event_timeout(mle->wq, |
| 1130 | (atomic_read(&mle->woken) == 1), |
| 1131 | timeo); |
| 1132 | if (res->owner == O2NM_MAX_NODES) { |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1133 | mlog(0, "%s:%.*s: waiting again\n", dlm->name, |
| 1134 | res->lockname.len, res->lockname.name); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1135 | goto recheck; |
| 1136 | } |
| 1137 | mlog(0, "done waiting, master is %u\n", res->owner); |
| 1138 | ret = 0; |
| 1139 | goto leave; |
| 1140 | } |
| 1141 | |
| 1142 | ret = 0; /* done */ |
| 1143 | if (assert) { |
| 1144 | m = dlm->node_num; |
| 1145 | mlog(0, "about to master %.*s here, this=%u\n", |
| 1146 | res->lockname.len, res->lockname.name, m); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1147 | ret = dlm_do_assert_master(dlm, res, mle->vote_map, 0); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1148 | if (ret) { |
| 1149 | /* This is a failure in the network path, |
| 1150 | * not in the response to the assert_master |
| 1151 | * (any nonzero response is a BUG on this node). |
| 1152 | * Most likely a socket just got disconnected |
| 1153 | * due to node death. */ |
| 1154 | mlog_errno(ret); |
| 1155 | } |
| 1156 | /* no longer need to restart lock mastery. |
| 1157 | * all living nodes have been contacted. */ |
| 1158 | ret = 0; |
| 1159 | } |
| 1160 | |
| 1161 | /* set the lockres owner */ |
| 1162 | spin_lock(&res->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1163 | /* mastery reference obtained either during |
| 1164 | * assert_master_handler or in get_lock_resource */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1165 | dlm_change_lockres_owner(dlm, res, m); |
| 1166 | spin_unlock(&res->spinlock); |
| 1167 | |
| 1168 | leave: |
| 1169 | return ret; |
| 1170 | } |
| 1171 | |
| 1172 | struct dlm_bitmap_diff_iter |
| 1173 | { |
| 1174 | int curnode; |
| 1175 | unsigned long *orig_bm; |
| 1176 | unsigned long *cur_bm; |
| 1177 | unsigned long diff_bm[BITS_TO_LONGS(O2NM_MAX_NODES)]; |
| 1178 | }; |
| 1179 | |
| 1180 | enum dlm_node_state_change |
| 1181 | { |
| 1182 | NODE_DOWN = -1, |
| 1183 | NODE_NO_CHANGE = 0, |
| 1184 | NODE_UP |
| 1185 | }; |
| 1186 | |
| 1187 | static void dlm_bitmap_diff_iter_init(struct dlm_bitmap_diff_iter *iter, |
| 1188 | unsigned long *orig_bm, |
| 1189 | unsigned long *cur_bm) |
| 1190 | { |
| 1191 | unsigned long p1, p2; |
| 1192 | int i; |
| 1193 | |
| 1194 | iter->curnode = -1; |
| 1195 | iter->orig_bm = orig_bm; |
| 1196 | iter->cur_bm = cur_bm; |
| 1197 | |
| 1198 | for (i = 0; i < BITS_TO_LONGS(O2NM_MAX_NODES); i++) { |
| 1199 | p1 = *(iter->orig_bm + i); |
| 1200 | p2 = *(iter->cur_bm + i); |
| 1201 | iter->diff_bm[i] = (p1 & ~p2) | (p2 & ~p1); |
| 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | static int dlm_bitmap_diff_iter_next(struct dlm_bitmap_diff_iter *iter, |
| 1206 | enum dlm_node_state_change *state) |
| 1207 | { |
| 1208 | int bit; |
| 1209 | |
| 1210 | if (iter->curnode >= O2NM_MAX_NODES) |
| 1211 | return -ENOENT; |
| 1212 | |
| 1213 | bit = find_next_bit(iter->diff_bm, O2NM_MAX_NODES, |
| 1214 | iter->curnode+1); |
| 1215 | if (bit >= O2NM_MAX_NODES) { |
| 1216 | iter->curnode = O2NM_MAX_NODES; |
| 1217 | return -ENOENT; |
| 1218 | } |
| 1219 | |
| 1220 | /* if it was there in the original then this node died */ |
| 1221 | if (test_bit(bit, iter->orig_bm)) |
| 1222 | *state = NODE_DOWN; |
| 1223 | else |
| 1224 | *state = NODE_UP; |
| 1225 | |
| 1226 | iter->curnode = bit; |
| 1227 | return bit; |
| 1228 | } |
| 1229 | |
| 1230 | |
| 1231 | static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm, |
| 1232 | struct dlm_lock_resource *res, |
| 1233 | struct dlm_master_list_entry *mle, |
| 1234 | int blocked) |
| 1235 | { |
| 1236 | struct dlm_bitmap_diff_iter bdi; |
| 1237 | enum dlm_node_state_change sc; |
| 1238 | int node; |
| 1239 | int ret = 0; |
| 1240 | |
| 1241 | mlog(0, "something happened such that the " |
| 1242 | "master process may need to be restarted!\n"); |
| 1243 | |
| 1244 | assert_spin_locked(&mle->spinlock); |
| 1245 | |
| 1246 | dlm_bitmap_diff_iter_init(&bdi, mle->vote_map, mle->node_map); |
| 1247 | node = dlm_bitmap_diff_iter_next(&bdi, &sc); |
| 1248 | while (node >= 0) { |
| 1249 | if (sc == NODE_UP) { |
Kurt Hackel | e2faea4 | 2006-01-12 14:24:55 -0800 | [diff] [blame] | 1250 | /* a node came up. clear any old vote from |
| 1251 | * the response map and set it in the vote map |
| 1252 | * then restart the mastery. */ |
| 1253 | mlog(ML_NOTICE, "node %d up while restarting\n", node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1254 | |
| 1255 | /* redo the master request, but only for the new node */ |
| 1256 | mlog(0, "sending request to new node\n"); |
| 1257 | clear_bit(node, mle->response_map); |
| 1258 | set_bit(node, mle->vote_map); |
| 1259 | } else { |
| 1260 | mlog(ML_ERROR, "node down! %d\n", node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1261 | if (blocked) { |
| 1262 | int lowest = find_next_bit(mle->maybe_map, |
| 1263 | O2NM_MAX_NODES, 0); |
| 1264 | |
| 1265 | /* act like it was never there */ |
| 1266 | clear_bit(node, mle->maybe_map); |
| 1267 | |
Kurt Hackel | e7e69eb | 2006-05-01 11:49:52 -0700 | [diff] [blame] | 1268 | if (node == lowest) { |
| 1269 | mlog(0, "expected master %u died" |
| 1270 | " while this node was blocked " |
| 1271 | "waiting on it!\n", node); |
| 1272 | lowest = find_next_bit(mle->maybe_map, |
| 1273 | O2NM_MAX_NODES, |
| 1274 | lowest+1); |
| 1275 | if (lowest < O2NM_MAX_NODES) { |
| 1276 | mlog(0, "%s:%.*s:still " |
| 1277 | "blocked. waiting on %u " |
| 1278 | "now\n", dlm->name, |
| 1279 | res->lockname.len, |
| 1280 | res->lockname.name, |
| 1281 | lowest); |
| 1282 | } else { |
| 1283 | /* mle is an MLE_BLOCK, but |
| 1284 | * there is now nothing left to |
| 1285 | * block on. we need to return |
| 1286 | * all the way back out and try |
| 1287 | * again with an MLE_MASTER. |
| 1288 | * dlm_do_local_recovery_cleanup |
| 1289 | * has already run, so the mle |
| 1290 | * refcount is ok */ |
| 1291 | mlog(0, "%s:%.*s: no " |
| 1292 | "longer blocking. try to " |
| 1293 | "master this here\n", |
| 1294 | dlm->name, |
| 1295 | res->lockname.len, |
| 1296 | res->lockname.name); |
| 1297 | mle->type = DLM_MLE_MASTER; |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 1298 | mle->mleres = res; |
Kurt Hackel | e7e69eb | 2006-05-01 11:49:52 -0700 | [diff] [blame] | 1299 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1300 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1301 | } |
| 1302 | |
Kurt Hackel | e7e69eb | 2006-05-01 11:49:52 -0700 | [diff] [blame] | 1303 | /* now blank out everything, as if we had never |
| 1304 | * contacted anyone */ |
| 1305 | memset(mle->maybe_map, 0, sizeof(mle->maybe_map)); |
| 1306 | memset(mle->response_map, 0, sizeof(mle->response_map)); |
| 1307 | /* reset the vote_map to the current node_map */ |
| 1308 | memcpy(mle->vote_map, mle->node_map, |
| 1309 | sizeof(mle->node_map)); |
| 1310 | /* put myself into the maybe map */ |
| 1311 | if (mle->type != DLM_MLE_BLOCK) |
| 1312 | set_bit(dlm->node_num, mle->maybe_map); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1313 | } |
| 1314 | ret = -EAGAIN; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1315 | node = dlm_bitmap_diff_iter_next(&bdi, &sc); |
| 1316 | } |
| 1317 | return ret; |
| 1318 | } |
| 1319 | |
| 1320 | |
| 1321 | /* |
| 1322 | * DLM_MASTER_REQUEST_MSG |
| 1323 | * |
| 1324 | * returns: 0 on success, |
| 1325 | * -errno on a network error |
| 1326 | * |
| 1327 | * on error, the caller should assume the target node is "dead" |
| 1328 | * |
| 1329 | */ |
| 1330 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1331 | static int dlm_do_master_request(struct dlm_lock_resource *res, |
| 1332 | struct dlm_master_list_entry *mle, int to) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1333 | { |
| 1334 | struct dlm_ctxt *dlm = mle->dlm; |
| 1335 | struct dlm_master_request request; |
| 1336 | int ret, response=0, resend; |
| 1337 | |
| 1338 | memset(&request, 0, sizeof(request)); |
| 1339 | request.node_idx = dlm->node_num; |
| 1340 | |
| 1341 | BUG_ON(mle->type == DLM_MLE_MIGRATION); |
| 1342 | |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 1343 | request.namelen = (u8)mle->mnamelen; |
| 1344 | memcpy(request.name, mle->mname, request.namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1345 | |
| 1346 | again: |
| 1347 | ret = o2net_send_message(DLM_MASTER_REQUEST_MSG, dlm->key, &request, |
| 1348 | sizeof(request), to, &response); |
| 1349 | if (ret < 0) { |
| 1350 | if (ret == -ESRCH) { |
| 1351 | /* should never happen */ |
| 1352 | mlog(ML_ERROR, "TCP stack not ready!\n"); |
| 1353 | BUG(); |
| 1354 | } else if (ret == -EINVAL) { |
| 1355 | mlog(ML_ERROR, "bad args passed to o2net!\n"); |
| 1356 | BUG(); |
| 1357 | } else if (ret == -ENOMEM) { |
| 1358 | mlog(ML_ERROR, "out of memory while trying to send " |
| 1359 | "network message! retrying\n"); |
| 1360 | /* this is totally crude */ |
| 1361 | msleep(50); |
| 1362 | goto again; |
| 1363 | } else if (!dlm_is_host_down(ret)) { |
| 1364 | /* not a network error. bad. */ |
| 1365 | mlog_errno(ret); |
| 1366 | mlog(ML_ERROR, "unhandled error!"); |
| 1367 | BUG(); |
| 1368 | } |
| 1369 | /* all other errors should be network errors, |
| 1370 | * and likely indicate node death */ |
| 1371 | mlog(ML_ERROR, "link to %d went down!\n", to); |
| 1372 | goto out; |
| 1373 | } |
| 1374 | |
| 1375 | ret = 0; |
| 1376 | resend = 0; |
| 1377 | spin_lock(&mle->spinlock); |
| 1378 | switch (response) { |
| 1379 | case DLM_MASTER_RESP_YES: |
| 1380 | set_bit(to, mle->response_map); |
| 1381 | mlog(0, "node %u is the master, response=YES\n", to); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1382 | mlog(0, "%s:%.*s: master node %u now knows I have a " |
| 1383 | "reference\n", dlm->name, res->lockname.len, |
| 1384 | res->lockname.name, to); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1385 | mle->master = to; |
| 1386 | break; |
| 1387 | case DLM_MASTER_RESP_NO: |
| 1388 | mlog(0, "node %u not master, response=NO\n", to); |
| 1389 | set_bit(to, mle->response_map); |
| 1390 | break; |
| 1391 | case DLM_MASTER_RESP_MAYBE: |
| 1392 | mlog(0, "node %u not master, response=MAYBE\n", to); |
| 1393 | set_bit(to, mle->response_map); |
| 1394 | set_bit(to, mle->maybe_map); |
| 1395 | break; |
| 1396 | case DLM_MASTER_RESP_ERROR: |
| 1397 | mlog(0, "node %u hit an error, resending\n", to); |
| 1398 | resend = 1; |
| 1399 | response = 0; |
| 1400 | break; |
| 1401 | default: |
| 1402 | mlog(ML_ERROR, "bad response! %u\n", response); |
| 1403 | BUG(); |
| 1404 | } |
| 1405 | spin_unlock(&mle->spinlock); |
| 1406 | if (resend) { |
| 1407 | /* this is also totally crude */ |
| 1408 | msleep(50); |
| 1409 | goto again; |
| 1410 | } |
| 1411 | |
| 1412 | out: |
| 1413 | return ret; |
| 1414 | } |
| 1415 | |
| 1416 | /* |
| 1417 | * locks that can be taken here: |
| 1418 | * dlm->spinlock |
| 1419 | * res->spinlock |
| 1420 | * mle->spinlock |
| 1421 | * dlm->master_list |
| 1422 | * |
| 1423 | * if possible, TRIM THIS DOWN!!! |
| 1424 | */ |
Kurt Hackel | d74c980 | 2007-01-17 17:04:25 -0800 | [diff] [blame] | 1425 | int dlm_master_request_handler(struct o2net_msg *msg, u32 len, void *data, |
| 1426 | void **ret_data) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1427 | { |
| 1428 | u8 response = DLM_MASTER_RESP_MAYBE; |
| 1429 | struct dlm_ctxt *dlm = data; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1430 | struct dlm_lock_resource *res = NULL; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1431 | struct dlm_master_request *request = (struct dlm_master_request *) msg->buf; |
| 1432 | struct dlm_master_list_entry *mle = NULL, *tmpmle = NULL; |
| 1433 | char *name; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1434 | unsigned int namelen, hash; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1435 | int found, ret; |
| 1436 | int set_maybe; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1437 | int dispatch_assert = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1438 | |
| 1439 | if (!dlm_grab(dlm)) |
| 1440 | return DLM_MASTER_RESP_NO; |
| 1441 | |
| 1442 | if (!dlm_domain_fully_joined(dlm)) { |
| 1443 | response = DLM_MASTER_RESP_NO; |
| 1444 | goto send_response; |
| 1445 | } |
| 1446 | |
| 1447 | name = request->name; |
| 1448 | namelen = request->namelen; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1449 | hash = dlm_lockid_hash(name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1450 | |
| 1451 | if (namelen > DLM_LOCKID_NAME_MAX) { |
| 1452 | response = DLM_IVBUFLEN; |
| 1453 | goto send_response; |
| 1454 | } |
| 1455 | |
| 1456 | way_up_top: |
| 1457 | spin_lock(&dlm->spinlock); |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1458 | res = __dlm_lookup_lockres(dlm, name, namelen, hash); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1459 | if (res) { |
| 1460 | spin_unlock(&dlm->spinlock); |
| 1461 | |
| 1462 | /* take care of the easy cases up front */ |
| 1463 | spin_lock(&res->spinlock); |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 1464 | if (res->state & (DLM_LOCK_RES_RECOVERING| |
| 1465 | DLM_LOCK_RES_MIGRATING)) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1466 | spin_unlock(&res->spinlock); |
| 1467 | mlog(0, "returning DLM_MASTER_RESP_ERROR since res is " |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 1468 | "being recovered/migrated\n"); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1469 | response = DLM_MASTER_RESP_ERROR; |
| 1470 | if (mle) |
| 1471 | kmem_cache_free(dlm_mle_cache, mle); |
| 1472 | goto send_response; |
| 1473 | } |
| 1474 | |
| 1475 | if (res->owner == dlm->node_num) { |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 1476 | dlm_lockres_set_refmap_bit(dlm, res, request->node_idx); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1477 | spin_unlock(&res->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1478 | response = DLM_MASTER_RESP_YES; |
| 1479 | if (mle) |
| 1480 | kmem_cache_free(dlm_mle_cache, mle); |
| 1481 | |
| 1482 | /* this node is the owner. |
| 1483 | * there is some extra work that needs to |
| 1484 | * happen now. the requesting node has |
| 1485 | * caused all nodes up to this one to |
| 1486 | * create mles. this node now needs to |
| 1487 | * go back and clean those up. */ |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1488 | dispatch_assert = 1; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1489 | goto send_response; |
| 1490 | } else if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) { |
| 1491 | spin_unlock(&res->spinlock); |
| 1492 | // mlog(0, "node %u is the master\n", res->owner); |
| 1493 | response = DLM_MASTER_RESP_NO; |
| 1494 | if (mle) |
| 1495 | kmem_cache_free(dlm_mle_cache, mle); |
| 1496 | goto send_response; |
| 1497 | } |
| 1498 | |
| 1499 | /* ok, there is no owner. either this node is |
| 1500 | * being blocked, or it is actively trying to |
| 1501 | * master this lock. */ |
| 1502 | if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) { |
| 1503 | mlog(ML_ERROR, "lock with no owner should be " |
| 1504 | "in-progress!\n"); |
| 1505 | BUG(); |
| 1506 | } |
| 1507 | |
| 1508 | // mlog(0, "lockres is in progress...\n"); |
| 1509 | spin_lock(&dlm->master_lock); |
| 1510 | found = dlm_find_mle(dlm, &tmpmle, name, namelen); |
| 1511 | if (!found) { |
| 1512 | mlog(ML_ERROR, "no mle found for this lock!\n"); |
| 1513 | BUG(); |
| 1514 | } |
| 1515 | set_maybe = 1; |
| 1516 | spin_lock(&tmpmle->spinlock); |
| 1517 | if (tmpmle->type == DLM_MLE_BLOCK) { |
| 1518 | // mlog(0, "this node is waiting for " |
| 1519 | // "lockres to be mastered\n"); |
| 1520 | response = DLM_MASTER_RESP_NO; |
| 1521 | } else if (tmpmle->type == DLM_MLE_MIGRATION) { |
| 1522 | mlog(0, "node %u is master, but trying to migrate to " |
| 1523 | "node %u.\n", tmpmle->master, tmpmle->new_master); |
| 1524 | if (tmpmle->master == dlm->node_num) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1525 | mlog(ML_ERROR, "no owner on lockres, but this " |
| 1526 | "node is trying to migrate it to %u?!\n", |
| 1527 | tmpmle->new_master); |
| 1528 | BUG(); |
| 1529 | } else { |
| 1530 | /* the real master can respond on its own */ |
| 1531 | response = DLM_MASTER_RESP_NO; |
| 1532 | } |
| 1533 | } else if (tmpmle->master != DLM_LOCK_RES_OWNER_UNKNOWN) { |
| 1534 | set_maybe = 0; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1535 | if (tmpmle->master == dlm->node_num) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1536 | response = DLM_MASTER_RESP_YES; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1537 | /* this node will be the owner. |
| 1538 | * go back and clean the mles on any |
| 1539 | * other nodes */ |
| 1540 | dispatch_assert = 1; |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 1541 | dlm_lockres_set_refmap_bit(dlm, res, |
| 1542 | request->node_idx); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1543 | } else |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1544 | response = DLM_MASTER_RESP_NO; |
| 1545 | } else { |
| 1546 | // mlog(0, "this node is attempting to " |
| 1547 | // "master lockres\n"); |
| 1548 | response = DLM_MASTER_RESP_MAYBE; |
| 1549 | } |
| 1550 | if (set_maybe) |
| 1551 | set_bit(request->node_idx, tmpmle->maybe_map); |
| 1552 | spin_unlock(&tmpmle->spinlock); |
| 1553 | |
| 1554 | spin_unlock(&dlm->master_lock); |
| 1555 | spin_unlock(&res->spinlock); |
| 1556 | |
| 1557 | /* keep the mle attached to heartbeat events */ |
| 1558 | dlm_put_mle(tmpmle); |
| 1559 | if (mle) |
| 1560 | kmem_cache_free(dlm_mle_cache, mle); |
| 1561 | goto send_response; |
| 1562 | } |
| 1563 | |
| 1564 | /* |
| 1565 | * lockres doesn't exist on this node |
| 1566 | * if there is an MLE_BLOCK, return NO |
| 1567 | * if there is an MLE_MASTER, return MAYBE |
| 1568 | * otherwise, add an MLE_BLOCK, return NO |
| 1569 | */ |
| 1570 | spin_lock(&dlm->master_lock); |
| 1571 | found = dlm_find_mle(dlm, &tmpmle, name, namelen); |
| 1572 | if (!found) { |
| 1573 | /* this lockid has never been seen on this node yet */ |
| 1574 | // mlog(0, "no mle found\n"); |
| 1575 | if (!mle) { |
| 1576 | spin_unlock(&dlm->master_lock); |
| 1577 | spin_unlock(&dlm->spinlock); |
| 1578 | |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 1579 | mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1580 | if (!mle) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1581 | response = DLM_MASTER_RESP_ERROR; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1582 | mlog_errno(-ENOMEM); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1583 | goto send_response; |
| 1584 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1585 | goto way_up_top; |
| 1586 | } |
| 1587 | |
| 1588 | // mlog(0, "this is second time thru, already allocated, " |
| 1589 | // "add the block.\n"); |
Kurt Hackel | 41b8c8a | 2006-04-27 19:00:26 -0700 | [diff] [blame] | 1590 | dlm_init_mle(mle, DLM_MLE_BLOCK, dlm, NULL, name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1591 | set_bit(request->node_idx, mle->maybe_map); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 1592 | __dlm_insert_mle(dlm, mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1593 | response = DLM_MASTER_RESP_NO; |
| 1594 | } else { |
| 1595 | // mlog(0, "mle was found\n"); |
| 1596 | set_maybe = 1; |
| 1597 | spin_lock(&tmpmle->spinlock); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1598 | if (tmpmle->master == dlm->node_num) { |
| 1599 | mlog(ML_ERROR, "no lockres, but an mle with this node as master!\n"); |
| 1600 | BUG(); |
| 1601 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1602 | if (tmpmle->type == DLM_MLE_BLOCK) |
| 1603 | response = DLM_MASTER_RESP_NO; |
| 1604 | else if (tmpmle->type == DLM_MLE_MIGRATION) { |
| 1605 | mlog(0, "migration mle was found (%u->%u)\n", |
| 1606 | tmpmle->master, tmpmle->new_master); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1607 | /* real master can respond on its own */ |
| 1608 | response = DLM_MASTER_RESP_NO; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1609 | } else |
| 1610 | response = DLM_MASTER_RESP_MAYBE; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1611 | if (set_maybe) |
| 1612 | set_bit(request->node_idx, tmpmle->maybe_map); |
| 1613 | spin_unlock(&tmpmle->spinlock); |
| 1614 | } |
| 1615 | spin_unlock(&dlm->master_lock); |
| 1616 | spin_unlock(&dlm->spinlock); |
| 1617 | |
| 1618 | if (found) { |
| 1619 | /* keep the mle attached to heartbeat events */ |
| 1620 | dlm_put_mle(tmpmle); |
| 1621 | } |
| 1622 | send_response: |
Sunil Mushran | b31cfc0 | 2008-03-01 14:04:22 -0800 | [diff] [blame] | 1623 | /* |
| 1624 | * __dlm_lookup_lockres() grabbed a reference to this lockres. |
| 1625 | * The reference is released by dlm_assert_master_worker() under |
| 1626 | * the call to dlm_dispatch_assert_master(). If |
| 1627 | * dlm_assert_master_worker() isn't called, we drop it here. |
| 1628 | */ |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1629 | if (dispatch_assert) { |
| 1630 | if (response != DLM_MASTER_RESP_YES) |
| 1631 | mlog(ML_ERROR, "invalid response %d\n", response); |
| 1632 | if (!res) { |
| 1633 | mlog(ML_ERROR, "bad lockres while trying to assert!\n"); |
| 1634 | BUG(); |
| 1635 | } |
| 1636 | mlog(0, "%u is the owner of %.*s, cleaning everyone else\n", |
| 1637 | dlm->node_num, res->lockname.len, res->lockname.name); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1638 | ret = dlm_dispatch_assert_master(dlm, res, 0, request->node_idx, |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1639 | DLM_ASSERT_MASTER_MLE_CLEANUP); |
| 1640 | if (ret < 0) { |
| 1641 | mlog(ML_ERROR, "failed to dispatch assert master work\n"); |
| 1642 | response = DLM_MASTER_RESP_ERROR; |
Sunil Mushran | b31cfc0 | 2008-03-01 14:04:22 -0800 | [diff] [blame] | 1643 | dlm_lockres_put(res); |
Xue jiufei | ac4fef4 | 2014-06-23 13:22:09 -0700 | [diff] [blame] | 1644 | } else |
| 1645 | dlm_lockres_grab_inflight_worker(dlm, res); |
Sunil Mushran | b31cfc0 | 2008-03-01 14:04:22 -0800 | [diff] [blame] | 1646 | } else { |
| 1647 | if (res) |
| 1648 | dlm_lockres_put(res); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1649 | } |
| 1650 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1651 | dlm_put(dlm); |
| 1652 | return response; |
| 1653 | } |
| 1654 | |
| 1655 | /* |
| 1656 | * DLM_ASSERT_MASTER_MSG |
| 1657 | */ |
| 1658 | |
| 1659 | |
| 1660 | /* |
| 1661 | * NOTE: this can be used for debugging |
| 1662 | * can periodically run all locks owned by this node |
| 1663 | * and re-assert across the cluster... |
| 1664 | */ |
Adrian Bunk | 05488bb | 2008-02-17 10:20:41 +0200 | [diff] [blame] | 1665 | static int dlm_do_assert_master(struct dlm_ctxt *dlm, |
| 1666 | struct dlm_lock_resource *res, |
| 1667 | void *nodemap, u32 flags) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1668 | { |
| 1669 | struct dlm_assert_master assert; |
| 1670 | int to, tmpret; |
| 1671 | struct dlm_node_iter iter; |
| 1672 | int ret = 0; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1673 | int reassert; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1674 | const char *lockname = res->lockname.name; |
| 1675 | unsigned int namelen = res->lockname.len; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1676 | |
| 1677 | BUG_ON(namelen > O2NM_MAX_NAME_LEN); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 1678 | |
| 1679 | spin_lock(&res->spinlock); |
| 1680 | res->state |= DLM_LOCK_RES_SETREF_INPROG; |
| 1681 | spin_unlock(&res->spinlock); |
| 1682 | |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1683 | again: |
| 1684 | reassert = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1685 | |
| 1686 | /* note that if this nodemap is empty, it returns 0 */ |
| 1687 | dlm_node_iter_init(nodemap, &iter); |
| 1688 | while ((to = dlm_node_iter_next(&iter)) >= 0) { |
| 1689 | int r = 0; |
Kurt Hackel | a9ee4c8 | 2006-04-27 19:26:15 -0700 | [diff] [blame] | 1690 | struct dlm_master_list_entry *mle = NULL; |
| 1691 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1692 | mlog(0, "sending assert master to %d (%.*s)\n", to, |
| 1693 | namelen, lockname); |
| 1694 | memset(&assert, 0, sizeof(assert)); |
| 1695 | assert.node_idx = dlm->node_num; |
| 1696 | assert.namelen = namelen; |
| 1697 | memcpy(assert.name, lockname, namelen); |
| 1698 | assert.flags = cpu_to_be32(flags); |
| 1699 | |
| 1700 | tmpret = o2net_send_message(DLM_ASSERT_MASTER_MSG, dlm->key, |
| 1701 | &assert, sizeof(assert), to, &r); |
| 1702 | if (tmpret < 0) { |
Wengang Wang | a5196ec | 2010-03-30 12:09:22 +0800 | [diff] [blame] | 1703 | mlog(ML_ERROR, "Error %d when sending message %u (key " |
| 1704 | "0x%x) to node %u\n", tmpret, |
| 1705 | DLM_ASSERT_MASTER_MSG, dlm->key, to); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1706 | if (!dlm_is_host_down(tmpret)) { |
Kurt Hackel | 3b3b84a | 2006-05-01 14:31:37 -0700 | [diff] [blame] | 1707 | mlog(ML_ERROR, "unhandled error=%d!\n", tmpret); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1708 | BUG(); |
| 1709 | } |
| 1710 | /* a node died. finish out the rest of the nodes. */ |
Kurt Hackel | 3b3b84a | 2006-05-01 14:31:37 -0700 | [diff] [blame] | 1711 | mlog(0, "link to %d went down!\n", to); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1712 | /* any nonzero status return will do */ |
| 1713 | ret = tmpret; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1714 | r = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1715 | } else if (r < 0) { |
| 1716 | /* ok, something horribly messed. kill thyself. */ |
| 1717 | mlog(ML_ERROR,"during assert master of %.*s to %u, " |
| 1718 | "got %d.\n", namelen, lockname, to, r); |
Kurt Hackel | a9ee4c8 | 2006-04-27 19:26:15 -0700 | [diff] [blame] | 1719 | spin_lock(&dlm->spinlock); |
| 1720 | spin_lock(&dlm->master_lock); |
| 1721 | if (dlm_find_mle(dlm, &mle, (char *)lockname, |
| 1722 | namelen)) { |
| 1723 | dlm_print_one_mle(mle); |
| 1724 | __dlm_put_mle(mle); |
| 1725 | } |
| 1726 | spin_unlock(&dlm->master_lock); |
| 1727 | spin_unlock(&dlm->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1728 | BUG(); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1729 | } |
| 1730 | |
| 1731 | if (r & DLM_ASSERT_RESPONSE_REASSERT && |
| 1732 | !(r & DLM_ASSERT_RESPONSE_MASTERY_REF)) { |
| 1733 | mlog(ML_ERROR, "%.*s: very strange, " |
| 1734 | "master MLE but no lockres on %u\n", |
| 1735 | namelen, lockname, to); |
| 1736 | } |
| 1737 | |
| 1738 | if (r & DLM_ASSERT_RESPONSE_REASSERT) { |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1739 | mlog(0, "%.*s: node %u create mles on other " |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1740 | "nodes and requests a re-assert\n", |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1741 | namelen, lockname, to); |
| 1742 | reassert = 1; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1743 | } |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1744 | if (r & DLM_ASSERT_RESPONSE_MASTERY_REF) { |
| 1745 | mlog(0, "%.*s: node %u has a reference to this " |
| 1746 | "lockres, set the bit in the refmap\n", |
| 1747 | namelen, lockname, to); |
| 1748 | spin_lock(&res->spinlock); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 1749 | dlm_lockres_set_refmap_bit(dlm, res, to); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1750 | spin_unlock(&res->spinlock); |
| 1751 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1752 | } |
| 1753 | |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1754 | if (reassert) |
| 1755 | goto again; |
| 1756 | |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 1757 | spin_lock(&res->spinlock); |
| 1758 | res->state &= ~DLM_LOCK_RES_SETREF_INPROG; |
| 1759 | spin_unlock(&res->spinlock); |
| 1760 | wake_up(&res->wq); |
| 1761 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1762 | return ret; |
| 1763 | } |
| 1764 | |
| 1765 | /* |
| 1766 | * locks that can be taken here: |
| 1767 | * dlm->spinlock |
| 1768 | * res->spinlock |
| 1769 | * mle->spinlock |
| 1770 | * dlm->master_list |
| 1771 | * |
| 1772 | * if possible, TRIM THIS DOWN!!! |
| 1773 | */ |
Kurt Hackel | d74c980 | 2007-01-17 17:04:25 -0800 | [diff] [blame] | 1774 | int dlm_assert_master_handler(struct o2net_msg *msg, u32 len, void *data, |
| 1775 | void **ret_data) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1776 | { |
| 1777 | struct dlm_ctxt *dlm = data; |
| 1778 | struct dlm_master_list_entry *mle = NULL; |
| 1779 | struct dlm_assert_master *assert = (struct dlm_assert_master *)msg->buf; |
| 1780 | struct dlm_lock_resource *res = NULL; |
| 1781 | char *name; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1782 | unsigned int namelen, hash; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1783 | u32 flags; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1784 | int master_request = 0, have_lockres_ref = 0; |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1785 | int ret = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1786 | |
| 1787 | if (!dlm_grab(dlm)) |
| 1788 | return 0; |
| 1789 | |
| 1790 | name = assert->name; |
| 1791 | namelen = assert->namelen; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1792 | hash = dlm_lockid_hash(name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1793 | flags = be32_to_cpu(assert->flags); |
| 1794 | |
| 1795 | if (namelen > DLM_LOCKID_NAME_MAX) { |
| 1796 | mlog(ML_ERROR, "Invalid name length!"); |
| 1797 | goto done; |
| 1798 | } |
| 1799 | |
| 1800 | spin_lock(&dlm->spinlock); |
| 1801 | |
| 1802 | if (flags) |
| 1803 | mlog(0, "assert_master with flags: %u\n", flags); |
| 1804 | |
| 1805 | /* find the MLE */ |
| 1806 | spin_lock(&dlm->master_lock); |
| 1807 | if (!dlm_find_mle(dlm, &mle, name, namelen)) { |
| 1808 | /* not an error, could be master just re-asserting */ |
| 1809 | mlog(0, "just got an assert_master from %u, but no " |
| 1810 | "MLE for it! (%.*s)\n", assert->node_idx, |
| 1811 | namelen, name); |
| 1812 | } else { |
| 1813 | int bit = find_next_bit (mle->maybe_map, O2NM_MAX_NODES, 0); |
| 1814 | if (bit >= O2NM_MAX_NODES) { |
| 1815 | /* not necessarily an error, though less likely. |
| 1816 | * could be master just re-asserting. */ |
Kurt Hackel | aa85235 | 2006-04-27 19:04:49 -0700 | [diff] [blame] | 1817 | mlog(0, "no bits set in the maybe_map, but %u " |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1818 | "is asserting! (%.*s)\n", assert->node_idx, |
| 1819 | namelen, name); |
| 1820 | } else if (bit != assert->node_idx) { |
| 1821 | if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) { |
| 1822 | mlog(0, "master %u was found, %u should " |
| 1823 | "back off\n", assert->node_idx, bit); |
| 1824 | } else { |
| 1825 | /* with the fix for bug 569, a higher node |
| 1826 | * number winning the mastery will respond |
| 1827 | * YES to mastery requests, but this node |
| 1828 | * had no way of knowing. let it pass. */ |
Kurt Hackel | aa85235 | 2006-04-27 19:04:49 -0700 | [diff] [blame] | 1829 | mlog(0, "%u is the lowest node, " |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1830 | "%u is asserting. (%.*s) %u must " |
| 1831 | "have begun after %u won.\n", bit, |
| 1832 | assert->node_idx, namelen, name, bit, |
| 1833 | assert->node_idx); |
| 1834 | } |
| 1835 | } |
Kurt Hackel | 2d1a868 | 2006-04-27 19:01:35 -0700 | [diff] [blame] | 1836 | if (mle->type == DLM_MLE_MIGRATION) { |
| 1837 | if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) { |
| 1838 | mlog(0, "%s:%.*s: got cleanup assert" |
| 1839 | " from %u for migration\n", |
| 1840 | dlm->name, namelen, name, |
| 1841 | assert->node_idx); |
| 1842 | } else if (!(flags & DLM_ASSERT_MASTER_FINISH_MIGRATION)) { |
| 1843 | mlog(0, "%s:%.*s: got unrelated assert" |
| 1844 | " from %u for migration, ignoring\n", |
| 1845 | dlm->name, namelen, name, |
| 1846 | assert->node_idx); |
| 1847 | __dlm_put_mle(mle); |
| 1848 | spin_unlock(&dlm->master_lock); |
| 1849 | spin_unlock(&dlm->spinlock); |
| 1850 | goto done; |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1851 | } |
Kurt Hackel | 2d1a868 | 2006-04-27 19:01:35 -0700 | [diff] [blame] | 1852 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1853 | } |
| 1854 | spin_unlock(&dlm->master_lock); |
| 1855 | |
| 1856 | /* ok everything checks out with the MLE |
| 1857 | * now check to see if there is a lockres */ |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 1858 | res = __dlm_lookup_lockres(dlm, name, namelen, hash); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1859 | if (res) { |
| 1860 | spin_lock(&res->spinlock); |
| 1861 | if (res->state & DLM_LOCK_RES_RECOVERING) { |
| 1862 | mlog(ML_ERROR, "%u asserting but %.*s is " |
| 1863 | "RECOVERING!\n", assert->node_idx, namelen, name); |
| 1864 | goto kill; |
| 1865 | } |
| 1866 | if (!mle) { |
Kurt Hackel | dc2ed19 | 2006-04-27 19:03:18 -0700 | [diff] [blame] | 1867 | if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN && |
| 1868 | res->owner != assert->node_idx) { |
Sunil Mushran | 53ecd25 | 2009-02-03 12:37:16 -0800 | [diff] [blame] | 1869 | mlog(ML_ERROR, "DIE! Mastery assert from %u, " |
| 1870 | "but current owner is %u! (%.*s)\n", |
| 1871 | assert->node_idx, res->owner, namelen, |
| 1872 | name); |
| 1873 | __dlm_print_one_lock_resource(res); |
| 1874 | BUG(); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1875 | } |
| 1876 | } else if (mle->type != DLM_MLE_MIGRATION) { |
| 1877 | if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) { |
| 1878 | /* owner is just re-asserting */ |
| 1879 | if (res->owner == assert->node_idx) { |
| 1880 | mlog(0, "owner %u re-asserting on " |
| 1881 | "lock %.*s\n", assert->node_idx, |
| 1882 | namelen, name); |
| 1883 | goto ok; |
| 1884 | } |
| 1885 | mlog(ML_ERROR, "got assert_master from " |
| 1886 | "node %u, but %u is the owner! " |
| 1887 | "(%.*s)\n", assert->node_idx, |
| 1888 | res->owner, namelen, name); |
| 1889 | goto kill; |
| 1890 | } |
| 1891 | if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) { |
| 1892 | mlog(ML_ERROR, "got assert from %u, but lock " |
| 1893 | "with no owner should be " |
| 1894 | "in-progress! (%.*s)\n", |
| 1895 | assert->node_idx, |
| 1896 | namelen, name); |
| 1897 | goto kill; |
| 1898 | } |
| 1899 | } else /* mle->type == DLM_MLE_MIGRATION */ { |
| 1900 | /* should only be getting an assert from new master */ |
| 1901 | if (assert->node_idx != mle->new_master) { |
| 1902 | mlog(ML_ERROR, "got assert from %u, but " |
| 1903 | "new master is %u, and old master " |
| 1904 | "was %u (%.*s)\n", |
| 1905 | assert->node_idx, mle->new_master, |
| 1906 | mle->master, namelen, name); |
| 1907 | goto kill; |
| 1908 | } |
| 1909 | |
| 1910 | } |
| 1911 | ok: |
| 1912 | spin_unlock(&res->spinlock); |
| 1913 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1914 | |
| 1915 | // mlog(0, "woo! got an assert_master from node %u!\n", |
| 1916 | // assert->node_idx); |
| 1917 | if (mle) { |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1918 | int extra_ref = 0; |
| 1919 | int nn = -1; |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1920 | int rr, err = 0; |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1921 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1922 | spin_lock(&mle->spinlock); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1923 | if (mle->type == DLM_MLE_BLOCK || mle->type == DLM_MLE_MIGRATION) |
| 1924 | extra_ref = 1; |
| 1925 | else { |
| 1926 | /* MASTER mle: if any bits set in the response map |
| 1927 | * then the calling node needs to re-assert to clear |
| 1928 | * up nodes that this node contacted */ |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1929 | while ((nn = find_next_bit (mle->response_map, O2NM_MAX_NODES, |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1930 | nn+1)) < O2NM_MAX_NODES) { |
Junxiao Bi | 728b980 | 2013-11-12 15:07:02 -0800 | [diff] [blame] | 1931 | if (nn != dlm->node_num && nn != assert->node_idx) { |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1932 | master_request = 1; |
Junxiao Bi | 728b980 | 2013-11-12 15:07:02 -0800 | [diff] [blame] | 1933 | break; |
| 1934 | } |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 1935 | } |
| 1936 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1937 | mle->master = assert->node_idx; |
| 1938 | atomic_set(&mle->woken, 1); |
| 1939 | wake_up(&mle->wq); |
| 1940 | spin_unlock(&mle->spinlock); |
| 1941 | |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1942 | if (res) { |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 1943 | int wake = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1944 | spin_lock(&res->spinlock); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1945 | if (mle->type == DLM_MLE_MIGRATION) { |
| 1946 | mlog(0, "finishing off migration of lockres %.*s, " |
| 1947 | "from %u to %u\n", |
| 1948 | res->lockname.len, res->lockname.name, |
| 1949 | dlm->node_num, mle->new_master); |
| 1950 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 1951 | wake = 1; |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1952 | dlm_change_lockres_owner(dlm, res, mle->new_master); |
| 1953 | BUG_ON(res->state & DLM_LOCK_RES_DIRTY); |
| 1954 | } else { |
| 1955 | dlm_change_lockres_owner(dlm, res, mle->master); |
| 1956 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1957 | spin_unlock(&res->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 1958 | have_lockres_ref = 1; |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 1959 | if (wake) |
| 1960 | wake_up(&res->wq); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1961 | } |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1962 | |
| 1963 | /* master is known, detach if not already detached. |
| 1964 | * ensures that only one assert_master call will happen |
| 1965 | * on this mle. */ |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1966 | spin_lock(&dlm->master_lock); |
| 1967 | |
| 1968 | rr = atomic_read(&mle->mle_refs.refcount); |
| 1969 | if (mle->inuse > 0) { |
| 1970 | if (extra_ref && rr < 3) |
| 1971 | err = 1; |
| 1972 | else if (!extra_ref && rr < 2) |
| 1973 | err = 1; |
| 1974 | } else { |
| 1975 | if (extra_ref && rr < 2) |
| 1976 | err = 1; |
| 1977 | else if (!extra_ref && rr < 1) |
| 1978 | err = 1; |
| 1979 | } |
| 1980 | if (err) { |
| 1981 | mlog(ML_ERROR, "%s:%.*s: got assert master from %u " |
| 1982 | "that will mess up this node, refs=%d, extra=%d, " |
| 1983 | "inuse=%d\n", dlm->name, namelen, name, |
| 1984 | assert->node_idx, rr, extra_ref, mle->inuse); |
| 1985 | dlm_print_one_mle(mle); |
| 1986 | } |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 1987 | __dlm_unlink_mle(dlm, mle); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1988 | __dlm_mle_detach_hb_events(dlm, mle); |
| 1989 | __dlm_put_mle(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 1990 | if (extra_ref) { |
| 1991 | /* the assert master message now balances the extra |
| 1992 | * ref given by the master / migration request message. |
| 1993 | * if this is the last put, it will be removed |
| 1994 | * from the list. */ |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1995 | __dlm_put_mle(mle); |
| 1996 | } |
| 1997 | spin_unlock(&dlm->master_lock); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 1998 | } else if (res) { |
| 1999 | if (res->owner != assert->node_idx) { |
| 2000 | mlog(0, "assert_master from %u, but current " |
| 2001 | "owner is %u (%.*s), no mle\n", assert->node_idx, |
| 2002 | res->owner, namelen, name); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2003 | } |
| 2004 | } |
Srinivas Eeda | 1474147 | 2010-03-22 16:50:47 -0700 | [diff] [blame] | 2005 | spin_unlock(&dlm->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2006 | |
| 2007 | done: |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 2008 | ret = 0; |
Kurt Hackel | 3b8118c | 2007-01-17 17:05:53 -0800 | [diff] [blame] | 2009 | if (res) { |
| 2010 | spin_lock(&res->spinlock); |
| 2011 | res->state |= DLM_LOCK_RES_SETREF_INPROG; |
| 2012 | spin_unlock(&res->spinlock); |
| 2013 | *ret_data = (void *)res; |
| 2014 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2015 | dlm_put(dlm); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 2016 | if (master_request) { |
| 2017 | mlog(0, "need to tell master to reassert\n"); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2018 | /* positive. negative would shoot down the node. */ |
| 2019 | ret |= DLM_ASSERT_RESPONSE_REASSERT; |
| 2020 | if (!have_lockres_ref) { |
| 2021 | mlog(ML_ERROR, "strange, got assert from %u, MASTER " |
| 2022 | "mle present here for %s:%.*s, but no lockres!\n", |
| 2023 | assert->node_idx, dlm->name, namelen, name); |
| 2024 | } |
| 2025 | } |
| 2026 | if (have_lockres_ref) { |
| 2027 | /* let the master know we have a reference to the lockres */ |
| 2028 | ret |= DLM_ASSERT_RESPONSE_MASTERY_REF; |
| 2029 | mlog(0, "%s:%.*s: got assert from %u, need a ref\n", |
| 2030 | dlm->name, namelen, name, assert->node_idx); |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 2031 | } |
| 2032 | return ret; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2033 | |
| 2034 | kill: |
| 2035 | /* kill the caller! */ |
Kurt Hackel | a9ee4c8 | 2006-04-27 19:26:15 -0700 | [diff] [blame] | 2036 | mlog(ML_ERROR, "Bad message received from another node. Dumping state " |
| 2037 | "and killing the other node now! This node is OK and can continue.\n"); |
| 2038 | __dlm_print_one_lock_resource(res); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2039 | spin_unlock(&res->spinlock); |
| 2040 | spin_unlock(&dlm->spinlock); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2041 | *ret_data = (void *)res; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2042 | dlm_put(dlm); |
| 2043 | return -EINVAL; |
| 2044 | } |
| 2045 | |
Kurt Hackel | 3b8118c | 2007-01-17 17:05:53 -0800 | [diff] [blame] | 2046 | void dlm_assert_master_post_handler(int status, void *data, void *ret_data) |
| 2047 | { |
| 2048 | struct dlm_lock_resource *res = (struct dlm_lock_resource *)ret_data; |
| 2049 | |
| 2050 | if (ret_data) { |
| 2051 | spin_lock(&res->spinlock); |
| 2052 | res->state &= ~DLM_LOCK_RES_SETREF_INPROG; |
| 2053 | spin_unlock(&res->spinlock); |
| 2054 | wake_up(&res->wq); |
| 2055 | dlm_lockres_put(res); |
| 2056 | } |
| 2057 | return; |
| 2058 | } |
| 2059 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2060 | int dlm_dispatch_assert_master(struct dlm_ctxt *dlm, |
| 2061 | struct dlm_lock_resource *res, |
| 2062 | int ignore_higher, u8 request_from, u32 flags) |
| 2063 | { |
| 2064 | struct dlm_work_item *item; |
Dan Carpenter | b24ae0b | 2012-07-26 16:05:05 +0300 | [diff] [blame] | 2065 | item = kzalloc(sizeof(*item), GFP_ATOMIC); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2066 | if (!item) |
| 2067 | return -ENOMEM; |
| 2068 | |
| 2069 | |
| 2070 | /* queue up work for dlm_assert_master_worker */ |
| 2071 | dlm_grab(dlm); /* get an extra ref for the work item */ |
| 2072 | dlm_init_work_item(dlm, item, dlm_assert_master_worker, NULL); |
| 2073 | item->u.am.lockres = res; /* already have a ref */ |
| 2074 | /* can optionally ignore node numbers higher than this node */ |
| 2075 | item->u.am.ignore_higher = ignore_higher; |
| 2076 | item->u.am.request_from = request_from; |
| 2077 | item->u.am.flags = flags; |
| 2078 | |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2079 | if (ignore_higher) |
| 2080 | mlog(0, "IGNORE HIGHER: %.*s\n", res->lockname.len, |
Kurt Hackel | 9c6510a | 2006-03-02 18:09:26 -0800 | [diff] [blame] | 2081 | res->lockname.name); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2082 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2083 | spin_lock(&dlm->work_lock); |
| 2084 | list_add_tail(&item->list, &dlm->work_list); |
| 2085 | spin_unlock(&dlm->work_lock); |
| 2086 | |
Kurt Hackel | 3156d26 | 2006-05-01 14:39:29 -0700 | [diff] [blame] | 2087 | queue_work(dlm->dlm_worker, &dlm->dispatched_work); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2088 | return 0; |
| 2089 | } |
| 2090 | |
| 2091 | static void dlm_assert_master_worker(struct dlm_work_item *item, void *data) |
| 2092 | { |
| 2093 | struct dlm_ctxt *dlm = data; |
| 2094 | int ret = 0; |
| 2095 | struct dlm_lock_resource *res; |
| 2096 | unsigned long nodemap[BITS_TO_LONGS(O2NM_MAX_NODES)]; |
| 2097 | int ignore_higher; |
| 2098 | int bit; |
| 2099 | u8 request_from; |
| 2100 | u32 flags; |
| 2101 | |
| 2102 | dlm = item->dlm; |
| 2103 | res = item->u.am.lockres; |
| 2104 | ignore_higher = item->u.am.ignore_higher; |
| 2105 | request_from = item->u.am.request_from; |
| 2106 | flags = item->u.am.flags; |
| 2107 | |
| 2108 | spin_lock(&dlm->spinlock); |
| 2109 | memcpy(nodemap, dlm->domain_map, sizeof(nodemap)); |
| 2110 | spin_unlock(&dlm->spinlock); |
| 2111 | |
| 2112 | clear_bit(dlm->node_num, nodemap); |
| 2113 | if (ignore_higher) { |
| 2114 | /* if is this just to clear up mles for nodes below |
| 2115 | * this node, do not send the message to the original |
| 2116 | * caller or any node number higher than this */ |
| 2117 | clear_bit(request_from, nodemap); |
| 2118 | bit = dlm->node_num; |
| 2119 | while (1) { |
| 2120 | bit = find_next_bit(nodemap, O2NM_MAX_NODES, |
| 2121 | bit+1); |
| 2122 | if (bit >= O2NM_MAX_NODES) |
| 2123 | break; |
| 2124 | clear_bit(bit, nodemap); |
| 2125 | } |
| 2126 | } |
| 2127 | |
Kurt Hackel | 3640748 | 2006-05-01 13:32:27 -0700 | [diff] [blame] | 2128 | /* |
| 2129 | * If we're migrating this lock to someone else, we are no |
| 2130 | * longer allowed to assert out own mastery. OTOH, we need to |
| 2131 | * prevent migration from starting while we're still asserting |
| 2132 | * our dominance. The reserved ast delays migration. |
| 2133 | */ |
| 2134 | spin_lock(&res->spinlock); |
| 2135 | if (res->state & DLM_LOCK_RES_MIGRATING) { |
| 2136 | mlog(0, "Someone asked us to assert mastery, but we're " |
| 2137 | "in the middle of migration. Skipping assert, " |
| 2138 | "the new master will handle that.\n"); |
| 2139 | spin_unlock(&res->spinlock); |
| 2140 | goto put; |
| 2141 | } else |
| 2142 | __dlm_lockres_reserve_ast(res); |
| 2143 | spin_unlock(&res->spinlock); |
| 2144 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2145 | /* this call now finishes out the nodemap |
| 2146 | * even if one or more nodes die */ |
| 2147 | mlog(0, "worker about to master %.*s here, this=%u\n", |
| 2148 | res->lockname.len, res->lockname.name, dlm->node_num); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2149 | ret = dlm_do_assert_master(dlm, res, nodemap, flags); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2150 | if (ret < 0) { |
| 2151 | /* no need to restart, we are done */ |
Kurt Hackel | 3b3b84a | 2006-05-01 14:31:37 -0700 | [diff] [blame] | 2152 | if (!dlm_is_host_down(ret)) |
| 2153 | mlog_errno(ret); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2154 | } |
| 2155 | |
Kurt Hackel | 3640748 | 2006-05-01 13:32:27 -0700 | [diff] [blame] | 2156 | /* Ok, we've asserted ourselves. Let's let migration start. */ |
| 2157 | dlm_lockres_release_ast(dlm, res); |
| 2158 | |
| 2159 | put: |
Xue jiufei | ac4fef4 | 2014-06-23 13:22:09 -0700 | [diff] [blame] | 2160 | dlm_lockres_drop_inflight_worker(dlm, res); |
| 2161 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2162 | dlm_lockres_put(res); |
| 2163 | |
| 2164 | mlog(0, "finished with dlm_assert_master_worker\n"); |
| 2165 | } |
| 2166 | |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 2167 | /* SPECIAL CASE for the $RECOVERY lock used by the recovery thread. |
| 2168 | * We cannot wait for node recovery to complete to begin mastering this |
| 2169 | * lockres because this lockres is used to kick off recovery! ;-) |
| 2170 | * So, do a pre-check on all living nodes to see if any of those nodes |
| 2171 | * think that $RECOVERY is currently mastered by a dead node. If so, |
| 2172 | * we wait a short time to allow that node to get notified by its own |
| 2173 | * heartbeat stack, then check again. All $RECOVERY lock resources |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2174 | * mastered by dead nodes are purged when the hearbeat callback is |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 2175 | * fired, so we can know for sure that it is safe to continue once |
| 2176 | * the node returns a live node or no node. */ |
| 2177 | static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm, |
| 2178 | struct dlm_lock_resource *res) |
| 2179 | { |
| 2180 | struct dlm_node_iter iter; |
| 2181 | int nodenum; |
| 2182 | int ret = 0; |
| 2183 | u8 master = DLM_LOCK_RES_OWNER_UNKNOWN; |
| 2184 | |
| 2185 | spin_lock(&dlm->spinlock); |
| 2186 | dlm_node_iter_init(dlm->domain_map, &iter); |
| 2187 | spin_unlock(&dlm->spinlock); |
| 2188 | |
| 2189 | while ((nodenum = dlm_node_iter_next(&iter)) >= 0) { |
| 2190 | /* do not send to self */ |
| 2191 | if (nodenum == dlm->node_num) |
| 2192 | continue; |
| 2193 | ret = dlm_do_master_requery(dlm, res, nodenum, &master); |
| 2194 | if (ret < 0) { |
| 2195 | mlog_errno(ret); |
| 2196 | if (!dlm_is_host_down(ret)) |
| 2197 | BUG(); |
| 2198 | /* host is down, so answer for that node would be |
| 2199 | * DLM_LOCK_RES_OWNER_UNKNOWN. continue. */ |
Kurt Hackel | f42a100 | 2006-05-01 11:53:33 -0700 | [diff] [blame] | 2200 | ret = 0; |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 2201 | } |
| 2202 | |
| 2203 | if (master != DLM_LOCK_RES_OWNER_UNKNOWN) { |
| 2204 | /* check to see if this master is in the recovery map */ |
| 2205 | spin_lock(&dlm->spinlock); |
| 2206 | if (test_bit(master, dlm->recovery_map)) { |
| 2207 | mlog(ML_NOTICE, "%s: node %u has not seen " |
| 2208 | "node %u go down yet, and thinks the " |
| 2209 | "dead node is mastering the recovery " |
| 2210 | "lock. must wait.\n", dlm->name, |
| 2211 | nodenum, master); |
| 2212 | ret = -EAGAIN; |
| 2213 | } |
| 2214 | spin_unlock(&dlm->spinlock); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2215 | mlog(0, "%s: reco lock master is %u\n", dlm->name, |
Kurt Hackel | c03872f | 2006-03-06 14:08:49 -0800 | [diff] [blame] | 2216 | master); |
| 2217 | break; |
| 2218 | } |
| 2219 | } |
| 2220 | return ret; |
| 2221 | } |
| 2222 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2223 | /* |
| 2224 | * DLM_DEREF_LOCKRES_MSG |
| 2225 | */ |
| 2226 | |
| 2227 | int dlm_drop_lockres_ref(struct dlm_ctxt *dlm, struct dlm_lock_resource *res) |
| 2228 | { |
| 2229 | struct dlm_deref_lockres deref; |
| 2230 | int ret = 0, r; |
| 2231 | const char *lockname; |
| 2232 | unsigned int namelen; |
| 2233 | |
| 2234 | lockname = res->lockname.name; |
| 2235 | namelen = res->lockname.len; |
| 2236 | BUG_ON(namelen > O2NM_MAX_NAME_LEN); |
| 2237 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2238 | memset(&deref, 0, sizeof(deref)); |
| 2239 | deref.node_idx = dlm->node_num; |
| 2240 | deref.namelen = namelen; |
| 2241 | memcpy(deref.name, lockname, namelen); |
| 2242 | |
| 2243 | ret = o2net_send_message(DLM_DEREF_LOCKRES_MSG, dlm->key, |
| 2244 | &deref, sizeof(deref), res->owner, &r); |
| 2245 | if (ret < 0) |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 2246 | mlog(ML_ERROR, "%s: res %.*s, error %d send DEREF to node %u\n", |
| 2247 | dlm->name, namelen, lockname, ret, res->owner); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2248 | else if (r < 0) { |
| 2249 | /* BAD. other node says I did not have a ref. */ |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 2250 | mlog(ML_ERROR, "%s: res %.*s, DEREF to node %u got %d\n", |
| 2251 | dlm->name, namelen, lockname, res->owner, r); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2252 | dlm_print_one_lock_resource(res); |
| 2253 | BUG(); |
| 2254 | } |
| 2255 | return ret; |
| 2256 | } |
| 2257 | |
Kurt Hackel | d74c980 | 2007-01-17 17:04:25 -0800 | [diff] [blame] | 2258 | int dlm_deref_lockres_handler(struct o2net_msg *msg, u32 len, void *data, |
| 2259 | void **ret_data) |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2260 | { |
| 2261 | struct dlm_ctxt *dlm = data; |
| 2262 | struct dlm_deref_lockres *deref = (struct dlm_deref_lockres *)msg->buf; |
| 2263 | struct dlm_lock_resource *res = NULL; |
| 2264 | char *name; |
| 2265 | unsigned int namelen; |
| 2266 | int ret = -EINVAL; |
| 2267 | u8 node; |
| 2268 | unsigned int hash; |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2269 | struct dlm_work_item *item; |
| 2270 | int cleared = 0; |
| 2271 | int dispatch = 0; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2272 | |
| 2273 | if (!dlm_grab(dlm)) |
| 2274 | return 0; |
| 2275 | |
| 2276 | name = deref->name; |
| 2277 | namelen = deref->namelen; |
| 2278 | node = deref->node_idx; |
| 2279 | |
| 2280 | if (namelen > DLM_LOCKID_NAME_MAX) { |
| 2281 | mlog(ML_ERROR, "Invalid name length!"); |
| 2282 | goto done; |
| 2283 | } |
| 2284 | if (deref->node_idx >= O2NM_MAX_NODES) { |
| 2285 | mlog(ML_ERROR, "Invalid node number: %u\n", node); |
| 2286 | goto done; |
| 2287 | } |
| 2288 | |
| 2289 | hash = dlm_lockid_hash(name, namelen); |
| 2290 | |
| 2291 | spin_lock(&dlm->spinlock); |
| 2292 | res = __dlm_lookup_lockres_full(dlm, name, namelen, hash); |
| 2293 | if (!res) { |
| 2294 | spin_unlock(&dlm->spinlock); |
| 2295 | mlog(ML_ERROR, "%s:%.*s: bad lockres name\n", |
| 2296 | dlm->name, namelen, name); |
| 2297 | goto done; |
| 2298 | } |
| 2299 | spin_unlock(&dlm->spinlock); |
| 2300 | |
| 2301 | spin_lock(&res->spinlock); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2302 | if (res->state & DLM_LOCK_RES_SETREF_INPROG) |
| 2303 | dispatch = 1; |
| 2304 | else { |
| 2305 | BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF); |
| 2306 | if (test_bit(node, res->refmap)) { |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 2307 | dlm_lockres_clear_refmap_bit(dlm, res, node); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2308 | cleared = 1; |
| 2309 | } |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2310 | } |
| 2311 | spin_unlock(&res->spinlock); |
| 2312 | |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2313 | if (!dispatch) { |
| 2314 | if (cleared) |
| 2315 | dlm_lockres_calc_usage(dlm, res); |
| 2316 | else { |
| 2317 | mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref " |
| 2318 | "but it is already dropped!\n", dlm->name, |
| 2319 | res->lockname.len, res->lockname.name, node); |
Tao Ma | 2af37ce | 2008-02-28 10:41:55 +0800 | [diff] [blame] | 2320 | dlm_print_one_lock_resource(res); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2321 | } |
| 2322 | ret = 0; |
| 2323 | goto done; |
| 2324 | } |
| 2325 | |
| 2326 | item = kzalloc(sizeof(*item), GFP_NOFS); |
| 2327 | if (!item) { |
| 2328 | ret = -ENOMEM; |
| 2329 | mlog_errno(ret); |
| 2330 | goto done; |
| 2331 | } |
| 2332 | |
| 2333 | dlm_init_work_item(dlm, item, dlm_deref_lockres_worker, NULL); |
| 2334 | item->u.dl.deref_res = res; |
| 2335 | item->u.dl.deref_node = node; |
| 2336 | |
| 2337 | spin_lock(&dlm->work_lock); |
| 2338 | list_add_tail(&item->list, &dlm->work_list); |
| 2339 | spin_unlock(&dlm->work_lock); |
| 2340 | |
| 2341 | queue_work(dlm->dlm_worker, &dlm->dispatched_work); |
| 2342 | return 0; |
| 2343 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2344 | done: |
| 2345 | if (res) |
| 2346 | dlm_lockres_put(res); |
| 2347 | dlm_put(dlm); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2348 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2349 | return ret; |
| 2350 | } |
| 2351 | |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2352 | static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data) |
| 2353 | { |
| 2354 | struct dlm_ctxt *dlm; |
| 2355 | struct dlm_lock_resource *res; |
| 2356 | u8 node; |
| 2357 | u8 cleared = 0; |
| 2358 | |
| 2359 | dlm = item->dlm; |
| 2360 | res = item->u.dl.deref_res; |
| 2361 | node = item->u.dl.deref_node; |
| 2362 | |
| 2363 | spin_lock(&res->spinlock); |
| 2364 | BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF); |
| 2365 | if (test_bit(node, res->refmap)) { |
| 2366 | __dlm_wait_on_lockres_flags(res, DLM_LOCK_RES_SETREF_INPROG); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 2367 | dlm_lockres_clear_refmap_bit(dlm, res, node); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2368 | cleared = 1; |
| 2369 | } |
| 2370 | spin_unlock(&res->spinlock); |
| 2371 | |
| 2372 | if (cleared) { |
| 2373 | mlog(0, "%s:%.*s node %u ref dropped in dispatch\n", |
| 2374 | dlm->name, res->lockname.len, res->lockname.name, node); |
| 2375 | dlm_lockres_calc_usage(dlm, res); |
| 2376 | } else { |
| 2377 | mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref " |
| 2378 | "but it is already dropped!\n", dlm->name, |
| 2379 | res->lockname.len, res->lockname.name, node); |
Tao Ma | 2af37ce | 2008-02-28 10:41:55 +0800 | [diff] [blame] | 2380 | dlm_print_one_lock_resource(res); |
Sunil Mushran | f3f8546 | 2007-01-29 15:19:16 -0800 | [diff] [blame] | 2381 | } |
| 2382 | |
| 2383 | dlm_lockres_put(res); |
| 2384 | } |
| 2385 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2386 | /* |
| 2387 | * A migrateable resource is one that is : |
| 2388 | * 1. locally mastered, and, |
| 2389 | * 2. zero local locks, and, |
| 2390 | * 3. one or more non-local locks, or, one or more references |
| 2391 | * Returns 1 if yes, 0 if not. |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2392 | */ |
| 2393 | static int dlm_is_lockres_migrateable(struct dlm_ctxt *dlm, |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2394 | struct dlm_lock_resource *res) |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2395 | { |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2396 | enum dlm_lockres_list idx; |
| 2397 | int nonlocal = 0, node_ref; |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 2398 | struct list_head *queue; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2399 | struct dlm_lock *lock; |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2400 | u64 cookie; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2401 | |
| 2402 | assert_spin_locked(&res->spinlock); |
| 2403 | |
Xue jiufei | fae477b | 2013-11-12 15:07:00 -0800 | [diff] [blame] | 2404 | /* delay migration when the lockres is in MIGRATING state */ |
| 2405 | if (res->state & DLM_LOCK_RES_MIGRATING) |
| 2406 | return 0; |
| 2407 | |
Tariq Saeed | bba1cb1 | 2014-08-06 16:03:58 -0700 | [diff] [blame] | 2408 | /* delay migration when the lockres is in RECOCERING state */ |
| 2409 | if (res->state & DLM_LOCK_RES_RECOVERING) |
| 2410 | return 0; |
| 2411 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2412 | if (res->owner != dlm->node_num) |
| 2413 | return 0; |
Sunil Mushran | 388c4bc | 2010-11-19 15:06:50 -0800 | [diff] [blame] | 2414 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2415 | for (idx = DLM_GRANTED_LIST; idx <= DLM_BLOCKED_LIST; idx++) { |
| 2416 | queue = dlm_list_idx_to_ptr(res, idx); |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 2417 | list_for_each_entry(lock, queue, list) { |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2418 | if (lock->ml.node != dlm->node_num) { |
| 2419 | nonlocal++; |
| 2420 | continue; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2421 | } |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2422 | cookie = be64_to_cpu(lock->ml.cookie); |
| 2423 | mlog(0, "%s: Not migrateable res %.*s, lock %u:%llu on " |
| 2424 | "%s list\n", dlm->name, res->lockname.len, |
| 2425 | res->lockname.name, |
| 2426 | dlm_get_lock_cookie_node(cookie), |
| 2427 | dlm_get_lock_cookie_seq(cookie), |
| 2428 | dlm_list_in_text(idx)); |
| 2429 | return 0; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2430 | } |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2431 | } |
| 2432 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2433 | if (!nonlocal) { |
| 2434 | node_ref = find_next_bit(res->refmap, O2NM_MAX_NODES, 0); |
| 2435 | if (node_ref >= O2NM_MAX_NODES) |
| 2436 | return 0; |
| 2437 | } |
Sunil Mushran | 388c4bc | 2010-11-19 15:06:50 -0800 | [diff] [blame] | 2438 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2439 | mlog(0, "%s: res %.*s, Migrateable\n", dlm->name, res->lockname.len, |
| 2440 | res->lockname.name); |
Sunil Mushran | 388c4bc | 2010-11-19 15:06:50 -0800 | [diff] [blame] | 2441 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2442 | return 1; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2443 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2444 | |
| 2445 | /* |
| 2446 | * DLM_MIGRATE_LOCKRES |
| 2447 | */ |
| 2448 | |
| 2449 | |
Adrian Bunk | faf0ec9 | 2006-12-14 00:17:32 +0100 | [diff] [blame] | 2450 | static int dlm_migrate_lockres(struct dlm_ctxt *dlm, |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2451 | struct dlm_lock_resource *res, u8 target) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2452 | { |
| 2453 | struct dlm_master_list_entry *mle = NULL; |
| 2454 | struct dlm_master_list_entry *oldmle = NULL; |
| 2455 | struct dlm_migratable_lockres *mres = NULL; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2456 | int ret = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2457 | const char *name; |
| 2458 | unsigned int namelen; |
| 2459 | int mle_added = 0; |
Sunil Mushran | 2f5bf1f | 2007-03-22 17:08:32 -0700 | [diff] [blame] | 2460 | int wake = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2461 | |
| 2462 | if (!dlm_grab(dlm)) |
| 2463 | return -EINVAL; |
| 2464 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2465 | BUG_ON(target == O2NM_MAX_NODES); |
| 2466 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2467 | name = res->lockname.name; |
| 2468 | namelen = res->lockname.len; |
| 2469 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2470 | mlog(0, "%s: Migrating %.*s to node %u\n", dlm->name, namelen, name, |
| 2471 | target); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2472 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2473 | /* preallocate up front. if this fails, abort */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2474 | ret = -ENOMEM; |
Kurt Hackel | ad8100e | 2006-05-01 14:25:21 -0700 | [diff] [blame] | 2475 | mres = (struct dlm_migratable_lockres *) __get_free_page(GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2476 | if (!mres) { |
| 2477 | mlog_errno(ret); |
| 2478 | goto leave; |
| 2479 | } |
| 2480 | |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 2481 | mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2482 | if (!mle) { |
| 2483 | mlog_errno(ret); |
| 2484 | goto leave; |
| 2485 | } |
| 2486 | ret = 0; |
| 2487 | |
| 2488 | /* |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2489 | * clear any existing master requests and |
| 2490 | * add the migration mle to the list |
| 2491 | */ |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2492 | spin_lock(&dlm->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2493 | spin_lock(&dlm->master_lock); |
| 2494 | ret = dlm_add_migration_mle(dlm, res, mle, &oldmle, name, |
| 2495 | namelen, target, dlm->node_num); |
| 2496 | spin_unlock(&dlm->master_lock); |
| 2497 | spin_unlock(&dlm->spinlock); |
| 2498 | |
| 2499 | if (ret == -EEXIST) { |
| 2500 | mlog(0, "another process is already migrating it\n"); |
| 2501 | goto fail; |
| 2502 | } |
| 2503 | mle_added = 1; |
| 2504 | |
| 2505 | /* |
| 2506 | * set the MIGRATING flag and flush asts |
| 2507 | * if we fail after this we need to re-dirty the lockres |
| 2508 | */ |
| 2509 | if (dlm_mark_lockres_migrating(dlm, res, target) < 0) { |
| 2510 | mlog(ML_ERROR, "tried to migrate %.*s to %u, but " |
| 2511 | "the target went down.\n", res->lockname.len, |
| 2512 | res->lockname.name, target); |
| 2513 | spin_lock(&res->spinlock); |
| 2514 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 2515 | wake = 1; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2516 | spin_unlock(&res->spinlock); |
| 2517 | ret = -EINVAL; |
| 2518 | } |
| 2519 | |
| 2520 | fail: |
| 2521 | if (oldmle) { |
| 2522 | /* master is known, detach if not already detached */ |
| 2523 | dlm_mle_detach_hb_events(dlm, oldmle); |
| 2524 | dlm_put_mle(oldmle); |
| 2525 | } |
| 2526 | |
| 2527 | if (ret < 0) { |
| 2528 | if (mle_added) { |
| 2529 | dlm_mle_detach_hb_events(dlm, mle); |
| 2530 | dlm_put_mle(mle); |
| 2531 | } else if (mle) { |
| 2532 | kmem_cache_free(dlm_mle_cache, mle); |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2533 | mle = NULL; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2534 | } |
| 2535 | goto leave; |
| 2536 | } |
| 2537 | |
| 2538 | /* |
| 2539 | * at this point, we have a migration target, an mle |
| 2540 | * in the master list, and the MIGRATING flag set on |
| 2541 | * the lockres |
| 2542 | */ |
| 2543 | |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 2544 | /* now that remote nodes are spinning on the MIGRATING flag, |
| 2545 | * ensure that all assert_master work is flushed. */ |
| 2546 | flush_workqueue(dlm->dlm_worker); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2547 | |
| 2548 | /* get an extra reference on the mle. |
| 2549 | * otherwise the assert_master from the new |
| 2550 | * master will destroy this. |
| 2551 | * also, make sure that all callers of dlm_get_mle |
| 2552 | * take both dlm->spinlock and dlm->master_lock */ |
| 2553 | spin_lock(&dlm->spinlock); |
| 2554 | spin_lock(&dlm->master_lock); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 2555 | dlm_get_mle_inuse(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2556 | spin_unlock(&dlm->master_lock); |
| 2557 | spin_unlock(&dlm->spinlock); |
| 2558 | |
| 2559 | /* notify new node and send all lock state */ |
| 2560 | /* call send_one_lockres with migration flag. |
| 2561 | * this serves as notice to the target node that a |
| 2562 | * migration is starting. */ |
| 2563 | ret = dlm_send_one_lockres(dlm, res, mres, target, |
| 2564 | DLM_MRES_MIGRATION); |
| 2565 | |
| 2566 | if (ret < 0) { |
| 2567 | mlog(0, "migration to node %u failed with %d\n", |
| 2568 | target, ret); |
| 2569 | /* migration failed, detach and clean up mle */ |
| 2570 | dlm_mle_detach_hb_events(dlm, mle); |
| 2571 | dlm_put_mle(mle); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 2572 | dlm_put_mle_inuse(mle); |
| 2573 | spin_lock(&res->spinlock); |
| 2574 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 2575 | wake = 1; |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 2576 | spin_unlock(&res->spinlock); |
Sunil Mushran | df016c6 | 2011-05-04 10:28:07 -0700 | [diff] [blame] | 2577 | if (dlm_is_host_down(ret)) |
| 2578 | dlm_wait_for_node_death(dlm, target, |
| 2579 | DLM_NODE_DEATH_WAIT_MAX); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2580 | goto leave; |
| 2581 | } |
| 2582 | |
| 2583 | /* at this point, the target sends a message to all nodes, |
| 2584 | * (using dlm_do_migrate_request). this node is skipped since |
| 2585 | * we had to put an mle in the list to begin the process. this |
| 2586 | * node now waits for target to do an assert master. this node |
| 2587 | * will be the last one notified, ensuring that the migration |
| 2588 | * is complete everywhere. if the target dies while this is |
| 2589 | * going on, some nodes could potentially see the target as the |
| 2590 | * master, so it is important that my recovery finds the migration |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2591 | * mle and sets the master to UNKNOWN. */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2592 | |
| 2593 | |
| 2594 | /* wait for new node to assert master */ |
| 2595 | while (1) { |
| 2596 | ret = wait_event_interruptible_timeout(mle->wq, |
| 2597 | (atomic_read(&mle->woken) == 1), |
| 2598 | msecs_to_jiffies(5000)); |
| 2599 | |
| 2600 | if (ret >= 0) { |
| 2601 | if (atomic_read(&mle->woken) == 1 || |
| 2602 | res->owner == target) |
| 2603 | break; |
| 2604 | |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 2605 | mlog(0, "%s:%.*s: timed out during migration\n", |
| 2606 | dlm->name, res->lockname.len, res->lockname.name); |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2607 | /* avoid hang during shutdown when migrating lockres |
Kurt Hackel | e2faea4 | 2006-01-12 14:24:55 -0800 | [diff] [blame] | 2608 | * to a node which also goes down */ |
| 2609 | if (dlm_is_node_dead(dlm, target)) { |
Kurt Hackel | aa85235 | 2006-04-27 19:04:49 -0700 | [diff] [blame] | 2610 | mlog(0, "%s:%.*s: expected migration " |
| 2611 | "target %u is no longer up, restarting\n", |
Kurt Hackel | e2faea4 | 2006-01-12 14:24:55 -0800 | [diff] [blame] | 2612 | dlm->name, res->lockname.len, |
| 2613 | res->lockname.name, target); |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 2614 | ret = -EINVAL; |
| 2615 | /* migration failed, detach and clean up mle */ |
| 2616 | dlm_mle_detach_hb_events(dlm, mle); |
| 2617 | dlm_put_mle(mle); |
| 2618 | dlm_put_mle_inuse(mle); |
| 2619 | spin_lock(&res->spinlock); |
| 2620 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 2621 | wake = 1; |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 2622 | spin_unlock(&res->spinlock); |
| 2623 | goto leave; |
Kurt Hackel | e2faea4 | 2006-01-12 14:24:55 -0800 | [diff] [blame] | 2624 | } |
Kurt Hackel | 1cd04db | 2007-01-17 14:53:37 -0800 | [diff] [blame] | 2625 | } else |
| 2626 | mlog(0, "%s:%.*s: caught signal during migration\n", |
| 2627 | dlm->name, res->lockname.len, res->lockname.name); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2628 | } |
| 2629 | |
| 2630 | /* all done, set the owner, clear the flag */ |
| 2631 | spin_lock(&res->spinlock); |
| 2632 | dlm_set_lockres_owner(dlm, res, target); |
| 2633 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
| 2634 | dlm_remove_nonlocal_locks(dlm, res); |
| 2635 | spin_unlock(&res->spinlock); |
| 2636 | wake_up(&res->wq); |
| 2637 | |
| 2638 | /* master is known, detach if not already detached */ |
| 2639 | dlm_mle_detach_hb_events(dlm, mle); |
Kurt Hackel | a2bf047 | 2006-04-27 18:51:26 -0700 | [diff] [blame] | 2640 | dlm_put_mle_inuse(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2641 | ret = 0; |
| 2642 | |
| 2643 | dlm_lockres_calc_usage(dlm, res); |
| 2644 | |
| 2645 | leave: |
| 2646 | /* re-dirty the lockres if we failed */ |
| 2647 | if (ret < 0) |
| 2648 | dlm_kick_thread(dlm, res); |
| 2649 | |
Kurt Hackel | a6fa364 | 2007-01-17 14:59:12 -0800 | [diff] [blame] | 2650 | /* wake up waiters if the MIGRATING flag got set |
| 2651 | * but migration failed */ |
| 2652 | if (wake) |
| 2653 | wake_up(&res->wq); |
| 2654 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2655 | if (mres) |
| 2656 | free_page((unsigned long)mres); |
| 2657 | |
| 2658 | dlm_put(dlm); |
| 2659 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2660 | mlog(0, "%s: Migrating %.*s to %u, returns %d\n", dlm->name, namelen, |
| 2661 | name, target, ret); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2662 | return ret; |
| 2663 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2664 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2665 | #define DLM_MIGRATION_RETRY_MS 100 |
| 2666 | |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2667 | /* |
| 2668 | * Should be called only after beginning the domain leave process. |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2669 | * There should not be any remaining locks on nonlocal lock resources, |
| 2670 | * and there should be no local locks left on locally mastered resources. |
| 2671 | * |
| 2672 | * Called with the dlm spinlock held, may drop it to do migration, but |
| 2673 | * will re-acquire before exit. |
| 2674 | * |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2675 | * Returns: 1 if dlm->spinlock was dropped/retaken, 0 if never dropped |
| 2676 | */ |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2677 | int dlm_empty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res) |
| 2678 | { |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2679 | int ret; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2680 | int lock_dropped = 0; |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2681 | u8 target = O2NM_MAX_NODES; |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2682 | |
| 2683 | assert_spin_locked(&dlm->spinlock); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2684 | |
Sunil Mushran | b36c3f8 | 2007-03-12 13:25:44 -0700 | [diff] [blame] | 2685 | spin_lock(&res->spinlock); |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2686 | if (dlm_is_lockres_migrateable(dlm, res)) |
| 2687 | target = dlm_pick_migration_target(dlm, res); |
Sunil Mushran | b36c3f8 | 2007-03-12 13:25:44 -0700 | [diff] [blame] | 2688 | spin_unlock(&res->spinlock); |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2689 | |
| 2690 | if (target == O2NM_MAX_NODES) |
Sunil Mushran | 9f62e96 | 2011-05-19 14:34:09 -0700 | [diff] [blame] | 2691 | goto leave; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2692 | |
| 2693 | /* Wheee! Migrate lockres here! Will sleep so drop spinlock. */ |
| 2694 | spin_unlock(&dlm->spinlock); |
| 2695 | lock_dropped = 1; |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2696 | ret = dlm_migrate_lockres(dlm, res, target); |
| 2697 | if (ret) |
| 2698 | mlog(0, "%s: res %.*s, Migrate to node %u failed with %d\n", |
| 2699 | dlm->name, res->lockname.len, res->lockname.name, |
| 2700 | target, ret); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2701 | spin_lock(&dlm->spinlock); |
| 2702 | leave: |
| 2703 | return lock_dropped; |
| 2704 | } |
| 2705 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2706 | int dlm_lock_basts_flushed(struct dlm_ctxt *dlm, struct dlm_lock *lock) |
| 2707 | { |
| 2708 | int ret; |
| 2709 | spin_lock(&dlm->ast_lock); |
| 2710 | spin_lock(&lock->spinlock); |
| 2711 | ret = (list_empty(&lock->bast_list) && !lock->bast_pending); |
| 2712 | spin_unlock(&lock->spinlock); |
| 2713 | spin_unlock(&dlm->ast_lock); |
| 2714 | return ret; |
| 2715 | } |
| 2716 | |
| 2717 | static int dlm_migration_can_proceed(struct dlm_ctxt *dlm, |
| 2718 | struct dlm_lock_resource *res, |
| 2719 | u8 mig_target) |
| 2720 | { |
| 2721 | int can_proceed; |
| 2722 | spin_lock(&res->spinlock); |
| 2723 | can_proceed = !!(res->state & DLM_LOCK_RES_MIGRATING); |
| 2724 | spin_unlock(&res->spinlock); |
| 2725 | |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 2726 | /* target has died, so make the caller break out of the |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2727 | * wait_event, but caller must recheck the domain_map */ |
| 2728 | spin_lock(&dlm->spinlock); |
| 2729 | if (!test_bit(mig_target, dlm->domain_map)) |
| 2730 | can_proceed = 1; |
| 2731 | spin_unlock(&dlm->spinlock); |
| 2732 | return can_proceed; |
| 2733 | } |
| 2734 | |
Adrian Bunk | faf0ec9 | 2006-12-14 00:17:32 +0100 | [diff] [blame] | 2735 | static int dlm_lockres_is_dirty(struct dlm_ctxt *dlm, |
| 2736 | struct dlm_lock_resource *res) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2737 | { |
| 2738 | int ret; |
| 2739 | spin_lock(&res->spinlock); |
| 2740 | ret = !!(res->state & DLM_LOCK_RES_DIRTY); |
| 2741 | spin_unlock(&res->spinlock); |
| 2742 | return ret; |
| 2743 | } |
| 2744 | |
| 2745 | |
| 2746 | static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm, |
| 2747 | struct dlm_lock_resource *res, |
| 2748 | u8 target) |
| 2749 | { |
| 2750 | int ret = 0; |
| 2751 | |
| 2752 | mlog(0, "dlm_mark_lockres_migrating: %.*s, from %u to %u\n", |
| 2753 | res->lockname.len, res->lockname.name, dlm->node_num, |
| 2754 | target); |
| 2755 | /* need to set MIGRATING flag on lockres. this is done by |
| 2756 | * ensuring that all asts have been flushed for this lockres. */ |
| 2757 | spin_lock(&res->spinlock); |
| 2758 | BUG_ON(res->migration_pending); |
| 2759 | res->migration_pending = 1; |
| 2760 | /* strategy is to reserve an extra ast then release |
| 2761 | * it below, letting the release do all of the work */ |
| 2762 | __dlm_lockres_reserve_ast(res); |
| 2763 | spin_unlock(&res->spinlock); |
| 2764 | |
Kurt Hackel | ddc09c8 | 2007-01-05 15:00:17 -0800 | [diff] [blame] | 2765 | /* now flush all the pending asts */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2766 | dlm_kick_thread(dlm, res); |
Kurt Hackel | ddc09c8 | 2007-01-05 15:00:17 -0800 | [diff] [blame] | 2767 | /* before waiting on DIRTY, block processes which may |
| 2768 | * try to dirty the lockres before MIGRATING is set */ |
| 2769 | spin_lock(&res->spinlock); |
| 2770 | BUG_ON(res->state & DLM_LOCK_RES_BLOCK_DIRTY); |
| 2771 | res->state |= DLM_LOCK_RES_BLOCK_DIRTY; |
| 2772 | spin_unlock(&res->spinlock); |
| 2773 | /* now wait on any pending asts and the DIRTY state */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2774 | wait_event(dlm->ast_wq, !dlm_lockres_is_dirty(dlm, res)); |
| 2775 | dlm_lockres_release_ast(dlm, res); |
| 2776 | |
| 2777 | mlog(0, "about to wait on migration_wq, dirty=%s\n", |
| 2778 | res->state & DLM_LOCK_RES_DIRTY ? "yes" : "no"); |
| 2779 | /* if the extra ref we just put was the final one, this |
| 2780 | * will pass thru immediately. otherwise, we need to wait |
| 2781 | * for the last ast to finish. */ |
| 2782 | again: |
| 2783 | ret = wait_event_interruptible_timeout(dlm->migration_wq, |
| 2784 | dlm_migration_can_proceed(dlm, res, target), |
| 2785 | msecs_to_jiffies(1000)); |
| 2786 | if (ret < 0) { |
| 2787 | mlog(0, "woken again: migrating? %s, dead? %s\n", |
| 2788 | res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no", |
| 2789 | test_bit(target, dlm->domain_map) ? "no":"yes"); |
| 2790 | } else { |
| 2791 | mlog(0, "all is well: migrating? %s, dead? %s\n", |
| 2792 | res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no", |
| 2793 | test_bit(target, dlm->domain_map) ? "no":"yes"); |
| 2794 | } |
| 2795 | if (!dlm_migration_can_proceed(dlm, res, target)) { |
| 2796 | mlog(0, "trying again...\n"); |
| 2797 | goto again; |
| 2798 | } |
| 2799 | |
Wengang Wang | a39953d | 2010-07-14 22:38:21 +0800 | [diff] [blame] | 2800 | ret = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2801 | /* did the target go down or die? */ |
| 2802 | spin_lock(&dlm->spinlock); |
| 2803 | if (!test_bit(target, dlm->domain_map)) { |
| 2804 | mlog(ML_ERROR, "aha. migration target %u just went down\n", |
| 2805 | target); |
| 2806 | ret = -EHOSTDOWN; |
| 2807 | } |
| 2808 | spin_unlock(&dlm->spinlock); |
| 2809 | |
| 2810 | /* |
Wengang Wang | a39953d | 2010-07-14 22:38:21 +0800 | [diff] [blame] | 2811 | * if target is down, we need to clear DLM_LOCK_RES_BLOCK_DIRTY for |
| 2812 | * another try; otherwise, we are sure the MIGRATING state is there, |
| 2813 | * drop the unneded state which blocked threads trying to DIRTY |
| 2814 | */ |
| 2815 | spin_lock(&res->spinlock); |
| 2816 | BUG_ON(!(res->state & DLM_LOCK_RES_BLOCK_DIRTY)); |
| 2817 | res->state &= ~DLM_LOCK_RES_BLOCK_DIRTY; |
| 2818 | if (!ret) |
| 2819 | BUG_ON(!(res->state & DLM_LOCK_RES_MIGRATING)); |
| 2820 | spin_unlock(&res->spinlock); |
| 2821 | |
| 2822 | /* |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2823 | * at this point: |
| 2824 | * |
Wengang Wang | a39953d | 2010-07-14 22:38:21 +0800 | [diff] [blame] | 2825 | * o the DLM_LOCK_RES_MIGRATING flag is set if target not down |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2826 | * o there are no pending asts on this lockres |
| 2827 | * o all processes trying to reserve an ast on this |
| 2828 | * lockres must wait for the MIGRATING flag to clear |
| 2829 | */ |
| 2830 | return ret; |
| 2831 | } |
| 2832 | |
| 2833 | /* last step in the migration process. |
| 2834 | * original master calls this to free all of the dlm_lock |
| 2835 | * structures that used to be for other nodes. */ |
| 2836 | static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm, |
| 2837 | struct dlm_lock_resource *res) |
| 2838 | { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2839 | struct list_head *queue = &res->granted; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2840 | int i, bit; |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 2841 | struct dlm_lock *lock, *next; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2842 | |
| 2843 | assert_spin_locked(&res->spinlock); |
| 2844 | |
| 2845 | BUG_ON(res->owner == dlm->node_num); |
| 2846 | |
| 2847 | for (i=0; i<3; i++) { |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 2848 | list_for_each_entry_safe(lock, next, queue, list) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2849 | if (lock->ml.node != dlm->node_num) { |
| 2850 | mlog(0, "putting lock for node %u\n", |
| 2851 | lock->ml.node); |
| 2852 | /* be extra careful */ |
| 2853 | BUG_ON(!list_empty(&lock->ast_list)); |
| 2854 | BUG_ON(!list_empty(&lock->bast_list)); |
| 2855 | BUG_ON(lock->ast_pending); |
| 2856 | BUG_ON(lock->bast_pending); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 2857 | dlm_lockres_clear_refmap_bit(dlm, res, |
| 2858 | lock->ml.node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2859 | list_del_init(&lock->list); |
| 2860 | dlm_lock_put(lock); |
Sunil Mushran | 2c5c54a | 2008-03-01 14:04:20 -0800 | [diff] [blame] | 2861 | /* In a normal unlock, we would have added a |
| 2862 | * DLM_UNLOCK_FREE_LOCK action. Force it. */ |
| 2863 | dlm_lock_put(lock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2864 | } |
| 2865 | } |
| 2866 | queue++; |
| 2867 | } |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2868 | bit = 0; |
| 2869 | while (1) { |
| 2870 | bit = find_next_bit(res->refmap, O2NM_MAX_NODES, bit); |
| 2871 | if (bit >= O2NM_MAX_NODES) |
| 2872 | break; |
| 2873 | /* do not clear the local node reference, if there is a |
| 2874 | * process holding this, let it drop the ref itself */ |
| 2875 | if (bit != dlm->node_num) { |
| 2876 | mlog(0, "%s:%.*s: node %u had a ref to this " |
| 2877 | "migrating lockres, clearing\n", dlm->name, |
| 2878 | res->lockname.len, res->lockname.name, bit); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 2879 | dlm_lockres_clear_refmap_bit(dlm, res, bit); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2880 | } |
| 2881 | bit++; |
| 2882 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2883 | } |
| 2884 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2885 | /* |
| 2886 | * Pick a node to migrate the lock resource to. This function selects a |
| 2887 | * potential target based first on the locks and then on refmap. It skips |
| 2888 | * nodes that are in the process of exiting the domain. |
| 2889 | */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2890 | static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm, |
| 2891 | struct dlm_lock_resource *res) |
| 2892 | { |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2893 | enum dlm_lockres_list idx; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2894 | struct list_head *queue = &res->granted; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2895 | struct dlm_lock *lock; |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2896 | int noderef; |
| 2897 | u8 nodenum = O2NM_MAX_NODES; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2898 | |
| 2899 | assert_spin_locked(&dlm->spinlock); |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2900 | assert_spin_locked(&res->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2901 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2902 | /* Go through all the locks */ |
| 2903 | for (idx = DLM_GRANTED_LIST; idx <= DLM_BLOCKED_LIST; idx++) { |
| 2904 | queue = dlm_list_idx_to_ptr(res, idx); |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 2905 | list_for_each_entry(lock, queue, list) { |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2906 | if (lock->ml.node == dlm->node_num) |
| 2907 | continue; |
| 2908 | if (test_bit(lock->ml.node, dlm->exit_domain_map)) |
| 2909 | continue; |
| 2910 | nodenum = lock->ml.node; |
| 2911 | goto bail; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2912 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2913 | } |
Sunil Mushran | 388c4bc | 2010-11-19 15:06:50 -0800 | [diff] [blame] | 2914 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2915 | /* Go thru the refmap */ |
| 2916 | noderef = -1; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2917 | while (1) { |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2918 | noderef = find_next_bit(res->refmap, O2NM_MAX_NODES, |
| 2919 | noderef + 1); |
| 2920 | if (noderef >= O2NM_MAX_NODES) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2921 | break; |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2922 | if (noderef == dlm->node_num) |
| 2923 | continue; |
| 2924 | if (test_bit(noderef, dlm->exit_domain_map)) |
| 2925 | continue; |
| 2926 | nodenum = noderef; |
| 2927 | goto bail; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2928 | } |
| 2929 | |
Sunil Mushran | 66effd3 | 2011-05-19 14:34:12 -0700 | [diff] [blame] | 2930 | bail: |
| 2931 | return nodenum; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2932 | } |
| 2933 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2934 | /* this is called by the new master once all lockres |
| 2935 | * data has been received */ |
| 2936 | static int dlm_do_migrate_request(struct dlm_ctxt *dlm, |
| 2937 | struct dlm_lock_resource *res, |
| 2938 | u8 master, u8 new_master, |
| 2939 | struct dlm_node_iter *iter) |
| 2940 | { |
| 2941 | struct dlm_migrate_request migrate; |
Sunil Mushran | 2b83256 | 2008-12-16 15:49:19 -0800 | [diff] [blame] | 2942 | int ret, skip, status = 0; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2943 | int nodenum; |
| 2944 | |
| 2945 | memset(&migrate, 0, sizeof(migrate)); |
| 2946 | migrate.namelen = res->lockname.len; |
| 2947 | memcpy(migrate.name, res->lockname.name, migrate.namelen); |
| 2948 | migrate.new_master = new_master; |
| 2949 | migrate.master = master; |
| 2950 | |
| 2951 | ret = 0; |
| 2952 | |
| 2953 | /* send message to all nodes, except the master and myself */ |
| 2954 | while ((nodenum = dlm_node_iter_next(iter)) >= 0) { |
| 2955 | if (nodenum == master || |
| 2956 | nodenum == new_master) |
| 2957 | continue; |
| 2958 | |
Sunil Mushran | 2b83256 | 2008-12-16 15:49:19 -0800 | [diff] [blame] | 2959 | /* We could race exit domain. If exited, skip. */ |
| 2960 | spin_lock(&dlm->spinlock); |
| 2961 | skip = (!test_bit(nodenum, dlm->domain_map)); |
| 2962 | spin_unlock(&dlm->spinlock); |
| 2963 | if (skip) { |
| 2964 | clear_bit(nodenum, iter->node_map); |
| 2965 | continue; |
| 2966 | } |
| 2967 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2968 | ret = o2net_send_message(DLM_MIGRATE_REQUEST_MSG, dlm->key, |
| 2969 | &migrate, sizeof(migrate), nodenum, |
| 2970 | &status); |
Sunil Mushran | 2b83256 | 2008-12-16 15:49:19 -0800 | [diff] [blame] | 2971 | if (ret < 0) { |
Sunil Mushran | 8decab3 | 2011-07-24 10:23:54 -0700 | [diff] [blame] | 2972 | mlog(ML_ERROR, "%s: res %.*s, Error %d send " |
| 2973 | "MIGRATE_REQUEST to node %u\n", dlm->name, |
| 2974 | migrate.namelen, migrate.name, ret, nodenum); |
Sunil Mushran | 2b83256 | 2008-12-16 15:49:19 -0800 | [diff] [blame] | 2975 | if (!dlm_is_host_down(ret)) { |
| 2976 | mlog(ML_ERROR, "unhandled error=%d!\n", ret); |
| 2977 | BUG(); |
| 2978 | } |
| 2979 | clear_bit(nodenum, iter->node_map); |
| 2980 | ret = 0; |
| 2981 | } else if (status < 0) { |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2982 | mlog(0, "migrate request (node %u) returned %d!\n", |
| 2983 | nodenum, status); |
| 2984 | ret = status; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2985 | } else if (status == DLM_MIGRATE_RESPONSE_MASTERY_REF) { |
| 2986 | /* during the migration request we short-circuited |
| 2987 | * the mastery of the lockres. make sure we have |
| 2988 | * a mastery ref for nodenum */ |
| 2989 | mlog(0, "%s:%.*s: need ref for node %u\n", |
| 2990 | dlm->name, res->lockname.len, res->lockname.name, |
| 2991 | nodenum); |
| 2992 | spin_lock(&res->spinlock); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 2993 | dlm_lockres_set_refmap_bit(dlm, res, nodenum); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 2994 | spin_unlock(&res->spinlock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 2995 | } |
| 2996 | } |
| 2997 | |
| 2998 | if (ret < 0) |
| 2999 | mlog_errno(ret); |
| 3000 | |
| 3001 | mlog(0, "returning ret=%d\n", ret); |
| 3002 | return ret; |
| 3003 | } |
| 3004 | |
| 3005 | |
| 3006 | /* if there is an existing mle for this lockres, we now know who the master is. |
| 3007 | * (the one who sent us *this* message) we can clear it up right away. |
| 3008 | * since the process that put the mle on the list still has a reference to it, |
| 3009 | * we can unhash it now, set the master and wake the process. as a result, |
| 3010 | * we will have no mle in the list to start with. now we can add an mle for |
| 3011 | * the migration and this should be the only one found for those scanning the |
| 3012 | * list. */ |
Kurt Hackel | d74c980 | 2007-01-17 17:04:25 -0800 | [diff] [blame] | 3013 | int dlm_migrate_request_handler(struct o2net_msg *msg, u32 len, void *data, |
| 3014 | void **ret_data) |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3015 | { |
| 3016 | struct dlm_ctxt *dlm = data; |
| 3017 | struct dlm_lock_resource *res = NULL; |
| 3018 | struct dlm_migrate_request *migrate = (struct dlm_migrate_request *) msg->buf; |
| 3019 | struct dlm_master_list_entry *mle = NULL, *oldmle = NULL; |
| 3020 | const char *name; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 3021 | unsigned int namelen, hash; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3022 | int ret = 0; |
| 3023 | |
| 3024 | if (!dlm_grab(dlm)) |
| 3025 | return -EINVAL; |
| 3026 | |
| 3027 | name = migrate->name; |
| 3028 | namelen = migrate->namelen; |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 3029 | hash = dlm_lockid_hash(name, namelen); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3030 | |
| 3031 | /* preallocate.. if this fails, abort */ |
Julia Lawall | 3914ed0 | 2010-05-11 20:28:14 +0200 | [diff] [blame] | 3032 | mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3033 | |
| 3034 | if (!mle) { |
| 3035 | ret = -ENOMEM; |
| 3036 | goto leave; |
| 3037 | } |
| 3038 | |
| 3039 | /* check for pre-existing lock */ |
| 3040 | spin_lock(&dlm->spinlock); |
Mark Fasheh | a3d3329 | 2006-03-09 17:55:56 -0800 | [diff] [blame] | 3041 | res = __dlm_lookup_lockres(dlm, name, namelen, hash); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3042 | if (res) { |
| 3043 | spin_lock(&res->spinlock); |
| 3044 | if (res->state & DLM_LOCK_RES_RECOVERING) { |
| 3045 | /* if all is working ok, this can only mean that we got |
| 3046 | * a migrate request from a node that we now see as |
| 3047 | * dead. what can we do here? drop it to the floor? */ |
| 3048 | spin_unlock(&res->spinlock); |
| 3049 | mlog(ML_ERROR, "Got a migrate request, but the " |
| 3050 | "lockres is marked as recovering!"); |
| 3051 | kmem_cache_free(dlm_mle_cache, mle); |
| 3052 | ret = -EINVAL; /* need a better solution */ |
| 3053 | goto unlock; |
| 3054 | } |
| 3055 | res->state |= DLM_LOCK_RES_MIGRATING; |
| 3056 | spin_unlock(&res->spinlock); |
| 3057 | } |
| 3058 | |
Wengang Wang | 6d98c3c | 2010-07-16 23:13:33 +0800 | [diff] [blame] | 3059 | spin_lock(&dlm->master_lock); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3060 | /* ignore status. only nonzero status would BUG. */ |
| 3061 | ret = dlm_add_migration_mle(dlm, res, mle, &oldmle, |
| 3062 | name, namelen, |
| 3063 | migrate->new_master, |
| 3064 | migrate->master); |
| 3065 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3066 | spin_unlock(&dlm->master_lock); |
Wengang Wang | 6d98c3c | 2010-07-16 23:13:33 +0800 | [diff] [blame] | 3067 | unlock: |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3068 | spin_unlock(&dlm->spinlock); |
| 3069 | |
| 3070 | if (oldmle) { |
| 3071 | /* master is known, detach if not already detached */ |
| 3072 | dlm_mle_detach_hb_events(dlm, oldmle); |
| 3073 | dlm_put_mle(oldmle); |
| 3074 | } |
| 3075 | |
| 3076 | if (res) |
| 3077 | dlm_lockres_put(res); |
| 3078 | leave: |
| 3079 | dlm_put(dlm); |
| 3080 | return ret; |
| 3081 | } |
| 3082 | |
| 3083 | /* must be holding dlm->spinlock and dlm->master_lock |
| 3084 | * when adding a migration mle, we can clear any other mles |
| 3085 | * in the master list because we know with certainty that |
| 3086 | * the master is "master". so we remove any old mle from |
| 3087 | * the list after setting it's master field, and then add |
| 3088 | * the new migration mle. this way we can hold with the rule |
| 3089 | * of having only one mle for a given lock name at all times. */ |
| 3090 | static int dlm_add_migration_mle(struct dlm_ctxt *dlm, |
| 3091 | struct dlm_lock_resource *res, |
| 3092 | struct dlm_master_list_entry *mle, |
| 3093 | struct dlm_master_list_entry **oldmle, |
| 3094 | const char *name, unsigned int namelen, |
| 3095 | u8 new_master, u8 master) |
| 3096 | { |
| 3097 | int found; |
| 3098 | int ret = 0; |
| 3099 | |
| 3100 | *oldmle = NULL; |
| 3101 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3102 | assert_spin_locked(&dlm->spinlock); |
| 3103 | assert_spin_locked(&dlm->master_lock); |
| 3104 | |
| 3105 | /* caller is responsible for any ref taken here on oldmle */ |
| 3106 | found = dlm_find_mle(dlm, oldmle, (char *)name, namelen); |
| 3107 | if (found) { |
| 3108 | struct dlm_master_list_entry *tmp = *oldmle; |
| 3109 | spin_lock(&tmp->spinlock); |
| 3110 | if (tmp->type == DLM_MLE_MIGRATION) { |
| 3111 | if (master == dlm->node_num) { |
| 3112 | /* ah another process raced me to it */ |
| 3113 | mlog(0, "tried to migrate %.*s, but some " |
| 3114 | "process beat me to it\n", |
| 3115 | namelen, name); |
| 3116 | ret = -EEXIST; |
| 3117 | } else { |
| 3118 | /* bad. 2 NODES are trying to migrate! */ |
| 3119 | mlog(ML_ERROR, "migration error mle: " |
| 3120 | "master=%u new_master=%u // request: " |
| 3121 | "master=%u new_master=%u // " |
| 3122 | "lockres=%.*s\n", |
| 3123 | tmp->master, tmp->new_master, |
| 3124 | master, new_master, |
| 3125 | namelen, name); |
| 3126 | BUG(); |
| 3127 | } |
| 3128 | } else { |
| 3129 | /* this is essentially what assert_master does */ |
| 3130 | tmp->master = master; |
| 3131 | atomic_set(&tmp->woken, 1); |
| 3132 | wake_up(&tmp->wq); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 3133 | /* remove it so that only one mle will be found */ |
| 3134 | __dlm_unlink_mle(dlm, tmp); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3135 | __dlm_mle_detach_hb_events(dlm, tmp); |
jiangyiwen | b9aaac5 | 2014-06-23 13:22:09 -0700 | [diff] [blame] | 3136 | if (tmp->type == DLM_MLE_MASTER) { |
| 3137 | ret = DLM_MIGRATE_RESPONSE_MASTERY_REF; |
| 3138 | mlog(0, "%s:%.*s: master=%u, newmaster=%u, " |
| 3139 | "telling master to get ref " |
| 3140 | "for cleared out mle during " |
| 3141 | "migration\n", dlm->name, |
| 3142 | namelen, name, master, |
| 3143 | new_master); |
| 3144 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3145 | } |
| 3146 | spin_unlock(&tmp->spinlock); |
| 3147 | } |
| 3148 | |
| 3149 | /* now add a migration mle to the tail of the list */ |
| 3150 | dlm_init_mle(mle, DLM_MLE_MIGRATION, dlm, res, name, namelen); |
| 3151 | mle->new_master = new_master; |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3152 | /* the new master will be sending an assert master for this. |
| 3153 | * at that point we will get the refmap reference */ |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3154 | mle->master = master; |
| 3155 | /* do this for consistency with other mle types */ |
| 3156 | set_bit(new_master, mle->maybe_map); |
Sunil Mushran | 1c08457 | 2009-02-26 15:00:37 -0800 | [diff] [blame] | 3157 | __dlm_insert_mle(dlm, mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3158 | |
| 3159 | return ret; |
| 3160 | } |
| 3161 | |
Sunil Mushran | c2cd4a4 | 2009-02-26 15:00:39 -0800 | [diff] [blame] | 3162 | /* |
| 3163 | * Sets the owner of the lockres, associated to the mle, to UNKNOWN |
| 3164 | */ |
| 3165 | static struct dlm_lock_resource *dlm_reset_mleres_owner(struct dlm_ctxt *dlm, |
| 3166 | struct dlm_master_list_entry *mle) |
| 3167 | { |
| 3168 | struct dlm_lock_resource *res; |
Sunil Mushran | c2cd4a4 | 2009-02-26 15:00:39 -0800 | [diff] [blame] | 3169 | |
| 3170 | /* Find the lockres associated to the mle and set its owner to UNK */ |
Sunil Mushran | 7141514 | 2009-02-26 15:00:47 -0800 | [diff] [blame] | 3171 | res = __dlm_lookup_lockres(dlm, mle->mname, mle->mnamelen, |
| 3172 | mle->mnamehash); |
Sunil Mushran | c2cd4a4 | 2009-02-26 15:00:39 -0800 | [diff] [blame] | 3173 | if (res) { |
| 3174 | spin_unlock(&dlm->master_lock); |
| 3175 | |
| 3176 | /* move lockres onto recovery list */ |
| 3177 | spin_lock(&res->spinlock); |
| 3178 | dlm_set_lockres_owner(dlm, res, DLM_LOCK_RES_OWNER_UNKNOWN); |
| 3179 | dlm_move_lockres_to_recovery_list(dlm, res); |
| 3180 | spin_unlock(&res->spinlock); |
| 3181 | dlm_lockres_put(res); |
| 3182 | |
| 3183 | /* about to get rid of mle, detach from heartbeat */ |
| 3184 | __dlm_mle_detach_hb_events(dlm, mle); |
| 3185 | |
| 3186 | /* dump the mle */ |
| 3187 | spin_lock(&dlm->master_lock); |
| 3188 | __dlm_put_mle(mle); |
| 3189 | spin_unlock(&dlm->master_lock); |
| 3190 | } |
| 3191 | |
| 3192 | return res; |
| 3193 | } |
| 3194 | |
| 3195 | static void dlm_clean_migration_mle(struct dlm_ctxt *dlm, |
| 3196 | struct dlm_master_list_entry *mle) |
| 3197 | { |
| 3198 | __dlm_mle_detach_hb_events(dlm, mle); |
| 3199 | |
| 3200 | spin_lock(&mle->spinlock); |
| 3201 | __dlm_unlink_mle(dlm, mle); |
| 3202 | atomic_set(&mle->woken, 1); |
| 3203 | spin_unlock(&mle->spinlock); |
| 3204 | |
| 3205 | wake_up(&mle->wq); |
| 3206 | } |
| 3207 | |
| 3208 | static void dlm_clean_block_mle(struct dlm_ctxt *dlm, |
| 3209 | struct dlm_master_list_entry *mle, u8 dead_node) |
| 3210 | { |
| 3211 | int bit; |
| 3212 | |
| 3213 | BUG_ON(mle->type != DLM_MLE_BLOCK); |
| 3214 | |
| 3215 | spin_lock(&mle->spinlock); |
| 3216 | bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0); |
| 3217 | if (bit != dead_node) { |
| 3218 | mlog(0, "mle found, but dead node %u would not have been " |
| 3219 | "master\n", dead_node); |
| 3220 | spin_unlock(&mle->spinlock); |
| 3221 | } else { |
| 3222 | /* Must drop the refcount by one since the assert_master will |
| 3223 | * never arrive. This may result in the mle being unlinked and |
| 3224 | * freed, but there may still be a process waiting in the |
| 3225 | * dlmlock path which is fine. */ |
| 3226 | mlog(0, "node %u was expected master\n", dead_node); |
| 3227 | atomic_set(&mle->woken, 1); |
| 3228 | spin_unlock(&mle->spinlock); |
| 3229 | wake_up(&mle->wq); |
| 3230 | |
| 3231 | /* Do not need events any longer, so detach from heartbeat */ |
| 3232 | __dlm_mle_detach_hb_events(dlm, mle); |
| 3233 | __dlm_put_mle(mle); |
| 3234 | } |
| 3235 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3236 | |
| 3237 | void dlm_clean_master_list(struct dlm_ctxt *dlm, u8 dead_node) |
| 3238 | { |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 3239 | struct dlm_master_list_entry *mle; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3240 | struct dlm_lock_resource *res; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 3241 | struct hlist_head *bucket; |
Dong Fang | df53cd3 | 2013-09-11 14:19:50 -0700 | [diff] [blame] | 3242 | struct hlist_node *tmp; |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 3243 | unsigned int i; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3244 | |
Tao Ma | ef6b689 | 2011-02-21 11:10:44 +0800 | [diff] [blame] | 3245 | mlog(0, "dlm=%s, dead node=%u\n", dlm->name, dead_node); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3246 | top: |
| 3247 | assert_spin_locked(&dlm->spinlock); |
| 3248 | |
| 3249 | /* clean the master list */ |
| 3250 | spin_lock(&dlm->master_lock); |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 3251 | for (i = 0; i < DLM_HASH_BUCKETS; i++) { |
| 3252 | bucket = dlm_master_hash(dlm, i); |
Dong Fang | df53cd3 | 2013-09-11 14:19:50 -0700 | [diff] [blame] | 3253 | hlist_for_each_entry_safe(mle, tmp, bucket, master_hash_node) { |
Sunil Mushran | 67ae1f0 | 2009-02-26 15:00:42 -0800 | [diff] [blame] | 3254 | BUG_ON(mle->type != DLM_MLE_BLOCK && |
| 3255 | mle->type != DLM_MLE_MASTER && |
| 3256 | mle->type != DLM_MLE_MIGRATION); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3257 | |
Sunil Mushran | 67ae1f0 | 2009-02-26 15:00:42 -0800 | [diff] [blame] | 3258 | /* MASTER mles are initiated locally. The waiting |
| 3259 | * process will notice the node map change shortly. |
| 3260 | * Let that happen as normal. */ |
| 3261 | if (mle->type == DLM_MLE_MASTER) |
| 3262 | continue; |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3263 | |
Sunil Mushran | 67ae1f0 | 2009-02-26 15:00:42 -0800 | [diff] [blame] | 3264 | /* BLOCK mles are initiated by other nodes. Need to |
| 3265 | * clean up if the dead node would have been the |
| 3266 | * master. */ |
| 3267 | if (mle->type == DLM_MLE_BLOCK) { |
| 3268 | dlm_clean_block_mle(dlm, mle, dead_node); |
| 3269 | continue; |
| 3270 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3271 | |
Sunil Mushran | 67ae1f0 | 2009-02-26 15:00:42 -0800 | [diff] [blame] | 3272 | /* Everything else is a MIGRATION mle */ |
| 3273 | |
| 3274 | /* The rule for MIGRATION mles is that the master |
| 3275 | * becomes UNKNOWN if *either* the original or the new |
| 3276 | * master dies. All UNKNOWN lockres' are sent to |
| 3277 | * whichever node becomes the recovery master. The new |
| 3278 | * master is responsible for determining if there is |
| 3279 | * still a master for this lockres, or if he needs to |
| 3280 | * take over mastery. Either way, this node should |
| 3281 | * expect another message to resolve this. */ |
| 3282 | |
| 3283 | if (mle->master != dead_node && |
| 3284 | mle->new_master != dead_node) |
| 3285 | continue; |
| 3286 | |
| 3287 | /* If we have reached this point, this mle needs to be |
| 3288 | * removed from the list and freed. */ |
| 3289 | dlm_clean_migration_mle(dlm, mle); |
| 3290 | |
| 3291 | mlog(0, "%s: node %u died during migration from " |
| 3292 | "%u to %u!\n", dlm->name, dead_node, mle->master, |
| 3293 | mle->new_master); |
| 3294 | |
| 3295 | /* If we find a lockres associated with the mle, we've |
| 3296 | * hit this rare case that messes up our lock ordering. |
| 3297 | * If so, we need to drop the master lock so that we can |
| 3298 | * take the lockres lock, meaning that we will have to |
| 3299 | * restart from the head of list. */ |
| 3300 | res = dlm_reset_mleres_owner(dlm, mle); |
| 3301 | if (res) |
| 3302 | /* restart */ |
| 3303 | goto top; |
| 3304 | |
| 3305 | /* This may be the last reference */ |
| 3306 | __dlm_put_mle(mle); |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3307 | } |
Sunil Mushran | 2ed6c75 | 2009-02-26 15:00:41 -0800 | [diff] [blame] | 3308 | } |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3309 | spin_unlock(&dlm->master_lock); |
| 3310 | } |
| 3311 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3312 | int dlm_finish_migration(struct dlm_ctxt *dlm, struct dlm_lock_resource *res, |
| 3313 | u8 old_master) |
| 3314 | { |
| 3315 | struct dlm_node_iter iter; |
| 3316 | int ret = 0; |
| 3317 | |
| 3318 | spin_lock(&dlm->spinlock); |
| 3319 | dlm_node_iter_init(dlm->domain_map, &iter); |
| 3320 | clear_bit(old_master, iter.node_map); |
| 3321 | clear_bit(dlm->node_num, iter.node_map); |
| 3322 | spin_unlock(&dlm->spinlock); |
| 3323 | |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3324 | /* ownership of the lockres is changing. account for the |
| 3325 | * mastery reference here since old_master will briefly have |
| 3326 | * a reference after the migration completes */ |
| 3327 | spin_lock(&res->spinlock); |
Sunil Mushran | 8d400b8 | 2011-07-24 10:26:54 -0700 | [diff] [blame] | 3328 | dlm_lockres_set_refmap_bit(dlm, res, old_master); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3329 | spin_unlock(&res->spinlock); |
| 3330 | |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3331 | mlog(0, "now time to do a migrate request to other nodes\n"); |
| 3332 | ret = dlm_do_migrate_request(dlm, res, old_master, |
| 3333 | dlm->node_num, &iter); |
| 3334 | if (ret < 0) { |
| 3335 | mlog_errno(ret); |
| 3336 | goto leave; |
| 3337 | } |
| 3338 | |
| 3339 | mlog(0, "doing assert master of %.*s to all except the original node\n", |
| 3340 | res->lockname.len, res->lockname.name); |
| 3341 | /* this call now finishes out the nodemap |
| 3342 | * even if one or more nodes die */ |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3343 | ret = dlm_do_assert_master(dlm, res, iter.node_map, |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3344 | DLM_ASSERT_MASTER_FINISH_MIGRATION); |
| 3345 | if (ret < 0) { |
| 3346 | /* no longer need to retry. all living nodes contacted. */ |
| 3347 | mlog_errno(ret); |
| 3348 | ret = 0; |
| 3349 | } |
| 3350 | |
| 3351 | memset(iter.node_map, 0, sizeof(iter.node_map)); |
| 3352 | set_bit(old_master, iter.node_map); |
| 3353 | mlog(0, "doing assert master of %.*s back to %u\n", |
| 3354 | res->lockname.len, res->lockname.name, old_master); |
Kurt Hackel | ba2bf21 | 2006-12-01 14:47:20 -0800 | [diff] [blame] | 3355 | ret = dlm_do_assert_master(dlm, res, iter.node_map, |
Kurt Hackel | 6714d8e | 2005-12-15 14:31:23 -0800 | [diff] [blame] | 3356 | DLM_ASSERT_MASTER_FINISH_MIGRATION); |
| 3357 | if (ret < 0) { |
| 3358 | mlog(0, "assert master to original master failed " |
| 3359 | "with %d.\n", ret); |
| 3360 | /* the only nonzero status here would be because of |
| 3361 | * a dead original node. we're done. */ |
| 3362 | ret = 0; |
| 3363 | } |
| 3364 | |
| 3365 | /* all done, set the owner, clear the flag */ |
| 3366 | spin_lock(&res->spinlock); |
| 3367 | dlm_set_lockres_owner(dlm, res, dlm->node_num); |
| 3368 | res->state &= ~DLM_LOCK_RES_MIGRATING; |
| 3369 | spin_unlock(&res->spinlock); |
| 3370 | /* re-dirty it on the new master */ |
| 3371 | dlm_kick_thread(dlm, res); |
| 3372 | wake_up(&res->wq); |
| 3373 | leave: |
| 3374 | return ret; |
| 3375 | } |
| 3376 | |
| 3377 | /* |
| 3378 | * LOCKRES AST REFCOUNT |
| 3379 | * this is integral to migration |
| 3380 | */ |
| 3381 | |
| 3382 | /* for future intent to call an ast, reserve one ahead of time. |
| 3383 | * this should be called only after waiting on the lockres |
| 3384 | * with dlm_wait_on_lockres, and while still holding the |
| 3385 | * spinlock after the call. */ |
| 3386 | void __dlm_lockres_reserve_ast(struct dlm_lock_resource *res) |
| 3387 | { |
| 3388 | assert_spin_locked(&res->spinlock); |
| 3389 | if (res->state & DLM_LOCK_RES_MIGRATING) { |
| 3390 | __dlm_print_one_lock_resource(res); |
| 3391 | } |
| 3392 | BUG_ON(res->state & DLM_LOCK_RES_MIGRATING); |
| 3393 | |
| 3394 | atomic_inc(&res->asts_reserved); |
| 3395 | } |
| 3396 | |
| 3397 | /* |
| 3398 | * used to drop the reserved ast, either because it went unused, |
| 3399 | * or because the ast/bast was actually called. |
| 3400 | * |
| 3401 | * also, if there is a pending migration on this lockres, |
| 3402 | * and this was the last pending ast on the lockres, |
| 3403 | * atomically set the MIGRATING flag before we drop the lock. |
| 3404 | * this is how we ensure that migration can proceed with no |
| 3405 | * asts in progress. note that it is ok if the state of the |
| 3406 | * queues is such that a lock should be granted in the future |
| 3407 | * or that a bast should be fired, because the new master will |
| 3408 | * shuffle the lists on this lockres as soon as it is migrated. |
| 3409 | */ |
| 3410 | void dlm_lockres_release_ast(struct dlm_ctxt *dlm, |
| 3411 | struct dlm_lock_resource *res) |
| 3412 | { |
| 3413 | if (!atomic_dec_and_lock(&res->asts_reserved, &res->spinlock)) |
| 3414 | return; |
| 3415 | |
| 3416 | if (!res->migration_pending) { |
| 3417 | spin_unlock(&res->spinlock); |
| 3418 | return; |
| 3419 | } |
| 3420 | |
| 3421 | BUG_ON(res->state & DLM_LOCK_RES_MIGRATING); |
| 3422 | res->migration_pending = 0; |
| 3423 | res->state |= DLM_LOCK_RES_MIGRATING; |
| 3424 | spin_unlock(&res->spinlock); |
| 3425 | wake_up(&res->wq); |
| 3426 | wake_up(&dlm->migration_wq); |
| 3427 | } |
Srinivas Eeda | 5dad6c3 | 2010-09-21 16:27:26 -0700 | [diff] [blame] | 3428 | |
| 3429 | void dlm_force_free_mles(struct dlm_ctxt *dlm) |
| 3430 | { |
| 3431 | int i; |
| 3432 | struct hlist_head *bucket; |
| 3433 | struct dlm_master_list_entry *mle; |
Dong Fang | df53cd3 | 2013-09-11 14:19:50 -0700 | [diff] [blame] | 3434 | struct hlist_node *tmp; |
Srinivas Eeda | 5dad6c3 | 2010-09-21 16:27:26 -0700 | [diff] [blame] | 3435 | |
| 3436 | /* |
| 3437 | * We notified all other nodes that we are exiting the domain and |
| 3438 | * marked the dlm state to DLM_CTXT_LEAVING. If any mles are still |
| 3439 | * around we force free them and wake any processes that are waiting |
| 3440 | * on the mles |
| 3441 | */ |
| 3442 | spin_lock(&dlm->spinlock); |
| 3443 | spin_lock(&dlm->master_lock); |
| 3444 | |
| 3445 | BUG_ON(dlm->dlm_state != DLM_CTXT_LEAVING); |
| 3446 | BUG_ON((find_next_bit(dlm->domain_map, O2NM_MAX_NODES, 0) < O2NM_MAX_NODES)); |
| 3447 | |
| 3448 | for (i = 0; i < DLM_HASH_BUCKETS; i++) { |
| 3449 | bucket = dlm_master_hash(dlm, i); |
Dong Fang | df53cd3 | 2013-09-11 14:19:50 -0700 | [diff] [blame] | 3450 | hlist_for_each_entry_safe(mle, tmp, bucket, master_hash_node) { |
Srinivas Eeda | 5dad6c3 | 2010-09-21 16:27:26 -0700 | [diff] [blame] | 3451 | if (mle->type != DLM_MLE_BLOCK) { |
| 3452 | mlog(ML_ERROR, "bad mle: %p\n", mle); |
| 3453 | dlm_print_one_mle(mle); |
| 3454 | } |
| 3455 | atomic_set(&mle->woken, 1); |
| 3456 | wake_up(&mle->wq); |
| 3457 | |
| 3458 | __dlm_unlink_mle(dlm, mle); |
| 3459 | __dlm_mle_detach_hb_events(dlm, mle); |
| 3460 | __dlm_put_mle(mle); |
| 3461 | } |
| 3462 | } |
| 3463 | spin_unlock(&dlm->master_lock); |
| 3464 | spin_unlock(&dlm->spinlock); |
| 3465 | } |