1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Code which interfaces ocfs2 with fs/dlm and a userspace stack.
8 * Copyright (C) 2007 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation, version 2.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
20 #include <linux/module.h>
22 #include <linux/miscdevice.h>
23 #include <linux/mutex.h>
24 #include <linux/slab.h>
25 #include <linux/reboot.h>
26 #include <asm/uaccess.h>
28 #include "stackglue.h"
30 #include <linux/dlm_plock.h>
33 * The control protocol starts with a handshake. Until the handshake
34 * is complete, the control device will fail all write(2)s.
36 * The handshake is simple. First, the client reads until EOF. Each line
37 * of output is a supported protocol tag. All protocol tags are a single
38 * character followed by a two hex digit version number. Currently the
39 * only things supported is T01, for "Text-base version 0x01". Next, the
40 * client writes the version they would like to use, including the newline.
41 * Thus, the protocol tag is 'T01\n'. If the version tag written is
42 * unknown, -EINVAL is returned. Once the negotiation is complete, the
43 * client can start sending messages.
45 * The T01 protocol has three messages. First is the "SETN" message.
46 * It has the following syntax:
48 * SETN<space><8-char-hex-nodenum><newline>
50 * This is 14 characters.
52 * The "SETN" message must be the first message following the protocol.
53 * It tells ocfs2_control the local node number.
55 * Next comes the "SETV" message. It has the following syntax:
57 * SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
59 * This is 11 characters.
61 * The "SETV" message sets the filesystem locking protocol version as
62 * negotiated by the client. The client negotiates based on the maximum
63 * version advertised in /sys/fs/ocfs2/max_locking_protocol. The major
64 * number from the "SETV" message must match
65 * ocfs2_user_plugin.sp_max_proto.pv_major, and the minor number
66 * must be less than or equal to ...sp_max_version.pv_minor.
68 * Once this information has been set, mounts will be allowed. From this
69 * point on, the "DOWN" message can be sent for node down notification.
70 * It has the following syntax:
72 * DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline>
76 * DOWN 632A924FDD844190BDA93C0DF6B94899 00000001\n
78 * This is 47 characters.
82 * Whether or not the client has done the handshake.
83 * For now, we have just one protocol version.
85 #define OCFS2_CONTROL_PROTO "T01\n"
86 #define OCFS2_CONTROL_PROTO_LEN 4
88 /* Handshake states */
89 #define OCFS2_CONTROL_HANDSHAKE_INVALID (0)
90 #define OCFS2_CONTROL_HANDSHAKE_READ (1)
91 #define OCFS2_CONTROL_HANDSHAKE_PROTOCOL (2)
92 #define OCFS2_CONTROL_HANDSHAKE_VALID (3)
95 #define OCFS2_CONTROL_MESSAGE_OP_LEN 4
96 #define OCFS2_CONTROL_MESSAGE_SETNODE_OP "SETN"
97 #define OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN 14
98 #define OCFS2_CONTROL_MESSAGE_SETVERSION_OP "SETV"
99 #define OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN 11
100 #define OCFS2_CONTROL_MESSAGE_DOWN_OP "DOWN"
101 #define OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN 47
102 #define OCFS2_TEXT_UUID_LEN 32
103 #define OCFS2_CONTROL_MESSAGE_VERNUM_LEN 2
104 #define OCFS2_CONTROL_MESSAGE_NODENUM_LEN 8
107 * ocfs2_live_connection is refcounted because the filesystem and
108 * miscdevice sides can detach in different order. Let's just be safe.
110 struct ocfs2_live_connection
{
111 struct list_head oc_list
;
112 struct ocfs2_cluster_connection
*oc_conn
;
115 struct ocfs2_control_private
{
116 struct list_head op_list
;
119 struct ocfs2_protocol_version op_proto
;
122 /* SETN<space><8-char-hex-nodenum><newline> */
123 struct ocfs2_control_message_setn
{
124 char tag
[OCFS2_CONTROL_MESSAGE_OP_LEN
];
126 char nodestr
[OCFS2_CONTROL_MESSAGE_NODENUM_LEN
];
130 /* SETV<space><2-char-hex-major><space><2-char-hex-minor><newline> */
131 struct ocfs2_control_message_setv
{
132 char tag
[OCFS2_CONTROL_MESSAGE_OP_LEN
];
134 char major
[OCFS2_CONTROL_MESSAGE_VERNUM_LEN
];
136 char minor
[OCFS2_CONTROL_MESSAGE_VERNUM_LEN
];
140 /* DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline> */
141 struct ocfs2_control_message_down
{
142 char tag
[OCFS2_CONTROL_MESSAGE_OP_LEN
];
144 char uuid
[OCFS2_TEXT_UUID_LEN
];
146 char nodestr
[OCFS2_CONTROL_MESSAGE_NODENUM_LEN
];
150 union ocfs2_control_message
{
151 char tag
[OCFS2_CONTROL_MESSAGE_OP_LEN
];
152 struct ocfs2_control_message_setn u_setn
;
153 struct ocfs2_control_message_setv u_setv
;
154 struct ocfs2_control_message_down u_down
;
157 static struct ocfs2_stack_plugin ocfs2_user_plugin
;
159 static atomic_t ocfs2_control_opened
;
160 static int ocfs2_control_this_node
= -1;
161 static struct ocfs2_protocol_version running_proto
;
163 static LIST_HEAD(ocfs2_live_connection_list
);
164 static LIST_HEAD(ocfs2_control_private_list
);
165 static DEFINE_MUTEX(ocfs2_control_lock
);
167 static inline void ocfs2_control_set_handshake_state(struct file
*file
,
170 struct ocfs2_control_private
*p
= file
->private_data
;
174 static inline int ocfs2_control_get_handshake_state(struct file
*file
)
176 struct ocfs2_control_private
*p
= file
->private_data
;
180 static struct ocfs2_live_connection
*ocfs2_connection_find(const char *name
)
182 size_t len
= strlen(name
);
183 struct ocfs2_live_connection
*c
;
185 BUG_ON(!mutex_is_locked(&ocfs2_control_lock
));
187 list_for_each_entry(c
, &ocfs2_live_connection_list
, oc_list
) {
188 if ((c
->oc_conn
->cc_namelen
== len
) &&
189 !strncmp(c
->oc_conn
->cc_name
, name
, len
))
197 * ocfs2_live_connection structures are created underneath the ocfs2
198 * mount path. Since the VFS prevents multiple calls to
199 * fill_super(), we can't get dupes here.
201 static int ocfs2_live_connection_new(struct ocfs2_cluster_connection
*conn
,
202 struct ocfs2_live_connection
**c_ret
)
205 struct ocfs2_live_connection
*c
;
207 c
= kzalloc(sizeof(struct ocfs2_live_connection
), GFP_KERNEL
);
211 mutex_lock(&ocfs2_control_lock
);
214 if (atomic_read(&ocfs2_control_opened
))
215 list_add(&c
->oc_list
, &ocfs2_live_connection_list
);
218 "ocfs2: Userspace control daemon is not present\n");
222 mutex_unlock(&ocfs2_control_lock
);
233 * This function disconnects the cluster connection from ocfs2_control.
234 * Afterwards, userspace can't affect the cluster connection.
236 static void ocfs2_live_connection_drop(struct ocfs2_live_connection
*c
)
238 mutex_lock(&ocfs2_control_lock
);
239 list_del_init(&c
->oc_list
);
241 mutex_unlock(&ocfs2_control_lock
);
246 static int ocfs2_control_cfu(void *target
, size_t target_len
,
247 const char __user
*buf
, size_t count
)
249 /* The T01 expects write(2) calls to have exactly one command */
250 if ((count
!= target_len
) ||
251 (count
> sizeof(union ocfs2_control_message
)))
254 if (copy_from_user(target
, buf
, target_len
))
260 static ssize_t
ocfs2_control_validate_protocol(struct file
*file
,
261 const char __user
*buf
,
265 char kbuf
[OCFS2_CONTROL_PROTO_LEN
];
267 ret
= ocfs2_control_cfu(kbuf
, OCFS2_CONTROL_PROTO_LEN
,
272 if (strncmp(kbuf
, OCFS2_CONTROL_PROTO
, OCFS2_CONTROL_PROTO_LEN
))
275 ocfs2_control_set_handshake_state(file
,
276 OCFS2_CONTROL_HANDSHAKE_PROTOCOL
);
281 static void ocfs2_control_send_down(const char *uuid
,
284 struct ocfs2_live_connection
*c
;
286 mutex_lock(&ocfs2_control_lock
);
288 c
= ocfs2_connection_find(uuid
);
290 BUG_ON(c
->oc_conn
== NULL
);
291 c
->oc_conn
->cc_recovery_handler(nodenum
,
292 c
->oc_conn
->cc_recovery_data
);
295 mutex_unlock(&ocfs2_control_lock
);
299 * Called whenever configuration elements are sent to /dev/ocfs2_control.
300 * If all configuration elements are present, try to set the global
301 * values. If there is a problem, return an error. Skip any missing
302 * elements, and only bump ocfs2_control_opened when we have all elements
303 * and are successful.
305 static int ocfs2_control_install_private(struct file
*file
)
309 struct ocfs2_control_private
*p
= file
->private_data
;
311 BUG_ON(p
->op_state
!= OCFS2_CONTROL_HANDSHAKE_PROTOCOL
);
313 mutex_lock(&ocfs2_control_lock
);
315 if (p
->op_this_node
< 0) {
317 } else if ((ocfs2_control_this_node
>= 0) &&
318 (ocfs2_control_this_node
!= p
->op_this_node
)) {
323 if (!p
->op_proto
.pv_major
) {
325 } else if (!list_empty(&ocfs2_live_connection_list
) &&
326 ((running_proto
.pv_major
!= p
->op_proto
.pv_major
) ||
327 (running_proto
.pv_minor
!= p
->op_proto
.pv_minor
))) {
333 ocfs2_control_this_node
= p
->op_this_node
;
334 running_proto
.pv_major
= p
->op_proto
.pv_major
;
335 running_proto
.pv_minor
= p
->op_proto
.pv_minor
;
339 mutex_unlock(&ocfs2_control_lock
);
342 /* We set the global values successfully */
343 atomic_inc(&ocfs2_control_opened
);
344 ocfs2_control_set_handshake_state(file
,
345 OCFS2_CONTROL_HANDSHAKE_VALID
);
351 static int ocfs2_control_get_this_node(void)
355 mutex_lock(&ocfs2_control_lock
);
356 if (ocfs2_control_this_node
< 0)
359 rc
= ocfs2_control_this_node
;
360 mutex_unlock(&ocfs2_control_lock
);
365 static int ocfs2_control_do_setnode_msg(struct file
*file
,
366 struct ocfs2_control_message_setn
*msg
)
370 struct ocfs2_control_private
*p
= file
->private_data
;
372 if (ocfs2_control_get_handshake_state(file
) !=
373 OCFS2_CONTROL_HANDSHAKE_PROTOCOL
)
376 if (strncmp(msg
->tag
, OCFS2_CONTROL_MESSAGE_SETNODE_OP
,
377 OCFS2_CONTROL_MESSAGE_OP_LEN
))
380 if ((msg
->space
!= ' ') || (msg
->newline
!= '\n'))
382 msg
->space
= msg
->newline
= '\0';
384 nodenum
= simple_strtol(msg
->nodestr
, &ptr
, 16);
388 if ((nodenum
== LONG_MIN
) || (nodenum
== LONG_MAX
) ||
389 (nodenum
> INT_MAX
) || (nodenum
< 0))
391 p
->op_this_node
= nodenum
;
393 return ocfs2_control_install_private(file
);
396 static int ocfs2_control_do_setversion_msg(struct file
*file
,
397 struct ocfs2_control_message_setv
*msg
)
401 struct ocfs2_control_private
*p
= file
->private_data
;
402 struct ocfs2_protocol_version
*max
=
403 &ocfs2_user_plugin
.sp_max_proto
;
405 if (ocfs2_control_get_handshake_state(file
) !=
406 OCFS2_CONTROL_HANDSHAKE_PROTOCOL
)
409 if (strncmp(msg
->tag
, OCFS2_CONTROL_MESSAGE_SETVERSION_OP
,
410 OCFS2_CONTROL_MESSAGE_OP_LEN
))
413 if ((msg
->space1
!= ' ') || (msg
->space2
!= ' ') ||
414 (msg
->newline
!= '\n'))
416 msg
->space1
= msg
->space2
= msg
->newline
= '\0';
418 major
= simple_strtol(msg
->major
, &ptr
, 16);
421 minor
= simple_strtol(msg
->minor
, &ptr
, 16);
426 * The major must be between 1 and 255, inclusive. The minor
427 * must be between 0 and 255, inclusive. The version passed in
428 * must be within the maximum version supported by the filesystem.
430 if ((major
== LONG_MIN
) || (major
== LONG_MAX
) ||
431 (major
> (u8
)-1) || (major
< 1))
433 if ((minor
== LONG_MIN
) || (minor
== LONG_MAX
) ||
434 (minor
> (u8
)-1) || (minor
< 0))
436 if ((major
!= max
->pv_major
) ||
437 (minor
> max
->pv_minor
))
440 p
->op_proto
.pv_major
= major
;
441 p
->op_proto
.pv_minor
= minor
;
443 return ocfs2_control_install_private(file
);
446 static int ocfs2_control_do_down_msg(struct file
*file
,
447 struct ocfs2_control_message_down
*msg
)
452 if (ocfs2_control_get_handshake_state(file
) !=
453 OCFS2_CONTROL_HANDSHAKE_VALID
)
456 if (strncmp(msg
->tag
, OCFS2_CONTROL_MESSAGE_DOWN_OP
,
457 OCFS2_CONTROL_MESSAGE_OP_LEN
))
460 if ((msg
->space1
!= ' ') || (msg
->space2
!= ' ') ||
461 (msg
->newline
!= '\n'))
463 msg
->space1
= msg
->space2
= msg
->newline
= '\0';
465 nodenum
= simple_strtol(msg
->nodestr
, &p
, 16);
469 if ((nodenum
== LONG_MIN
) || (nodenum
== LONG_MAX
) ||
470 (nodenum
> INT_MAX
) || (nodenum
< 0))
473 ocfs2_control_send_down(msg
->uuid
, nodenum
);
478 static ssize_t
ocfs2_control_message(struct file
*file
,
479 const char __user
*buf
,
483 union ocfs2_control_message msg
;
485 /* Try to catch padding issues */
486 WARN_ON(offsetof(struct ocfs2_control_message_down
, uuid
) !=
487 (sizeof(msg
.u_down
.tag
) + sizeof(msg
.u_down
.space1
)));
489 memset(&msg
, 0, sizeof(union ocfs2_control_message
));
490 ret
= ocfs2_control_cfu(&msg
, count
, buf
, count
);
494 if ((count
== OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN
) &&
495 !strncmp(msg
.tag
, OCFS2_CONTROL_MESSAGE_SETNODE_OP
,
496 OCFS2_CONTROL_MESSAGE_OP_LEN
))
497 ret
= ocfs2_control_do_setnode_msg(file
, &msg
.u_setn
);
498 else if ((count
== OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN
) &&
499 !strncmp(msg
.tag
, OCFS2_CONTROL_MESSAGE_SETVERSION_OP
,
500 OCFS2_CONTROL_MESSAGE_OP_LEN
))
501 ret
= ocfs2_control_do_setversion_msg(file
, &msg
.u_setv
);
502 else if ((count
== OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN
) &&
503 !strncmp(msg
.tag
, OCFS2_CONTROL_MESSAGE_DOWN_OP
,
504 OCFS2_CONTROL_MESSAGE_OP_LEN
))
505 ret
= ocfs2_control_do_down_msg(file
, &msg
.u_down
);
510 return ret
? ret
: count
;
513 static ssize_t
ocfs2_control_write(struct file
*file
,
514 const char __user
*buf
,
520 switch (ocfs2_control_get_handshake_state(file
)) {
521 case OCFS2_CONTROL_HANDSHAKE_INVALID
:
525 case OCFS2_CONTROL_HANDSHAKE_READ
:
526 ret
= ocfs2_control_validate_protocol(file
, buf
,
530 case OCFS2_CONTROL_HANDSHAKE_PROTOCOL
:
531 case OCFS2_CONTROL_HANDSHAKE_VALID
:
532 ret
= ocfs2_control_message(file
, buf
, count
);
545 * This is a naive version. If we ever have a new protocol, we'll expand
546 * it. Probably using seq_file.
548 static ssize_t
ocfs2_control_read(struct file
*file
,
555 ret
= simple_read_from_buffer(buf
, count
, ppos
,
556 OCFS2_CONTROL_PROTO
, OCFS2_CONTROL_PROTO_LEN
);
558 /* Have we read the whole protocol list? */
559 if (ret
> 0 && *ppos
>= OCFS2_CONTROL_PROTO_LEN
)
560 ocfs2_control_set_handshake_state(file
,
561 OCFS2_CONTROL_HANDSHAKE_READ
);
566 static int ocfs2_control_release(struct inode
*inode
, struct file
*file
)
568 struct ocfs2_control_private
*p
= file
->private_data
;
570 mutex_lock(&ocfs2_control_lock
);
572 if (ocfs2_control_get_handshake_state(file
) !=
573 OCFS2_CONTROL_HANDSHAKE_VALID
)
576 if (atomic_dec_and_test(&ocfs2_control_opened
)) {
577 if (!list_empty(&ocfs2_live_connection_list
)) {
578 /* XXX: Do bad things! */
580 "ocfs2: Unexpected release of ocfs2_control!\n"
581 " Loss of cluster connection requires "
582 "an emergency restart!\n");
586 * Last valid close clears the node number and resets
587 * the locking protocol version
589 ocfs2_control_this_node
= -1;
590 running_proto
.pv_major
= 0;
591 running_proto
.pv_major
= 0;
595 list_del_init(&p
->op_list
);
596 file
->private_data
= NULL
;
598 mutex_unlock(&ocfs2_control_lock
);
605 static int ocfs2_control_open(struct inode
*inode
, struct file
*file
)
607 struct ocfs2_control_private
*p
;
609 p
= kzalloc(sizeof(struct ocfs2_control_private
), GFP_KERNEL
);
612 p
->op_this_node
= -1;
614 mutex_lock(&ocfs2_control_lock
);
615 file
->private_data
= p
;
616 list_add(&p
->op_list
, &ocfs2_control_private_list
);
617 mutex_unlock(&ocfs2_control_lock
);
622 static const struct file_operations ocfs2_control_fops
= {
623 .open
= ocfs2_control_open
,
624 .release
= ocfs2_control_release
,
625 .read
= ocfs2_control_read
,
626 .write
= ocfs2_control_write
,
627 .owner
= THIS_MODULE
,
628 .llseek
= default_llseek
,
631 static struct miscdevice ocfs2_control_device
= {
632 .minor
= MISC_DYNAMIC_MINOR
,
633 .name
= "ocfs2_control",
634 .fops
= &ocfs2_control_fops
,
637 static int ocfs2_control_init(void)
641 atomic_set(&ocfs2_control_opened
, 0);
643 rc
= misc_register(&ocfs2_control_device
);
646 "ocfs2: Unable to register ocfs2_control device "
653 static void ocfs2_control_exit(void)
657 rc
= misc_deregister(&ocfs2_control_device
);
660 "ocfs2: Unable to deregister ocfs2_control device "
665 static void fsdlm_lock_ast_wrapper(void *astarg
)
667 struct ocfs2_dlm_lksb
*lksb
= astarg
;
668 int status
= lksb
->lksb_fsdlm
.sb_status
;
671 * For now we're punting on the issue of other non-standard errors
672 * where we can't tell if the unlock_ast or lock_ast should be called.
673 * The main "other error" that's possible is EINVAL which means the
674 * function was called with invalid args, which shouldn't be possible
675 * since the caller here is under our control. Other non-standard
676 * errors probably fall into the same category, or otherwise are fatal
677 * which means we can't carry on anyway.
680 if (status
== -DLM_EUNLOCK
|| status
== -DLM_ECANCEL
)
681 lksb
->lksb_conn
->cc_proto
->lp_unlock_ast(lksb
, 0);
683 lksb
->lksb_conn
->cc_proto
->lp_lock_ast(lksb
);
686 static void fsdlm_blocking_ast_wrapper(void *astarg
, int level
)
688 struct ocfs2_dlm_lksb
*lksb
= astarg
;
690 lksb
->lksb_conn
->cc_proto
->lp_blocking_ast(lksb
, level
);
693 static int user_dlm_lock(struct ocfs2_cluster_connection
*conn
,
695 struct ocfs2_dlm_lksb
*lksb
,
698 unsigned int namelen
)
702 if (!lksb
->lksb_fsdlm
.sb_lvbptr
)
703 lksb
->lksb_fsdlm
.sb_lvbptr
= (char *)lksb
+
704 sizeof(struct dlm_lksb
);
706 ret
= dlm_lock(conn
->cc_lockspace
, mode
, &lksb
->lksb_fsdlm
,
707 flags
|DLM_LKF_NODLCKWT
, name
, namelen
, 0,
708 fsdlm_lock_ast_wrapper
, lksb
,
709 fsdlm_blocking_ast_wrapper
);
713 static int user_dlm_unlock(struct ocfs2_cluster_connection
*conn
,
714 struct ocfs2_dlm_lksb
*lksb
,
719 ret
= dlm_unlock(conn
->cc_lockspace
, lksb
->lksb_fsdlm
.sb_lkid
,
720 flags
, &lksb
->lksb_fsdlm
, lksb
);
724 static int user_dlm_lock_status(struct ocfs2_dlm_lksb
*lksb
)
726 return lksb
->lksb_fsdlm
.sb_status
;
729 static int user_dlm_lvb_valid(struct ocfs2_dlm_lksb
*lksb
)
731 int invalid
= lksb
->lksb_fsdlm
.sb_flags
& DLM_SBF_VALNOTVALID
;
736 static void *user_dlm_lvb(struct ocfs2_dlm_lksb
*lksb
)
738 if (!lksb
->lksb_fsdlm
.sb_lvbptr
)
739 lksb
->lksb_fsdlm
.sb_lvbptr
= (char *)lksb
+
740 sizeof(struct dlm_lksb
);
741 return (void *)(lksb
->lksb_fsdlm
.sb_lvbptr
);
744 static void user_dlm_dump_lksb(struct ocfs2_dlm_lksb
*lksb
)
748 static int user_plock(struct ocfs2_cluster_connection
*conn
,
752 struct file_lock
*fl
)
755 * This more or less just demuxes the plock request into any
756 * one of three dlm calls.
758 * Internally, fs/dlm will pass these to a misc device, which
759 * a userspace daemon will read and write to.
761 * For now, cancel requests (which happen internally only),
762 * are turned into unlocks. Most of this function taken from
766 if (cmd
== F_CANCELLK
) {
768 fl
->fl_type
= F_UNLCK
;
772 return dlm_posix_get(conn
->cc_lockspace
, ino
, file
, fl
);
773 else if (fl
->fl_type
== F_UNLCK
)
774 return dlm_posix_unlock(conn
->cc_lockspace
, ino
, file
, fl
);
776 return dlm_posix_lock(conn
->cc_lockspace
, ino
, file
, cmd
, fl
);
780 * Compare a requested locking protocol version against the current one.
782 * If the major numbers are different, they are incompatible.
783 * If the current minor is greater than the request, they are incompatible.
784 * If the current minor is less than or equal to the request, they are
785 * compatible, and the requester should run at the current minor version.
787 static int fs_protocol_compare(struct ocfs2_protocol_version
*existing
,
788 struct ocfs2_protocol_version
*request
)
790 if (existing
->pv_major
!= request
->pv_major
)
793 if (existing
->pv_minor
> request
->pv_minor
)
796 if (existing
->pv_minor
< request
->pv_minor
)
797 request
->pv_minor
= existing
->pv_minor
;
802 static int user_cluster_connect(struct ocfs2_cluster_connection
*conn
)
804 dlm_lockspace_t
*fsdlm
;
805 struct ocfs2_live_connection
*uninitialized_var(control
);
808 BUG_ON(conn
== NULL
);
810 rc
= ocfs2_live_connection_new(conn
, &control
);
815 * running_proto must have been set before we allowed any mounts
818 if (fs_protocol_compare(&running_proto
, &conn
->cc_version
)) {
820 "Unable to mount with fs locking protocol version "
821 "%u.%u because the userspace control daemon has "
822 "negotiated %u.%u\n",
823 conn
->cc_version
.pv_major
, conn
->cc_version
.pv_minor
,
824 running_proto
.pv_major
, running_proto
.pv_minor
);
826 ocfs2_live_connection_drop(control
);
830 rc
= dlm_new_lockspace(conn
->cc_name
, NULL
, DLM_LSFL_FS
, DLM_LVB_LEN
,
831 NULL
, NULL
, NULL
, &fsdlm
);
833 ocfs2_live_connection_drop(control
);
837 conn
->cc_private
= control
;
838 conn
->cc_lockspace
= fsdlm
;
843 static int user_cluster_disconnect(struct ocfs2_cluster_connection
*conn
)
845 dlm_release_lockspace(conn
->cc_lockspace
, 2);
846 conn
->cc_lockspace
= NULL
;
847 ocfs2_live_connection_drop(conn
->cc_private
);
848 conn
->cc_private
= NULL
;
852 static int user_cluster_this_node(unsigned int *this_node
)
856 rc
= ocfs2_control_get_this_node();
864 static struct ocfs2_stack_operations ocfs2_user_plugin_ops
= {
865 .connect
= user_cluster_connect
,
866 .disconnect
= user_cluster_disconnect
,
867 .this_node
= user_cluster_this_node
,
868 .dlm_lock
= user_dlm_lock
,
869 .dlm_unlock
= user_dlm_unlock
,
870 .lock_status
= user_dlm_lock_status
,
871 .lvb_valid
= user_dlm_lvb_valid
,
872 .lock_lvb
= user_dlm_lvb
,
874 .dump_lksb
= user_dlm_dump_lksb
,
877 static struct ocfs2_stack_plugin ocfs2_user_plugin
= {
879 .sp_ops
= &ocfs2_user_plugin_ops
,
880 .sp_owner
= THIS_MODULE
,
884 static int __init
ocfs2_user_plugin_init(void)
888 rc
= ocfs2_control_init();
890 rc
= ocfs2_stack_glue_register(&ocfs2_user_plugin
);
892 ocfs2_control_exit();
898 static void __exit
ocfs2_user_plugin_exit(void)
900 ocfs2_stack_glue_unregister(&ocfs2_user_plugin
);
901 ocfs2_control_exit();
904 MODULE_AUTHOR("Oracle");
905 MODULE_DESCRIPTION("ocfs2 driver for userspace cluster stacks");
906 MODULE_LICENSE("GPL");
907 module_init(ocfs2_user_plugin_init
);
908 module_exit(ocfs2_user_plugin_exit
);