blob: 46af553555135f362d47a957faeb0418d7f8a46f [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050014#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020015#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016
17#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000019#include "bmap.h"
20#include "glock.h"
21#include "glops.h"
22#include "inode.h"
23#include "log.h"
24#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "recovery.h"
26#include "rgrp.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050027#include "util.h"
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040028#include "trans.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040030/**
31 * ail_empty_gl - remove all buffers for a given lock from the AIL
32 * @gl: the glock
33 *
34 * None of the buffers should be dirty, locked, or pinned.
35 */
36
37static void gfs2_ail_empty_gl(struct gfs2_glock *gl)
38{
39 struct gfs2_sbd *sdp = gl->gl_sbd;
40 unsigned int blocks;
41 struct list_head *head = &gl->gl_ail_list;
42 struct gfs2_bufdata *bd;
43 struct buffer_head *bh;
44 u64 blkno;
45 int error;
46
47 blocks = atomic_read(&gl->gl_ail_count);
48 if (!blocks)
49 return;
50
51 error = gfs2_trans_begin(sdp, 0, blocks);
52 if (gfs2_assert_withdraw(sdp, !error))
53 return;
54
55 gfs2_log_lock(sdp);
56 while (!list_empty(head)) {
57 bd = list_entry(head->next, struct gfs2_bufdata,
58 bd_ail_gl_list);
59 bh = bd->bd_bh;
60 blkno = bh->b_blocknr;
61 gfs2_assert_withdraw(sdp, !buffer_busy(bh));
62
63 bd->bd_ail = NULL;
64 list_del(&bd->bd_ail_st_list);
65 list_del(&bd->bd_ail_gl_list);
66 atomic_dec(&gl->gl_ail_count);
67 brelse(bh);
68 gfs2_log_unlock(sdp);
69
70 gfs2_trans_add_revoke(sdp, blkno);
71
72 gfs2_log_lock(sdp);
73 }
74 gfs2_assert_withdraw(sdp, !atomic_read(&gl->gl_ail_count));
75 gfs2_log_unlock(sdp);
76
77 gfs2_trans_end(sdp);
78 gfs2_log_flush(sdp, NULL);
79}
Steven Whitehouseba7f7292006-07-26 11:27:10 -040080
81/**
82 * gfs2_pte_inval - Sync and invalidate all PTEs associated with a glock
83 * @gl: the glock
84 *
85 */
86
87static void gfs2_pte_inval(struct gfs2_glock *gl)
88{
89 struct gfs2_inode *ip;
90 struct inode *inode;
91
92 ip = gl->gl_object;
93 inode = &ip->i_inode;
Steven Whitehouseb60623c2006-11-01 12:22:46 -050094 if (!ip || !S_ISREG(inode->i_mode))
Steven Whitehouseba7f7292006-07-26 11:27:10 -040095 return;
96
97 if (!test_bit(GIF_PAGED, &ip->i_flags))
98 return;
99
100 unmap_shared_mapping_range(inode->i_mapping, 0, 0);
101
102 if (test_bit(GIF_SW_PAGED, &ip->i_flags))
103 set_bit(GLF_DIRTY, &gl->gl_flags);
104
105 clear_bit(GIF_SW_PAGED, &ip->i_flags);
106}
107
108/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 * meta_go_sync - sync out the metadata for this glock
110 * @gl: the glock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111 *
112 * Called when demoting or unlocking an EX glock. We must flush
113 * to disk all dirty buffers/pages relating to this glock, and must not
114 * not return to caller to demote/unlock the glock until I/O is complete.
115 */
116
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500117static void meta_go_sync(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118{
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500119 if (gl->gl_state != LM_ST_EXCLUSIVE)
120 return;
121
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122 if (test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) {
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400123 gfs2_log_flush(gl->gl_sbd, gl);
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400124 gfs2_meta_sync(gl);
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500125 gfs2_ail_empty_gl(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000126 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127}
128
129/**
130 * meta_go_inval - invalidate the metadata for this glock
131 * @gl: the glock
132 * @flags:
133 *
134 */
135
136static void meta_go_inval(struct gfs2_glock *gl, int flags)
137{
138 if (!(flags & DIO_METADATA))
139 return;
140
141 gfs2_meta_inval(gl);
142 gl->gl_vn++;
143}
144
145/**
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500146 * inode_go_sync - Sync the dirty data and/or metadata for an inode glock
147 * @gl: the glock protecting the inode
148 *
149 */
150
151static void inode_go_sync(struct gfs2_glock *gl)
152{
153 struct gfs2_inode *ip = gl->gl_object;
154
155 if (ip && !S_ISREG(ip->i_inode.i_mode))
156 ip = NULL;
157
158 if (test_bit(GLF_DIRTY, &gl->gl_flags)) {
159 gfs2_log_flush(gl->gl_sbd, gl);
160 if (ip)
161 filemap_fdatawrite(ip->i_inode.i_mapping);
162 gfs2_meta_sync(gl);
163 if (ip) {
164 struct address_space *mapping = ip->i_inode.i_mapping;
165 int error = filemap_fdatawait(mapping);
166 if (error == -ENOSPC)
167 set_bit(AS_ENOSPC, &mapping->flags);
168 else if (error)
169 set_bit(AS_EIO, &mapping->flags);
170 }
171 clear_bit(GLF_DIRTY, &gl->gl_flags);
172 gfs2_ail_empty_gl(gl);
173 }
174}
175
176/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000177 * inode_go_xmote_th - promote/demote a glock
178 * @gl: the glock
179 * @state: the requested state
180 * @flags:
181 *
182 */
183
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500184static void inode_go_xmote_th(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185{
186 if (gl->gl_state != LM_ST_UNLOCKED)
187 gfs2_pte_inval(gl);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500188 if (gl->gl_state == LM_ST_EXCLUSIVE)
189 inode_go_sync(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190}
191
192/**
193 * inode_go_xmote_bh - After promoting/demoting a glock
194 * @gl: the glock
195 *
196 */
197
198static void inode_go_xmote_bh(struct gfs2_glock *gl)
199{
200 struct gfs2_holder *gh = gl->gl_req_gh;
201 struct buffer_head *bh;
202 int error;
203
204 if (gl->gl_state != LM_ST_UNLOCKED &&
205 (!gh || !(gh->gh_flags & GL_SKIP))) {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400206 error = gfs2_meta_read(gl, gl->gl_name.ln_number, 0, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000207 if (!error)
208 brelse(bh);
209 }
210}
211
212/**
213 * inode_go_drop_th - unlock a glock
214 * @gl: the glock
215 *
216 * Invoked from rq_demote().
217 * Another node needs the lock in EXCLUSIVE mode, or lock (unused for too long)
218 * is being purged from our node's glock cache; we're dropping lock.
219 */
220
221static void inode_go_drop_th(struct gfs2_glock *gl)
222{
223 gfs2_pte_inval(gl);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500224 if (gl->gl_state == LM_ST_EXCLUSIVE)
225 inode_go_sync(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226}
227
228/**
229 * inode_go_inval - prepare a inode glock to be released
230 * @gl: the glock
231 * @flags:
232 *
233 */
234
235static void inode_go_inval(struct gfs2_glock *gl, int flags)
236{
Steven Whitehouseb0041572006-11-23 10:51:34 -0500237 struct gfs2_inode *ip = gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238 int meta = (flags & DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239
240 if (meta) {
241 gfs2_meta_inval(gl);
Steven Whitehouseb0041572006-11-23 10:51:34 -0500242 if (ip)
243 set_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 }
Steven Whitehouseb0041572006-11-23 10:51:34 -0500245
246 if (ip && S_ISREG(ip->i_inode.i_mode)) {
247 truncate_inode_pages(ip->i_inode.i_mapping, 0);
248 gfs2_assert_withdraw(GFS2_SB(&ip->i_inode), !ip->i_inode.i_mapping->nrpages);
249 clear_bit(GIF_PAGED, &ip->i_flags);
250 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251}
252
253/**
254 * inode_go_demote_ok - Check to see if it's ok to unlock an inode glock
255 * @gl: the glock
256 *
257 * Returns: 1 if it's ok
258 */
259
260static int inode_go_demote_ok(struct gfs2_glock *gl)
261{
262 struct gfs2_sbd *sdp = gl->gl_sbd;
263 int demote = 0;
264
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500265 if (!gl->gl_object && !gl->gl_aspace->i_mapping->nrpages)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 demote = 1;
267 else if (!sdp->sd_args.ar_localcaching &&
268 time_after_eq(jiffies, gl->gl_stamp +
269 gfs2_tune_get(sdp, gt_demote_secs) * HZ))
270 demote = 1;
271
272 return demote;
273}
274
275/**
276 * inode_go_lock - operation done after an inode lock is locked by a process
277 * @gl: the glock
278 * @flags:
279 *
280 * Returns: errno
281 */
282
283static int inode_go_lock(struct gfs2_holder *gh)
284{
285 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500286 struct gfs2_inode *ip = gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000287 int error = 0;
288
289 if (!ip)
290 return 0;
291
Steven Whitehousebfded272006-11-01 16:05:38 -0500292 if (test_bit(GIF_INVALID, &ip->i_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000293 error = gfs2_inode_refresh(ip);
294 if (error)
295 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 }
297
298 if ((ip->i_di.di_flags & GFS2_DIF_TRUNC_IN_PROG) &&
299 (gl->gl_state == LM_ST_EXCLUSIVE) &&
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500300 (gh->gh_state == LM_ST_EXCLUSIVE))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301 error = gfs2_truncatei_resume(ip);
302
303 return error;
304}
305
306/**
307 * inode_go_unlock - operation done before an inode lock is unlocked by a
308 * process
309 * @gl: the glock
310 * @flags:
311 *
312 */
313
314static void inode_go_unlock(struct gfs2_holder *gh)
315{
316 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500317 struct gfs2_inode *ip = gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500319 if (ip)
320 gfs2_meta_cache_flush(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321}
322
323/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324 * rgrp_go_demote_ok - Check to see if it's ok to unlock a RG's glock
325 * @gl: the glock
326 *
327 * Returns: 1 if it's ok
328 */
329
330static int rgrp_go_demote_ok(struct gfs2_glock *gl)
331{
332 return !gl->gl_aspace->i_mapping->nrpages;
333}
334
335/**
336 * rgrp_go_lock - operation done after an rgrp lock is locked by
337 * a first holder on this node.
338 * @gl: the glock
339 * @flags:
340 *
341 * Returns: errno
342 */
343
344static int rgrp_go_lock(struct gfs2_holder *gh)
345{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500346 return gfs2_rgrp_bh_get(gh->gh_gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347}
348
349/**
350 * rgrp_go_unlock - operation done before an rgrp lock is unlocked by
351 * a last holder on this node.
352 * @gl: the glock
353 * @flags:
354 *
355 */
356
357static void rgrp_go_unlock(struct gfs2_holder *gh)
358{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500359 gfs2_rgrp_bh_put(gh->gh_gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360}
361
362/**
363 * trans_go_xmote_th - promote/demote the transaction glock
364 * @gl: the glock
365 * @state: the requested state
366 * @flags:
367 *
368 */
369
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500370static void trans_go_xmote_th(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371{
372 struct gfs2_sbd *sdp = gl->gl_sbd;
373
374 if (gl->gl_state != LM_ST_UNLOCKED &&
375 test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
376 gfs2_meta_syncfs(sdp);
377 gfs2_log_shutdown(sdp);
378 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000379}
380
381/**
382 * trans_go_xmote_bh - After promoting/demoting the transaction glock
383 * @gl: the glock
384 *
385 */
386
387static void trans_go_xmote_bh(struct gfs2_glock *gl)
388{
389 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400390 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500391 struct gfs2_glock *j_gl = ip->i_gl;
Al Viro55167622006-10-13 21:47:13 -0400392 struct gfs2_log_header_host head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000393 int error;
394
395 if (gl->gl_state != LM_ST_UNLOCKED &&
396 test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400397 gfs2_meta_cache_flush(GFS2_I(sdp->sd_jdesc->jd_inode));
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500398 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399
400 error = gfs2_find_jhead(sdp->sd_jdesc, &head);
401 if (error)
402 gfs2_consist(sdp);
403 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT))
404 gfs2_consist(sdp);
405
406 /* Initialize some head of the log stuff */
407 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) {
408 sdp->sd_log_sequence = head.lh_sequence + 1;
409 gfs2_log_pointers_init(sdp, head.lh_blkno);
410 }
411 }
412}
413
414/**
415 * trans_go_drop_th - unlock the transaction glock
416 * @gl: the glock
417 *
418 * We want to sync the device even with localcaching. Remember
419 * that localcaching journal replay only marks buffers dirty.
420 */
421
422static void trans_go_drop_th(struct gfs2_glock *gl)
423{
424 struct gfs2_sbd *sdp = gl->gl_sbd;
425
426 if (test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
427 gfs2_meta_syncfs(sdp);
428 gfs2_log_shutdown(sdp);
429 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430}
431
432/**
433 * quota_go_demote_ok - Check to see if it's ok to unlock a quota glock
434 * @gl: the glock
435 *
436 * Returns: 1 if it's ok
437 */
438
439static int quota_go_demote_ok(struct gfs2_glock *gl)
440{
441 return !atomic_read(&gl->gl_lvb_count);
442}
443
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400444const struct gfs2_glock_operations gfs2_meta_glops = {
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500445 .go_xmote_th = meta_go_sync,
446 .go_drop_th = meta_go_sync,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400447 .go_type = LM_TYPE_META,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000448};
449
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400450const struct gfs2_glock_operations gfs2_inode_glops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451 .go_xmote_th = inode_go_xmote_th,
452 .go_xmote_bh = inode_go_xmote_bh,
453 .go_drop_th = inode_go_drop_th,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 .go_inval = inode_go_inval,
455 .go_demote_ok = inode_go_demote_ok,
456 .go_lock = inode_go_lock,
457 .go_unlock = inode_go_unlock,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400458 .go_type = LM_TYPE_INODE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459};
460
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400461const struct gfs2_glock_operations gfs2_rgrp_glops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462 .go_inval = meta_go_inval,
463 .go_demote_ok = rgrp_go_demote_ok,
464 .go_lock = rgrp_go_lock,
465 .go_unlock = rgrp_go_unlock,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400466 .go_type = LM_TYPE_RGRP,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467};
468
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400469const struct gfs2_glock_operations gfs2_trans_glops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 .go_xmote_th = trans_go_xmote_th,
471 .go_xmote_bh = trans_go_xmote_bh,
472 .go_drop_th = trans_go_drop_th,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400473 .go_type = LM_TYPE_NONDISK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474};
475
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400476const struct gfs2_glock_operations gfs2_iopen_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400477 .go_type = LM_TYPE_IOPEN,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478};
479
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400480const struct gfs2_glock_operations gfs2_flock_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400481 .go_type = LM_TYPE_FLOCK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482};
483
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400484const struct gfs2_glock_operations gfs2_nondisk_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400485 .go_type = LM_TYPE_NONDISK,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486};
487
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400488const struct gfs2_glock_operations gfs2_quota_glops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 .go_demote_ok = quota_go_demote_ok,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400490 .go_type = LM_TYPE_QUOTA,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491};
492
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400493const struct gfs2_glock_operations gfs2_journal_glops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400494 .go_type = LM_TYPE_JOURNAL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495};
496