ocfs2: fix incorrect error returns
[deliverable/linux.git] / fs / ocfs2 / dlm / dlmcommon.h
CommitLineData
6714d8e8
KH
1/* -*- 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
c8f33b6e
JB
40#define DLM_HASH_SIZE_DEFAULT (1 << 14)
41#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
03d864c0
DP
46#define DLM_BUCKETS_PER_PAGE (PAGE_SIZE / sizeof(struct hlist_head))
47#define DLM_HASH_BUCKETS (DLM_HASH_PAGES * DLM_BUCKETS_PER_PAGE)
6714d8e8 48
a3d33291
MF
49/* 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
6714d8e8
KH
52enum dlm_ast_type {
53 DLM_AST = 0,
54 DLM_BAST,
55 DLM_ASTUNLOCK
56};
57
58
59#define LKM_VALID_FLAGS (LKM_VALBLK | LKM_CONVERT | LKM_UNLOCK | \
60 LKM_CANCEL | LKM_INVVALBLK | LKM_FORCE | \
61 LKM_RECOVERY | LKM_LOCAL | LKM_NOQUEUE)
62
63#define DLM_RECOVERY_LOCK_NAME "$RECOVERY"
64#define DLM_RECOVERY_LOCK_NAME_LEN 9
65
66static inline int dlm_is_recovery_lock(const char *lock_name, int name_len)
67{
68 if (name_len == DLM_RECOVERY_LOCK_NAME_LEN &&
69 memcmp(lock_name, DLM_RECOVERY_LOCK_NAME, name_len)==0)
70 return 1;
71 return 0;
72}
73
466d1a45
KH
74#define DLM_RECO_STATE_ACTIVE 0x0001
75#define DLM_RECO_STATE_FINALIZE 0x0002
6714d8e8
KH
76
77struct dlm_recovery_ctxt
78{
79 struct list_head resources;
80 struct list_head received;
81 struct list_head node_data;
82 u8 new_master;
83 u8 dead_node;
84 u16 state;
85 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
86 wait_queue_head_t event;
87};
88
89enum dlm_ctxt_state {
90 DLM_CTXT_NEW = 0,
91 DLM_CTXT_JOINED,
92 DLM_CTXT_IN_SHUTDOWN,
93 DLM_CTXT_LEAVING,
94};
95
96struct dlm_ctxt
97{
98 struct list_head list;
03d864c0 99 struct hlist_head **lockres_hash;
6714d8e8
KH
100 struct list_head dirty_list;
101 struct list_head purge_list;
102 struct list_head pending_asts;
103 struct list_head pending_basts;
104 unsigned int purge_count;
105 spinlock_t spinlock;
106 spinlock_t ast_lock;
107 char *name;
108 u8 node_num;
109 u32 key;
110 u8 joining_node;
111 wait_queue_head_t dlm_join_events;
112 unsigned long live_nodes_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
113 unsigned long domain_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
114 unsigned long recovery_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
115 struct dlm_recovery_ctxt reco;
116 spinlock_t master_lock;
117 struct list_head master_list;
118 struct list_head mle_hb_events;
119
120 /* these give a really vague idea of the system load */
121 atomic_t local_resources;
122 atomic_t remote_resources;
123 atomic_t unknown_resources;
124
125 /* NOTE: Next three are protected by dlm_domain_lock */
126 struct kref dlm_refs;
127 enum dlm_ctxt_state dlm_state;
128 unsigned int num_joins;
129
130 struct o2hb_callback_func dlm_hb_up;
131 struct o2hb_callback_func dlm_hb_down;
132 struct task_struct *dlm_thread_task;
133 struct task_struct *dlm_reco_thread_task;
134 wait_queue_head_t dlm_thread_wq;
135 wait_queue_head_t dlm_reco_thread_wq;
136 wait_queue_head_t ast_wq;
137 wait_queue_head_t migration_wq;
138
139 struct work_struct dispatched_work;
140 struct list_head work_list;
141 spinlock_t work_lock;
142 struct list_head dlm_domain_handlers;
143 struct list_head dlm_eviction_callbacks;
144};
145
03d864c0
DP
146static inline struct hlist_head *dlm_lockres_hash(struct dlm_ctxt *dlm, unsigned i)
147{
148 return dlm->lockres_hash[(i / DLM_BUCKETS_PER_PAGE) % DLM_HASH_PAGES] + (i % DLM_BUCKETS_PER_PAGE);
149}
150
6714d8e8
KH
151/* these keventd work queue items are for less-frequently
152 * called functions that cannot be directly called from the
153 * net message handlers for some reason, usually because
154 * they need to send net messages of their own. */
155void dlm_dispatch_work(void *data);
156
157struct dlm_lock_resource;
158struct dlm_work_item;
159
160typedef void (dlm_workfunc_t)(struct dlm_work_item *, void *);
161
162struct dlm_request_all_locks_priv
163{
164 u8 reco_master;
165 u8 dead_node;
166};
167
168struct dlm_mig_lockres_priv
169{
170 struct dlm_lock_resource *lockres;
171 u8 real_master;
172};
173
174struct dlm_assert_master_priv
175{
176 struct dlm_lock_resource *lockres;
177 u8 request_from;
178 u32 flags;
179 unsigned ignore_higher:1;
180};
181
182
183struct dlm_work_item
184{
185 struct list_head list;
186 dlm_workfunc_t *func;
187 struct dlm_ctxt *dlm;
188 void *data;
189 union {
190 struct dlm_request_all_locks_priv ral;
191 struct dlm_mig_lockres_priv ml;
192 struct dlm_assert_master_priv am;
193 } u;
194};
195
196static inline void dlm_init_work_item(struct dlm_ctxt *dlm,
197 struct dlm_work_item *i,
198 dlm_workfunc_t *f, void *data)
199{
200 memset(i, 0, sizeof(*i));
201 i->func = f;
202 INIT_LIST_HEAD(&i->list);
203 i->data = data;
204 i->dlm = dlm; /* must have already done a dlm_grab on this! */
205}
206
207
208
209static inline void __dlm_set_joining_node(struct dlm_ctxt *dlm,
210 u8 node)
211{
212 assert_spin_locked(&dlm->spinlock);
213
214 dlm->joining_node = node;
215 wake_up(&dlm->dlm_join_events);
216}
217
218#define DLM_LOCK_RES_UNINITED 0x00000001
219#define DLM_LOCK_RES_RECOVERING 0x00000002
220#define DLM_LOCK_RES_READY 0x00000004
221#define DLM_LOCK_RES_DIRTY 0x00000008
222#define DLM_LOCK_RES_IN_PROGRESS 0x00000010
223#define DLM_LOCK_RES_MIGRATING 0x00000020
224
44465a7d
KH
225/* max milliseconds to wait to sync up a network failure with a node death */
226#define DLM_NODE_DEATH_WAIT_MAX (5 * 1000)
227
6714d8e8
KH
228#define DLM_PURGE_INTERVAL_MS (8 * 1000)
229
230struct dlm_lock_resource
231{
232 /* WARNING: Please see the comment in dlm_init_lockres before
233 * adding fields here. */
81f2094a 234 struct hlist_node hash_node;
65c491d8 235 struct qstr lockname;
6714d8e8
KH
236 struct kref refs;
237
6ff06a93
KH
238 /*
239 * Please keep granted, converting, and blocked in this order,
240 * as some funcs want to iterate over all lists.
241 *
242 * All four lists are protected by the hash's reference.
243 */
6714d8e8
KH
244 struct list_head granted;
245 struct list_head converting;
246 struct list_head blocked;
6ff06a93 247 struct list_head purge;
6714d8e8 248
6ff06a93
KH
249 /*
250 * These two lists require you to hold an additional reference
251 * while they are on the list.
252 */
6714d8e8
KH
253 struct list_head dirty;
254 struct list_head recovering; // dlm_recovery_ctxt.resources list
255
256 /* unused lock resources have their last_used stamped and are
257 * put on a list for the dlm thread to run. */
6714d8e8
KH
258 unsigned long last_used;
259
260 unsigned migration_pending:1;
261 atomic_t asts_reserved;
262 spinlock_t spinlock;
263 wait_queue_head_t wq;
264 u8 owner; //node which owns the lock resource, or unknown
265 u16 state;
6714d8e8
KH
266 char lvb[DLM_LVB_LEN];
267};
268
269struct dlm_migratable_lock
270{
271 __be64 cookie;
272
273 /* these 3 are just padding for the in-memory structure, but
274 * list and flags are actually used when sent over the wire */
275 __be16 pad1;
276 u8 list; // 0=granted, 1=converting, 2=blocked
277 u8 flags;
278
279 s8 type;
280 s8 convert_type;
281 s8 highest_blocked;
282 u8 node;
283}; // 16 bytes
284
285struct dlm_lock
286{
287 struct dlm_migratable_lock ml;
288
289 struct list_head list;
290 struct list_head ast_list;
291 struct list_head bast_list;
292 struct dlm_lock_resource *lockres;
293 spinlock_t spinlock;
294 struct kref lock_refs;
295
296 // ast and bast must be callable while holding a spinlock!
297 dlm_astlockfunc_t *ast;
298 dlm_bastlockfunc_t *bast;
299 void *astdata;
300 struct dlm_lockstatus *lksb;
301 unsigned ast_pending:1,
302 bast_pending:1,
303 convert_pending:1,
304 lock_pending:1,
305 cancel_pending:1,
306 unlock_pending:1,
307 lksb_kernel_allocated:1;
308};
309
310
311#define DLM_LKSB_UNUSED1 0x01
312#define DLM_LKSB_PUT_LVB 0x02
313#define DLM_LKSB_GET_LVB 0x04
314#define DLM_LKSB_UNUSED2 0x08
315#define DLM_LKSB_UNUSED3 0x10
316#define DLM_LKSB_UNUSED4 0x20
317#define DLM_LKSB_UNUSED5 0x40
318#define DLM_LKSB_UNUSED6 0x80
319
320
321enum dlm_lockres_list {
322 DLM_GRANTED_LIST = 0,
323 DLM_CONVERTING_LIST,
324 DLM_BLOCKED_LIST
325};
326
8bc674cb
KH
327static inline int dlm_lvb_is_empty(char *lvb)
328{
329 int i;
330 for (i=0; i<DLM_LVB_LEN; i++)
331 if (lvb[i])
332 return 0;
333 return 1;
334}
335
6714d8e8
KH
336static inline struct list_head *
337dlm_list_idx_to_ptr(struct dlm_lock_resource *res, enum dlm_lockres_list idx)
338{
339 struct list_head *ret = NULL;
340 if (idx == DLM_GRANTED_LIST)
341 ret = &res->granted;
342 else if (idx == DLM_CONVERTING_LIST)
343 ret = &res->converting;
344 else if (idx == DLM_BLOCKED_LIST)
345 ret = &res->blocked;
346 else
347 BUG();
348 return ret;
349}
350
351
352
353
354struct dlm_node_iter
355{
356 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
357 int curnode;
358};
359
360
361enum {
362 DLM_MASTER_REQUEST_MSG = 500,
363 DLM_UNUSED_MSG1, /* 501 */
364 DLM_ASSERT_MASTER_MSG, /* 502 */
365 DLM_CREATE_LOCK_MSG, /* 503 */
366 DLM_CONVERT_LOCK_MSG, /* 504 */
367 DLM_PROXY_AST_MSG, /* 505 */
368 DLM_UNLOCK_LOCK_MSG, /* 506 */
369 DLM_UNUSED_MSG2, /* 507 */
370 DLM_MIGRATE_REQUEST_MSG, /* 508 */
371 DLM_MIG_LOCKRES_MSG, /* 509 */
372 DLM_QUERY_JOIN_MSG, /* 510 */
373 DLM_ASSERT_JOINED_MSG, /* 511 */
374 DLM_CANCEL_JOIN_MSG, /* 512 */
375 DLM_EXIT_DOMAIN_MSG, /* 513 */
376 DLM_MASTER_REQUERY_MSG, /* 514 */
377 DLM_LOCK_REQUEST_MSG, /* 515 */
378 DLM_RECO_DATA_DONE_MSG, /* 516 */
379 DLM_BEGIN_RECO_MSG, /* 517 */
380 DLM_FINALIZE_RECO_MSG /* 518 */
381};
382
383struct dlm_reco_node_data
384{
385 int state;
386 u8 node_num;
387 struct list_head list;
388};
389
390enum {
391 DLM_RECO_NODE_DATA_DEAD = -1,
392 DLM_RECO_NODE_DATA_INIT = 0,
393 DLM_RECO_NODE_DATA_REQUESTING,
394 DLM_RECO_NODE_DATA_REQUESTED,
395 DLM_RECO_NODE_DATA_RECEIVING,
396 DLM_RECO_NODE_DATA_DONE,
397 DLM_RECO_NODE_DATA_FINALIZE_SENT,
398};
399
400
401enum {
402 DLM_MASTER_RESP_NO = 0,
403 DLM_MASTER_RESP_YES,
404 DLM_MASTER_RESP_MAYBE,
405 DLM_MASTER_RESP_ERROR
406};
407
408
409struct dlm_master_request
410{
411 u8 node_idx;
412 u8 namelen;
413 __be16 pad1;
414 __be32 flags;
415
416 u8 name[O2NM_MAX_NAME_LEN];
417};
418
419#define DLM_ASSERT_MASTER_MLE_CLEANUP 0x00000001
420#define DLM_ASSERT_MASTER_REQUERY 0x00000002
421#define DLM_ASSERT_MASTER_FINISH_MIGRATION 0x00000004
422struct dlm_assert_master
423{
424 u8 node_idx;
425 u8 namelen;
426 __be16 pad1;
427 __be32 flags;
428
429 u8 name[O2NM_MAX_NAME_LEN];
430};
431
432struct dlm_migrate_request
433{
434 u8 master;
435 u8 new_master;
436 u8 namelen;
437 u8 pad1;
438 __be32 pad2;
439 u8 name[O2NM_MAX_NAME_LEN];
440};
441
442struct dlm_master_requery
443{
444 u8 pad1;
445 u8 pad2;
446 u8 node_idx;
447 u8 namelen;
448 __be32 pad3;
449 u8 name[O2NM_MAX_NAME_LEN];
450};
451
452#define DLM_MRES_RECOVERY 0x01
453#define DLM_MRES_MIGRATION 0x02
454#define DLM_MRES_ALL_DONE 0x04
455
456/*
457 * We would like to get one whole lockres into a single network
458 * message whenever possible. Generally speaking, there will be
459 * at most one dlm_lock on a lockres for each node in the cluster,
460 * plus (infrequently) any additional locks coming in from userdlm.
461 *
462 * struct _dlm_lockres_page
463 * {
464 * dlm_migratable_lockres mres;
465 * dlm_migratable_lock ml[DLM_MAX_MIGRATABLE_LOCKS];
466 * u8 pad[DLM_MIG_LOCKRES_RESERVED];
467 * };
468 *
469 * from ../cluster/tcp.h
470 * NET_MAX_PAYLOAD_BYTES (4096 - sizeof(net_msg))
471 * (roughly 4080 bytes)
472 * and sizeof(dlm_migratable_lockres) = 112 bytes
473 * and sizeof(dlm_migratable_lock) = 16 bytes
474 *
475 * Choosing DLM_MAX_MIGRATABLE_LOCKS=240 and
476 * DLM_MIG_LOCKRES_RESERVED=128 means we have this:
477 *
478 * (DLM_MAX_MIGRATABLE_LOCKS * sizeof(dlm_migratable_lock)) +
479 * sizeof(dlm_migratable_lockres) + DLM_MIG_LOCKRES_RESERVED =
480 * NET_MAX_PAYLOAD_BYTES
481 * (240 * 16) + 112 + 128 = 4080
482 *
483 * So a lockres would need more than 240 locks before it would
484 * use more than one network packet to recover. Not too bad.
485 */
486#define DLM_MAX_MIGRATABLE_LOCKS 240
487
488struct dlm_migratable_lockres
489{
490 u8 master;
491 u8 lockname_len;
492 u8 num_locks; // locks sent in this structure
493 u8 flags;
494 __be32 total_locks; // locks to be sent for this migration cookie
495 __be64 mig_cookie; // cookie for this lockres migration
496 // or zero if not needed
497 // 16 bytes
498 u8 lockname[DLM_LOCKID_NAME_MAX];
499 // 48 bytes
500 u8 lvb[DLM_LVB_LEN];
501 // 112 bytes
502 struct dlm_migratable_lock ml[0]; // 16 bytes each, begins at byte 112
503};
504#define DLM_MIG_LOCKRES_MAX_LEN \
505 (sizeof(struct dlm_migratable_lockres) + \
506 (sizeof(struct dlm_migratable_lock) * \
507 DLM_MAX_MIGRATABLE_LOCKS) )
508
509/* from above, 128 bytes
510 * for some undetermined future use */
511#define DLM_MIG_LOCKRES_RESERVED (NET_MAX_PAYLOAD_BYTES - \
512 DLM_MIG_LOCKRES_MAX_LEN)
513
514struct dlm_create_lock
515{
516 __be64 cookie;
517
518 __be32 flags;
519 u8 pad1;
520 u8 node_idx;
521 s8 requested_type;
522 u8 namelen;
523
524 u8 name[O2NM_MAX_NAME_LEN];
525};
526
527struct dlm_convert_lock
528{
529 __be64 cookie;
530
531 __be32 flags;
532 u8 pad1;
533 u8 node_idx;
534 s8 requested_type;
535 u8 namelen;
536
537 u8 name[O2NM_MAX_NAME_LEN];
538
539 s8 lvb[0];
540};
541#define DLM_CONVERT_LOCK_MAX_LEN (sizeof(struct dlm_convert_lock)+DLM_LVB_LEN)
542
543struct dlm_unlock_lock
544{
545 __be64 cookie;
546
547 __be32 flags;
548 __be16 pad1;
549 u8 node_idx;
550 u8 namelen;
551
552 u8 name[O2NM_MAX_NAME_LEN];
553
554 s8 lvb[0];
555};
556#define DLM_UNLOCK_LOCK_MAX_LEN (sizeof(struct dlm_unlock_lock)+DLM_LVB_LEN)
557
558struct dlm_proxy_ast
559{
560 __be64 cookie;
561
562 __be32 flags;
563 u8 node_idx;
564 u8 type;
565 u8 blocked_type;
566 u8 namelen;
567
568 u8 name[O2NM_MAX_NAME_LEN];
569
570 s8 lvb[0];
571};
572#define DLM_PROXY_AST_MAX_LEN (sizeof(struct dlm_proxy_ast)+DLM_LVB_LEN)
573
574#define DLM_MOD_KEY (0x666c6172)
575enum dlm_query_join_response {
576 JOIN_DISALLOW = 0,
577 JOIN_OK,
578 JOIN_OK_NO_MAP,
579};
580
581struct dlm_lock_request
582{
583 u8 node_idx;
584 u8 dead_node;
585 __be16 pad1;
586 __be32 pad2;
587};
588
589struct dlm_reco_data_done
590{
591 u8 node_idx;
592 u8 dead_node;
593 __be16 pad1;
594 __be32 pad2;
595
596 /* unused for now */
597 /* eventually we can use this to attempt
598 * lvb recovery based on each node's info */
599 u8 reco_lvb[DLM_LVB_LEN];
600};
601
602struct dlm_begin_reco
603{
604 u8 node_idx;
605 u8 dead_node;
606 __be16 pad1;
607 __be32 pad2;
608};
609
610
611struct dlm_query_join_request
612{
613 u8 node_idx;
614 u8 pad1[2];
615 u8 name_len;
616 u8 domain[O2NM_MAX_NAME_LEN];
617};
618
619struct dlm_assert_joined
620{
621 u8 node_idx;
622 u8 pad1[2];
623 u8 name_len;
624 u8 domain[O2NM_MAX_NAME_LEN];
625};
626
627struct dlm_cancel_join
628{
629 u8 node_idx;
630 u8 pad1[2];
631 u8 name_len;
632 u8 domain[O2NM_MAX_NAME_LEN];
633};
634
635struct dlm_exit_domain
636{
637 u8 node_idx;
638 u8 pad1[3];
639};
640
641struct dlm_finalize_reco
642{
643 u8 node_idx;
644 u8 dead_node;
466d1a45
KH
645 u8 flags;
646 u8 pad1;
6714d8e8
KH
647 __be32 pad2;
648};
649
650static inline enum dlm_status
651__dlm_lockres_state_to_status(struct dlm_lock_resource *res)
652{
653 enum dlm_status status = DLM_NORMAL;
654
655 assert_spin_locked(&res->spinlock);
656
657 if (res->state & DLM_LOCK_RES_RECOVERING)
658 status = DLM_RECOVERING;
659 else if (res->state & DLM_LOCK_RES_MIGRATING)
660 status = DLM_MIGRATING;
661 else if (res->state & DLM_LOCK_RES_IN_PROGRESS)
662 status = DLM_FORWARD;
663
664 return status;
665}
666
29004858
KH
667static inline u8 dlm_get_lock_cookie_node(u64 cookie)
668{
669 u8 ret;
670 cookie >>= 56;
671 ret = (u8)(cookie & 0xffULL);
672 return ret;
673}
674
675static inline unsigned long long dlm_get_lock_cookie_seq(u64 cookie)
676{
677 unsigned long long ret;
678 ret = ((unsigned long long)cookie) & 0x00ffffffffffffffULL;
679 return ret;
680}
681
6714d8e8
KH
682struct dlm_lock * dlm_new_lock(int type, u8 node, u64 cookie,
683 struct dlm_lockstatus *lksb);
684void dlm_lock_get(struct dlm_lock *lock);
685void dlm_lock_put(struct dlm_lock *lock);
686
687void dlm_lock_attach_lockres(struct dlm_lock *lock,
688 struct dlm_lock_resource *res);
689
690int dlm_create_lock_handler(struct o2net_msg *msg, u32 len, void *data);
691int dlm_convert_lock_handler(struct o2net_msg *msg, u32 len, void *data);
692int dlm_proxy_ast_handler(struct o2net_msg *msg, u32 len, void *data);
693
694void dlm_revert_pending_convert(struct dlm_lock_resource *res,
695 struct dlm_lock *lock);
696void dlm_revert_pending_lock(struct dlm_lock_resource *res,
697 struct dlm_lock *lock);
698
699int dlm_unlock_lock_handler(struct o2net_msg *msg, u32 len, void *data);
700void dlm_commit_pending_cancel(struct dlm_lock_resource *res,
701 struct dlm_lock *lock);
702void dlm_commit_pending_unlock(struct dlm_lock_resource *res,
703 struct dlm_lock *lock);
704
705int dlm_launch_thread(struct dlm_ctxt *dlm);
706void dlm_complete_thread(struct dlm_ctxt *dlm);
707int dlm_launch_recovery_thread(struct dlm_ctxt *dlm);
708void dlm_complete_recovery_thread(struct dlm_ctxt *dlm);
709void dlm_wait_for_recovery(struct dlm_ctxt *dlm);
c03872f5 710void dlm_kick_recovery_thread(struct dlm_ctxt *dlm);
e2faea4c 711int dlm_is_node_dead(struct dlm_ctxt *dlm, u8 node);
44465a7d 712int dlm_wait_for_node_death(struct dlm_ctxt *dlm, u8 node, int timeout);
b7084ab5 713int dlm_wait_for_node_recovery(struct dlm_ctxt *dlm, u8 node, int timeout);
6714d8e8
KH
714
715void dlm_put(struct dlm_ctxt *dlm);
716struct dlm_ctxt *dlm_grab(struct dlm_ctxt *dlm);
717int dlm_domain_fully_joined(struct dlm_ctxt *dlm);
718
719void __dlm_lockres_calc_usage(struct dlm_ctxt *dlm,
720 struct dlm_lock_resource *res);
721void dlm_lockres_calc_usage(struct dlm_ctxt *dlm,
722 struct dlm_lock_resource *res);
723void dlm_purge_lockres(struct dlm_ctxt *dlm,
724 struct dlm_lock_resource *lockres);
95c4f581
MF
725static inline void dlm_lockres_get(struct dlm_lock_resource *res)
726{
727 /* This is called on every lookup, so it might be worth
728 * inlining. */
729 kref_get(&res->refs);
730}
6714d8e8
KH
731void dlm_lockres_put(struct dlm_lock_resource *res);
732void __dlm_unhash_lockres(struct dlm_lock_resource *res);
733void __dlm_insert_lockres(struct dlm_ctxt *dlm,
734 struct dlm_lock_resource *res);
735struct dlm_lock_resource * __dlm_lookup_lockres(struct dlm_ctxt *dlm,
736 const char *name,
a3d33291
MF
737 unsigned int len,
738 unsigned int hash);
6714d8e8
KH
739struct dlm_lock_resource * dlm_lookup_lockres(struct dlm_ctxt *dlm,
740 const char *name,
741 unsigned int len);
742
743int dlm_is_host_down(int errno);
744void dlm_change_lockres_owner(struct dlm_ctxt *dlm,
745 struct dlm_lock_resource *res,
746 u8 owner);
747struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
748 const char *lockid,
749 int flags);
750struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm,
751 const char *name,
752 unsigned int namelen);
753
754void dlm_queue_ast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
755void dlm_queue_bast(struct dlm_ctxt *dlm, struct dlm_lock *lock);
756void dlm_do_local_ast(struct dlm_ctxt *dlm,
757 struct dlm_lock_resource *res,
758 struct dlm_lock *lock);
759int dlm_do_remote_ast(struct dlm_ctxt *dlm,
760 struct dlm_lock_resource *res,
761 struct dlm_lock *lock);
762void dlm_do_local_bast(struct dlm_ctxt *dlm,
763 struct dlm_lock_resource *res,
764 struct dlm_lock *lock,
765 int blocked_type);
766int dlm_send_proxy_ast_msg(struct dlm_ctxt *dlm,
767 struct dlm_lock_resource *res,
768 struct dlm_lock *lock,
769 int msg_type,
770 int blocked_type, int flags);
771static inline int dlm_send_proxy_bast(struct dlm_ctxt *dlm,
772 struct dlm_lock_resource *res,
773 struct dlm_lock *lock,
774 int blocked_type)
775{
776 return dlm_send_proxy_ast_msg(dlm, res, lock, DLM_BAST,
777 blocked_type, 0);
778}
779
780static inline int dlm_send_proxy_ast(struct dlm_ctxt *dlm,
781 struct dlm_lock_resource *res,
782 struct dlm_lock *lock,
783 int flags)
784{
785 return dlm_send_proxy_ast_msg(dlm, res, lock, DLM_AST,
786 0, flags);
787}
788
789void dlm_print_one_lock_resource(struct dlm_lock_resource *res);
790void __dlm_print_one_lock_resource(struct dlm_lock_resource *res);
791
792u8 dlm_nm_this_node(struct dlm_ctxt *dlm);
793void dlm_kick_thread(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
794void __dlm_dirty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
795
796
797int dlm_nm_init(struct dlm_ctxt *dlm);
798int dlm_heartbeat_init(struct dlm_ctxt *dlm);
799void dlm_hb_node_down_cb(struct o2nm_node *node, int idx, void *data);
800void dlm_hb_node_up_cb(struct o2nm_node *node, int idx, void *data);
801
802int dlm_lockres_is_dirty(struct dlm_ctxt *dlm, struct dlm_lock_resource *res);
803int dlm_migrate_lockres(struct dlm_ctxt *dlm,
804 struct dlm_lock_resource *res,
805 u8 target);
806int dlm_finish_migration(struct dlm_ctxt *dlm,
807 struct dlm_lock_resource *res,
808 u8 old_master);
809void dlm_lockres_release_ast(struct dlm_ctxt *dlm,
810 struct dlm_lock_resource *res);
811void __dlm_lockres_reserve_ast(struct dlm_lock_resource *res);
812
813int dlm_master_request_handler(struct o2net_msg *msg, u32 len, void *data);
814int dlm_assert_master_handler(struct o2net_msg *msg, u32 len, void *data);
815int dlm_migrate_request_handler(struct o2net_msg *msg, u32 len, void *data);
816int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data);
817int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data);
818int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data);
819int dlm_reco_data_done_handler(struct o2net_msg *msg, u32 len, void *data);
820int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data);
821int dlm_finalize_reco_handler(struct o2net_msg *msg, u32 len, void *data);
c03872f5
KH
822int dlm_do_master_requery(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
823 u8 nodenum, u8 *real_master);
824int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
825 struct dlm_lock_resource *res, u8 *real_master);
826
6714d8e8
KH
827
828int dlm_dispatch_assert_master(struct dlm_ctxt *dlm,
829 struct dlm_lock_resource *res,
830 int ignore_higher,
831 u8 request_from,
832 u32 flags);
833
834
835int dlm_send_one_lockres(struct dlm_ctxt *dlm,
836 struct dlm_lock_resource *res,
837 struct dlm_migratable_lockres *mres,
838 u8 send_to,
839 u8 flags);
840void dlm_move_lockres_to_recovery_list(struct dlm_ctxt *dlm,
841 struct dlm_lock_resource *res);
842
843/* will exit holding res->spinlock, but may drop in function */
844void __dlm_wait_on_lockres_flags(struct dlm_lock_resource *res, int flags);
845void __dlm_wait_on_lockres_flags_set(struct dlm_lock_resource *res, int flags);
846
847/* will exit holding res->spinlock, but may drop in function */
848static inline void __dlm_wait_on_lockres(struct dlm_lock_resource *res)
849{
850 __dlm_wait_on_lockres_flags(res, (DLM_LOCK_RES_IN_PROGRESS|
851 DLM_LOCK_RES_RECOVERING|
852 DLM_LOCK_RES_MIGRATING));
853}
854
855
856int dlm_init_mle_cache(void);
857void dlm_destroy_mle_cache(void);
858void dlm_hb_event_notify_attached(struct dlm_ctxt *dlm, int idx, int node_up);
859void dlm_clean_master_list(struct dlm_ctxt *dlm,
860 u8 dead_node);
861int dlm_lock_basts_flushed(struct dlm_ctxt *dlm, struct dlm_lock *lock);
862
69d72b06 863int __dlm_lockres_unused(struct dlm_lock_resource *res);
6714d8e8
KH
864
865static inline const char * dlm_lock_mode_name(int mode)
866{
867 switch (mode) {
868 case LKM_EXMODE:
869 return "EX";
870 case LKM_PRMODE:
871 return "PR";
872 case LKM_NLMODE:
873 return "NL";
874 }
875 return "UNKNOWN";
876}
877
878
879static inline int dlm_lock_compatible(int existing, int request)
880{
881 /* NO_LOCK compatible with all */
882 if (request == LKM_NLMODE ||
883 existing == LKM_NLMODE)
884 return 1;
885
886 /* EX incompatible with all non-NO_LOCK */
887 if (request == LKM_EXMODE)
888 return 0;
889
890 /* request must be PR, which is compatible with PR */
891 if (existing == LKM_PRMODE)
892 return 1;
893
894 return 0;
895}
896
897static inline int dlm_lock_on_list(struct list_head *head,
898 struct dlm_lock *lock)
899{
900 struct list_head *iter;
901 struct dlm_lock *tmplock;
902
903 list_for_each(iter, head) {
904 tmplock = list_entry(iter, struct dlm_lock, list);
905 if (tmplock == lock)
906 return 1;
907 }
908 return 0;
909}
910
911
912static inline enum dlm_status dlm_err_to_dlm_status(int err)
913{
914 enum dlm_status ret;
915 if (err == -ENOMEM)
916 ret = DLM_SYSERR;
917 else if (err == -ETIMEDOUT || o2net_link_down(err, NULL))
918 ret = DLM_NOLOCKMGR;
919 else if (err == -EINVAL)
920 ret = DLM_BADPARAM;
921 else if (err == -ENAMETOOLONG)
922 ret = DLM_IVBUFLEN;
923 else
924 ret = DLM_BADARGS;
925 return ret;
926}
927
928
929static inline void dlm_node_iter_init(unsigned long *map,
930 struct dlm_node_iter *iter)
931{
932 memcpy(iter->node_map, map, sizeof(iter->node_map));
933 iter->curnode = -1;
934}
935
936static inline int dlm_node_iter_next(struct dlm_node_iter *iter)
937{
938 int bit;
939 bit = find_next_bit(iter->node_map, O2NM_MAX_NODES, iter->curnode+1);
940 if (bit >= O2NM_MAX_NODES) {
941 iter->curnode = O2NM_MAX_NODES;
942 return -ENOENT;
943 }
944 iter->curnode = bit;
945 return bit;
946}
947
948
949
950#endif /* DLMCOMMON_H */
This page took 0.120602 seconds and 5 git commands to generate.