1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Code which interfaces ocfs2 with the o2cb 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/kernel.h>
21 #include <linux/crc32.h>
22 #include <linux/module.h>
24 /* Needed for AOP_TRUNCATED_PAGE in mlog_errno() */
27 #include "cluster/masklog.h"
28 #include "cluster/nodemanager.h"
29 #include "cluster/heartbeat.h"
31 #include "stackglue.h"
33 struct o2dlm_private
{
34 struct dlm_eviction_cb op_eviction_cb
;
37 static struct ocfs2_stack_plugin o2cb_stack
;
39 /* These should be identical */
40 #if (DLM_LOCK_IV != LKM_IVMODE)
41 # error Lock modes do not match
43 #if (DLM_LOCK_NL != LKM_NLMODE)
44 # error Lock modes do not match
46 #if (DLM_LOCK_CR != LKM_CRMODE)
47 # error Lock modes do not match
49 #if (DLM_LOCK_CW != LKM_CWMODE)
50 # error Lock modes do not match
52 #if (DLM_LOCK_PR != LKM_PRMODE)
53 # error Lock modes do not match
55 #if (DLM_LOCK_PW != LKM_PWMODE)
56 # error Lock modes do not match
58 #if (DLM_LOCK_EX != LKM_EXMODE)
59 # error Lock modes do not match
61 static inline int mode_to_o2dlm(int mode
)
63 BUG_ON(mode
> LKM_MAXMODE
);
68 #define map_flag(_generic, _o2dlm) \
69 if (flags & (_generic)) { \
70 flags &= ~(_generic); \
71 o2dlm_flags |= (_o2dlm); \
73 static int flags_to_o2dlm(u32 flags
)
77 map_flag(DLM_LKF_NOQUEUE
, LKM_NOQUEUE
);
78 map_flag(DLM_LKF_CANCEL
, LKM_CANCEL
);
79 map_flag(DLM_LKF_CONVERT
, LKM_CONVERT
);
80 map_flag(DLM_LKF_VALBLK
, LKM_VALBLK
);
81 map_flag(DLM_LKF_IVVALBLK
, LKM_INVVALBLK
);
82 map_flag(DLM_LKF_ORPHAN
, LKM_ORPHAN
);
83 map_flag(DLM_LKF_FORCEUNLOCK
, LKM_FORCE
);
84 map_flag(DLM_LKF_TIMEOUT
, LKM_TIMEOUT
);
85 map_flag(DLM_LKF_LOCAL
, LKM_LOCAL
);
87 /* map_flag() should have cleared every flag passed in */
95 * Map an o2dlm status to standard errno values.
97 * o2dlm only uses a handful of these, and returns even fewer to the
98 * caller. Still, we try to assign sane values to each error.
100 * The following value pairs have special meanings to dlmglue, thus
101 * the right hand side needs to stay unique - never duplicate the
102 * mapping elsewhere in the table!
105 * DLM_NOTQUEUED: -EAGAIN
106 * DLM_CANCELGRANT: -EBUSY
107 * DLM_CANCEL: -DLM_ECANCEL
109 /* Keep in sync with dlmapi.h */
110 static int status_map
[] = {
111 [DLM_NORMAL
] = 0, /* Success */
112 [DLM_GRANTED
] = -EINVAL
,
113 [DLM_DENIED
] = -EACCES
,
114 [DLM_DENIED_NOLOCKS
] = -EACCES
,
115 [DLM_WORKING
] = -EACCES
,
116 [DLM_BLOCKED
] = -EINVAL
,
117 [DLM_BLOCKED_ORPHAN
] = -EINVAL
,
118 [DLM_DENIED_GRACE_PERIOD
] = -EACCES
,
119 [DLM_SYSERR
] = -ENOMEM
, /* It is what it is */
120 [DLM_NOSUPPORT
] = -EPROTO
,
121 [DLM_CANCELGRANT
] = -EBUSY
, /* Cancel after grant */
122 [DLM_IVLOCKID
] = -EINVAL
,
123 [DLM_SYNC
] = -EINVAL
,
124 [DLM_BADTYPE
] = -EINVAL
,
125 [DLM_BADRESOURCE
] = -EINVAL
,
126 [DLM_MAXHANDLES
] = -ENOMEM
,
127 [DLM_NOCLINFO
] = -EINVAL
,
128 [DLM_NOLOCKMGR
] = -EINVAL
,
129 [DLM_NOPURGED
] = -EINVAL
,
130 [DLM_BADARGS
] = -EINVAL
,
131 [DLM_VOID
] = -EINVAL
,
132 [DLM_NOTQUEUED
] = -EAGAIN
, /* Trylock failed */
133 [DLM_IVBUFLEN
] = -EINVAL
,
134 [DLM_CVTUNGRANT
] = -EPERM
,
135 [DLM_BADPARAM
] = -EINVAL
,
136 [DLM_VALNOTVALID
] = -EINVAL
,
137 [DLM_REJECTED
] = -EPERM
,
138 [DLM_ABORT
] = -EINVAL
,
139 [DLM_CANCEL
] = -DLM_ECANCEL
, /* Successful cancel */
140 [DLM_IVRESHANDLE
] = -EINVAL
,
141 [DLM_DEADLOCK
] = -EDEADLK
,
142 [DLM_DENIED_NOASTS
] = -EINVAL
,
143 [DLM_FORWARD
] = -EINVAL
,
144 [DLM_TIMEOUT
] = -ETIMEDOUT
,
145 [DLM_IVGROUPID
] = -EINVAL
,
146 [DLM_VERS_CONFLICT
] = -EOPNOTSUPP
,
147 [DLM_BAD_DEVICE_PATH
] = -ENOENT
,
148 [DLM_NO_DEVICE_PERMISSION
] = -EPERM
,
149 [DLM_NO_CONTROL_DEVICE
] = -ENOENT
,
150 [DLM_RECOVERING
] = -ENOTCONN
,
151 [DLM_MIGRATING
] = -ERESTART
,
152 [DLM_MAXSTATS
] = -EINVAL
,
155 static int dlm_status_to_errno(enum dlm_status status
)
157 BUG_ON(status
< 0 || status
>= ARRAY_SIZE(status_map
));
159 return status_map
[status
];
162 static void o2dlm_lock_ast_wrapper(void *astarg
)
164 struct ocfs2_dlm_lksb
*lksb
= astarg
;
166 lksb
->lksb_conn
->cc_proto
->lp_lock_ast(lksb
);
169 static void o2dlm_blocking_ast_wrapper(void *astarg
, int level
)
171 struct ocfs2_dlm_lksb
*lksb
= astarg
;
173 lksb
->lksb_conn
->cc_proto
->lp_blocking_ast(lksb
, level
);
176 static void o2dlm_unlock_ast_wrapper(void *astarg
, enum dlm_status status
)
178 struct ocfs2_dlm_lksb
*lksb
= astarg
;
179 int error
= dlm_status_to_errno(status
);
182 * In o2dlm, you can get both the lock_ast() for the lock being
183 * granted and the unlock_ast() for the CANCEL failing. A
184 * successful cancel sends DLM_NORMAL here. If the
185 * lock grant happened before the cancel arrived, you get
188 * There's no need for the double-ast. If we see DLM_CANCELGRANT,
189 * we just ignore it. We expect the lock_ast() to handle the
192 if (status
== DLM_CANCELGRANT
)
195 lksb
->lksb_conn
->cc_proto
->lp_unlock_ast(lksb
, error
);
198 static int o2cb_dlm_lock(struct ocfs2_cluster_connection
*conn
,
200 struct ocfs2_dlm_lksb
*lksb
,
203 unsigned int namelen
)
205 enum dlm_status status
;
206 int o2dlm_mode
= mode_to_o2dlm(mode
);
207 int o2dlm_flags
= flags_to_o2dlm(flags
);
210 status
= dlmlock(conn
->cc_lockspace
, o2dlm_mode
, &lksb
->lksb_o2dlm
,
211 o2dlm_flags
, name
, namelen
,
212 o2dlm_lock_ast_wrapper
, lksb
,
213 o2dlm_blocking_ast_wrapper
);
214 ret
= dlm_status_to_errno(status
);
218 static int o2cb_dlm_unlock(struct ocfs2_cluster_connection
*conn
,
219 struct ocfs2_dlm_lksb
*lksb
,
222 enum dlm_status status
;
223 int o2dlm_flags
= flags_to_o2dlm(flags
);
226 status
= dlmunlock(conn
->cc_lockspace
, &lksb
->lksb_o2dlm
,
227 o2dlm_flags
, o2dlm_unlock_ast_wrapper
, lksb
);
228 ret
= dlm_status_to_errno(status
);
232 static int o2cb_dlm_lock_status(struct ocfs2_dlm_lksb
*lksb
)
234 return dlm_status_to_errno(lksb
->lksb_o2dlm
.status
);
238 * o2dlm aways has a "valid" LVB. If the dlm loses track of the LVB
239 * contents, it will zero out the LVB. Thus the caller can always trust
242 static int o2cb_dlm_lvb_valid(struct ocfs2_dlm_lksb
*lksb
)
247 static void *o2cb_dlm_lvb(struct ocfs2_dlm_lksb
*lksb
)
249 return (void *)(lksb
->lksb_o2dlm
.lvb
);
252 static void o2cb_dump_lksb(struct ocfs2_dlm_lksb
*lksb
)
254 dlm_print_one_lock(lksb
->lksb_o2dlm
.lockid
);
258 * Called from the dlm when it's about to evict a node. This is how the
259 * classic stack signals node death.
261 static void o2dlm_eviction_cb(int node_num
, void *data
)
263 struct ocfs2_cluster_connection
*conn
= data
;
265 mlog(ML_NOTICE
, "o2dlm has evicted node %d from group %.*s\n",
266 node_num
, conn
->cc_namelen
, conn
->cc_name
);
268 conn
->cc_recovery_handler(node_num
, conn
->cc_recovery_data
);
271 static int o2cb_cluster_connect(struct ocfs2_cluster_connection
*conn
)
275 struct dlm_ctxt
*dlm
;
276 struct o2dlm_private
*priv
;
277 struct dlm_protocol_version fs_version
;
279 BUG_ON(conn
== NULL
);
280 BUG_ON(conn
->cc_proto
== NULL
);
282 /* for now we only have one cluster/node, make sure we see it
283 * in the heartbeat universe */
284 if (!o2hb_check_local_node_heartbeating()) {
289 priv
= kzalloc(sizeof(struct o2dlm_private
), GFP_KERNEL
);
295 /* This just fills the structure in. It is safe to pass conn. */
296 dlm_setup_eviction_cb(&priv
->op_eviction_cb
, o2dlm_eviction_cb
,
299 conn
->cc_private
= priv
;
301 /* used by the dlm code to make message headers unique, each
302 * node in this domain must agree on this. */
303 dlm_key
= crc32_le(0, conn
->cc_name
, conn
->cc_namelen
);
304 fs_version
.pv_major
= conn
->cc_version
.pv_major
;
305 fs_version
.pv_minor
= conn
->cc_version
.pv_minor
;
307 dlm
= dlm_register_domain(conn
->cc_name
, dlm_key
, &fs_version
);
314 conn
->cc_version
.pv_major
= fs_version
.pv_major
;
315 conn
->cc_version
.pv_minor
= fs_version
.pv_minor
;
316 conn
->cc_lockspace
= dlm
;
318 dlm_register_eviction_cb(dlm
, &priv
->op_eviction_cb
);
321 if (rc
&& conn
->cc_private
)
322 kfree(conn
->cc_private
);
328 static int o2cb_cluster_disconnect(struct ocfs2_cluster_connection
*conn
)
330 struct dlm_ctxt
*dlm
= conn
->cc_lockspace
;
331 struct o2dlm_private
*priv
= conn
->cc_private
;
333 dlm_unregister_eviction_cb(&priv
->op_eviction_cb
);
334 conn
->cc_private
= NULL
;
337 dlm_unregister_domain(dlm
);
338 conn
->cc_lockspace
= NULL
;
343 static int o2cb_cluster_this_node(unsigned int *node
)
347 node_num
= o2nm_this_node();
348 if (node_num
== O2NM_INVALID_NODE_NUM
)
351 if (node_num
>= O2NM_MAX_NODES
)
358 static struct ocfs2_stack_operations o2cb_stack_ops
= {
359 .connect
= o2cb_cluster_connect
,
360 .disconnect
= o2cb_cluster_disconnect
,
361 .this_node
= o2cb_cluster_this_node
,
362 .dlm_lock
= o2cb_dlm_lock
,
363 .dlm_unlock
= o2cb_dlm_unlock
,
364 .lock_status
= o2cb_dlm_lock_status
,
365 .lvb_valid
= o2cb_dlm_lvb_valid
,
366 .lock_lvb
= o2cb_dlm_lvb
,
367 .dump_lksb
= o2cb_dump_lksb
,
370 static struct ocfs2_stack_plugin o2cb_stack
= {
372 .sp_ops
= &o2cb_stack_ops
,
373 .sp_owner
= THIS_MODULE
,
376 static int __init
o2cb_stack_init(void)
378 return ocfs2_stack_glue_register(&o2cb_stack
);
381 static void __exit
o2cb_stack_exit(void)
383 ocfs2_stack_glue_unregister(&o2cb_stack
);
386 MODULE_AUTHOR("Oracle");
387 MODULE_DESCRIPTION("ocfs2 driver for the classic o2cb stack");
388 MODULE_LICENSE("GPL");
389 module_init(o2cb_stack_init
);
390 module_exit(o2cb_stack_exit
);