blob: d602abb51b610d525cc437daa05c25d2105fe0c3 [file] [log] [blame]
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dlmcommon.h
5 *
6 * Copyright (C) 2004 Oracle. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this program; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 021110-1307, USA.
22 *
23 */
24
25#ifndef DLMCOMMON_H
26#define DLMCOMMON_H
27
28#include <linux/kref.h>
29
30#define DLM_HB_NODE_DOWN_PRI (0xf000000)
31#define DLM_HB_NODE_UP_PRI (0x8000000)
32
33#define DLM_LOCKID_NAME_MAX 32
34
35#define DLM_DOMAIN_NAME_MAX_LEN 255
36#define DLM_LOCK_RES_OWNER_UNKNOWN O2NM_MAX_NODES
37#define DLM_THREAD_SHUFFLE_INTERVAL 5 // flush everything every 5 passes
38#define DLM_THREAD_MS 200 // flush at least every 200 ms
39
Sunil Mushran0467ae92010-05-05 16:25:08 -070040#define DLM_HASH_SIZE_DEFAULT (1 << 17)
Joel Beckerc8f33b62006-03-16 17:40:37 -080041#if DLM_HASH_SIZE_DEFAULT < PAGE_SIZE
42# define DLM_HASH_PAGES 1
43#else
44# define DLM_HASH_PAGES (DLM_HASH_SIZE_DEFAULT / PAGE_SIZE)
45#endif
Daniel Phillips03d864c2006-03-10 18:08:16 -080046#define DLM_BUCKETS_PER_PAGE (PAGE_SIZE / sizeof(struct hlist_head))
47#define DLM_HASH_BUCKETS (DLM_HASH_PAGES * DLM_BUCKETS_PER_PAGE)
Kurt Hackel6714d8e2005-12-15 14:31:23 -080048
Mark Fasheha3d33292006-03-09 17:55:56 -080049/* Intended to make it easier for us to switch out hash functions */
50#define dlm_lockid_hash(_n, _l) full_name_hash(_n, _l)
51
Sunil Mushran751155a2008-03-10 15:16:25 -070052enum dlm_mle_type {
Sunil Mushran079ffb72010-12-20 16:35:01 -080053 DLM_MLE_BLOCK = 0,
54 DLM_MLE_MASTER = 1,
55 DLM_MLE_MIGRATION = 2,
56 DLM_MLE_NUM_TYPES = 3,
Sunil Mushran751155a2008-03-10 15:16:25 -070057};
58
Sunil Mushran751155a2008-03-10 15:16:25 -070059struct dlm_master_list_entry {
Sunil Mushran2ed6c752009-02-26 15:00:41 -080060 struct hlist_node master_hash_node;
Sunil Mushran751155a2008-03-10 15:16:25 -070061 struct list_head hb_events;
62 struct dlm_ctxt *dlm;
63 spinlock_t spinlock;
64 wait_queue_head_t wq;
65 atomic_t woken;
66 struct kref mle_refs;
67 int inuse;
68 unsigned long maybe_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
69 unsigned long vote_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
70 unsigned long response_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
71 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
72 u8 master;
73 u8 new_master;
74 enum dlm_mle_type type;
75 struct o2hb_callback_func mle_hb_up;
76 struct o2hb_callback_func mle_hb_down;
Sunil Mushran71415142009-02-26 15:00:47 -080077 struct dlm_lock_resource *mleres;
78 unsigned char mname[DLM_LOCKID_NAME_MAX];
79 unsigned int mnamelen;
80 unsigned int mnamehash;
Sunil Mushran751155a2008-03-10 15:16:25 -070081};
82
Kurt Hackel6714d8e2005-12-15 14:31:23 -080083enum dlm_ast_type {
84 DLM_AST = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -080085 DLM_BAST = 1,
86 DLM_ASTUNLOCK = 2,
Kurt Hackel6714d8e2005-12-15 14:31:23 -080087};
88
89
90#define LKM_VALID_FLAGS (LKM_VALBLK | LKM_CONVERT | LKM_UNLOCK | \
91 LKM_CANCEL | LKM_INVVALBLK | LKM_FORCE | \
92 LKM_RECOVERY | LKM_LOCAL | LKM_NOQUEUE)
93
94#define DLM_RECOVERY_LOCK_NAME "$RECOVERY"
95#define DLM_RECOVERY_LOCK_NAME_LEN 9
96
97static inline int dlm_is_recovery_lock(const char *lock_name, int name_len)
98{
99 if (name_len == DLM_RECOVERY_LOCK_NAME_LEN &&
100 memcmp(lock_name, DLM_RECOVERY_LOCK_NAME, name_len)==0)
101 return 1;
102 return 0;
103}
104
Kurt Hackel466d1a42006-05-01 11:11:13 -0700105#define DLM_RECO_STATE_ACTIVE 0x0001
106#define DLM_RECO_STATE_FINALIZE 0x0002
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800107
108struct dlm_recovery_ctxt
109{
110 struct list_head resources;
111 struct list_head received;
112 struct list_head node_data;
113 u8 new_master;
114 u8 dead_node;
115 u16 state;
116 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
117 wait_queue_head_t event;
118};
119
120enum dlm_ctxt_state {
121 DLM_CTXT_NEW = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -0800122 DLM_CTXT_JOINED = 1,
123 DLM_CTXT_IN_SHUTDOWN = 2,
124 DLM_CTXT_LEAVING = 3,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800125};
126
127struct dlm_ctxt
128{
129 struct list_head list;
Daniel Phillips03d864c2006-03-10 18:08:16 -0800130 struct hlist_head **lockres_hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800131 struct list_head dirty_list;
132 struct list_head purge_list;
133 struct list_head pending_asts;
134 struct list_head pending_basts;
Sunil Mushran29576f82008-03-10 15:16:21 -0700135 struct list_head tracking_list;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800136 unsigned int purge_count;
137 spinlock_t spinlock;
138 spinlock_t ast_lock;
Sunil Mushranb0d4f812008-12-16 15:49:22 -0800139 spinlock_t track_lock;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800140 char *name;
141 u8 node_num;
142 u32 key;
143 u8 joining_node;
144 wait_queue_head_t dlm_join_events;
145 unsigned long live_nodes_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
146 unsigned long domain_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushranbddefde2011-05-19 14:34:11 -0700147 unsigned long exit_domain_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800148 unsigned long recovery_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
149 struct dlm_recovery_ctxt reco;
150 spinlock_t master_lock;
Sunil Mushrane2b66dd2009-02-26 15:00:40 -0800151 struct hlist_head **master_hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800152 struct list_head mle_hb_events;
153
154 /* these give a really vague idea of the system load */
Sunil Mushran2041d8f2009-02-26 15:00:43 -0800155 atomic_t mle_tot_count[DLM_MLE_NUM_TYPES];
156 atomic_t mle_cur_count[DLM_MLE_NUM_TYPES];
Sunil Mushran68007912009-02-26 15:00:44 -0800157 atomic_t res_tot_count;
158 atomic_t res_cur_count;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800159
Sunil Mushran007dce52008-03-10 15:16:23 -0700160 struct dlm_debug_ctxt *dlm_debug_ctxt;
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700161 struct dentry *dlm_debugfs_subroot;
162
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800163 /* NOTE: Next three are protected by dlm_domain_lock */
164 struct kref dlm_refs;
165 enum dlm_ctxt_state dlm_state;
166 unsigned int num_joins;
167
168 struct o2hb_callback_func dlm_hb_up;
169 struct o2hb_callback_func dlm_hb_down;
170 struct task_struct *dlm_thread_task;
171 struct task_struct *dlm_reco_thread_task;
Kurt Hackel3156d262006-05-01 14:39:29 -0700172 struct workqueue_struct *dlm_worker;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800173 wait_queue_head_t dlm_thread_wq;
174 wait_queue_head_t dlm_reco_thread_wq;
175 wait_queue_head_t ast_wq;
176 wait_queue_head_t migration_wq;
177
178 struct work_struct dispatched_work;
179 struct list_head work_list;
180 spinlock_t work_lock;
181 struct list_head dlm_domain_handlers;
182 struct list_head dlm_eviction_callbacks;
Joel Beckerd24fbcd2008-01-25 17:02:21 -0800183
184 /* The filesystem specifies this at domain registration. We
185 * cache it here to know what to tell other nodes. */
186 struct dlm_protocol_version fs_locking_proto;
187 /* This is the inter-dlm communication version */
188 struct dlm_protocol_version dlm_locking_proto;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800189};
190
Daniel Phillips03d864c2006-03-10 18:08:16 -0800191static inline struct hlist_head *dlm_lockres_hash(struct dlm_ctxt *dlm, unsigned i)
192{
193 return dlm->lockres_hash[(i / DLM_BUCKETS_PER_PAGE) % DLM_HASH_PAGES] + (i % DLM_BUCKETS_PER_PAGE);
194}
195
Sunil Mushrane2b66dd2009-02-26 15:00:40 -0800196static inline struct hlist_head *dlm_master_hash(struct dlm_ctxt *dlm,
197 unsigned i)
198{
199 return dlm->master_hash[(i / DLM_BUCKETS_PER_PAGE) % DLM_HASH_PAGES] +
200 (i % DLM_BUCKETS_PER_PAGE);
201}
202
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800203/* these keventd work queue items are for less-frequently
204 * called functions that cannot be directly called from the
205 * net message handlers for some reason, usually because
206 * they need to send net messages of their own. */
David Howellsc4028952006-11-22 14:57:56 +0000207void dlm_dispatch_work(struct work_struct *work);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800208
209struct dlm_lock_resource;
210struct dlm_work_item;
211
212typedef void (dlm_workfunc_t)(struct dlm_work_item *, void *);
213
214struct dlm_request_all_locks_priv
215{
216 u8 reco_master;
217 u8 dead_node;
218};
219
220struct dlm_mig_lockres_priv
221{
222 struct dlm_lock_resource *lockres;
223 u8 real_master;
Sunil Mushran52987e22008-03-01 14:04:21 -0800224 u8 extra_ref;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800225};
226
227struct dlm_assert_master_priv
228{
229 struct dlm_lock_resource *lockres;
230 u8 request_from;
231 u32 flags;
232 unsigned ignore_higher:1;
233};
234
Sunil Mushranf3f85462007-01-29 15:19:16 -0800235struct dlm_deref_lockres_priv
236{
237 struct dlm_lock_resource *deref_res;
238 u8 deref_node;
239};
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800240
241struct dlm_work_item
242{
243 struct list_head list;
244 dlm_workfunc_t *func;
245 struct dlm_ctxt *dlm;
246 void *data;
247 union {
248 struct dlm_request_all_locks_priv ral;
249 struct dlm_mig_lockres_priv ml;
250 struct dlm_assert_master_priv am;
Sunil Mushranf3f85462007-01-29 15:19:16 -0800251 struct dlm_deref_lockres_priv dl;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800252 } u;
253};
254
255static inline void dlm_init_work_item(struct dlm_ctxt *dlm,
256 struct dlm_work_item *i,
257 dlm_workfunc_t *f, void *data)
258{
259 memset(i, 0, sizeof(*i));
260 i->func = f;
261 INIT_LIST_HEAD(&i->list);
262 i->data = data;
263 i->dlm = dlm; /* must have already done a dlm_grab on this! */
264}
265
266
267
268static inline void __dlm_set_joining_node(struct dlm_ctxt *dlm,
269 u8 node)
270{
271 assert_spin_locked(&dlm->spinlock);
272
273 dlm->joining_node = node;
274 wake_up(&dlm->dlm_join_events);
275}
276
277#define DLM_LOCK_RES_UNINITED 0x00000001
278#define DLM_LOCK_RES_RECOVERING 0x00000002
279#define DLM_LOCK_RES_READY 0x00000004
280#define DLM_LOCK_RES_DIRTY 0x00000008
281#define DLM_LOCK_RES_IN_PROGRESS 0x00000010
282#define DLM_LOCK_RES_MIGRATING 0x00000020
Kurt Hackelba2bf212006-12-01 14:47:20 -0800283#define DLM_LOCK_RES_DROPPING_REF 0x00000040
Kurt Hackelddc09c82007-01-05 15:00:17 -0800284#define DLM_LOCK_RES_BLOCK_DIRTY 0x00001000
Kurt Hackel3b8118c2007-01-17 17:05:53 -0800285#define DLM_LOCK_RES_SETREF_INPROG 0x00002000
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800286
Kurt Hackel44465a72006-01-18 17:05:38 -0800287/* max milliseconds to wait to sync up a network failure with a node death */
288#define DLM_NODE_DEATH_WAIT_MAX (5 * 1000)
289
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800290#define DLM_PURGE_INTERVAL_MS (8 * 1000)
291
292struct dlm_lock_resource
293{
294 /* WARNING: Please see the comment in dlm_init_lockres before
295 * adding fields here. */
Mark Fasheh81f20942006-02-28 17:31:22 -0800296 struct hlist_node hash_node;
Mark Fasheh65c491d2006-03-06 15:36:17 -0800297 struct qstr lockname;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800298 struct kref refs;
299
Kurt Hackel6ff06a92006-05-01 11:51:45 -0700300 /*
301 * Please keep granted, converting, and blocked in this order,
302 * as some funcs want to iterate over all lists.
303 *
304 * All four lists are protected by the hash's reference.
305 */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800306 struct list_head granted;
307 struct list_head converting;
308 struct list_head blocked;
Kurt Hackel6ff06a92006-05-01 11:51:45 -0700309 struct list_head purge;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800310
Kurt Hackel6ff06a92006-05-01 11:51:45 -0700311 /*
312 * These two lists require you to hold an additional reference
313 * while they are on the list.
314 */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800315 struct list_head dirty;
316 struct list_head recovering; // dlm_recovery_ctxt.resources list
317
Sunil Mushran29576f82008-03-10 15:16:21 -0700318 /* Added during init and removed during release */
319 struct list_head tracking; /* dlm->tracking_list */
320
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800321 /* unused lock resources have their last_used stamped and are
322 * put on a list for the dlm thread to run. */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800323 unsigned long last_used;
324
Sunil Mushranb0d4f812008-12-16 15:49:22 -0800325 struct dlm_ctxt *dlm;
326
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800327 unsigned migration_pending:1;
328 atomic_t asts_reserved;
329 spinlock_t spinlock;
330 wait_queue_head_t wq;
331 u8 owner; //node which owns the lock resource, or unknown
332 u16 state;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800333 char lvb[DLM_LVB_LEN];
Kurt Hackelba2bf212006-12-01 14:47:20 -0800334 unsigned int inflight_locks;
335 unsigned long refmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800336};
337
338struct dlm_migratable_lock
339{
340 __be64 cookie;
341
342 /* these 3 are just padding for the in-memory structure, but
343 * list and flags are actually used when sent over the wire */
344 __be16 pad1;
345 u8 list; // 0=granted, 1=converting, 2=blocked
346 u8 flags;
347
348 s8 type;
349 s8 convert_type;
350 s8 highest_blocked;
351 u8 node;
352}; // 16 bytes
353
354struct dlm_lock
355{
356 struct dlm_migratable_lock ml;
357
358 struct list_head list;
359 struct list_head ast_list;
360 struct list_head bast_list;
361 struct dlm_lock_resource *lockres;
362 spinlock_t spinlock;
363 struct kref lock_refs;
364
365 // ast and bast must be callable while holding a spinlock!
366 dlm_astlockfunc_t *ast;
367 dlm_bastlockfunc_t *bast;
368 void *astdata;
369 struct dlm_lockstatus *lksb;
370 unsigned ast_pending:1,
371 bast_pending:1,
372 convert_pending:1,
373 lock_pending:1,
374 cancel_pending:1,
375 unlock_pending:1,
376 lksb_kernel_allocated:1;
377};
378
379
380#define DLM_LKSB_UNUSED1 0x01
381#define DLM_LKSB_PUT_LVB 0x02
382#define DLM_LKSB_GET_LVB 0x04
383#define DLM_LKSB_UNUSED2 0x08
384#define DLM_LKSB_UNUSED3 0x10
385#define DLM_LKSB_UNUSED4 0x20
386#define DLM_LKSB_UNUSED5 0x40
387#define DLM_LKSB_UNUSED6 0x80
388
389
390enum dlm_lockres_list {
391 DLM_GRANTED_LIST = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -0800392 DLM_CONVERTING_LIST = 1,
393 DLM_BLOCKED_LIST = 2,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800394};
395
Kurt Hackel8bc674c2006-04-27 18:02:10 -0700396static inline int dlm_lvb_is_empty(char *lvb)
397{
398 int i;
399 for (i=0; i<DLM_LVB_LEN; i++)
400 if (lvb[i])
401 return 0;
402 return 1;
403}
404
Sunil Mushran9f62e962011-05-19 14:34:09 -0700405static inline char *dlm_list_in_text(enum dlm_lockres_list idx)
406{
407 if (idx == DLM_GRANTED_LIST)
408 return "granted";
409 else if (idx == DLM_CONVERTING_LIST)
410 return "converting";
411 else if (idx == DLM_BLOCKED_LIST)
412 return "blocked";
413 else
414 return "unknown";
415}
416
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800417static inline struct list_head *
418dlm_list_idx_to_ptr(struct dlm_lock_resource *res, enum dlm_lockres_list idx)
419{
420 struct list_head *ret = NULL;
421 if (idx == DLM_GRANTED_LIST)
422 ret = &res->granted;
423 else if (idx == DLM_CONVERTING_LIST)
424 ret = &res->converting;
425 else if (idx == DLM_BLOCKED_LIST)
426 ret = &res->blocked;
427 else
428 BUG();
429 return ret;
430}
431
432
433
434
435struct dlm_node_iter
436{
437 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
438 int curnode;
439};
440
441
442enum {
Sunil Mushran079ffb72010-12-20 16:35:01 -0800443 DLM_MASTER_REQUEST_MSG = 500,
444 DLM_UNUSED_MSG1 = 501,
445 DLM_ASSERT_MASTER_MSG = 502,
446 DLM_CREATE_LOCK_MSG = 503,
447 DLM_CONVERT_LOCK_MSG = 504,
448 DLM_PROXY_AST_MSG = 505,
449 DLM_UNLOCK_LOCK_MSG = 506,
450 DLM_DEREF_LOCKRES_MSG = 507,
451 DLM_MIGRATE_REQUEST_MSG = 508,
452 DLM_MIG_LOCKRES_MSG = 509,
453 DLM_QUERY_JOIN_MSG = 510,
454 DLM_ASSERT_JOINED_MSG = 511,
455 DLM_CANCEL_JOIN_MSG = 512,
456 DLM_EXIT_DOMAIN_MSG = 513,
457 DLM_MASTER_REQUERY_MSG = 514,
458 DLM_LOCK_REQUEST_MSG = 515,
459 DLM_RECO_DATA_DONE_MSG = 516,
460 DLM_BEGIN_RECO_MSG = 517,
461 DLM_FINALIZE_RECO_MSG = 518,
462 DLM_QUERY_REGION = 519,
463 DLM_QUERY_NODEINFO = 520,
Sunil Mushranbddefde2011-05-19 14:34:11 -0700464 DLM_BEGIN_EXIT_DOMAIN_MSG = 521,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800465};
466
467struct dlm_reco_node_data
468{
469 int state;
470 u8 node_num;
471 struct list_head list;
472};
473
474enum {
475 DLM_RECO_NODE_DATA_DEAD = -1,
476 DLM_RECO_NODE_DATA_INIT = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -0800477 DLM_RECO_NODE_DATA_REQUESTING = 1,
478 DLM_RECO_NODE_DATA_REQUESTED = 2,
479 DLM_RECO_NODE_DATA_RECEIVING = 3,
480 DLM_RECO_NODE_DATA_DONE = 4,
481 DLM_RECO_NODE_DATA_FINALIZE_SENT = 5,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800482};
483
484
485enum {
486 DLM_MASTER_RESP_NO = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -0800487 DLM_MASTER_RESP_YES = 1,
488 DLM_MASTER_RESP_MAYBE = 2,
489 DLM_MASTER_RESP_ERROR = 3,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800490};
491
492
493struct dlm_master_request
494{
495 u8 node_idx;
496 u8 namelen;
497 __be16 pad1;
498 __be32 flags;
499
500 u8 name[O2NM_MAX_NAME_LEN];
501};
502
Kurt Hackelba2bf212006-12-01 14:47:20 -0800503#define DLM_ASSERT_RESPONSE_REASSERT 0x00000001
504#define DLM_ASSERT_RESPONSE_MASTERY_REF 0x00000002
505
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800506#define DLM_ASSERT_MASTER_MLE_CLEANUP 0x00000001
507#define DLM_ASSERT_MASTER_REQUERY 0x00000002
508#define DLM_ASSERT_MASTER_FINISH_MIGRATION 0x00000004
509struct dlm_assert_master
510{
511 u8 node_idx;
512 u8 namelen;
513 __be16 pad1;
514 __be32 flags;
515
516 u8 name[O2NM_MAX_NAME_LEN];
517};
518
Kurt Hackelba2bf212006-12-01 14:47:20 -0800519#define DLM_MIGRATE_RESPONSE_MASTERY_REF 0x00000001
520
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800521struct dlm_migrate_request
522{
523 u8 master;
524 u8 new_master;
525 u8 namelen;
526 u8 pad1;
527 __be32 pad2;
528 u8 name[O2NM_MAX_NAME_LEN];
529};
530
531struct dlm_master_requery
532{
533 u8 pad1;
534 u8 pad2;
535 u8 node_idx;
536 u8 namelen;
537 __be32 pad3;
538 u8 name[O2NM_MAX_NAME_LEN];
539};
540
541#define DLM_MRES_RECOVERY 0x01
542#define DLM_MRES_MIGRATION 0x02
543#define DLM_MRES_ALL_DONE 0x04
544
545/*
546 * We would like to get one whole lockres into a single network
547 * message whenever possible. Generally speaking, there will be
548 * at most one dlm_lock on a lockres for each node in the cluster,
549 * plus (infrequently) any additional locks coming in from userdlm.
550 *
551 * struct _dlm_lockres_page
552 * {
553 * dlm_migratable_lockres mres;
554 * dlm_migratable_lock ml[DLM_MAX_MIGRATABLE_LOCKS];
555 * u8 pad[DLM_MIG_LOCKRES_RESERVED];
556 * };
557 *
558 * from ../cluster/tcp.h
559 * NET_MAX_PAYLOAD_BYTES (4096 - sizeof(net_msg))
560 * (roughly 4080 bytes)
561 * and sizeof(dlm_migratable_lockres) = 112 bytes
562 * and sizeof(dlm_migratable_lock) = 16 bytes
563 *
564 * Choosing DLM_MAX_MIGRATABLE_LOCKS=240 and
565 * DLM_MIG_LOCKRES_RESERVED=128 means we have this:
566 *
567 * (DLM_MAX_MIGRATABLE_LOCKS * sizeof(dlm_migratable_lock)) +
568 * sizeof(dlm_migratable_lockres) + DLM_MIG_LOCKRES_RESERVED =
569 * NET_MAX_PAYLOAD_BYTES
570 * (240 * 16) + 112 + 128 = 4080
571 *
572 * So a lockres would need more than 240 locks before it would
573 * use more than one network packet to recover. Not too bad.
574 */
575#define DLM_MAX_MIGRATABLE_LOCKS 240
576
577struct dlm_migratable_lockres
578{
579 u8 master;
580 u8 lockname_len;
581 u8 num_locks; // locks sent in this structure
582 u8 flags;
583 __be32 total_locks; // locks to be sent for this migration cookie
584 __be64 mig_cookie; // cookie for this lockres migration
585 // or zero if not needed
586 // 16 bytes
587 u8 lockname[DLM_LOCKID_NAME_MAX];
588 // 48 bytes
589 u8 lvb[DLM_LVB_LEN];
590 // 112 bytes
591 struct dlm_migratable_lock ml[0]; // 16 bytes each, begins at byte 112
592};
593#define DLM_MIG_LOCKRES_MAX_LEN \
594 (sizeof(struct dlm_migratable_lockres) + \
595 (sizeof(struct dlm_migratable_lock) * \
596 DLM_MAX_MIGRATABLE_LOCKS) )
597
598/* from above, 128 bytes
599 * for some undetermined future use */
600#define DLM_MIG_LOCKRES_RESERVED (NET_MAX_PAYLOAD_BYTES - \
601 DLM_MIG_LOCKRES_MAX_LEN)
602
603struct dlm_create_lock
604{
605 __be64 cookie;
606
607 __be32 flags;
608 u8 pad1;
609 u8 node_idx;
610 s8 requested_type;
611 u8 namelen;
612
613 u8 name[O2NM_MAX_NAME_LEN];
614};
615
616struct dlm_convert_lock
617{
618 __be64 cookie;
619
620 __be32 flags;
621 u8 pad1;
622 u8 node_idx;
623 s8 requested_type;
624 u8 namelen;
625
626 u8 name[O2NM_MAX_NAME_LEN];
627
628 s8 lvb[0];
629};
630#define DLM_CONVERT_LOCK_MAX_LEN (sizeof(struct dlm_convert_lock)+DLM_LVB_LEN)
631
632struct dlm_unlock_lock
633{
634 __be64 cookie;
635
636 __be32 flags;
637 __be16 pad1;
638 u8 node_idx;
639 u8 namelen;
640
641 u8 name[O2NM_MAX_NAME_LEN];
642
643 s8 lvb[0];
644};
645#define DLM_UNLOCK_LOCK_MAX_LEN (sizeof(struct dlm_unlock_lock)+DLM_LVB_LEN)
646
647struct dlm_proxy_ast
648{
649 __be64 cookie;
650
651 __be32 flags;
652 u8 node_idx;
653 u8 type;
654 u8 blocked_type;
655 u8 namelen;
656
657 u8 name[O2NM_MAX_NAME_LEN];
658
659 s8 lvb[0];
660};
661#define DLM_PROXY_AST_MAX_LEN (sizeof(struct dlm_proxy_ast)+DLM_LVB_LEN)
662
663#define DLM_MOD_KEY (0x666c6172)
Joel Beckerd24fbcd2008-01-25 17:02:21 -0800664enum dlm_query_join_response_code {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800665 JOIN_DISALLOW = 0,
Sunil Mushran079ffb72010-12-20 16:35:01 -0800666 JOIN_OK = 1,
667 JOIN_OK_NO_MAP = 2,
668 JOIN_PROTOCOL_MISMATCH = 3,
Joel Beckerd24fbcd2008-01-25 17:02:21 -0800669};
670
Joel Becker0f71b7b2008-02-12 14:56:25 -0800671struct dlm_query_join_packet {
672 u8 code; /* Response code. dlm_minor and fs_minor
673 are only valid if this is JOIN_OK */
674 u8 dlm_minor; /* The minor version of the protocol the
675 dlm is speaking. */
676 u8 fs_minor; /* The minor version of the protocol the
677 filesystem is speaking. */
678 u8 reserved;
679};
680
Joel Beckerd24fbcd2008-01-25 17:02:21 -0800681union dlm_query_join_response {
682 u32 intval;
Joel Becker0f71b7b2008-02-12 14:56:25 -0800683 struct dlm_query_join_packet packet;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800684};
685
686struct dlm_lock_request
687{
688 u8 node_idx;
689 u8 dead_node;
690 __be16 pad1;
691 __be32 pad2;
692};
693
694struct dlm_reco_data_done
695{
696 u8 node_idx;
697 u8 dead_node;
698 __be16 pad1;
699 __be32 pad2;
700
701 /* unused for now */
702 /* eventually we can use this to attempt
703 * lvb recovery based on each node's info */
704 u8 reco_lvb[DLM_LVB_LEN];
705};
706
707struct dlm_begin_reco
708{
709 u8 node_idx;
710 u8 dead_node;
711 __be16 pad1;
712 __be32 pad2;
713};
714
715
Srinivas Eeda1faf2892007-01-29 15:31:35 -0800716#define BITS_PER_BYTE 8
717#define BITS_TO_BYTES(bits) (((bits)+BITS_PER_BYTE-1)/BITS_PER_BYTE)
718
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800719struct dlm_query_join_request
720{
721 u8 node_idx;
722 u8 pad1[2];
723 u8 name_len;
Joel Beckerd24fbcd2008-01-25 17:02:21 -0800724 struct dlm_protocol_version dlm_proto;
725 struct dlm_protocol_version fs_proto;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800726 u8 domain[O2NM_MAX_NAME_LEN];
Srinivas Eeda1faf2892007-01-29 15:31:35 -0800727 u8 node_map[BITS_TO_BYTES(O2NM_MAX_NODES)];
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800728};
729
730struct dlm_assert_joined
731{
732 u8 node_idx;
733 u8 pad1[2];
734 u8 name_len;
735 u8 domain[O2NM_MAX_NAME_LEN];
736};
737
738struct dlm_cancel_join
739{
740 u8 node_idx;
741 u8 pad1[2];
742 u8 name_len;
743 u8 domain[O2NM_MAX_NAME_LEN];
744};
745
Sunil Mushranea203442010-10-09 10:26:23 -0700746struct dlm_query_region {
747 u8 qr_node;
748 u8 qr_numregions;
749 u8 qr_namelen;
750 u8 pad1;
751 u8 qr_domain[O2NM_MAX_NAME_LEN];
752 u8 qr_regions[O2HB_MAX_REGION_NAME_LEN * O2NM_MAX_REGIONS];
753};
754
Sunil Mushran18cfdf12010-10-07 16:47:03 -0700755struct dlm_node_info {
756 u8 ni_nodenum;
757 u8 pad1;
758 u16 ni_ipv4_port;
759 u32 ni_ipv4_address;
760};
761
762struct dlm_query_nodeinfo {
763 u8 qn_nodenum;
764 u8 qn_numnodes;
765 u8 qn_namelen;
766 u8 pad1;
767 u8 qn_domain[O2NM_MAX_NAME_LEN];
768 struct dlm_node_info qn_nodes[O2NM_MAX_NODES];
769};
770
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800771struct dlm_exit_domain
772{
773 u8 node_idx;
774 u8 pad1[3];
775};
776
777struct dlm_finalize_reco
778{
779 u8 node_idx;
780 u8 dead_node;
Kurt Hackel466d1a42006-05-01 11:11:13 -0700781 u8 flags;
782 u8 pad1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800783 __be32 pad2;
784};
785
Kurt Hackelba2bf212006-12-01 14:47:20 -0800786struct dlm_deref_lockres
787{
788 u32 pad1;
789 u16 pad2;
790 u8 node_idx;
791 u8 namelen;
792
793 u8 name[O2NM_MAX_NAME_LEN];
794};
795
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800796static inline enum dlm_status
797__dlm_lockres_state_to_status(struct dlm_lock_resource *res)
798{
799 enum dlm_status status = DLM_NORMAL;
800
801 assert_spin_locked(&res->spinlock);
802
803 if (res->state & DLM_LOCK_RES_RECOVERING)
804 status = DLM_RECOVERING;
805 else if (res->state & DLM_LOCK_RES_MIGRATING)
806 status = DLM_MIGRATING;
807 else if (res->state & DLM_LOCK_RES_IN_PROGRESS)
808 status = DLM_FORWARD;
809
810 return status;
811}
812
Kurt Hackel29004852006-03-02 16:43:36 -0800813static inline u8 dlm_get_lock_cookie_node(u64 cookie)
814{
815 u8 ret;
816 cookie >>= 56;
817 ret = (u8)(cookie & 0xffULL);
818 return ret;
819}
820
821static inline unsigned long long dlm_get_lock_cookie_seq(u64 cookie)
822{
823 unsigned long long ret;
824 ret = ((unsigned long long)cookie) & 0x00ffffffffffffffULL;
825 return ret;
826}
827
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800828struct dlm_lock * dlm_new_lock(int type, u8 node, u64 cookie,
829 struct dlm_lockstatus *lksb);
830void dlm_lock_get(struct dlm_lock *lock);
831void dlm_lock_put(struct dlm_lock *lock);
832
833void dlm_lock_attach_lockres(struct dlm_lock *lock,
834 struct dlm_lock_resource *res);
835
Kurt Hackeld74c9802007-01-17 17:04:25 -0800836int dlm_create_lock_handler(struct o2net_msg *msg, u32 len, void *data,
837 void **ret_data);
838int dlm_convert_lock_handler(struct o2net_msg *msg, u32 len, void *data,
839 void **ret_data);
840int dlm_proxy_ast_handler(struct o2net_msg *msg, u32 len, void *data,
841 void **ret_data);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800842
843void dlm_revert_pending_convert(struct dlm_lock_resource *res,
844 struct dlm_lock *lock);
845void dlm_revert_pending_lock(struct dlm_lock_resource *res,
846 struct dlm_lock *lock);
847
Kurt Hackeld74c9802007-01-17 17:04:25 -0800848int dlm_unlock_lock_handler(struct o2net_msg *msg, u32 len, void *data,
849 void **ret_data);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800850void dlm_commit_pending_cancel(struct dlm_lock_resource *res,
851 struct dlm_lock *lock);
852void dlm_commit_pending_unlock(struct dlm_lock_resource *res,
853 struct dlm_lock *lock);
854
855int dlm_launch_thread(struct dlm_ctxt *dlm);
856void dlm_complete_thread(struct dlm_ctxt *dlm);
857int dlm_launch_recovery_thread(struct dlm_ctxt *dlm);
858void dlm_complete_recovery_thread(struct dlm_ctxt *dlm);
859void dlm_wait_for_recovery(struct dlm_ctxt *dlm);
Kurt Hackelc03872f2006-03-06 14:08:49 -0800860void dlm_kick_recovery_thread(struct dlm_ctxt *dlm);
Kurt Hackele2faea42006-01-12 14:24:55 -0800861int dlm_is_node_dead(struct dlm_ctxt *dlm, u8 node);
Kurt Hackel44465a72006-01-18 17:05:38 -0800862int dlm_wait_for_node_death(struct dlm_ctxt *dlm, u8 node, int timeout);
Kurt Hackelb7084ab2006-05-01 13:54:07 -0700863int dlm_wait_for_node_recovery(struct dlm_ctxt *dlm, u8 node, int timeout);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800864
865void dlm_put(struct dlm_ctxt *dlm);
866struct dlm_ctxt *dlm_grab(struct dlm_ctxt *dlm);
867int dlm_domain_fully_joined(struct dlm_ctxt *dlm);
868
869void __dlm_lockres_calc_usage(struct dlm_ctxt *dlm,
870 struct dlm_lock_resource *res);
871void dlm_lockres_calc_usage(struct dlm_ctxt *dlm,
872 struct dlm_lock_resource *res);
Mark Fasheh95c4f582006-03-10 13:44:00 -0800873static inline void dlm_lockres_get(struct dlm_lock_resource *res)
874{
875 /* This is called on every lookup, so it might be worth
876 * inlining. */
877 kref_get(&res->refs);
878}
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800879void dlm_lockres_put(struct dlm_lock_resource *res);
880void __dlm_unhash_lockres(struct dlm_lock_resource *res);
881void __dlm_insert_lockres(struct dlm_ctxt *dlm,
882 struct dlm_lock_resource *res);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800883struct dlm_lock_resource * __dlm_lookup_lockres_full(struct dlm_ctxt *dlm,
884 const char *name,
885 unsigned int len,
886 unsigned int hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800887struct dlm_lock_resource * __dlm_lookup_lockres(struct dlm_ctxt *dlm,
888 const char *name,
Mark Fasheha3d33292006-03-09 17:55:56 -0800889 unsigned int len,
890 unsigned int hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800891struct dlm_lock_resource * dlm_lookup_lockres(struct dlm_ctxt *dlm,
892 const char *name,
893 unsigned int len);
894
895int dlm_is_host_down(int errno);
Sunil Mushran7d62a972009-02-26 15:00:45 -0800896
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800897struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
898 const char *lockid,
Mark Fasheh3384f3d2006-09-08 11:38:29 -0700899 int namelen,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800900 int flags);
901struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm,
902 const char *name,
903 unsigned int namelen);
904
Kurt Hackelba2bf212006-12-01 14:47:20 -0800905#define dlm_lockres_set_refmap_bit(bit,res) \
906 __dlm_lockres_set_refmap_bit(bit,res,__FILE__,__LINE__)
907#define dlm_lockres_clear_refmap_bit(bit,res) \
908 __dlm_lockres_clear_refmap_bit(bit,res,__FILE__,__LINE__)
909
910static inline void __dlm_lockres_set_refmap_bit(int bit,
911 struct dlm_lock_resource *res,
912 const char *file,
913 int line)
914{
915 //printk("%s:%d:%.*s: setting bit %d\n", file, line,
916 // res->lockname.len, res->lockname.name, bit);
917 set_bit(bit, res->refmap);
918}
919
920static inline void __dlm_lockres_clear_refmap_bit(int bit,
921 struct dlm_lock_resource *res,
922 const char *file,
923 int line)
924{
925 //printk("%s:%d:%.*s: clearing bit %d\n", file, line,
926 // res->lockname.len, res->lockname.name, bit);
927 clear_bit(bit, res->refmap);
928}
929
930void __dlm_lockres_drop_inflight_ref(struct dlm_ctxt *dlm,
931 struct dlm_lock_resource *res,
932 const char *file,
933 int line);
934void __dlm_lockres_grab_inflight_ref(struct dlm_ctxt *dlm,
935 struct dlm_lock_resource *res,
936 int new_lockres,
937 const char *file,
938 int line);
939#define dlm_lockres_drop_inflight_ref(d,r) \
940 __dlm_lockres_drop_inflight_ref(d,r,__FILE__,__LINE__)
941#define dlm_lockres_grab_inflight_ref(d,r) \
942 __dlm_lockres_grab_inflight_ref(d,r,0,__FILE__,__LINE__)
943#define dlm_lockres_grab_inflight_ref_new(d,r) \
944 __dlm_lockres_grab_inflight_ref(d,r,1,__FILE__,__LINE__)
945
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800946void dlm_queue_ast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
947void dlm_queue_bast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
Wengang Wangd9ef7522010-05-17 20:20:44 +0800948void __dlm_queue_ast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
949void __dlm_queue_bast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800950void dlm_do_local_ast(struct dlm_ctxt *dlm,
951 struct dlm_lock_resource *res,
952 struct dlm_lock *lock);
953int dlm_do_remote_ast(struct dlm_ctxt *dlm,
954 struct dlm_lock_resource *res,
955 struct dlm_lock *lock);
956void dlm_do_local_bast(struct dlm_ctxt *dlm,
957 struct dlm_lock_resource *res,
958 struct dlm_lock *lock,
959 int blocked_type);
960int dlm_send_proxy_ast_msg(struct dlm_ctxt *dlm,
961 struct dlm_lock_resource *res,
962 struct dlm_lock *lock,
963 int msg_type,
964 int blocked_type, int flags);
965static inline int dlm_send_proxy_bast(struct dlm_ctxt *dlm,
966 struct dlm_lock_resource *res,
967 struct dlm_lock *lock,
968 int blocked_type)
969{
970 return dlm_send_proxy_ast_msg(dlm, res, lock, DLM_BAST,
971 blocked_type, 0);
972}
973
974static inline int dlm_send_proxy_ast(struct dlm_ctxt *dlm,
975 struct dlm_lock_resource *res,
976 struct dlm_lock *lock,
977 int flags)
978{
979 return dlm_send_proxy_ast_msg(dlm, res, lock, DLM_AST,
980 0, flags);
981}
982
983void dlm_print_one_lock_resource(struct dlm_lock_resource *res);
984void __dlm_print_one_lock_resource(struct dlm_lock_resource *res);
985
986u8 dlm_nm_this_node(struct dlm_ctxt *dlm);
987void dlm_kick_thread(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
988void __dlm_dirty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
989
990
991int dlm_nm_init(struct dlm_ctxt *dlm);
992int dlm_heartbeat_init(struct dlm_ctxt *dlm);
993void dlm_hb_node_down_cb(struct o2nm_node *node, int idx, void *data);
994void dlm_hb_node_up_cb(struct o2nm_node *node, int idx, void *data);
995
Kurt Hackelba2bf212006-12-01 14:47:20 -0800996int dlm_empty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800997int dlm_finish_migration(struct dlm_ctxt *dlm,
998 struct dlm_lock_resource *res,
999 u8 old_master);
1000void dlm_lockres_release_ast(struct dlm_ctxt *dlm,
1001 struct dlm_lock_resource *res);
1002void __dlm_lockres_reserve_ast(struct dlm_lock_resource *res);
1003
Kurt Hackeld74c9802007-01-17 17:04:25 -08001004int dlm_master_request_handler(struct o2net_msg *msg, u32 len, void *data,
1005 void **ret_data);
1006int dlm_assert_master_handler(struct o2net_msg *msg, u32 len, void *data,
1007 void **ret_data);
Kurt Hackel3b8118c2007-01-17 17:05:53 -08001008void dlm_assert_master_post_handler(int status, void *data, void *ret_data);
Kurt Hackeld74c9802007-01-17 17:04:25 -08001009int dlm_deref_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
1010 void **ret_data);
1011int dlm_migrate_request_handler(struct o2net_msg *msg, u32 len, void *data,
1012 void **ret_data);
1013int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
1014 void **ret_data);
1015int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data,
1016 void **ret_data);
1017int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data,
1018 void **ret_data);
1019int dlm_reco_data_done_handler(struct o2net_msg *msg, u32 len, void *data,
1020 void **ret_data);
1021int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data,
1022 void **ret_data);
1023int dlm_finalize_reco_handler(struct o2net_msg *msg, u32 len, void *data,
1024 void **ret_data);
Kurt Hackelc03872f2006-03-06 14:08:49 -08001025int dlm_do_master_requery(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1026 u8 nodenum, u8 *real_master);
Kurt Hackelc03872f2006-03-06 14:08:49 -08001027
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001028
1029int dlm_dispatch_assert_master(struct dlm_ctxt *dlm,
1030 struct dlm_lock_resource *res,
1031 int ignore_higher,
1032 u8 request_from,
1033 u32 flags);
1034
1035
1036int dlm_send_one_lockres(struct dlm_ctxt *dlm,
1037 struct dlm_lock_resource *res,
1038 struct dlm_migratable_lockres *mres,
1039 u8 send_to,
1040 u8 flags);
1041void dlm_move_lockres_to_recovery_list(struct dlm_ctxt *dlm,
1042 struct dlm_lock_resource *res);
1043
1044/* will exit holding res->spinlock, but may drop in function */
1045void __dlm_wait_on_lockres_flags(struct dlm_lock_resource *res, int flags);
1046void __dlm_wait_on_lockres_flags_set(struct dlm_lock_resource *res, int flags);
1047
1048/* will exit holding res->spinlock, but may drop in function */
1049static inline void __dlm_wait_on_lockres(struct dlm_lock_resource *res)
1050{
1051 __dlm_wait_on_lockres_flags(res, (DLM_LOCK_RES_IN_PROGRESS|
1052 DLM_LOCK_RES_RECOVERING|
1053 DLM_LOCK_RES_MIGRATING));
1054}
1055
Sunil Mushran1c084572009-02-26 15:00:37 -08001056void __dlm_unlink_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle);
1057void __dlm_insert_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle);
1058
Sunil Mushran724bdca2008-03-10 15:16:20 -07001059/* create/destroy slab caches */
1060int dlm_init_master_caches(void);
1061void dlm_destroy_master_caches(void);
1062
1063int dlm_init_lock_cache(void);
1064void dlm_destroy_lock_cache(void);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001065
1066int dlm_init_mle_cache(void);
1067void dlm_destroy_mle_cache(void);
Sunil Mushran724bdca2008-03-10 15:16:20 -07001068
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001069void dlm_hb_event_notify_attached(struct dlm_ctxt *dlm, int idx, int node_up);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001070int dlm_drop_lockres_ref(struct dlm_ctxt *dlm,
1071 struct dlm_lock_resource *res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001072void dlm_clean_master_list(struct dlm_ctxt *dlm,
1073 u8 dead_node);
Srinivas Eeda5dad6c32010-09-21 16:27:26 -07001074void dlm_force_free_mles(struct dlm_ctxt *dlm);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001075int dlm_lock_basts_flushed(struct dlm_ctxt *dlm, struct dlm_lock *lock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001076int __dlm_lockres_has_locks(struct dlm_lock_resource *res);
Kurt Hackel69d72b02006-05-01 10:57:51 -07001077int __dlm_lockres_unused(struct dlm_lock_resource *res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001078
1079static inline const char * dlm_lock_mode_name(int mode)
1080{
1081 switch (mode) {
1082 case LKM_EXMODE:
1083 return "EX";
1084 case LKM_PRMODE:
1085 return "PR";
1086 case LKM_NLMODE:
1087 return "NL";
1088 }
1089 return "UNKNOWN";
1090}
1091
1092
1093static inline int dlm_lock_compatible(int existing, int request)
1094{
1095 /* NO_LOCK compatible with all */
1096 if (request == LKM_NLMODE ||
1097 existing == LKM_NLMODE)
1098 return 1;
1099
1100 /* EX incompatible with all non-NO_LOCK */
1101 if (request == LKM_EXMODE)
1102 return 0;
1103
1104 /* request must be PR, which is compatible with PR */
1105 if (existing == LKM_PRMODE)
1106 return 1;
1107
1108 return 0;
1109}
1110
1111static inline int dlm_lock_on_list(struct list_head *head,
1112 struct dlm_lock *lock)
1113{
1114 struct list_head *iter;
1115 struct dlm_lock *tmplock;
1116
1117 list_for_each(iter, head) {
1118 tmplock = list_entry(iter, struct dlm_lock, list);
1119 if (tmplock == lock)
1120 return 1;
1121 }
1122 return 0;
1123}
1124
1125
1126static inline enum dlm_status dlm_err_to_dlm_status(int err)
1127{
1128 enum dlm_status ret;
1129 if (err == -ENOMEM)
1130 ret = DLM_SYSERR;
1131 else if (err == -ETIMEDOUT || o2net_link_down(err, NULL))
1132 ret = DLM_NOLOCKMGR;
1133 else if (err == -EINVAL)
1134 ret = DLM_BADPARAM;
1135 else if (err == -ENAMETOOLONG)
1136 ret = DLM_IVBUFLEN;
1137 else
1138 ret = DLM_BADARGS;
1139 return ret;
1140}
1141
1142
1143static inline void dlm_node_iter_init(unsigned long *map,
1144 struct dlm_node_iter *iter)
1145{
1146 memcpy(iter->node_map, map, sizeof(iter->node_map));
1147 iter->curnode = -1;
1148}
1149
1150static inline int dlm_node_iter_next(struct dlm_node_iter *iter)
1151{
1152 int bit;
1153 bit = find_next_bit(iter->node_map, O2NM_MAX_NODES, iter->curnode+1);
1154 if (bit >= O2NM_MAX_NODES) {
1155 iter->curnode = O2NM_MAX_NODES;
1156 return -ENOENT;
1157 }
1158 iter->curnode = bit;
1159 return bit;
1160}
1161
Sunil Mushran7d62a972009-02-26 15:00:45 -08001162static inline void dlm_set_lockres_owner(struct dlm_ctxt *dlm,
1163 struct dlm_lock_resource *res,
1164 u8 owner)
1165{
1166 assert_spin_locked(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001167
Sunil Mushran7d62a972009-02-26 15:00:45 -08001168 res->owner = owner;
1169}
1170
1171static inline void dlm_change_lockres_owner(struct dlm_ctxt *dlm,
1172 struct dlm_lock_resource *res,
1173 u8 owner)
1174{
1175 assert_spin_locked(&res->spinlock);
1176
1177 if (owner != res->owner)
1178 dlm_set_lockres_owner(dlm, res, owner);
1179}
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001180
1181#endif /* DLMCOMMON_H */