blob: 6d90f4192c146ae0b7c76eb0225d7f35abd8adbe [file] [log] [blame]
Joel Becker24ef1812008-01-29 17:37:32 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * stackglue.h
5 *
6 * Glue to the underlying cluster stack.
7 *
8 * Copyright (C) 2007 Oracle. All rights reserved.
9 *
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.
13 *
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.
18 */
19
20
21#ifndef STACKGLUE_H
22#define STACKGLUE_H
23
Joel Beckerbd3e7612008-02-01 12:14:57 -080024#include <linux/types.h>
25#include <linux/list.h>
26#include <linux/dlmconstants.h>
27
Joel Beckere3dad422008-02-01 15:02:36 -080028#include "dlm/dlmapi.h"
David Teiglandcf4d8d72008-02-20 14:29:27 -080029#include <linux/dlm.h>
Joel Beckere3dad422008-02-01 15:02:36 -080030
Mark Fasheh53da4932008-07-21 14:29:16 -070031/* Needed for plock-related prototypes */
32struct file;
33struct file_lock;
34
Joel Beckerbd3e7612008-02-01 12:14:57 -080035/*
36 * dlmconstants.h does not have a LOCAL flag. We hope to remove it
37 * some day, but right now we need it. Let's fake it. This value is larger
38 * than any flag in dlmconstants.h.
39 */
40#define DLM_LKF_LOCAL 0x00100000
41
Joel Becker4670c462008-02-01 14:39:35 -080042/*
43 * This shadows DLM_LOCKSPACE_LEN in fs/dlm/dlm_internal.h. That probably
44 * wants to be in a public header.
45 */
46#define GROUP_NAME_MAX 64
47
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -080048/* This shadows OCFS2_CLUSTER_NAME_LEN */
49#define CLUSTER_NAME_MAX 16
50
Joel Becker4670c462008-02-01 14:39:35 -080051
Joel Beckere3dad422008-02-01 15:02:36 -080052/*
53 * ocfs2_protocol_version changes when ocfs2 does something different in
54 * its inter-node behavior. See dlmglue.c for more information.
55 */
Joel Becker4670c462008-02-01 14:39:35 -080056struct ocfs2_protocol_version {
57 u8 pv_major;
58 u8 pv_minor;
59};
60
Joel Beckere3dad422008-02-01 15:02:36 -080061/*
David Teiglandcf4d8d72008-02-20 14:29:27 -080062 * The dlm_lockstatus struct includes lvb space, but the dlm_lksb struct only
63 * has a pointer to separately allocated lvb space. This struct exists only to
64 * include in the lksb union to make space for a combined dlm_lksb and lvb.
65 */
66struct fsdlm_lksb_plus_lvb {
67 struct dlm_lksb lksb;
68 char lvb[DLM_LVB_LEN];
69};
70
Joel Beckere3dad422008-02-01 15:02:36 -080071/*
72 * A union of all lock status structures. We define it here so that the
73 * size of the union is known. Lock status structures are embedded in
74 * ocfs2 inodes.
75 */
Joel Beckerc0e41332010-01-29 14:46:44 -080076struct ocfs2_cluster_connection;
77struct ocfs2_dlm_lksb {
78 union {
79 struct dlm_lockstatus lksb_o2dlm;
80 struct dlm_lksb lksb_fsdlm;
81 struct fsdlm_lksb_plus_lvb padding;
82 };
83 struct ocfs2_cluster_connection *lksb_conn;
Joel Becker8f2c9c12008-02-01 12:16:57 -080084};
85
Joel Beckere3dad422008-02-01 15:02:36 -080086/*
Joel Beckera796d282010-01-28 19:22:39 -080087 * The ocfs2_locking_protocol defines the handlers called on ocfs2's behalf.
88 */
89struct ocfs2_locking_protocol {
90 struct ocfs2_protocol_version lp_max_version;
Joel Beckerc0e41332010-01-29 14:46:44 -080091 void (*lp_lock_ast)(struct ocfs2_dlm_lksb *lksb);
92 void (*lp_blocking_ast)(struct ocfs2_dlm_lksb *lksb, int level);
93 void (*lp_unlock_ast)(struct ocfs2_dlm_lksb *lksb, int error);
Joel Beckera796d282010-01-28 19:22:39 -080094};
95
96
97/*
Joel Beckere3dad422008-02-01 15:02:36 -080098 * A cluster connection. Mostly opaque to ocfs2, the connection holds
99 * state for the underlying stack. ocfs2 does use cc_version to determine
100 * locking compatibility.
101 */
Joel Becker4670c462008-02-01 14:39:35 -0800102struct ocfs2_cluster_connection {
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -0800103 char cc_name[GROUP_NAME_MAX + 1];
Joel Becker4670c462008-02-01 14:39:35 -0800104 int cc_namelen;
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -0800105 char cc_cluster_name[CLUSTER_NAME_MAX + 1];
106 int cc_cluster_name_len;
Joel Becker4670c462008-02-01 14:39:35 -0800107 struct ocfs2_protocol_version cc_version;
Joel Becker110946c2010-01-29 15:46:23 -0800108 struct ocfs2_locking_protocol *cc_proto;
Joel Becker4670c462008-02-01 14:39:35 -0800109 void (*cc_recovery_handler)(int node_num, void *recovery_data);
110 void *cc_recovery_data;
111 void *cc_lockspace;
112 void *cc_private;
113};
114
Joel Beckere3dad422008-02-01 15:02:36 -0800115/*
116 * Each cluster stack implements the stack operations structure. Not used
117 * in the ocfs2 code, the stackglue code translates generic cluster calls
118 * into stack operations.
119 */
120struct ocfs2_stack_operations {
121 /*
122 * The fs code calls ocfs2_cluster_connect() to attach a new
123 * filesystem to the cluster stack. The ->connect() op is passed
124 * an ocfs2_cluster_connection with the name and recovery field
125 * filled in.
126 *
127 * The stack must set up any notification mechanisms and create
128 * the filesystem lockspace in the DLM. The lockspace should be
129 * stored on cc_lockspace. Any other information can be stored on
130 * cc_private.
131 *
132 * ->connect() must not return until it is guaranteed that
133 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300134 * - Node down notifications for the filesystem will be received
Joel Beckere3dad422008-02-01 15:02:36 -0800135 * and passed to conn->cc_recovery_handler().
136 * - Locking requests for the filesystem will be processed.
137 */
138 int (*connect)(struct ocfs2_cluster_connection *conn);
139
140 /*
141 * The fs code calls ocfs2_cluster_disconnect() when a filesystem
142 * no longer needs cluster services. All DLM locks have been
143 * dropped, and recovery notification is being ignored by the
144 * fs code. The stack must disengage from the DLM and discontinue
145 * recovery notification.
146 *
147 * Once ->disconnect() has returned, the connection structure will
148 * be freed. Thus, a stack must not return from ->disconnect()
149 * until it will no longer reference the conn pointer.
Joel Becker286eaa92008-02-01 15:03:57 -0800150 *
Joel Becker2c394502008-05-30 15:58:26 -0700151 * Once this call returns, the stack glue will be dropping this
152 * connection's reference on the module.
Joel Beckere3dad422008-02-01 15:02:36 -0800153 */
Joel Becker2c394502008-05-30 15:58:26 -0700154 int (*disconnect)(struct ocfs2_cluster_connection *conn);
Joel Beckere3dad422008-02-01 15:02:36 -0800155
156 /*
157 * ->this_node() returns the cluster's unique identifier for the
158 * local node.
159 */
160 int (*this_node)(unsigned int *node);
161
162 /*
163 * Call the underlying dlm lock function. The ->dlm_lock()
164 * callback should convert the flags and mode as appropriate.
165 *
166 * ast and bast functions are not part of the call because the
167 * stack will likely want to wrap ast and bast calls before passing
Joel Beckera796d282010-01-28 19:22:39 -0800168 * them to stack->sp_proto. There is no astarg. The lksb will
169 * be passed back to the ast and bast functions. The caller can
170 * use this to find their object.
Joel Beckere3dad422008-02-01 15:02:36 -0800171 */
172 int (*dlm_lock)(struct ocfs2_cluster_connection *conn,
173 int mode,
Joel Beckerc0e41332010-01-29 14:46:44 -0800174 struct ocfs2_dlm_lksb *lksb,
Joel Beckere3dad422008-02-01 15:02:36 -0800175 u32 flags,
176 void *name,
Joel Beckera796d282010-01-28 19:22:39 -0800177 unsigned int namelen);
Joel Beckere3dad422008-02-01 15:02:36 -0800178
179 /*
180 * Call the underlying dlm unlock function. The ->dlm_unlock()
181 * function should convert the flags as appropriate.
182 *
183 * The unlock ast is not passed, as the stack will want to wrap
Joel Beckera796d282010-01-28 19:22:39 -0800184 * it before calling stack->sp_proto->lp_unlock_ast(). There is
185 * no astarg. The lksb will be passed back to the unlock ast
186 * function. The caller can use this to find their object.
Joel Beckere3dad422008-02-01 15:02:36 -0800187 */
188 int (*dlm_unlock)(struct ocfs2_cluster_connection *conn,
Joel Beckerc0e41332010-01-29 14:46:44 -0800189 struct ocfs2_dlm_lksb *lksb,
Joel Beckera796d282010-01-28 19:22:39 -0800190 u32 flags);
Joel Beckere3dad422008-02-01 15:02:36 -0800191
192 /*
193 * Return the status of the current lock status block. The fs
194 * code should never dereference the union. The ->lock_status()
195 * callback pulls out the stack-specific lksb, converts the status
196 * to a proper errno, and returns it.
197 */
Joel Beckerc0e41332010-01-29 14:46:44 -0800198 int (*lock_status)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800199
200 /*
Joel Becker1c520df2009-06-19 15:14:13 -0700201 * Return non-zero if the LVB is valid.
202 */
Joel Beckerc0e41332010-01-29 14:46:44 -0800203 int (*lvb_valid)(struct ocfs2_dlm_lksb *lksb);
Joel Becker1c520df2009-06-19 15:14:13 -0700204
205 /*
Joel Beckere3dad422008-02-01 15:02:36 -0800206 * Pull the lvb pointer off of the stack-specific lksb.
207 */
Joel Beckerc0e41332010-01-29 14:46:44 -0800208 void *(*lock_lvb)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800209
210 /*
Mark Fasheh53da4932008-07-21 14:29:16 -0700211 * Cluster-aware posix locks
212 *
213 * This is NULL for stacks which do not support posix locks.
214 */
215 int (*plock)(struct ocfs2_cluster_connection *conn,
216 u64 ino,
217 struct file *file,
218 int cmd,
219 struct file_lock *fl);
220
221 /*
Joel Beckere3dad422008-02-01 15:02:36 -0800222 * This is an optoinal debugging hook. If provided, the
223 * stack can dump debugging information about this lock.
224 */
Joel Beckerc0e41332010-01-29 14:46:44 -0800225 void (*dump_lksb)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800226};
227
Joel Becker286eaa92008-02-01 15:03:57 -0800228/*
229 * Each stack plugin must describe itself by registering a
230 * ocfs2_stack_plugin structure. This is only seen by stackglue and the
231 * stack driver.
232 */
233struct ocfs2_stack_plugin {
234 char *sp_name;
235 struct ocfs2_stack_operations *sp_ops;
236 struct module *sp_owner;
237
238 /* These are managed by the stackglue code. */
239 struct list_head sp_list;
240 unsigned int sp_count;
Joel Beckere603cfb2010-01-29 16:06:29 -0800241 struct ocfs2_protocol_version sp_max_proto;
Joel Becker286eaa92008-02-01 15:03:57 -0800242};
243
244
245/* Used by the filesystem */
Joel Becker9c6c8772008-02-01 15:17:30 -0800246int ocfs2_cluster_connect(const char *stack_name,
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -0800247 const char *cluster_name,
248 int cluster_name_len,
Joel Becker9c6c8772008-02-01 15:17:30 -0800249 const char *group,
Joel Becker4670c462008-02-01 14:39:35 -0800250 int grouplen,
Joel Becker553b5eb2010-01-29 17:19:06 -0800251 struct ocfs2_locking_protocol *lproto,
Joel Becker4670c462008-02-01 14:39:35 -0800252 void (*recovery_handler)(int node_num,
253 void *recovery_data),
254 void *recovery_data,
255 struct ocfs2_cluster_connection **conn);
Joel Beckercbe0e332010-01-30 06:02:10 -0800256/*
257 * Used by callers that don't store their stack name. They must ensure
258 * all nodes have the same stack.
259 */
260int ocfs2_cluster_connect_agnostic(const char *group,
261 int grouplen,
262 struct ocfs2_locking_protocol *lproto,
263 void (*recovery_handler)(int node_num,
264 void *recovery_data),
265 void *recovery_data,
266 struct ocfs2_cluster_connection **conn);
Joel Becker286eaa92008-02-01 15:03:57 -0800267int ocfs2_cluster_disconnect(struct ocfs2_cluster_connection *conn,
268 int hangup_pending);
Joel Becker6953b4c2008-01-29 16:59:56 -0800269void ocfs2_cluster_hangup(const char *group, int grouplen);
Joel Becker19fdb622008-01-30 15:38:24 -0800270int ocfs2_cluster_this_node(unsigned int *node);
Joel Becker4670c462008-02-01 14:39:35 -0800271
David Teiglandcf4d8d72008-02-20 14:29:27 -0800272struct ocfs2_lock_res;
Joel Becker4670c462008-02-01 14:39:35 -0800273int ocfs2_dlm_lock(struct ocfs2_cluster_connection *conn,
Joel Becker24ef1812008-01-29 17:37:32 -0800274 int mode,
Joel Beckerc0e41332010-01-29 14:46:44 -0800275 struct ocfs2_dlm_lksb *lksb,
Joel Becker24ef1812008-01-29 17:37:32 -0800276 u32 flags,
277 void *name,
Joel Beckera796d282010-01-28 19:22:39 -0800278 unsigned int namelen);
Joel Becker4670c462008-02-01 14:39:35 -0800279int ocfs2_dlm_unlock(struct ocfs2_cluster_connection *conn,
Joel Beckerc0e41332010-01-29 14:46:44 -0800280 struct ocfs2_dlm_lksb *lksb,
Joel Beckera796d282010-01-28 19:22:39 -0800281 u32 flags);
Joel Becker24ef1812008-01-29 17:37:32 -0800282
Joel Beckerc0e41332010-01-29 14:46:44 -0800283int ocfs2_dlm_lock_status(struct ocfs2_dlm_lksb *lksb);
284int ocfs2_dlm_lvb_valid(struct ocfs2_dlm_lksb *lksb);
285void *ocfs2_dlm_lvb(struct ocfs2_dlm_lksb *lksb);
286void ocfs2_dlm_dump_lksb(struct ocfs2_dlm_lksb *lksb);
Joel Becker8f2c9c12008-02-01 12:16:57 -0800287
Mark Fasheh53da4932008-07-21 14:29:16 -0700288int ocfs2_stack_supports_plocks(void);
289int ocfs2_plock(struct ocfs2_cluster_connection *conn, u64 ino,
290 struct file *file, int cmd, struct file_lock *fl);
291
Joel Becker553b5eb2010-01-29 17:19:06 -0800292void ocfs2_stack_glue_set_max_proto_version(struct ocfs2_protocol_version *max_proto);
Joel Becker24ef1812008-01-29 17:37:32 -0800293
Joel Becker286eaa92008-02-01 15:03:57 -0800294
295/* Used by stack plugins */
296int ocfs2_stack_glue_register(struct ocfs2_stack_plugin *plugin);
297void ocfs2_stack_glue_unregister(struct ocfs2_stack_plugin *plugin);
Joel Becker3878f112008-05-30 15:30:49 -0700298
Joel Becker24ef1812008-01-29 17:37:32 -0800299#endif /* STACKGLUE_H */