blob: 483c5a7e16d42568f41ff6516a521e92014b6966 [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/sched.h>
13#include <linux/slab.h>
14#include <linux/spinlock.h>
15#include <linux/completion.h>
16#include <linux/buffer_head.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050017#include <linux/kallsyms.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000018#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "glock.h"
Steven Whitehouse767f4332012-12-14 12:52:14 +000023#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "log.h"
25#include "lops.h"
26#include "meta_io.h"
27#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050028#include "util.h"
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -050029#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050031int gfs2_trans_begin(struct gfs2_sbd *sdp, unsigned int blocks,
32 unsigned int revokes)
David Teiglandb3b94fa2006-01-16 16:50:04 +000033{
34 struct gfs2_trans *tr;
35 int error;
36
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050037 BUG_ON(current->journal_info);
38 BUG_ON(blocks == 0 && revokes == 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000039
Steven Whitehousea1c06432009-05-13 10:56:52 +010040 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags))
41 return -EROFS;
42
Steven Whitehousef55ab262006-02-21 12:51:39 +000043 tr = kzalloc(sizeof(struct gfs2_trans), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000044 if (!tr)
45 return -ENOMEM;
46
Fabian Frederickd29c0af2014-10-03 20:15:36 +020047 tr->tr_ip = _RET_IP_;
David Teiglandb3b94fa2006-01-16 16:50:04 +000048 tr->tr_blocks = blocks;
49 tr->tr_revokes = revokes;
50 tr->tr_reserved = 1;
Bob Peterson9862ca02017-01-25 12:50:47 -050051 set_bit(TR_ALLOCED, &tr->tr_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +000052 if (blocks)
Steven Whitehousef4154ea2006-04-11 14:49:06 -040053 tr->tr_reserved += 6 + blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +000054 if (revokes)
55 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
Steven Whitehousecd915492006-09-04 12:49:07 -040056 sizeof(u64));
Steven Whitehoused69a3c62014-02-21 15:22:35 +000057 INIT_LIST_HEAD(&tr->tr_databuf);
58 INIT_LIST_HEAD(&tr->tr_buf);
59
Jan Kara39263d5e2012-06-12 16:20:41 +020060 sb_start_intwrite(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +000061
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 error = gfs2_log_reserve(sdp, tr->tr_reserved);
63 if (error)
Benjamin Marzinski24972552014-05-01 22:26:55 -050064 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +000065
Steven Whitehouse5c676f62006-02-27 17:23:27 -050066 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000067
68 return 0;
69
Benjamin Marzinski24972552014-05-01 22:26:55 -050070fail:
Jan Kara39263d5e2012-06-12 16:20:41 +020071 sb_end_intwrite(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 kfree(tr);
73
74 return error;
75}
76
Steven Whitehousec50b91c2012-04-16 16:40:56 +010077static void gfs2_print_trans(const struct gfs2_trans *tr)
78{
Joe Perchesd77d1b52014-03-06 12:10:45 -080079 pr_warn("Transaction created at: %pSR\n", (void *)tr->tr_ip);
80 pr_warn("blocks=%u revokes=%u reserved=%u touched=%u\n",
Bob Peterson9862ca02017-01-25 12:50:47 -050081 tr->tr_blocks, tr->tr_revokes, tr->tr_reserved,
82 test_bit(TR_TOUCHED, &tr->tr_flags));
Joe Perchesd77d1b52014-03-06 12:10:45 -080083 pr_warn("Buf %u/%u Databuf %u/%u Revoke %u/%u\n",
84 tr->tr_num_buf_new, tr->tr_num_buf_rm,
85 tr->tr_num_databuf_new, tr->tr_num_databuf_rm,
86 tr->tr_num_revoke, tr->tr_num_revoke_rm);
Steven Whitehousec50b91c2012-04-16 16:40:56 +010087}
88
David Teiglandb3b94fa2006-01-16 16:50:04 +000089void gfs2_trans_end(struct gfs2_sbd *sdp)
90{
Steven Whitehousef4154ea2006-04-11 14:49:06 -040091 struct gfs2_trans *tr = current->journal_info;
Steven Whitehousec50b91c2012-04-16 16:40:56 +010092 s64 nbuf;
Bob Peterson9862ca02017-01-25 12:50:47 -050093 int alloced = test_bit(TR_ALLOCED, &tr->tr_flags);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -060094
Steven Whitehousef4154ea2006-04-11 14:49:06 -040095 BUG_ON(!tr);
Steven Whitehouse5c676f62006-02-27 17:23:27 -050096 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000097
Bob Peterson9862ca02017-01-25 12:50:47 -050098 if (!test_bit(TR_TOUCHED, &tr->tr_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +000099 gfs2_log_release(sdp, tr->tr_reserved);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600100 if (alloced) {
Steven Whitehoused8348de2009-02-05 10:12:38 +0000101 kfree(tr);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600102 sb_end_intwrite(sdp->sd_vfs);
103 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 return;
105 }
106
Steven Whitehousec50b91c2012-04-16 16:40:56 +0100107 nbuf = tr->tr_num_buf_new + tr->tr_num_databuf_new;
108 nbuf -= tr->tr_num_buf_rm;
109 nbuf -= tr->tr_num_databuf_rm;
110
111 if (gfs2_assert_withdraw(sdp, (nbuf <= tr->tr_blocks) &&
112 (tr->tr_num_revoke <= tr->tr_revokes)))
113 gfs2_print_trans(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114
115 gfs2_log_commit(sdp, tr);
Bob Peterson9862ca02017-01-25 12:50:47 -0500116 if (alloced && !test_bit(TR_ATTACHED, &tr->tr_flags))
117 kfree(tr);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500118 up_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119
120 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
Benjamin Marzinski24972552014-05-01 22:26:55 -0500121 gfs2_log_flush(sdp, NULL, NORMAL_FLUSH);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600122 if (alloced)
123 sb_end_intwrite(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124}
125
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000126static struct gfs2_bufdata *gfs2_alloc_bufdata(struct gfs2_glock *gl,
127 struct buffer_head *bh,
128 const struct gfs2_log_operations *lops)
129{
130 struct gfs2_bufdata *bd;
131
132 bd = kmem_cache_zalloc(gfs2_bufdata_cachep, GFP_NOFS | __GFP_NOFAIL);
133 bd->bd_bh = bh;
134 bd->bd_gl = gl;
135 bd->bd_ops = lops;
136 INIT_LIST_HEAD(&bd->bd_list);
137 bh->b_private = bd;
138 return bd;
139}
140
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141/**
Steven Whitehouse45138992013-01-28 09:30:07 +0000142 * gfs2_trans_add_data - Add a databuf to the transaction.
143 * @gl: The inode glock associated with the buffer
144 * @bh: The buffer to add
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 *
Steven Whitehouse767f4332012-12-14 12:52:14 +0000146 * This is used in two distinct cases:
147 * i) In ordered write mode
148 * We put the data buffer on a list so that we can ensure that its
149 * synced to disk at the right time
150 * ii) In journaled data mode
151 * We need to journal the data block in the same way as metadata in
152 * the functions above. The difference is that here we have a tag
153 * which is two __be64's being the block number (as per meta data)
154 * and a flag which says whether the data block needs escaping or
155 * not. This means we need a new log entry for each 251 or so data
156 * blocks, which isn't an enormous overhead but twice as much as
157 * for normal metadata blocks.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158 */
Steven Whitehouse767f4332012-12-14 12:52:14 +0000159void gfs2_trans_add_data(struct gfs2_glock *gl, struct buffer_head *bh)
160{
Steven Whitehouse45138992013-01-28 09:30:07 +0000161 struct gfs2_trans *tr = current->journal_info;
Bob Peterson15562c42015-03-16 11:52:05 -0500162 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehouse45138992013-01-28 09:30:07 +0000163 struct address_space *mapping = bh->b_page->mapping;
164 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165 struct gfs2_bufdata *bd;
166
Steven Whitehouse45138992013-01-28 09:30:07 +0000167 if (!gfs2_is_jdata(ip)) {
168 gfs2_ordered_add_inode(ip);
169 return;
170 }
171
Benjamin Marzinski96e5d1d2012-11-07 00:38:06 -0600172 lock_buffer(bh);
173 gfs2_log_lock(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500174 bd = bh->b_private;
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000175 if (bd == NULL) {
Benjamin Marzinski96e5d1d2012-11-07 00:38:06 -0600176 gfs2_log_unlock(sdp);
177 unlock_buffer(bh);
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000178 if (bh->b_private == NULL)
179 bd = gfs2_alloc_bufdata(gl, bh, &gfs2_databuf_lops);
Bob Peterson491e94f2015-10-01 11:47:31 -0500180 else
181 bd = bh->b_private;
Benjamin Marzinski96e5d1d2012-11-07 00:38:06 -0600182 lock_buffer(bh);
183 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000184 }
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000185 gfs2_assert(sdp, bd->bd_gl == gl);
Bob Peterson9862ca02017-01-25 12:50:47 -0500186 set_bit(TR_TOUCHED, &tr->tr_flags);
Steven Whitehouse45138992013-01-28 09:30:07 +0000187 if (list_empty(&bd->bd_list)) {
188 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
189 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
190 gfs2_pin(sdp, bd->bd_bh);
191 tr->tr_num_databuf_new++;
Steven Whitehoused69a3c62014-02-21 15:22:35 +0000192 list_add_tail(&bd->bd_list, &tr->tr_databuf);
Steven Whitehouse45138992013-01-28 09:30:07 +0000193 }
Benjamin Marzinski96e5d1d2012-11-07 00:38:06 -0600194 gfs2_log_unlock(sdp);
195 unlock_buffer(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000196}
197
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000198void gfs2_trans_add_meta(struct gfs2_glock *gl, struct buffer_head *bh)
199{
Steven Whitehouse767f4332012-12-14 12:52:14 +0000200
Bob Peterson15562c42015-03-16 11:52:05 -0500201 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehouse767f4332012-12-14 12:52:14 +0000202 struct gfs2_bufdata *bd;
Bob Peterson192738b2017-01-25 12:57:42 -0500203 struct gfs2_meta_header *mh;
204 struct gfs2_trans *tr;
205 enum gfs2_freeze_state state = atomic_read(&sdp->sd_freeze_state);
Steven Whitehouse767f4332012-12-14 12:52:14 +0000206
207 lock_buffer(bh);
208 gfs2_log_lock(sdp);
209 bd = bh->b_private;
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000210 if (bd == NULL) {
Steven Whitehouse767f4332012-12-14 12:52:14 +0000211 gfs2_log_unlock(sdp);
212 unlock_buffer(bh);
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000213 lock_page(bh->b_page);
214 if (bh->b_private == NULL)
215 bd = gfs2_alloc_bufdata(gl, bh, &gfs2_buf_lops);
Bob Peterson491e94f2015-10-01 11:47:31 -0500216 else
217 bd = bh->b_private;
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000218 unlock_page(bh->b_page);
Steven Whitehouse767f4332012-12-14 12:52:14 +0000219 lock_buffer(bh);
220 gfs2_log_lock(sdp);
221 }
Steven Whitehousec76c4d92012-12-14 17:54:21 +0000222 gfs2_assert(sdp, bd->bd_gl == gl);
Bob Peterson192738b2017-01-25 12:57:42 -0500223 tr = current->journal_info;
224 set_bit(TR_TOUCHED, &tr->tr_flags);
225 if (!list_empty(&bd->bd_list))
226 goto out_unlock;
227 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
228 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
229 mh = (struct gfs2_meta_header *)bd->bd_bh->b_data;
230 if (unlikely(mh->mh_magic != cpu_to_be32(GFS2_MAGIC))) {
231 pr_err("Attempting to add uninitialised block to journal (inplace block=%lld)\n",
232 (unsigned long long)bd->bd_bh->b_blocknr);
233 BUG();
234 }
235 if (unlikely(state == SFS_FROZEN)) {
236 printk(KERN_INFO "GFS2:adding buf while frozen\n");
237 gfs2_assert_withdraw(sdp, 0);
238 }
239 gfs2_pin(sdp, bd->bd_bh);
240 mh->__pad0 = cpu_to_be64(0);
241 mh->mh_jid = cpu_to_be32(sdp->sd_jdesc->jd_jid);
242 list_add(&bd->bd_list, &tr->tr_buf);
243 tr->tr_num_buf_new++;
244out_unlock:
Steven Whitehouse767f4332012-12-14 12:52:14 +0000245 gfs2_log_unlock(sdp);
246 unlock_buffer(bh);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000247}
248
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100249void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, struct gfs2_bufdata *bd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000250{
Steven Whitehouse75f2b872012-12-14 12:29:56 +0000251 struct gfs2_trans *tr = current->journal_info;
252
Bob Petersonc0752aa2012-05-01 12:00:34 -0400253 BUG_ON(!list_empty(&bd->bd_list));
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500254 gfs2_add_revoke(sdp, bd);
Bob Peterson9862ca02017-01-25 12:50:47 -0500255 set_bit(TR_TOUCHED, &tr->tr_flags);
Steven Whitehouse75f2b872012-12-14 12:29:56 +0000256 tr->tr_num_revoke++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257}
258
Steven Whitehouse5731be52008-02-01 13:16:55 +0000259void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, u64 blkno, unsigned int len)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260{
Steven Whitehouse5731be52008-02-01 13:16:55 +0000261 struct gfs2_bufdata *bd, *tmp;
262 struct gfs2_trans *tr = current->journal_info;
263 unsigned int n = len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000264
265 gfs2_log_lock(sdp);
Bob Petersonc0752aa2012-05-01 12:00:34 -0400266 list_for_each_entry_safe(bd, tmp, &sdp->sd_log_le_revoke, bd_list) {
Steven Whitehouse5731be52008-02-01 13:16:55 +0000267 if ((bd->bd_blkno >= blkno) && (bd->bd_blkno < (blkno + len))) {
Bob Petersonc0752aa2012-05-01 12:00:34 -0400268 list_del_init(&bd->bd_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
270 sdp->sd_log_num_revoke--;
Steven Whitehouse5731be52008-02-01 13:16:55 +0000271 kmem_cache_free(gfs2_bufdata_cachep, bd);
272 tr->tr_num_revoke_rm++;
273 if (--n == 0)
274 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 }
276 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000277 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278}
279