blob: e9d26cbeb3b82a9dfd2b742316e5945d43cac1ee [file] [log] [blame]
Thomas Gleixner50acfb22019-05-29 07:18:00 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Joel Becker24ef1812008-01-29 17:37:32 -08002/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * stackglue.h
6 *
7 * Glue to the underlying cluster stack.
8 *
9 * Copyright (C) 2007 Oracle. All rights reserved.
Joel Becker24ef1812008-01-29 17:37:32 -080010 */
11
12
13#ifndef STACKGLUE_H
14#define STACKGLUE_H
15
Joel Beckerbd3e7612008-02-01 12:14:57 -080016#include <linux/types.h>
17#include <linux/list.h>
18#include <linux/dlmconstants.h>
19
Joel Beckere3dad422008-02-01 15:02:36 -080020#include "dlm/dlmapi.h"
David Teiglandcf4d8d72008-02-20 14:29:27 -080021#include <linux/dlm.h>
Joel Beckere3dad422008-02-01 15:02:36 -080022
Mark Fasheh53da4932008-07-21 14:29:16 -070023/* Needed for plock-related prototypes */
24struct file;
25struct file_lock;
26
Joel Beckerbd3e7612008-02-01 12:14:57 -080027/*
28 * dlmconstants.h does not have a LOCAL flag. We hope to remove it
29 * some day, but right now we need it. Let's fake it. This value is larger
30 * than any flag in dlmconstants.h.
31 */
32#define DLM_LKF_LOCAL 0x00100000
33
Joel Becker4670c462008-02-01 14:39:35 -080034/*
35 * This shadows DLM_LOCKSPACE_LEN in fs/dlm/dlm_internal.h. That probably
36 * wants to be in a public header.
37 */
38#define GROUP_NAME_MAX 64
39
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -080040/* This shadows OCFS2_CLUSTER_NAME_LEN */
41#define CLUSTER_NAME_MAX 16
42
Joel Becker4670c462008-02-01 14:39:35 -080043
Joel Beckere3dad422008-02-01 15:02:36 -080044/*
45 * ocfs2_protocol_version changes when ocfs2 does something different in
46 * its inter-node behavior. See dlmglue.c for more information.
47 */
Joel Becker4670c462008-02-01 14:39:35 -080048struct ocfs2_protocol_version {
49 u8 pv_major;
50 u8 pv_minor;
51};
52
Joel Beckere3dad422008-02-01 15:02:36 -080053/*
David Teiglandcf4d8d72008-02-20 14:29:27 -080054 * The dlm_lockstatus struct includes lvb space, but the dlm_lksb struct only
55 * has a pointer to separately allocated lvb space. This struct exists only to
56 * include in the lksb union to make space for a combined dlm_lksb and lvb.
57 */
58struct fsdlm_lksb_plus_lvb {
59 struct dlm_lksb lksb;
60 char lvb[DLM_LVB_LEN];
61};
62
Joel Beckere3dad422008-02-01 15:02:36 -080063/*
64 * A union of all lock status structures. We define it here so that the
65 * size of the union is known. Lock status structures are embedded in
66 * ocfs2 inodes.
67 */
Joel Beckerc0e413382010-01-29 14:46:44 -080068struct ocfs2_cluster_connection;
69struct ocfs2_dlm_lksb {
70 union {
71 struct dlm_lockstatus lksb_o2dlm;
72 struct dlm_lksb lksb_fsdlm;
73 struct fsdlm_lksb_plus_lvb padding;
74 };
75 struct ocfs2_cluster_connection *lksb_conn;
Joel Becker8f2c9c12008-02-01 12:16:57 -080076};
77
Joel Beckere3dad422008-02-01 15:02:36 -080078/*
Joel Beckera796d282010-01-28 19:22:39 -080079 * The ocfs2_locking_protocol defines the handlers called on ocfs2's behalf.
80 */
81struct ocfs2_locking_protocol {
82 struct ocfs2_protocol_version lp_max_version;
Joel Beckerc0e413382010-01-29 14:46:44 -080083 void (*lp_lock_ast)(struct ocfs2_dlm_lksb *lksb);
84 void (*lp_blocking_ast)(struct ocfs2_dlm_lksb *lksb, int level);
85 void (*lp_unlock_ast)(struct ocfs2_dlm_lksb *lksb, int error);
Joel Beckera796d282010-01-28 19:22:39 -080086};
87
88
89/*
Joel Beckere3dad422008-02-01 15:02:36 -080090 * A cluster connection. Mostly opaque to ocfs2, the connection holds
91 * state for the underlying stack. ocfs2 does use cc_version to determine
92 * locking compatibility.
93 */
Joel Becker4670c462008-02-01 14:39:35 -080094struct ocfs2_cluster_connection {
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -080095 char cc_name[GROUP_NAME_MAX + 1];
Joel Becker4670c462008-02-01 14:39:35 -080096 int cc_namelen;
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -080097 char cc_cluster_name[CLUSTER_NAME_MAX + 1];
98 int cc_cluster_name_len;
Joel Becker4670c462008-02-01 14:39:35 -080099 struct ocfs2_protocol_version cc_version;
Joel Becker110946c2010-01-29 15:46:23 -0800100 struct ocfs2_locking_protocol *cc_proto;
Joel Becker4670c462008-02-01 14:39:35 -0800101 void (*cc_recovery_handler)(int node_num, void *recovery_data);
102 void *cc_recovery_data;
103 void *cc_lockspace;
104 void *cc_private;
105};
106
Joel Beckere3dad422008-02-01 15:02:36 -0800107/*
108 * Each cluster stack implements the stack operations structure. Not used
109 * in the ocfs2 code, the stackglue code translates generic cluster calls
110 * into stack operations.
111 */
112struct ocfs2_stack_operations {
113 /*
114 * The fs code calls ocfs2_cluster_connect() to attach a new
115 * filesystem to the cluster stack. The ->connect() op is passed
116 * an ocfs2_cluster_connection with the name and recovery field
117 * filled in.
118 *
119 * The stack must set up any notification mechanisms and create
120 * the filesystem lockspace in the DLM. The lockspace should be
121 * stored on cc_lockspace. Any other information can be stored on
122 * cc_private.
123 *
124 * ->connect() must not return until it is guaranteed that
125 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300126 * - Node down notifications for the filesystem will be received
Joel Beckere3dad422008-02-01 15:02:36 -0800127 * and passed to conn->cc_recovery_handler().
128 * - Locking requests for the filesystem will be processed.
129 */
130 int (*connect)(struct ocfs2_cluster_connection *conn);
131
132 /*
133 * The fs code calls ocfs2_cluster_disconnect() when a filesystem
134 * no longer needs cluster services. All DLM locks have been
135 * dropped, and recovery notification is being ignored by the
136 * fs code. The stack must disengage from the DLM and discontinue
137 * recovery notification.
138 *
139 * Once ->disconnect() has returned, the connection structure will
140 * be freed. Thus, a stack must not return from ->disconnect()
141 * until it will no longer reference the conn pointer.
Joel Becker286eaa92008-02-01 15:03:57 -0800142 *
Joel Becker2c394502008-05-30 15:58:26 -0700143 * Once this call returns, the stack glue will be dropping this
144 * connection's reference on the module.
Joel Beckere3dad422008-02-01 15:02:36 -0800145 */
Joel Becker2c394502008-05-30 15:58:26 -0700146 int (*disconnect)(struct ocfs2_cluster_connection *conn);
Joel Beckere3dad422008-02-01 15:02:36 -0800147
148 /*
149 * ->this_node() returns the cluster's unique identifier for the
150 * local node.
151 */
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800152 int (*this_node)(struct ocfs2_cluster_connection *conn,
153 unsigned int *node);
Joel Beckere3dad422008-02-01 15:02:36 -0800154
155 /*
156 * Call the underlying dlm lock function. The ->dlm_lock()
157 * callback should convert the flags and mode as appropriate.
158 *
159 * ast and bast functions are not part of the call because the
160 * stack will likely want to wrap ast and bast calls before passing
Joel Beckera796d282010-01-28 19:22:39 -0800161 * them to stack->sp_proto. There is no astarg. The lksb will
162 * be passed back to the ast and bast functions. The caller can
163 * use this to find their object.
Joel Beckere3dad422008-02-01 15:02:36 -0800164 */
165 int (*dlm_lock)(struct ocfs2_cluster_connection *conn,
166 int mode,
Joel Beckerc0e413382010-01-29 14:46:44 -0800167 struct ocfs2_dlm_lksb *lksb,
Joel Beckere3dad422008-02-01 15:02:36 -0800168 u32 flags,
169 void *name,
Joel Beckera796d282010-01-28 19:22:39 -0800170 unsigned int namelen);
Joel Beckere3dad422008-02-01 15:02:36 -0800171
172 /*
173 * Call the underlying dlm unlock function. The ->dlm_unlock()
174 * function should convert the flags as appropriate.
175 *
176 * The unlock ast is not passed, as the stack will want to wrap
Joel Beckera796d282010-01-28 19:22:39 -0800177 * it before calling stack->sp_proto->lp_unlock_ast(). There is
178 * no astarg. The lksb will be passed back to the unlock ast
179 * function. The caller can use this to find their object.
Joel Beckere3dad422008-02-01 15:02:36 -0800180 */
181 int (*dlm_unlock)(struct ocfs2_cluster_connection *conn,
Joel Beckerc0e413382010-01-29 14:46:44 -0800182 struct ocfs2_dlm_lksb *lksb,
Joel Beckera796d282010-01-28 19:22:39 -0800183 u32 flags);
Joel Beckere3dad422008-02-01 15:02:36 -0800184
185 /*
186 * Return the status of the current lock status block. The fs
187 * code should never dereference the union. The ->lock_status()
188 * callback pulls out the stack-specific lksb, converts the status
189 * to a proper errno, and returns it.
190 */
Joel Beckerc0e413382010-01-29 14:46:44 -0800191 int (*lock_status)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800192
193 /*
Joel Becker1c520df2009-06-19 15:14:13 -0700194 * Return non-zero if the LVB is valid.
195 */
Joel Beckerc0e413382010-01-29 14:46:44 -0800196 int (*lvb_valid)(struct ocfs2_dlm_lksb *lksb);
Joel Becker1c520df2009-06-19 15:14:13 -0700197
198 /*
Joel Beckere3dad422008-02-01 15:02:36 -0800199 * Pull the lvb pointer off of the stack-specific lksb.
200 */
Joel Beckerc0e413382010-01-29 14:46:44 -0800201 void *(*lock_lvb)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800202
203 /*
Mark Fasheh53da4932008-07-21 14:29:16 -0700204 * Cluster-aware posix locks
205 *
206 * This is NULL for stacks which do not support posix locks.
207 */
208 int (*plock)(struct ocfs2_cluster_connection *conn,
209 u64 ino,
210 struct file *file,
211 int cmd,
212 struct file_lock *fl);
213
214 /*
Joel Beckere3dad422008-02-01 15:02:36 -0800215 * This is an optoinal debugging hook. If provided, the
216 * stack can dump debugging information about this lock.
217 */
Joel Beckerc0e413382010-01-29 14:46:44 -0800218 void (*dump_lksb)(struct ocfs2_dlm_lksb *lksb);
Joel Beckere3dad422008-02-01 15:02:36 -0800219};
220
Joel Becker286eaa92008-02-01 15:03:57 -0800221/*
222 * Each stack plugin must describe itself by registering a
223 * ocfs2_stack_plugin structure. This is only seen by stackglue and the
224 * stack driver.
225 */
226struct ocfs2_stack_plugin {
227 char *sp_name;
228 struct ocfs2_stack_operations *sp_ops;
229 struct module *sp_owner;
230
231 /* These are managed by the stackglue code. */
232 struct list_head sp_list;
233 unsigned int sp_count;
Joel Beckere603cfb2010-01-29 16:06:29 -0800234 struct ocfs2_protocol_version sp_max_proto;
Joel Becker286eaa92008-02-01 15:03:57 -0800235};
236
237
238/* Used by the filesystem */
Joel Becker9c6c8772008-02-01 15:17:30 -0800239int ocfs2_cluster_connect(const char *stack_name,
Goldwyn Rodriguesc74a3bd2014-01-21 15:48:21 -0800240 const char *cluster_name,
241 int cluster_name_len,
Joel Becker9c6c8772008-02-01 15:17:30 -0800242 const char *group,
Joel Becker4670c462008-02-01 14:39:35 -0800243 int grouplen,
Joel Becker553b5eb2010-01-29 17:19:06 -0800244 struct ocfs2_locking_protocol *lproto,
Joel Becker4670c462008-02-01 14:39:35 -0800245 void (*recovery_handler)(int node_num,
246 void *recovery_data),
247 void *recovery_data,
248 struct ocfs2_cluster_connection **conn);
Joel Beckercbe0e332010-01-30 06:02:10 -0800249/*
250 * Used by callers that don't store their stack name. They must ensure
251 * all nodes have the same stack.
252 */
253int ocfs2_cluster_connect_agnostic(const char *group,
254 int grouplen,
255 struct ocfs2_locking_protocol *lproto,
256 void (*recovery_handler)(int node_num,
257 void *recovery_data),
258 void *recovery_data,
259 struct ocfs2_cluster_connection **conn);
Joel Becker286eaa92008-02-01 15:03:57 -0800260int ocfs2_cluster_disconnect(struct ocfs2_cluster_connection *conn,
261 int hangup_pending);
Joel Becker6953b4c2008-01-29 16:59:56 -0800262void ocfs2_cluster_hangup(const char *group, int grouplen);
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800263int ocfs2_cluster_this_node(struct ocfs2_cluster_connection *conn,
264 unsigned int *node);
Joel Becker4670c462008-02-01 14:39:35 -0800265
David Teiglandcf4d8d72008-02-20 14:29:27 -0800266struct ocfs2_lock_res;
Joel Becker4670c462008-02-01 14:39:35 -0800267int ocfs2_dlm_lock(struct ocfs2_cluster_connection *conn,
Joel Becker24ef1812008-01-29 17:37:32 -0800268 int mode,
Joel Beckerc0e413382010-01-29 14:46:44 -0800269 struct ocfs2_dlm_lksb *lksb,
Joel Becker24ef1812008-01-29 17:37:32 -0800270 u32 flags,
271 void *name,
Joel Beckera796d282010-01-28 19:22:39 -0800272 unsigned int namelen);
Joel Becker4670c462008-02-01 14:39:35 -0800273int ocfs2_dlm_unlock(struct ocfs2_cluster_connection *conn,
Joel Beckerc0e413382010-01-29 14:46:44 -0800274 struct ocfs2_dlm_lksb *lksb,
Joel Beckera796d282010-01-28 19:22:39 -0800275 u32 flags);
Joel Becker24ef1812008-01-29 17:37:32 -0800276
Joel Beckerc0e413382010-01-29 14:46:44 -0800277int ocfs2_dlm_lock_status(struct ocfs2_dlm_lksb *lksb);
278int ocfs2_dlm_lvb_valid(struct ocfs2_dlm_lksb *lksb);
279void *ocfs2_dlm_lvb(struct ocfs2_dlm_lksb *lksb);
280void ocfs2_dlm_dump_lksb(struct ocfs2_dlm_lksb *lksb);
Joel Becker8f2c9c12008-02-01 12:16:57 -0800281
Mark Fasheh53da4932008-07-21 14:29:16 -0700282int ocfs2_stack_supports_plocks(void);
283int ocfs2_plock(struct ocfs2_cluster_connection *conn, u64 ino,
284 struct file *file, int cmd, struct file_lock *fl);
285
Joel Becker553b5eb2010-01-29 17:19:06 -0800286void ocfs2_stack_glue_set_max_proto_version(struct ocfs2_protocol_version *max_proto);
Joel Becker24ef1812008-01-29 17:37:32 -0800287
Joel Becker286eaa92008-02-01 15:03:57 -0800288
289/* Used by stack plugins */
290int ocfs2_stack_glue_register(struct ocfs2_stack_plugin *plugin);
291void ocfs2_stack_glue_unregister(struct ocfs2_stack_plugin *plugin);
Joel Becker3878f112008-05-30 15:30:49 -0700292
Gang He9dde5e42016-03-22 14:24:20 -0700293extern struct kset *ocfs2_kset;
294
Joel Becker24ef1812008-01-29 17:37:32 -0800295#endif /* STACKGLUE_H */