blob: 16f20cfd9197c9ea3e45adbc99271789ff64f45d [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
6**
7** This copyrighted material is made available to anyone wishing to use,
8** modify, copy, or redistribute it subject to the terms and conditions
9** of the GNU General Public License v.2.
10**
11*******************************************************************************
12******************************************************************************/
13
14#ifndef __DLM_INTERNAL_DOT_H__
15#define __DLM_INTERNAL_DOT_H__
16
17/*
18 * This is the main header file to be included in each DLM source file.
19 */
20
21#include <linux/module.h>
22#include <linux/slab.h>
23#include <linux/sched.h>
24#include <linux/types.h>
25#include <linux/ctype.h>
26#include <linux/spinlock.h>
27#include <linux/vmalloc.h>
28#include <linux/list.h>
29#include <linux/errno.h>
30#include <linux/random.h>
31#include <linux/delay.h>
32#include <linux/socket.h>
33#include <linux/kthread.h>
34#include <linux/kobject.h>
35#include <linux/kref.h>
36#include <linux/kernel.h>
37#include <linux/jhash.h>
David Teigland90135922006-01-20 08:47:07 +000038#include <linux/mutex.h>
David Teiglande7fd4172006-01-18 09:30:29 +000039#include <asm/semaphore.h>
40#include <asm/uaccess.h>
41
42#include <linux/dlm.h>
43
44#define DLM_LOCKSPACE_LEN 64
45
David Teiglande7fd4172006-01-18 09:30:29 +000046/* Size of the temp buffer midcomms allocates on the stack.
47 We try to make this large enough so most messages fit.
48 FIXME: should sctp make this unnecessary? */
49
50#define DLM_INBUF_LEN 148
51
52struct dlm_ls;
53struct dlm_lkb;
54struct dlm_rsb;
55struct dlm_member;
56struct dlm_lkbtable;
57struct dlm_rsbtable;
58struct dlm_dirtable;
59struct dlm_direntry;
60struct dlm_recover;
61struct dlm_header;
62struct dlm_message;
63struct dlm_rcom;
64struct dlm_mhandle;
65
66#define log_print(fmt, args...) \
67 printk(KERN_ERR "dlm: "fmt"\n" , ##args)
68#define log_error(ls, fmt, args...) \
69 printk(KERN_ERR "dlm: %s: " fmt "\n", (ls)->ls_name , ##args)
70
71#ifdef DLM_LOG_DEBUG
72#define log_debug(ls, fmt, args...) log_error(ls, fmt, ##args)
73#else
74#define log_debug(ls, fmt, args...)
75#endif
76
77#define DLM_ASSERT(x, do) \
78{ \
79 if (!(x)) \
80 { \
81 printk(KERN_ERR "\nDLM: Assertion failed on line %d of file %s\n" \
82 "DLM: assertion: \"%s\"\n" \
83 "DLM: time = %lu\n", \
84 __LINE__, __FILE__, #x, jiffies); \
85 {do} \
86 printk("\n"); \
87 BUG(); \
88 panic("DLM: Record message above and reboot.\n"); \
89 } \
90}
91
92
93struct dlm_direntry {
94 struct list_head list;
95 uint32_t master_nodeid;
96 uint16_t length;
97 char name[1];
98};
99
100struct dlm_dirtable {
101 struct list_head list;
102 rwlock_t lock;
103};
104
105struct dlm_rsbtable {
106 struct list_head list;
107 struct list_head toss;
108 rwlock_t lock;
109};
110
111struct dlm_lkbtable {
112 struct list_head list;
113 rwlock_t lock;
114 uint16_t counter;
115};
116
117/*
118 * Lockspace member (per node in a ls)
119 */
120
121struct dlm_member {
122 struct list_head list;
123 int nodeid;
124 int weight;
125};
126
127/*
128 * Save and manage recovery state for a lockspace.
129 */
130
131struct dlm_recover {
132 struct list_head list;
133 int *nodeids;
134 int node_count;
135 uint64_t seq;
136};
137
138/*
139 * Pass input args to second stage locking function.
140 */
141
142struct dlm_args {
143 uint32_t flags;
144 void *astaddr;
145 long astparam;
146 void *bastaddr;
147 int mode;
148 struct dlm_lksb *lksb;
149 struct dlm_range *range;
150};
151
152
153/*
154 * Lock block
155 *
156 * A lock can be one of three types:
157 *
158 * local copy lock is mastered locally
159 * (lkb_nodeid is zero and DLM_LKF_MSTCPY is not set)
160 * process copy lock is mastered on a remote node
161 * (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is not set)
162 * master copy master node's copy of a lock owned by remote node
163 * (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is set)
164 *
165 * lkb_exflags: a copy of the most recent flags arg provided to dlm_lock or
166 * dlm_unlock. The dlm does not modify these or use any private flags in
167 * this field; it only contains DLM_LKF_ flags from dlm.h. These flags
168 * are sent as-is to the remote master when the lock is remote.
169 *
170 * lkb_flags: internal dlm flags (DLM_IFL_ prefix) from dlm_internal.h.
171 * Some internal flags are shared between the master and process nodes;
172 * these shared flags are kept in the lower two bytes. One of these
173 * flags set on the master copy will be propagated to the process copy
174 * and v.v. Other internal flags are private to the master or process
175 * node (e.g. DLM_IFL_MSTCPY). These are kept in the high two bytes.
176 *
177 * lkb_sbflags: status block flags. These flags are copied directly into
178 * the caller's lksb.sb_flags prior to the dlm_lock/dlm_unlock completion
179 * ast. All defined in dlm.h with DLM_SBF_ prefix.
180 *
181 * lkb_status: the lock status indicates which rsb queue the lock is
182 * on, grant, convert, or wait. DLM_LKSTS_ WAITING/GRANTED/CONVERT
183 *
184 * lkb_wait_type: the dlm message type (DLM_MSG_ prefix) for which a
185 * reply is needed. Only set when the lkb is on the lockspace waiters
186 * list awaiting a reply from a remote node.
187 *
188 * lkb_nodeid: when the lkb is a local copy, nodeid is 0; when the lkb
189 * is a master copy, nodeid specifies the remote lock holder, when the
190 * lkb is a process copy, the nodeid specifies the lock master.
191 */
192
193/* lkb_ast_type */
194
195#define AST_COMP 1
196#define AST_BAST 2
197
198/* lkb_range[] */
199
200#define GR_RANGE_START 0
201#define GR_RANGE_END 1
202#define RQ_RANGE_START 2
203#define RQ_RANGE_END 3
204
205/* lkb_status */
206
207#define DLM_LKSTS_WAITING 1
208#define DLM_LKSTS_GRANTED 2
209#define DLM_LKSTS_CONVERT 3
210
211/* lkb_flags */
212
213#define DLM_IFL_MSTCPY 0x00010000
214#define DLM_IFL_RESEND 0x00020000
215#define DLM_IFL_RANGE 0x00000001
216
217struct dlm_lkb {
218 struct dlm_rsb *lkb_resource; /* the rsb */
219 struct kref lkb_ref;
220 int lkb_nodeid; /* copied from rsb */
221 int lkb_ownpid; /* pid of lock owner */
222 uint32_t lkb_id; /* our lock ID */
223 uint32_t lkb_remid; /* lock ID on remote partner */
224 uint32_t lkb_exflags; /* external flags from caller */
225 uint32_t lkb_sbflags; /* lksb flags */
226 uint32_t lkb_flags; /* internal flags */
227 uint32_t lkb_lvbseq; /* lvb sequence number */
228
229 int8_t lkb_status; /* granted, waiting, convert */
230 int8_t lkb_rqmode; /* requested lock mode */
231 int8_t lkb_grmode; /* granted lock mode */
232 int8_t lkb_bastmode; /* requested mode */
233 int8_t lkb_highbast; /* highest mode bast sent for */
234
235 int8_t lkb_wait_type; /* type of reply waiting for */
236 int8_t lkb_ast_type; /* type of ast queued for */
237
238 struct list_head lkb_idtbl_list; /* lockspace lkbtbl */
239 struct list_head lkb_statequeue; /* rsb g/c/w list */
240 struct list_head lkb_rsb_lookup; /* waiting for rsb lookup */
241 struct list_head lkb_wait_reply; /* waiting for remote reply */
242 struct list_head lkb_astqueue; /* need ast to be sent */
243
244 uint64_t *lkb_range; /* array of gr/rq ranges */
245 char *lkb_lvbptr;
246 struct dlm_lksb *lkb_lksb; /* caller's status block */
247 void *lkb_astaddr; /* caller's ast function */
248 void *lkb_bastaddr; /* caller's bast function */
249 long lkb_astparam; /* caller's ast arg */
250};
251
252
253struct dlm_rsb {
254 struct dlm_ls *res_ls; /* the lockspace */
255 struct kref res_ref;
David Teigland90135922006-01-20 08:47:07 +0000256 struct mutex res_mutex;
David Teiglande7fd4172006-01-18 09:30:29 +0000257 unsigned long res_flags;
258 int res_length; /* length of rsb name */
259 int res_nodeid;
260 uint32_t res_lvbseq;
261 uint32_t res_hash;
262 uint32_t res_bucket; /* rsbtbl */
263 unsigned long res_toss_time;
264 uint32_t res_first_lkid;
265 struct list_head res_lookup; /* lkbs waiting on first */
266 struct list_head res_hashchain; /* rsbtbl */
267 struct list_head res_grantqueue;
268 struct list_head res_convertqueue;
269 struct list_head res_waitqueue;
270
271 struct list_head res_root_list; /* used for recovery */
272 struct list_head res_recover_list; /* used for recovery */
273 int res_recover_locks_count;
274
275 char *res_lvbptr;
276 char res_name[1];
277};
278
279/* find_rsb() flags */
280
281#define R_MASTER 1 /* only return rsb if it's a master */
282#define R_CREATE 2 /* create/add rsb if not found */
283
284/* rsb_flags */
285
286enum rsb_flags {
287 RSB_MASTER_UNCERTAIN,
288 RSB_VALNOTVALID,
289 RSB_VALNOTVALID_PREV,
290 RSB_NEW_MASTER,
291 RSB_NEW_MASTER2,
292 RSB_RECOVER_CONVERT,
293};
294
295static inline void rsb_set_flag(struct dlm_rsb *r, enum rsb_flags flag)
296{
297 __set_bit(flag, &r->res_flags);
298}
299
300static inline void rsb_clear_flag(struct dlm_rsb *r, enum rsb_flags flag)
301{
302 __clear_bit(flag, &r->res_flags);
303}
304
305static inline int rsb_flag(struct dlm_rsb *r, enum rsb_flags flag)
306{
307 return test_bit(flag, &r->res_flags);
308}
309
310
311/* dlm_header is first element of all structs sent between nodes */
312
313#define DLM_HEADER_MAJOR 0x00020000
314#define DLM_HEADER_MINOR 0x00000001
315
316#define DLM_MSG 1
317#define DLM_RCOM 2
318
319struct dlm_header {
320 uint32_t h_version;
321 uint32_t h_lockspace;
322 uint32_t h_nodeid; /* nodeid of sender */
323 uint16_t h_length;
324 uint8_t h_cmd; /* DLM_MSG, DLM_RCOM */
325 uint8_t h_pad;
326};
327
328
329#define DLM_MSG_REQUEST 1
330#define DLM_MSG_CONVERT 2
331#define DLM_MSG_UNLOCK 3
332#define DLM_MSG_CANCEL 4
333#define DLM_MSG_REQUEST_REPLY 5
334#define DLM_MSG_CONVERT_REPLY 6
335#define DLM_MSG_UNLOCK_REPLY 7
336#define DLM_MSG_CANCEL_REPLY 8
337#define DLM_MSG_GRANT 9
338#define DLM_MSG_BAST 10
339#define DLM_MSG_LOOKUP 11
340#define DLM_MSG_REMOVE 12
341#define DLM_MSG_LOOKUP_REPLY 13
342
343struct dlm_message {
344 struct dlm_header m_header;
345 uint32_t m_type; /* DLM_MSG_ */
346 uint32_t m_nodeid;
347 uint32_t m_pid;
348 uint32_t m_lkid; /* lkid on sender */
349 uint32_t m_remid; /* lkid on receiver */
350 uint32_t m_parent_lkid;
351 uint32_t m_parent_remid;
352 uint32_t m_exflags;
353 uint32_t m_sbflags;
354 uint32_t m_flags;
355 uint32_t m_lvbseq;
356 uint32_t m_hash;
357 int m_status;
358 int m_grmode;
359 int m_rqmode;
360 int m_bastmode;
361 int m_asts;
362 int m_result; /* 0 or -EXXX */
363 uint64_t m_range[2];
364 char m_extra[0]; /* name or lvb */
365};
366
367
368#define DLM_RS_NODES 0x00000001
369#define DLM_RS_NODES_ALL 0x00000002
370#define DLM_RS_DIR 0x00000004
371#define DLM_RS_DIR_ALL 0x00000008
372#define DLM_RS_LOCKS 0x00000010
373#define DLM_RS_LOCKS_ALL 0x00000020
374#define DLM_RS_DONE 0x00000040
375#define DLM_RS_DONE_ALL 0x00000080
376
377#define DLM_RCOM_STATUS 1
378#define DLM_RCOM_NAMES 2
379#define DLM_RCOM_LOOKUP 3
380#define DLM_RCOM_LOCK 4
381#define DLM_RCOM_STATUS_REPLY 5
382#define DLM_RCOM_NAMES_REPLY 6
383#define DLM_RCOM_LOOKUP_REPLY 7
384#define DLM_RCOM_LOCK_REPLY 8
385
386struct dlm_rcom {
387 struct dlm_header rc_header;
388 uint32_t rc_type; /* DLM_RCOM_ */
389 int rc_result; /* multi-purpose */
390 uint64_t rc_id; /* match reply with request */
391 char rc_buf[0];
392};
393
394struct rcom_config {
395 uint32_t rf_lvblen;
396 uint32_t rf_lsflags;
397 uint64_t rf_unused;
398};
399
400struct rcom_lock {
401 uint32_t rl_ownpid;
402 uint32_t rl_lkid;
403 uint32_t rl_remid;
404 uint32_t rl_parent_lkid;
405 uint32_t rl_parent_remid;
406 uint32_t rl_exflags;
407 uint32_t rl_flags;
408 uint32_t rl_lvbseq;
409 int rl_result;
410 int8_t rl_rqmode;
411 int8_t rl_grmode;
412 int8_t rl_status;
413 int8_t rl_asts;
414 uint16_t rl_wait_type;
415 uint16_t rl_namelen;
416 uint64_t rl_range[4];
417 char rl_name[DLM_RESNAME_MAXLEN];
418 char rl_lvb[0];
419};
420
421struct dlm_ls {
422 struct list_head ls_list; /* list of lockspaces */
423 uint32_t ls_global_id; /* global unique lockspace ID */
424 uint32_t ls_exflags;
425 int ls_lvblen;
426 int ls_count; /* reference count */
427 unsigned long ls_flags; /* LSFL_ */
428 struct kobject ls_kobj;
429
430 struct dlm_rsbtable *ls_rsbtbl;
431 uint32_t ls_rsbtbl_size;
432
433 struct dlm_lkbtable *ls_lkbtbl;
434 uint32_t ls_lkbtbl_size;
435
436 struct dlm_dirtable *ls_dirtbl;
437 uint32_t ls_dirtbl_size;
438
David Teigland90135922006-01-20 08:47:07 +0000439 struct mutex ls_waiters_mutex;
David Teiglande7fd4172006-01-18 09:30:29 +0000440 struct list_head ls_waiters; /* lkbs needing a reply */
441
442 struct list_head ls_nodes; /* current nodes in ls */
443 struct list_head ls_nodes_gone; /* dead node list, recovery */
444 int ls_num_nodes; /* number of nodes in ls */
445 int ls_low_nodeid;
446 int ls_total_weight;
447 int *ls_node_array;
448
449 struct dlm_rsb ls_stub_rsb; /* for returning errors */
450 struct dlm_lkb ls_stub_lkb; /* for returning errors */
451 struct dlm_message ls_stub_ms; /* for faking a reply */
452
453 struct dentry *ls_debug_dentry; /* debugfs */
454
455 wait_queue_head_t ls_uevent_wait; /* user part of join/leave */
456 int ls_uevent_result;
457
458 /* recovery related */
459
460 struct timer_list ls_timer;
461 struct task_struct *ls_recoverd_task;
David Teigland90135922006-01-20 08:47:07 +0000462 struct mutex ls_recoverd_active;
David Teiglande7fd4172006-01-18 09:30:29 +0000463 spinlock_t ls_recover_lock;
464 uint32_t ls_recover_status; /* DLM_RS_ */
465 uint64_t ls_recover_seq;
466 struct dlm_recover *ls_recover_args;
467 struct rw_semaphore ls_in_recovery; /* block local requests */
468 struct list_head ls_requestqueue;/* queue remote requests */
David Teigland90135922006-01-20 08:47:07 +0000469 struct mutex ls_requestqueue_mutex;
David Teiglande7fd4172006-01-18 09:30:29 +0000470 char *ls_recover_buf;
471 struct list_head ls_recover_list;
472 spinlock_t ls_recover_list_lock;
473 int ls_recover_list_count;
474 wait_queue_head_t ls_wait_general;
475
476 struct list_head ls_root_list; /* root resources */
477 struct rw_semaphore ls_root_sem; /* protect root_list */
478
479 int ls_namelen;
480 char ls_name[1];
481};
482
483#define LSFL_WORK 0
484#define LSFL_RUNNING 1
485#define LSFL_RECOVERY_STOP 2
486#define LSFL_RCOM_READY 3
487#define LSFL_UEVENT_WAIT 4
488
489static inline int dlm_locking_stopped(struct dlm_ls *ls)
490{
491 return !test_bit(LSFL_RUNNING, &ls->ls_flags);
492}
493
494static inline int dlm_recovery_stopped(struct dlm_ls *ls)
495{
496 return test_bit(LSFL_RECOVERY_STOP, &ls->ls_flags);
497}
498
499static inline int dlm_no_directory(struct dlm_ls *ls)
500{
501 return (ls->ls_exflags & DLM_LSFL_NODIR) ? 1 : 0;
502}
503
504#endif /* __DLM_INTERNAL_DOT_H__ */
505