blob: effe4a337c1dbce0d8156545b393794d4163aeb6 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/delay.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050016#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020017#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "glock.h"
22#include "lm.h"
23#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025
26/**
27 * gfs2_lm_mount - mount a locking protocol
28 * @sdp: the filesystem
29 * @args: mount arguements
30 * @silent: if 1, don't complain if the FS isn't a GFS2 fs
31 *
32 * Returns: errno
33 */
34
35int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
36{
37 char *proto = sdp->sd_proto_name;
38 char *table = sdp->sd_table_name;
39 int flags = 0;
40 int error;
41
42 if (sdp->sd_args.ar_spectator)
43 flags |= LM_MFLAG_SPECTATOR;
44
45 fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
46
47 error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata,
48 gfs2_glock_cb, sdp,
49 GFS2_MIN_LVB_SIZE, flags,
50 &sdp->sd_lockstruct, &sdp->sd_kobj);
51 if (error) {
52 fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n",
53 proto, table, sdp->sd_args.ar_hostdata);
54 goto out;
55 }
56
57 if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lockspace) ||
58 gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) ||
59 gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >=
60 GFS2_MIN_LVB_SIZE)) {
61 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
62 goto out;
63 }
64
65 if (sdp->sd_args.ar_spectator)
66 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.s", table);
67 else
68 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table,
69 sdp->sd_lockstruct.ls_jid);
70
71 fs_info(sdp, "Joined cluster. Now mounting FS...\n");
72
73 if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) &&
74 !sdp->sd_args.ar_ignore_local_fs) {
75 sdp->sd_args.ar_localflocks = 1;
76 sdp->sd_args.ar_localcaching = 1;
77 }
78
Steven Whitehousea91ea692006-09-04 12:04:26 -040079out:
David Teiglandb3b94fa2006-01-16 16:50:04 +000080 return error;
81}
82
83void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp)
84{
85 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
Steven Whitehouse568f4c92006-02-27 12:00:42 -050086 sdp->sd_lockstruct.ls_ops->lm_others_may_mount(
87 sdp->sd_lockstruct.ls_lockspace);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088}
89
90void gfs2_lm_unmount(struct gfs2_sbd *sdp)
91{
92 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
93 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
94}
95
96int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...)
97{
98 va_list args;
99
100 if (test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags))
101 return 0;
102
103 va_start(args, fmt);
104 vprintk(fmt, args);
105 va_end(args);
106
107 fs_err(sdp, "about to withdraw from the cluster\n");
Steven Whitehouse3a8fe9b2006-02-27 11:00:37 -0500108 BUG_ON(sdp->sd_args.ar_debug);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400109
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110
111 fs_err(sdp, "waiting for outstanding I/O\n");
112
113 /* FIXME: suspend dm device so oustanding bio's complete
114 and all further io requests fail */
115
116 fs_err(sdp, "telling LM to withdraw\n");
117 gfs2_withdraw_lockproto(&sdp->sd_lockstruct);
118 fs_err(sdp, "withdrawn\n");
119 dump_stack();
120
121 return -1;
122}
123
124int gfs2_lm_get_lock(struct gfs2_sbd *sdp, struct lm_lockname *name,
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400125 void **lockp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000126{
Steven Whitehouse50299962006-09-04 09:49:55 -0400127 int error = -EIO;
128 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500129 error = sdp->sd_lockstruct.ls_ops->lm_get_lock(
130 sdp->sd_lockstruct.ls_lockspace, name, lockp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000131 return error;
132}
133
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400134void gfs2_lm_put_lock(struct gfs2_sbd *sdp, void *lock)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135{
136 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
137 sdp->sd_lockstruct.ls_ops->lm_put_lock(lock);
138}
139
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400140unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141 unsigned int cur_state, unsigned int req_state,
142 unsigned int flags)
143{
Steven Whitehouse50299962006-09-04 09:49:55 -0400144 int ret = 0;
145 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
146 ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock, cur_state,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 req_state, flags);
148 return ret;
149}
150
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400151unsigned int gfs2_lm_unlock(struct gfs2_sbd *sdp, void *lock,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152 unsigned int cur_state)
153{
Steven Whitehouse50299962006-09-04 09:49:55 -0400154 int ret = 0;
155 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156 ret = sdp->sd_lockstruct.ls_ops->lm_unlock(lock, cur_state);
157 return ret;
158}
159
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400160void gfs2_lm_cancel(struct gfs2_sbd *sdp, void *lock)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161{
162 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
163 sdp->sd_lockstruct.ls_ops->lm_cancel(lock);
164}
165
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400166int gfs2_lm_hold_lvb(struct gfs2_sbd *sdp, void *lock, char **lvbp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167{
Steven Whitehouse50299962006-09-04 09:49:55 -0400168 int error = -EIO;
169 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000170 error = sdp->sd_lockstruct.ls_ops->lm_hold_lvb(lock, lvbp);
171 return error;
172}
173
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400174void gfs2_lm_unhold_lvb(struct gfs2_sbd *sdp, void *lock, char *lvb)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175{
176 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
177 sdp->sd_lockstruct.ls_ops->lm_unhold_lvb(lock, lvb);
178}
179
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180int gfs2_lm_plock_get(struct gfs2_sbd *sdp, struct lm_lockname *name,
181 struct file *file, struct file_lock *fl)
182{
Steven Whitehouse50299962006-09-04 09:49:55 -0400183 int error = -EIO;
184 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 error = sdp->sd_lockstruct.ls_ops->lm_plock_get(
Steven Whitehouse50299962006-09-04 09:49:55 -0400186 sdp->sd_lockstruct.ls_lockspace, name, file, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 return error;
188}
189
190int gfs2_lm_plock(struct gfs2_sbd *sdp, struct lm_lockname *name,
191 struct file *file, int cmd, struct file_lock *fl)
192{
Steven Whitehouse50299962006-09-04 09:49:55 -0400193 int error = -EIO;
194 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 error = sdp->sd_lockstruct.ls_ops->lm_plock(
Steven Whitehouse50299962006-09-04 09:49:55 -0400196 sdp->sd_lockstruct.ls_lockspace, name, file, cmd, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 return error;
198}
199
200int gfs2_lm_punlock(struct gfs2_sbd *sdp, struct lm_lockname *name,
201 struct file *file, struct file_lock *fl)
202{
Steven Whitehouse50299962006-09-04 09:49:55 -0400203 int error = -EIO;
204 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 error = sdp->sd_lockstruct.ls_ops->lm_punlock(
Steven Whitehouse50299962006-09-04 09:49:55 -0400206 sdp->sd_lockstruct.ls_lockspace, name, file, fl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000207 return error;
208}
209
210void gfs2_lm_recovery_done(struct gfs2_sbd *sdp, unsigned int jid,
211 unsigned int message)
212{
213 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500214 sdp->sd_lockstruct.ls_ops->lm_recovery_done(
215 sdp->sd_lockstruct.ls_lockspace, jid, message);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000216}
217