xref: /openbmc/linux/fs/dlm/dlm_internal.h (revision b892e4792c992a0d5a272c3bdd6155bf772acfa7)
12522fe45SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */
2e7fd4179SDavid Teigland /******************************************************************************
3e7fd4179SDavid Teigland *******************************************************************************
4e7fd4179SDavid Teigland **
5e7fd4179SDavid Teigland **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
660f98d18SDavid Teigland **  Copyright (C) 2004-2011 Red Hat, Inc.  All rights reserved.
7e7fd4179SDavid Teigland **
8e7fd4179SDavid Teigland **
9e7fd4179SDavid Teigland *******************************************************************************
10e7fd4179SDavid Teigland ******************************************************************************/
11e7fd4179SDavid Teigland 
12e7fd4179SDavid Teigland #ifndef __DLM_INTERNAL_DOT_H__
13e7fd4179SDavid Teigland #define __DLM_INTERNAL_DOT_H__
14e7fd4179SDavid Teigland 
15e7fd4179SDavid Teigland /*
16e7fd4179SDavid Teigland  * This is the main header file to be included in each DLM source file.
17e7fd4179SDavid Teigland  */
18e7fd4179SDavid Teigland 
19e7fd4179SDavid Teigland #include <linux/slab.h>
20e7fd4179SDavid Teigland #include <linux/sched.h>
21e7fd4179SDavid Teigland #include <linux/types.h>
22e7fd4179SDavid Teigland #include <linux/ctype.h>
23e7fd4179SDavid Teigland #include <linux/spinlock.h>
24e7fd4179SDavid Teigland #include <linux/vmalloc.h>
25e7fd4179SDavid Teigland #include <linux/list.h>
26e7fd4179SDavid Teigland #include <linux/errno.h>
27e7fd4179SDavid Teigland #include <linux/random.h>
28e7fd4179SDavid Teigland #include <linux/delay.h>
29e7fd4179SDavid Teigland #include <linux/socket.h>
30e7fd4179SDavid Teigland #include <linux/kthread.h>
31e7fd4179SDavid Teigland #include <linux/kobject.h>
32e7fd4179SDavid Teigland #include <linux/kref.h>
33e7fd4179SDavid Teigland #include <linux/kernel.h>
34e7fd4179SDavid Teigland #include <linux/jhash.h>
35597d0caeSDavid Teigland #include <linux/miscdevice.h>
3690135925SDavid Teigland #include <linux/mutex.h>
373d6aa675SDavid Teigland #include <linux/idr.h>
38d6e24788SDavid Teigland #include <linux/ratelimit.h>
397c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
40e7fd4179SDavid Teigland 
41e7fd4179SDavid Teigland #include <linux/dlm.h>
4299fc6487SDavid Teigland #include "config.h"
43e7fd4179SDavid Teigland 
44e7fd4179SDavid Teigland /* Size of the temp buffer midcomms allocates on the stack.
45e7fd4179SDavid Teigland    We try to make this large enough so most messages fit.
46e7fd4179SDavid Teigland    FIXME: should sctp make this unnecessary? */
47e7fd4179SDavid Teigland 
48e7fd4179SDavid Teigland #define DLM_INBUF_LEN		148
49e7fd4179SDavid Teigland 
50e7fd4179SDavid Teigland struct dlm_ls;
51e7fd4179SDavid Teigland struct dlm_lkb;
52e7fd4179SDavid Teigland struct dlm_rsb;
53e7fd4179SDavid Teigland struct dlm_member;
54e7fd4179SDavid Teigland struct dlm_rsbtable;
55e7fd4179SDavid Teigland struct dlm_recover;
56e7fd4179SDavid Teigland struct dlm_header;
57e7fd4179SDavid Teigland struct dlm_message;
58e7fd4179SDavid Teigland struct dlm_rcom;
59e7fd4179SDavid Teigland struct dlm_mhandle;
608f2dc78dSAlexander Aring struct dlm_msg;
61e7fd4179SDavid Teigland 
62e7fd4179SDavid Teigland #define log_print(fmt, args...) \
63e7fd4179SDavid Teigland 	printk(KERN_ERR "dlm: "fmt"\n" , ##args)
642df6b762SAlexander Aring #define log_print_ratelimited(fmt, args...) \
652df6b762SAlexander Aring 	printk_ratelimited(KERN_ERR "dlm: "fmt"\n", ##args)
66e7fd4179SDavid Teigland #define log_error(ls, fmt, args...) \
67e7fd4179SDavid Teigland 	printk(KERN_ERR "dlm: %s: " fmt "\n", (ls)->ls_name , ##args)
68505ee528SZhilong Liu 
69075f0177SDavid Teigland #define log_rinfo(ls, fmt, args...) \
70505ee528SZhilong Liu do { \
71505ee528SZhilong Liu 	if (dlm_config.ci_log_info) \
72505ee528SZhilong Liu 		printk(KERN_INFO "dlm: %s: " fmt "\n", \
73505ee528SZhilong Liu 			(ls)->ls_name, ##args); \
74505ee528SZhilong Liu 	else if (dlm_config.ci_log_debug) \
75505ee528SZhilong Liu 		printk(KERN_DEBUG "dlm: %s: " fmt "\n", \
76505ee528SZhilong Liu 		       (ls)->ls_name , ##args); \
77505ee528SZhilong Liu } while (0)
78e7fd4179SDavid Teigland 
7999fc6487SDavid Teigland #define log_debug(ls, fmt, args...) \
8099fc6487SDavid Teigland do { \
8199fc6487SDavid Teigland 	if (dlm_config.ci_log_debug) \
8299fc6487SDavid Teigland 		printk(KERN_DEBUG "dlm: %s: " fmt "\n", \
8399fc6487SDavid Teigland 		       (ls)->ls_name , ##args); \
8499fc6487SDavid Teigland } while (0)
85e7fd4179SDavid Teigland 
86d6e24788SDavid Teigland #define log_limit(ls, fmt, args...) \
87d6e24788SDavid Teigland do { \
88d6e24788SDavid Teigland 	if (dlm_config.ci_log_debug) \
89d6e24788SDavid Teigland 		printk_ratelimited(KERN_DEBUG "dlm: %s: " fmt "\n", \
90d6e24788SDavid Teigland 			(ls)->ls_name , ##args); \
91d6e24788SDavid Teigland } while (0)
92d6e24788SDavid Teigland 
93e7fd4179SDavid Teigland #define DLM_ASSERT(x, do) \
94e7fd4179SDavid Teigland { \
95e7fd4179SDavid Teigland   if (!(x)) \
96e7fd4179SDavid Teigland   { \
97e7fd4179SDavid Teigland     printk(KERN_ERR "\nDLM:  Assertion failed on line %d of file %s\n" \
98e7fd4179SDavid Teigland                "DLM:  assertion:  \"%s\"\n" \
99e7fd4179SDavid Teigland                "DLM:  time = %lu\n", \
100e7fd4179SDavid Teigland                __LINE__, __FILE__, #x, jiffies); \
101e7fd4179SDavid Teigland     {do} \
102e7fd4179SDavid Teigland     printk("\n"); \
103e7fd4179SDavid Teigland     panic("DLM:  Record message above and reboot.\n"); \
104e7fd4179SDavid Teigland   } \
105e7fd4179SDavid Teigland }
106e7fd4179SDavid Teigland 
107e7fd4179SDavid Teigland 
108f1172283SDavid Teigland #define DLM_RTF_SHRINK		0x00000001
109f1172283SDavid Teigland 
110e7fd4179SDavid Teigland struct dlm_rsbtable {
1119beb3bf5SBob Peterson 	struct rb_root		keep;
1129beb3bf5SBob Peterson 	struct rb_root		toss;
113c7be761aSDavid Teigland 	spinlock_t		lock;
114f1172283SDavid Teigland 	uint32_t		flags;
115e7fd4179SDavid Teigland };
116e7fd4179SDavid Teigland 
117e7fd4179SDavid Teigland 
118e7fd4179SDavid Teigland /*
119e7fd4179SDavid Teigland  * Lockspace member (per node in a ls)
120e7fd4179SDavid Teigland  */
121e7fd4179SDavid Teigland 
122e7fd4179SDavid Teigland struct dlm_member {
123e7fd4179SDavid Teigland 	struct list_head	list;
124e7fd4179SDavid Teigland 	int			nodeid;
125e7fd4179SDavid Teigland 	int			weight;
126757a4271SDavid Teigland 	int			slot;
127757a4271SDavid Teigland 	int			slot_prev;
12860f98d18SDavid Teigland 	int			comm_seq;
129757a4271SDavid Teigland 	uint32_t		generation;
130757a4271SDavid Teigland };
131757a4271SDavid Teigland 
132757a4271SDavid Teigland /*
133e7fd4179SDavid Teigland  * Save and manage recovery state for a lockspace.
134e7fd4179SDavid Teigland  */
135e7fd4179SDavid Teigland 
136e7fd4179SDavid Teigland struct dlm_recover {
137e7fd4179SDavid Teigland 	struct list_head	list;
13860f98d18SDavid Teigland 	struct dlm_config_node	*nodes;
13960f98d18SDavid Teigland 	int			nodes_count;
140e7fd4179SDavid Teigland 	uint64_t		seq;
141e7fd4179SDavid Teigland };
142e7fd4179SDavid Teigland 
143e7fd4179SDavid Teigland /*
144e7fd4179SDavid Teigland  * Pass input args to second stage locking function.
145e7fd4179SDavid Teigland  */
146e7fd4179SDavid Teigland 
147e7fd4179SDavid Teigland struct dlm_args {
148e7fd4179SDavid Teigland 	uint32_t		flags;
149e5dae548SDavid Teigland 	void			(*astfn) (void *astparam);
150e5dae548SDavid Teigland 	void			*astparam;
151e5dae548SDavid Teigland 	void			(*bastfn) (void *astparam, int mode);
152e7fd4179SDavid Teigland 	int			mode;
153e7fd4179SDavid Teigland 	struct dlm_lksb		*lksb;
154d7db923eSDavid Teigland 	unsigned long		timeout;
155e7fd4179SDavid Teigland };
156e7fd4179SDavid Teigland 
157e7fd4179SDavid Teigland 
158e7fd4179SDavid Teigland /*
159e7fd4179SDavid Teigland  * Lock block
160e7fd4179SDavid Teigland  *
161e7fd4179SDavid Teigland  * A lock can be one of three types:
162e7fd4179SDavid Teigland  *
163e7fd4179SDavid Teigland  * local copy      lock is mastered locally
164e7fd4179SDavid Teigland  *                 (lkb_nodeid is zero and DLM_LKF_MSTCPY is not set)
165e7fd4179SDavid Teigland  * process copy    lock is mastered on a remote node
166e7fd4179SDavid Teigland  *                 (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is not set)
167e7fd4179SDavid Teigland  * master copy     master node's copy of a lock owned by remote node
168e7fd4179SDavid Teigland  *                 (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is set)
169e7fd4179SDavid Teigland  *
170e7fd4179SDavid Teigland  * lkb_exflags: a copy of the most recent flags arg provided to dlm_lock or
171e7fd4179SDavid Teigland  * dlm_unlock.  The dlm does not modify these or use any private flags in
172e7fd4179SDavid Teigland  * this field; it only contains DLM_LKF_ flags from dlm.h.  These flags
173e7fd4179SDavid Teigland  * are sent as-is to the remote master when the lock is remote.
174e7fd4179SDavid Teigland  *
175e7fd4179SDavid Teigland  * lkb_flags: internal dlm flags (DLM_IFL_ prefix) from dlm_internal.h.
176e7fd4179SDavid Teigland  * Some internal flags are shared between the master and process nodes;
177e7fd4179SDavid Teigland  * these shared flags are kept in the lower two bytes.  One of these
178e7fd4179SDavid Teigland  * flags set on the master copy will be propagated to the process copy
179e7fd4179SDavid Teigland  * and v.v.  Other internal flags are private to the master or process
180e7fd4179SDavid Teigland  * node (e.g. DLM_IFL_MSTCPY).  These are kept in the high two bytes.
181e7fd4179SDavid Teigland  *
182e7fd4179SDavid Teigland  * lkb_sbflags: status block flags.  These flags are copied directly into
183e7fd4179SDavid Teigland  * the caller's lksb.sb_flags prior to the dlm_lock/dlm_unlock completion
184e7fd4179SDavid Teigland  * ast.  All defined in dlm.h with DLM_SBF_ prefix.
185e7fd4179SDavid Teigland  *
186e7fd4179SDavid Teigland  * lkb_status: the lock status indicates which rsb queue the lock is
187e7fd4179SDavid Teigland  * on, grant, convert, or wait.  DLM_LKSTS_ WAITING/GRANTED/CONVERT
188e7fd4179SDavid Teigland  *
189e7fd4179SDavid Teigland  * lkb_wait_type: the dlm message type (DLM_MSG_ prefix) for which a
190e7fd4179SDavid Teigland  * reply is needed.  Only set when the lkb is on the lockspace waiters
191e7fd4179SDavid Teigland  * list awaiting a reply from a remote node.
192e7fd4179SDavid Teigland  *
193e7fd4179SDavid Teigland  * lkb_nodeid: when the lkb is a local copy, nodeid is 0; when the lkb
194e7fd4179SDavid Teigland  * is a master copy, nodeid specifies the remote lock holder, when the
195e7fd4179SDavid Teigland  * lkb is a process copy, the nodeid specifies the lock master.
196e7fd4179SDavid Teigland  */
197e7fd4179SDavid Teigland 
198e7fd4179SDavid Teigland /* lkb_status */
199e7fd4179SDavid Teigland 
200e7fd4179SDavid Teigland #define DLM_LKSTS_WAITING	1
201e7fd4179SDavid Teigland #define DLM_LKSTS_GRANTED	2
202e7fd4179SDavid Teigland #define DLM_LKSTS_CONVERT	3
203e7fd4179SDavid Teigland 
204e7fd4179SDavid Teigland /* lkb_flags */
205e7fd4179SDavid Teigland 
206e7fd4179SDavid Teigland #define DLM_IFL_MSTCPY		0x00010000
207e7fd4179SDavid Teigland #define DLM_IFL_RESEND		0x00020000
208597d0caeSDavid Teigland #define DLM_IFL_DEAD		0x00040000
209ef0c2bb0SDavid Teigland #define DLM_IFL_OVERLAP_UNLOCK  0x00080000
210ef0c2bb0SDavid Teigland #define DLM_IFL_OVERLAP_CANCEL  0x00100000
211ef0c2bb0SDavid Teigland #define DLM_IFL_ENDOFLIFE	0x00200000
2123ae1acf9SDavid Teigland #define DLM_IFL_WATCH_TIMEWARN	0x00400000
21384d8cd69SDavid Teigland #define DLM_IFL_TIMEOUT_CANCEL	0x00800000
2148b4021faSDavid Teigland #define DLM_IFL_DEADLOCK_CANCEL	0x01000000
2152a7ce0edSDavid Teigland #define DLM_IFL_STUB_MS		0x02000000 /* magic number for m_flags */
216597d0caeSDavid Teigland #define DLM_IFL_USER		0x00000001
217597d0caeSDavid Teigland #define DLM_IFL_ORPHAN		0x00000002
218e7fd4179SDavid Teigland 
2198304d6f2SDavid Teigland #define DLM_CALLBACKS_SIZE	6
2208304d6f2SDavid Teigland 
2218304d6f2SDavid Teigland #define DLM_CB_CAST		0x00000001
2228304d6f2SDavid Teigland #define DLM_CB_BAST		0x00000002
2238304d6f2SDavid Teigland #define DLM_CB_SKIP		0x00000004
2248304d6f2SDavid Teigland 
2258304d6f2SDavid Teigland struct dlm_callback {
2268304d6f2SDavid Teigland 	uint64_t		seq;
2278304d6f2SDavid Teigland 	uint32_t		flags;		/* DLM_CBF_ */
2288304d6f2SDavid Teigland 	int			sb_status;	/* copy to lksb status */
2298304d6f2SDavid Teigland 	uint8_t			sb_flags;	/* copy to lksb flags */
2308304d6f2SDavid Teigland 	int8_t			mode; /* rq mode of bast, gr mode of cast */
2318304d6f2SDavid Teigland };
2328304d6f2SDavid Teigland 
233e7fd4179SDavid Teigland struct dlm_lkb {
234e7fd4179SDavid Teigland 	struct dlm_rsb		*lkb_resource;	/* the rsb */
235e7fd4179SDavid Teigland 	struct kref		lkb_ref;
236e7fd4179SDavid Teigland 	int			lkb_nodeid;	/* copied from rsb */
237e7fd4179SDavid Teigland 	int			lkb_ownpid;	/* pid of lock owner */
238e7fd4179SDavid Teigland 	uint32_t		lkb_id;		/* our lock ID */
239e7fd4179SDavid Teigland 	uint32_t		lkb_remid;	/* lock ID on remote partner */
240e7fd4179SDavid Teigland 	uint32_t		lkb_exflags;	/* external flags from caller */
241e7fd4179SDavid Teigland 	uint32_t		lkb_sbflags;	/* lksb flags */
242e7fd4179SDavid Teigland 	uint32_t		lkb_flags;	/* internal flags */
243e7fd4179SDavid Teigland 	uint32_t		lkb_lvbseq;	/* lvb sequence number */
244e7fd4179SDavid Teigland 
245e7fd4179SDavid Teigland 	int8_t			lkb_status;     /* granted, waiting, convert */
246e7fd4179SDavid Teigland 	int8_t			lkb_rqmode;	/* requested lock mode */
247e7fd4179SDavid Teigland 	int8_t			lkb_grmode;	/* granted lock mode */
248e7fd4179SDavid Teigland 	int8_t			lkb_highbast;	/* highest mode bast sent for */
2497fe2b319SDavid Teigland 
250e7fd4179SDavid Teigland 	int8_t			lkb_wait_type;	/* type of reply waiting for */
251ef0c2bb0SDavid Teigland 	int8_t			lkb_wait_count;
252c6ff669bSDavid Teigland 	int			lkb_wait_nodeid; /* for debugging */
253e7fd4179SDavid Teigland 
254e7fd4179SDavid Teigland 	struct list_head	lkb_statequeue;	/* rsb g/c/w list */
255e7fd4179SDavid Teigland 	struct list_head	lkb_rsb_lookup;	/* waiting for rsb lookup */
256e7fd4179SDavid Teigland 	struct list_head	lkb_wait_reply;	/* waiting for remote reply */
257597d0caeSDavid Teigland 	struct list_head	lkb_ownqueue;	/* list of locks for a process */
2583ae1acf9SDavid Teigland 	struct list_head	lkb_time_list;
259eeda418dSDavid Teigland 	ktime_t			lkb_timestamp;
260c6ff669bSDavid Teigland 	ktime_t			lkb_wait_time;
2613ae1acf9SDavid Teigland 	unsigned long		lkb_timeout_cs;
262e7fd4179SDavid Teigland 
26323e8e1aaSDavid Teigland 	struct mutex		lkb_cb_mutex;
26423e8e1aaSDavid Teigland 	struct work_struct	lkb_cb_work;
26523e8e1aaSDavid Teigland 	struct list_head	lkb_cb_list; /* for ls_cb_delay or proc->asts */
2668304d6f2SDavid Teigland 	struct dlm_callback	lkb_callbacks[DLM_CALLBACKS_SIZE];
2678304d6f2SDavid Teigland 	struct dlm_callback	lkb_last_cast;
2688304d6f2SDavid Teigland 	struct dlm_callback	lkb_last_bast;
2698304d6f2SDavid Teigland 	ktime_t			lkb_last_cast_time;	/* for debugging */
2708304d6f2SDavid Teigland 	ktime_t			lkb_last_bast_time;	/* for debugging */
2718304d6f2SDavid Teigland 
2724875647aSDavid Teigland 	uint64_t		lkb_recover_seq; /* from ls_recover_seq */
2734875647aSDavid Teigland 
274e7fd4179SDavid Teigland 	char			*lkb_lvbptr;
275e7fd4179SDavid Teigland 	struct dlm_lksb		*lkb_lksb;      /* caller's status block */
276e5dae548SDavid Teigland 	void			(*lkb_astfn) (void *astparam);
277e5dae548SDavid Teigland 	void			(*lkb_bastfn) (void *astparam, int mode);
278d292c0ccSDavid Teigland 	union {
279e5dae548SDavid Teigland 		void			*lkb_astparam;	/* caller's ast arg */
280d292c0ccSDavid Teigland 		struct dlm_user_args	*lkb_ua;
281d292c0ccSDavid Teigland 	};
282e7fd4179SDavid Teigland };
283e7fd4179SDavid Teigland 
284c04fecb4SDavid Teigland /*
285c04fecb4SDavid Teigland  * res_master_nodeid is "normal": 0 is unset/invalid, non-zero is the real
286c04fecb4SDavid Teigland  * nodeid, even when nodeid is our_nodeid.
287c04fecb4SDavid Teigland  *
288c04fecb4SDavid Teigland  * res_nodeid is "odd": -1 is unset/invalid, zero means our_nodeid,
289c04fecb4SDavid Teigland  * greater than zero when another nodeid.
290c04fecb4SDavid Teigland  *
291c04fecb4SDavid Teigland  * (TODO: remove res_nodeid and only use res_master_nodeid)
292c04fecb4SDavid Teigland  */
293e7fd4179SDavid Teigland 
294e7fd4179SDavid Teigland struct dlm_rsb {
295e7fd4179SDavid Teigland 	struct dlm_ls		*res_ls;	/* the lockspace */
296e7fd4179SDavid Teigland 	struct kref		res_ref;
29790135925SDavid Teigland 	struct mutex		res_mutex;
298e7fd4179SDavid Teigland 	unsigned long		res_flags;
299e7fd4179SDavid Teigland 	int			res_length;	/* length of rsb name */
300e7fd4179SDavid Teigland 	int			res_nodeid;
301c04fecb4SDavid Teigland 	int			res_master_nodeid;
302c04fecb4SDavid Teigland 	int			res_dir_nodeid;
3031d7c484eSDavid Teigland 	int			res_id;		/* for ls_recover_idr */
304e7fd4179SDavid Teigland 	uint32_t                res_lvbseq;
305e7fd4179SDavid Teigland 	uint32_t		res_hash;
306e7fd4179SDavid Teigland 	uint32_t		res_bucket;	/* rsbtbl */
307e7fd4179SDavid Teigland 	unsigned long		res_toss_time;
308e7fd4179SDavid Teigland 	uint32_t		res_first_lkid;
309e7fd4179SDavid Teigland 	struct list_head	res_lookup;	/* lkbs waiting on first */
3109beb3bf5SBob Peterson 	union {
3119beb3bf5SBob Peterson 		struct list_head	res_hashchain;
3129beb3bf5SBob Peterson 		struct rb_node		res_hashnode;	/* rsbtbl */
3139beb3bf5SBob Peterson 	};
314e7fd4179SDavid Teigland 	struct list_head	res_grantqueue;
315e7fd4179SDavid Teigland 	struct list_head	res_convertqueue;
316e7fd4179SDavid Teigland 	struct list_head	res_waitqueue;
317e7fd4179SDavid Teigland 
318e7fd4179SDavid Teigland 	struct list_head	res_root_list;	    /* used for recovery */
319e7fd4179SDavid Teigland 	struct list_head	res_recover_list;   /* used for recovery */
320e7fd4179SDavid Teigland 	int			res_recover_locks_count;
321e7fd4179SDavid Teigland 
322e7fd4179SDavid Teigland 	char			*res_lvbptr;
3233881ac04SDavid Teigland 	char			res_name[DLM_RESNAME_MAXLEN+1];
324e7fd4179SDavid Teigland };
325e7fd4179SDavid Teigland 
326c04fecb4SDavid Teigland /* dlm_master_lookup() flags */
327c04fecb4SDavid Teigland 
328c04fecb4SDavid Teigland #define DLM_LU_RECOVER_DIR	1
329c04fecb4SDavid Teigland #define DLM_LU_RECOVER_MASTER	2
330c04fecb4SDavid Teigland 
331c04fecb4SDavid Teigland /* dlm_master_lookup() results */
332c04fecb4SDavid Teigland 
333c04fecb4SDavid Teigland #define DLM_LU_MATCH		1
334c04fecb4SDavid Teigland #define DLM_LU_ADD		2
335c04fecb4SDavid Teigland 
336e7fd4179SDavid Teigland /* find_rsb() flags */
337e7fd4179SDavid Teigland 
338c04fecb4SDavid Teigland #define R_REQUEST		0x00000001
339c04fecb4SDavid Teigland #define R_RECEIVE_REQUEST	0x00000002
340c04fecb4SDavid Teigland #define R_RECEIVE_RECOVER	0x00000004
341e7fd4179SDavid Teigland 
342e7fd4179SDavid Teigland /* rsb_flags */
343e7fd4179SDavid Teigland 
344e7fd4179SDavid Teigland enum rsb_flags {
345e7fd4179SDavid Teigland 	RSB_MASTER_UNCERTAIN,
346e7fd4179SDavid Teigland 	RSB_VALNOTVALID,
347e7fd4179SDavid Teigland 	RSB_VALNOTVALID_PREV,
348e7fd4179SDavid Teigland 	RSB_NEW_MASTER,
349e7fd4179SDavid Teigland 	RSB_NEW_MASTER2,
350e7fd4179SDavid Teigland 	RSB_RECOVER_CONVERT,
3514875647aSDavid Teigland 	RSB_RECOVER_GRANT,
352da8c6663SDavid Teigland 	RSB_RECOVER_LVB_INVAL,
353e7fd4179SDavid Teigland };
354e7fd4179SDavid Teigland 
355e7fd4179SDavid Teigland static inline void rsb_set_flag(struct dlm_rsb *r, enum rsb_flags flag)
356e7fd4179SDavid Teigland {
357e7fd4179SDavid Teigland 	__set_bit(flag, &r->res_flags);
358e7fd4179SDavid Teigland }
359e7fd4179SDavid Teigland 
360e7fd4179SDavid Teigland static inline void rsb_clear_flag(struct dlm_rsb *r, enum rsb_flags flag)
361e7fd4179SDavid Teigland {
362e7fd4179SDavid Teigland 	__clear_bit(flag, &r->res_flags);
363e7fd4179SDavid Teigland }
364e7fd4179SDavid Teigland 
365e7fd4179SDavid Teigland static inline int rsb_flag(struct dlm_rsb *r, enum rsb_flags flag)
366e7fd4179SDavid Teigland {
367e7fd4179SDavid Teigland 	return test_bit(flag, &r->res_flags);
368e7fd4179SDavid Teigland }
369e7fd4179SDavid Teigland 
370e7fd4179SDavid Teigland 
371e7fd4179SDavid Teigland /* dlm_header is first element of all structs sent between nodes */
372e7fd4179SDavid Teigland 
37338aa8b0cSDavid Teigland #define DLM_HEADER_MAJOR	0x00030000
374489d8e55SAlexander Aring #define DLM_HEADER_MINOR	0x00000002
375489d8e55SAlexander Aring 
376489d8e55SAlexander Aring #define DLM_VERSION_3_1		0x00030001
377489d8e55SAlexander Aring #define DLM_VERSION_3_2		0x00030002
378757a4271SDavid Teigland 
379757a4271SDavid Teigland #define DLM_HEADER_SLOTS	0x00000001
380e7fd4179SDavid Teigland 
381e7fd4179SDavid Teigland #define DLM_MSG			1
382e7fd4179SDavid Teigland #define DLM_RCOM		2
383489d8e55SAlexander Aring #define DLM_OPTS		3
384489d8e55SAlexander Aring #define DLM_ACK			4
385489d8e55SAlexander Aring #define DLM_FIN			5
386e7fd4179SDavid Teigland 
387e7fd4179SDavid Teigland struct dlm_header {
388e7fd4179SDavid Teigland 	uint32_t		h_version;
3898e2e4086SAlexander Aring 	union {
3908e2e4086SAlexander Aring 		/* for DLM_MSG and DLM_RCOM */
391e7fd4179SDavid Teigland 		uint32_t	h_lockspace;
392489d8e55SAlexander Aring 		/* for DLM_ACK and DLM_OPTS */
393489d8e55SAlexander Aring 		uint32_t	h_seq;
3948e2e4086SAlexander Aring 	} u;
395e7fd4179SDavid Teigland 	uint32_t		h_nodeid;	/* nodeid of sender */
396e7fd4179SDavid Teigland 	uint16_t		h_length;
397e7fd4179SDavid Teigland 	uint8_t			h_cmd;		/* DLM_MSG, DLM_RCOM */
398e7fd4179SDavid Teigland 	uint8_t			h_pad;
399e7fd4179SDavid Teigland };
400e7fd4179SDavid Teigland 
401e7fd4179SDavid Teigland #define DLM_MSG_REQUEST		1
402e7fd4179SDavid Teigland #define DLM_MSG_CONVERT		2
403e7fd4179SDavid Teigland #define DLM_MSG_UNLOCK		3
404e7fd4179SDavid Teigland #define DLM_MSG_CANCEL		4
405e7fd4179SDavid Teigland #define DLM_MSG_REQUEST_REPLY	5
406e7fd4179SDavid Teigland #define DLM_MSG_CONVERT_REPLY	6
407e7fd4179SDavid Teigland #define DLM_MSG_UNLOCK_REPLY	7
408e7fd4179SDavid Teigland #define DLM_MSG_CANCEL_REPLY	8
409e7fd4179SDavid Teigland #define DLM_MSG_GRANT		9
410e7fd4179SDavid Teigland #define DLM_MSG_BAST		10
411e7fd4179SDavid Teigland #define DLM_MSG_LOOKUP		11
412e7fd4179SDavid Teigland #define DLM_MSG_REMOVE		12
413e7fd4179SDavid Teigland #define DLM_MSG_LOOKUP_REPLY	13
4148499137dSDavid Teigland #define DLM_MSG_PURGE		14
415e7fd4179SDavid Teigland 
416e7fd4179SDavid Teigland struct dlm_message {
417e7fd4179SDavid Teigland 	struct dlm_header	m_header;
418e7fd4179SDavid Teigland 	uint32_t		m_type;		/* DLM_MSG_ */
419e7fd4179SDavid Teigland 	uint32_t		m_nodeid;
420e7fd4179SDavid Teigland 	uint32_t		m_pid;
421e7fd4179SDavid Teigland 	uint32_t		m_lkid;		/* lkid on sender */
422e7fd4179SDavid Teigland 	uint32_t		m_remid;	/* lkid on receiver */
423e7fd4179SDavid Teigland 	uint32_t		m_parent_lkid;
424e7fd4179SDavid Teigland 	uint32_t		m_parent_remid;
425e7fd4179SDavid Teigland 	uint32_t		m_exflags;
426e7fd4179SDavid Teigland 	uint32_t		m_sbflags;
427e7fd4179SDavid Teigland 	uint32_t		m_flags;
428e7fd4179SDavid Teigland 	uint32_t		m_lvbseq;
429e7fd4179SDavid Teigland 	uint32_t		m_hash;
430e7fd4179SDavid Teigland 	int			m_status;
431e7fd4179SDavid Teigland 	int			m_grmode;
432e7fd4179SDavid Teigland 	int			m_rqmode;
433e7fd4179SDavid Teigland 	int			m_bastmode;
434e7fd4179SDavid Teigland 	int			m_asts;
435e7fd4179SDavid Teigland 	int			m_result;	/* 0 or -EXXX */
436a4e439a6SGustavo A. R. Silva 	char			m_extra[];	/* name or lvb */
437e7fd4179SDavid Teigland };
438e7fd4179SDavid Teigland 
439e7fd4179SDavid Teigland 
440e7fd4179SDavid Teigland #define DLM_RS_NODES		0x00000001
441e7fd4179SDavid Teigland #define DLM_RS_NODES_ALL	0x00000002
442e7fd4179SDavid Teigland #define DLM_RS_DIR		0x00000004
443e7fd4179SDavid Teigland #define DLM_RS_DIR_ALL		0x00000008
444e7fd4179SDavid Teigland #define DLM_RS_LOCKS		0x00000010
445e7fd4179SDavid Teigland #define DLM_RS_LOCKS_ALL	0x00000020
446e7fd4179SDavid Teigland #define DLM_RS_DONE		0x00000040
447e7fd4179SDavid Teigland #define DLM_RS_DONE_ALL		0x00000080
448e7fd4179SDavid Teigland 
449e7fd4179SDavid Teigland #define DLM_RCOM_STATUS		1
450e7fd4179SDavid Teigland #define DLM_RCOM_NAMES		2
451e7fd4179SDavid Teigland #define DLM_RCOM_LOOKUP		3
452e7fd4179SDavid Teigland #define DLM_RCOM_LOCK		4
453e7fd4179SDavid Teigland #define DLM_RCOM_STATUS_REPLY	5
454e7fd4179SDavid Teigland #define DLM_RCOM_NAMES_REPLY	6
455e7fd4179SDavid Teigland #define DLM_RCOM_LOOKUP_REPLY	7
456e7fd4179SDavid Teigland #define DLM_RCOM_LOCK_REPLY	8
457e7fd4179SDavid Teigland 
458e7fd4179SDavid Teigland struct dlm_rcom {
459e7fd4179SDavid Teigland 	struct dlm_header	rc_header;
460e7fd4179SDavid Teigland 	uint32_t		rc_type;	/* DLM_RCOM_ */
461e7fd4179SDavid Teigland 	int			rc_result;	/* multi-purpose */
462e7fd4179SDavid Teigland 	uint64_t		rc_id;		/* match reply with request */
46338aa8b0cSDavid Teigland 	uint64_t		rc_seq;		/* sender's ls_recover_seq */
46438aa8b0cSDavid Teigland 	uint64_t		rc_seq_reply;	/* remote ls_recover_seq */
465a4e439a6SGustavo A. R. Silva 	char			rc_buf[];
466e7fd4179SDavid Teigland };
467e7fd4179SDavid Teigland 
468489d8e55SAlexander Aring struct dlm_opt_header {
469489d8e55SAlexander Aring 	uint16_t	t_type;
470489d8e55SAlexander Aring 	uint16_t	t_length;
471*b892e479SAlexander Aring 	uint32_t	t_pad;
472489d8e55SAlexander Aring 	/* need to be 8 byte aligned */
473489d8e55SAlexander Aring 	char		t_value[];
474489d8e55SAlexander Aring };
475489d8e55SAlexander Aring 
476489d8e55SAlexander Aring /* encapsulation header */
477489d8e55SAlexander Aring struct dlm_opts {
478489d8e55SAlexander Aring 	struct dlm_header	o_header;
479489d8e55SAlexander Aring 	uint8_t			o_nextcmd;
480489d8e55SAlexander Aring 	uint8_t			o_pad;
481489d8e55SAlexander Aring 	uint16_t		o_optlen;
482489d8e55SAlexander Aring 	uint32_t		o_pad2;
483489d8e55SAlexander Aring 	char			o_opts[];
484489d8e55SAlexander Aring };
485489d8e55SAlexander Aring 
486eef7d739SAl Viro union dlm_packet {
487eef7d739SAl Viro 	struct dlm_header	header;		/* common to other two */
488eef7d739SAl Viro 	struct dlm_message	message;
489eef7d739SAl Viro 	struct dlm_rcom		rcom;
490489d8e55SAlexander Aring 	struct dlm_opts		opts;
491eef7d739SAl Viro };
492eef7d739SAl Viro 
493757a4271SDavid Teigland #define DLM_RSF_NEED_SLOTS	0x00000001
494757a4271SDavid Teigland 
495757a4271SDavid Teigland /* RCOM_STATUS data */
496757a4271SDavid Teigland struct rcom_status {
497757a4271SDavid Teigland 	__le32			rs_flags;
498757a4271SDavid Teigland 	__le32			rs_unused1;
499757a4271SDavid Teigland 	__le64			rs_unused2;
500757a4271SDavid Teigland };
501757a4271SDavid Teigland 
502757a4271SDavid Teigland /* RCOM_STATUS_REPLY data */
503e7fd4179SDavid Teigland struct rcom_config {
50493ff2971SAl Viro 	__le32			rf_lvblen;
50593ff2971SAl Viro 	__le32			rf_lsflags;
506757a4271SDavid Teigland 
507757a4271SDavid Teigland 	/* DLM_HEADER_SLOTS adds: */
508757a4271SDavid Teigland 	__le32			rf_flags;
509757a4271SDavid Teigland 	__le16			rf_our_slot;
510757a4271SDavid Teigland 	__le16			rf_num_slots;
511757a4271SDavid Teigland 	__le32			rf_generation;
512757a4271SDavid Teigland 	__le32			rf_unused1;
513757a4271SDavid Teigland 	__le64			rf_unused2;
514757a4271SDavid Teigland };
515757a4271SDavid Teigland 
516757a4271SDavid Teigland struct rcom_slot {
517757a4271SDavid Teigland 	__le32			ro_nodeid;
518757a4271SDavid Teigland 	__le16			ro_slot;
519757a4271SDavid Teigland 	__le16			ro_unused1;
520757a4271SDavid Teigland 	__le64			ro_unused2;
521e7fd4179SDavid Teigland };
522e7fd4179SDavid Teigland 
523e7fd4179SDavid Teigland struct rcom_lock {
524163a1859SAl Viro 	__le32			rl_ownpid;
525163a1859SAl Viro 	__le32			rl_lkid;
526163a1859SAl Viro 	__le32			rl_remid;
527163a1859SAl Viro 	__le32			rl_parent_lkid;
528163a1859SAl Viro 	__le32			rl_parent_remid;
529163a1859SAl Viro 	__le32			rl_exflags;
530163a1859SAl Viro 	__le32			rl_flags;
531163a1859SAl Viro 	__le32			rl_lvbseq;
532163a1859SAl Viro 	__le32			rl_result;
533e7fd4179SDavid Teigland 	int8_t			rl_rqmode;
534e7fd4179SDavid Teigland 	int8_t			rl_grmode;
535e7fd4179SDavid Teigland 	int8_t			rl_status;
536e7fd4179SDavid Teigland 	int8_t			rl_asts;
537163a1859SAl Viro 	__le16			rl_wait_type;
538163a1859SAl Viro 	__le16			rl_namelen;
539e7fd4179SDavid Teigland 	char			rl_name[DLM_RESNAME_MAXLEN];
540a4e439a6SGustavo A. R. Silva 	char			rl_lvb[];
541e7fd4179SDavid Teigland };
542e7fd4179SDavid Teigland 
54305c32f47SDavid Teigland /*
54405c32f47SDavid Teigland  * The max number of resources per rsbtbl bucket that shrink will attempt
54505c32f47SDavid Teigland  * to remove in each iteration.
54605c32f47SDavid Teigland  */
54705c32f47SDavid Teigland 
54805c32f47SDavid Teigland #define DLM_REMOVE_NAMES_MAX 8
54905c32f47SDavid Teigland 
550e7fd4179SDavid Teigland struct dlm_ls {
551e7fd4179SDavid Teigland 	struct list_head	ls_list;	/* list of lockspaces */
552597d0caeSDavid Teigland 	dlm_lockspace_t		*ls_local_handle;
553e7fd4179SDavid Teigland 	uint32_t		ls_global_id;	/* global unique lockspace ID */
554757a4271SDavid Teigland 	uint32_t		ls_generation;
555e7fd4179SDavid Teigland 	uint32_t		ls_exflags;
556e7fd4179SDavid Teigland 	int			ls_lvblen;
5570f8e0d9aSDavid Teigland 	int			ls_count;	/* refcount of processes in
5580f8e0d9aSDavid Teigland 						   the dlm using this ls */
5590f8e0d9aSDavid Teigland 	int			ls_create_count; /* create/release refcount */
560e7fd4179SDavid Teigland 	unsigned long		ls_flags;	/* LSFL_ */
561c1dcf65fSDavid Teigland 	unsigned long		ls_scan_time;
562e7fd4179SDavid Teigland 	struct kobject		ls_kobj;
563e7fd4179SDavid Teigland 
5643d6aa675SDavid Teigland 	struct idr		ls_lkbidr;
5653d6aa675SDavid Teigland 	spinlock_t		ls_lkbidr_spin;
5663d6aa675SDavid Teigland 
567e7fd4179SDavid Teigland 	struct dlm_rsbtable	*ls_rsbtbl;
568e7fd4179SDavid Teigland 	uint32_t		ls_rsbtbl_size;
569e7fd4179SDavid Teigland 
57090135925SDavid Teigland 	struct mutex		ls_waiters_mutex;
571e7fd4179SDavid Teigland 	struct list_head	ls_waiters;	/* lkbs needing a reply */
572e7fd4179SDavid Teigland 
573ef0c2bb0SDavid Teigland 	struct mutex		ls_orphans_mutex;
574ef0c2bb0SDavid Teigland 	struct list_head	ls_orphans;
575ef0c2bb0SDavid Teigland 
5763ae1acf9SDavid Teigland 	struct mutex		ls_timeout_mutex;
5773ae1acf9SDavid Teigland 	struct list_head	ls_timeout;
5783ae1acf9SDavid Teigland 
5793881ac04SDavid Teigland 	spinlock_t		ls_new_rsb_spin;
5803881ac04SDavid Teigland 	int			ls_new_rsb_count;
5813881ac04SDavid Teigland 	struct list_head	ls_new_rsb;	/* new rsb structs */
5823881ac04SDavid Teigland 
58305c32f47SDavid Teigland 	spinlock_t		ls_remove_spin;
58405c32f47SDavid Teigland 	char			ls_remove_name[DLM_RESNAME_MAXLEN+1];
58505c32f47SDavid Teigland 	char			*ls_remove_names[DLM_REMOVE_NAMES_MAX];
58605c32f47SDavid Teigland 	int			ls_remove_len;
58705c32f47SDavid Teigland 	int			ls_remove_lens[DLM_REMOVE_NAMES_MAX];
58805c32f47SDavid Teigland 
589e7fd4179SDavid Teigland 	struct list_head	ls_nodes;	/* current nodes in ls */
590e7fd4179SDavid Teigland 	struct list_head	ls_nodes_gone;	/* dead node list, recovery */
591e7fd4179SDavid Teigland 	int			ls_num_nodes;	/* number of nodes in ls */
592e7fd4179SDavid Teigland 	int			ls_low_nodeid;
593e7fd4179SDavid Teigland 	int			ls_total_weight;
594e7fd4179SDavid Teigland 	int			*ls_node_array;
595e7fd4179SDavid Teigland 
596757a4271SDavid Teigland 	int			ls_slot;
597757a4271SDavid Teigland 	int			ls_num_slots;
598757a4271SDavid Teigland 	int			ls_slots_size;
599757a4271SDavid Teigland 	struct dlm_slot		*ls_slots;
600757a4271SDavid Teigland 
601e7fd4179SDavid Teigland 	struct dlm_rsb		ls_stub_rsb;	/* for returning errors */
602e7fd4179SDavid Teigland 	struct dlm_lkb		ls_stub_lkb;	/* for returning errors */
603e7fd4179SDavid Teigland 	struct dlm_message	ls_stub_ms;	/* for faking a reply */
604e7fd4179SDavid Teigland 
6055de6319bSDavid Teigland 	struct dentry		*ls_debug_rsb_dentry; /* debugfs */
6065de6319bSDavid Teigland 	struct dentry		*ls_debug_waiters_dentry; /* debugfs */
607ac90a255SDavid Teigland 	struct dentry		*ls_debug_locks_dentry; /* debugfs */
608d022509dSDavid Teigland 	struct dentry		*ls_debug_all_dentry; /* debugfs */
609c04fecb4SDavid Teigland 	struct dentry		*ls_debug_toss_dentry; /* debugfs */
610e7fd4179SDavid Teigland 
611e7fd4179SDavid Teigland 	wait_queue_head_t	ls_uevent_wait;	/* user part of join/leave */
612e7fd4179SDavid Teigland 	int			ls_uevent_result;
6138b0e7b2cSDavid Teigland 	struct completion	ls_members_done;
6148b0e7b2cSDavid Teigland 	int			ls_members_result;
615e7fd4179SDavid Teigland 
616597d0caeSDavid Teigland 	struct miscdevice       ls_device;
617597d0caeSDavid Teigland 
61823e8e1aaSDavid Teigland 	struct workqueue_struct	*ls_callback_wq;
61923e8e1aaSDavid Teigland 
620e7fd4179SDavid Teigland 	/* recovery related */
621e7fd4179SDavid Teigland 
62223e8e1aaSDavid Teigland 	struct mutex		ls_cb_mutex;
62323e8e1aaSDavid Teigland 	struct list_head	ls_cb_delay; /* save for queue_work later */
624e7fd4179SDavid Teigland 	struct timer_list	ls_timer;
625e7fd4179SDavid Teigland 	struct task_struct	*ls_recoverd_task;
62690135925SDavid Teigland 	struct mutex		ls_recoverd_active;
627e7fd4179SDavid Teigland 	spinlock_t		ls_recover_lock;
6283ae1acf9SDavid Teigland 	unsigned long		ls_recover_begin; /* jiffies timestamp */
629e7fd4179SDavid Teigland 	uint32_t		ls_recover_status; /* DLM_RS_ */
630e7fd4179SDavid Teigland 	uint64_t		ls_recover_seq;
631e7fd4179SDavid Teigland 	struct dlm_recover	*ls_recover_args;
632e7fd4179SDavid Teigland 	struct rw_semaphore	ls_in_recovery;	/* block local requests */
633c36258b5SDavid Teigland 	struct rw_semaphore	ls_recv_active;	/* block dlm_recv */
634e7fd4179SDavid Teigland 	struct list_head	ls_requestqueue;/* queue remote requests */
63590135925SDavid Teigland 	struct mutex		ls_requestqueue_mutex;
6364007685cSAl Viro 	struct dlm_rcom		*ls_recover_buf;
637faa0f267SDavid Teigland 	int			ls_recover_nodeid; /* for debugging */
638c04fecb4SDavid Teigland 	unsigned int		ls_recover_dir_sent_res; /* for log info */
639c04fecb4SDavid Teigland 	unsigned int		ls_recover_dir_sent_msg; /* for log info */
6404875647aSDavid Teigland 	unsigned int		ls_recover_locks_in; /* for log info */
6414a99c3d9SDavid Teigland 	uint64_t		ls_rcom_seq;
64298f176fbSDavid Teigland 	spinlock_t		ls_rcom_spin;
643e7fd4179SDavid Teigland 	struct list_head	ls_recover_list;
644e7fd4179SDavid Teigland 	spinlock_t		ls_recover_list_lock;
645e7fd4179SDavid Teigland 	int			ls_recover_list_count;
6461d7c484eSDavid Teigland 	struct idr		ls_recover_idr;
6471d7c484eSDavid Teigland 	spinlock_t		ls_recover_idr_lock;
648e7fd4179SDavid Teigland 	wait_queue_head_t	ls_wait_general;
649475f230cSDavid Teigland 	wait_queue_head_t	ls_recover_lock_wait;
650597d0caeSDavid Teigland 	struct mutex		ls_clear_proc_locks;
651e7fd4179SDavid Teigland 
652e7fd4179SDavid Teigland 	struct list_head	ls_root_list;	/* root resources */
653e7fd4179SDavid Teigland 	struct rw_semaphore	ls_root_sem;	/* protect root_list */
654e7fd4179SDavid Teigland 
65560f98d18SDavid Teigland 	const struct dlm_lockspace_ops *ls_ops;
65660f98d18SDavid Teigland 	void			*ls_ops_arg;
65760f98d18SDavid Teigland 
658e7fd4179SDavid Teigland 	int			ls_namelen;
659e7fd4179SDavid Teigland 	char			ls_name[1];
660e7fd4179SDavid Teigland };
661e7fd4179SDavid Teigland 
662475f230cSDavid Teigland /*
663475f230cSDavid Teigland  * LSFL_RECOVER_STOP - dlm_ls_stop() sets this to tell dlm recovery routines
664475f230cSDavid Teigland  * that they should abort what they're doing so new recovery can be started.
665475f230cSDavid Teigland  *
666475f230cSDavid Teigland  * LSFL_RECOVER_DOWN - dlm_ls_stop() sets this to tell dlm_recoverd that it
667475f230cSDavid Teigland  * should do down_write() on the in_recovery rw_semaphore. (doing down_write
668475f230cSDavid Teigland  * within dlm_ls_stop causes complaints about the lock acquired/released
669475f230cSDavid Teigland  * in different contexts.)
670475f230cSDavid Teigland  *
671475f230cSDavid Teigland  * LSFL_RECOVER_LOCK - dlm_recoverd holds the in_recovery rw_semaphore.
672475f230cSDavid Teigland  * It sets this after it is done with down_write() on the in_recovery
673475f230cSDavid Teigland  * rw_semaphore and clears it after it has released the rw_semaphore.
674475f230cSDavid Teigland  *
675475f230cSDavid Teigland  * LSFL_RECOVER_WORK - dlm_ls_start() sets this to tell dlm_recoverd that it
676475f230cSDavid Teigland  * should begin recovery of the lockspace.
677475f230cSDavid Teigland  *
678475f230cSDavid Teigland  * LSFL_RUNNING - set when normal locking activity is enabled.
679475f230cSDavid Teigland  * dlm_ls_stop() clears this to tell dlm locking routines that they should
680475f230cSDavid Teigland  * quit what they are doing so recovery can run.  dlm_recoverd sets
681475f230cSDavid Teigland  * this after recovery is finished.
682475f230cSDavid Teigland  */
683475f230cSDavid Teigland 
684475f230cSDavid Teigland #define LSFL_RECOVER_STOP	0
685475f230cSDavid Teigland #define LSFL_RECOVER_DOWN	1
686475f230cSDavid Teigland #define LSFL_RECOVER_LOCK	2
687475f230cSDavid Teigland #define LSFL_RECOVER_WORK	3
688475f230cSDavid Teigland #define LSFL_RUNNING		4
689475f230cSDavid Teigland 
690475f230cSDavid Teigland #define LSFL_RCOM_READY		5
691475f230cSDavid Teigland #define LSFL_RCOM_WAIT		6
692475f230cSDavid Teigland #define LSFL_UEVENT_WAIT	7
693475f230cSDavid Teigland #define LSFL_TIMEWARN		8
694475f230cSDavid Teigland #define LSFL_CB_DELAY		9
695475f230cSDavid Teigland #define LSFL_NODIR		10
696e7fd4179SDavid Teigland 
697597d0caeSDavid Teigland /* much of this is just saving user space pointers associated with the
698597d0caeSDavid Teigland    lock that we pass back to the user lib with an ast */
699597d0caeSDavid Teigland 
700597d0caeSDavid Teigland struct dlm_user_args {
701597d0caeSDavid Teigland 	struct dlm_user_proc	*proc; /* each process that opens the lockspace
702597d0caeSDavid Teigland 					  device has private data
703597d0caeSDavid Teigland 					  (dlm_user_proc) on the struct file,
704597d0caeSDavid Teigland 					  the process's locks point back to it*/
705597d0caeSDavid Teigland 	struct dlm_lksb		lksb;
706597d0caeSDavid Teigland 	struct dlm_lksb __user	*user_lksb;
707597d0caeSDavid Teigland 	void __user		*castparam;
708597d0caeSDavid Teigland 	void __user		*castaddr;
709597d0caeSDavid Teigland 	void __user		*bastparam;
710597d0caeSDavid Teigland 	void __user		*bastaddr;
711d7db923eSDavid Teigland 	uint64_t		xid;
712597d0caeSDavid Teigland };
713597d0caeSDavid Teigland 
714597d0caeSDavid Teigland #define DLM_PROC_FLAGS_CLOSING 1
715597d0caeSDavid Teigland #define DLM_PROC_FLAGS_COMPAT  2
716597d0caeSDavid Teigland 
717597d0caeSDavid Teigland /* locks list is kept so we can remove all a process's locks when it
718597d0caeSDavid Teigland    exits (or orphan those that are persistent) */
719597d0caeSDavid Teigland 
720597d0caeSDavid Teigland struct dlm_user_proc {
721597d0caeSDavid Teigland 	dlm_lockspace_t		*lockspace;
722597d0caeSDavid Teigland 	unsigned long		flags; /* DLM_PROC_FLAGS */
723597d0caeSDavid Teigland 	struct list_head	asts;
724597d0caeSDavid Teigland 	spinlock_t		asts_spin;
725597d0caeSDavid Teigland 	struct list_head	locks;
726597d0caeSDavid Teigland 	spinlock_t		locks_spin;
727a1bc86e6SDavid Teigland 	struct list_head	unlocking;
728597d0caeSDavid Teigland 	wait_queue_head_t	wait;
729597d0caeSDavid Teigland };
730597d0caeSDavid Teigland 
731e7fd4179SDavid Teigland static inline int dlm_locking_stopped(struct dlm_ls *ls)
732e7fd4179SDavid Teigland {
733e7fd4179SDavid Teigland 	return !test_bit(LSFL_RUNNING, &ls->ls_flags);
734e7fd4179SDavid Teigland }
735e7fd4179SDavid Teigland 
736e7fd4179SDavid Teigland static inline int dlm_recovery_stopped(struct dlm_ls *ls)
737e7fd4179SDavid Teigland {
738475f230cSDavid Teigland 	return test_bit(LSFL_RECOVER_STOP, &ls->ls_flags);
739e7fd4179SDavid Teigland }
740e7fd4179SDavid Teigland 
741e7fd4179SDavid Teigland static inline int dlm_no_directory(struct dlm_ls *ls)
742e7fd4179SDavid Teigland {
7434875647aSDavid Teigland 	return test_bit(LSFL_NODIR, &ls->ls_flags);
744e7fd4179SDavid Teigland }
745e7fd4179SDavid Teigland 
746e028398dSAdrian Bunk int dlm_netlink_init(void);
747e028398dSAdrian Bunk void dlm_netlink_exit(void);
748e028398dSAdrian Bunk void dlm_timeout_warn(struct dlm_lkb *lkb);
7492402211aSDavid Teigland int dlm_plock_init(void);
7502402211aSDavid Teigland void dlm_plock_exit(void);
751e028398dSAdrian Bunk 
752e028398dSAdrian Bunk #ifdef CONFIG_DLM_DEBUG
753a48f9721SGreg Kroah-Hartman void dlm_register_debugfs(void);
754e028398dSAdrian Bunk void dlm_unregister_debugfs(void);
755a48f9721SGreg Kroah-Hartman void dlm_create_debug_file(struct dlm_ls *ls);
756e028398dSAdrian Bunk void dlm_delete_debug_file(struct dlm_ls *ls);
7575b2f981fSAlexander Aring void *dlm_create_debug_comms_file(int nodeid, void *data);
7585b2f981fSAlexander Aring void dlm_delete_debug_comms_file(void *ctx);
759e028398dSAdrian Bunk #else
760a48f9721SGreg Kroah-Hartman static inline void dlm_register_debugfs(void) { }
761e028398dSAdrian Bunk static inline void dlm_unregister_debugfs(void) { }
762a48f9721SGreg Kroah-Hartman static inline void dlm_create_debug_file(struct dlm_ls *ls) { }
763e028398dSAdrian Bunk static inline void dlm_delete_debug_file(struct dlm_ls *ls) { }
7645b2f981fSAlexander Aring static inline void *dlm_create_debug_comms_file(int nodeid, void *data) { return NULL; }
7655b2f981fSAlexander Aring static inline void dlm_delete_debug_comms_file(void *ctx) { }
766e028398dSAdrian Bunk #endif
767e028398dSAdrian Bunk 
768e7fd4179SDavid Teigland #endif				/* __DLM_INTERNAL_DOT_H__ */
769e7fd4179SDavid Teigland 
770