blob: 4d4ceb0b6903175fbbd85af190f108970e904421 [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonda6dd402007-12-11 18:49:21 -06004 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
Joe Perchesd77d1b52014-03-06 12:10:45 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01009#include <linux/bio.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010010#include <linux/sched/signal.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000011#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010015#include <linux/statfs.h>
16#include <linux/seq_file.h>
17#include <linux/mount.h>
18#include <linux/kthread.h>
19#include <linux/delay.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include <linux/gfs2_ondisk.h>
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010021#include <linux/crc32.h>
22#include <linux/time.h>
Steven Whitehousee4027462010-01-25 11:20:19 +000023#include <linux/wait.h>
Christoph Hellwiga9185b42010-03-05 09:21:37 +010024#include <linux/writeback.h>
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010025#include <linux/backing-dev.h>
Benjamin Marzinski2e60d762014-11-13 20:42:04 -060026#include <linux/kernel.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000027
28#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030#include "bmap.h"
31#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000032#include "glock.h"
33#include "glops.h"
34#include "inode.h"
35#include "log.h"
36#include "meta_io.h"
37#include "quota.h"
38#include "recovery.h"
39#include "rgrp.h"
40#include "super.h"
41#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050042#include "util.h"
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010043#include "sys.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010044#include "xattr.h"
Abhi Dasf4686c22019-05-02 14:17:40 -050045#include "lops.h"
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010046
Bob Peterson53dbc27e2020-09-11 10:30:26 -050047enum dinode_demise {
48 SHOULD_DELETE_DINODE,
49 SHOULD_NOT_DELETE_DINODE,
50 SHOULD_DEFER_EVICTION,
51};
52
Steven Whitehousefefc03b2008-12-19 15:32:06 +000053/**
54 * gfs2_jindex_free - Clear all the journal index information
55 * @sdp: The GFS2 superblock
56 *
57 */
58
59void gfs2_jindex_free(struct gfs2_sbd *sdp)
60{
Steven Whitehouseb50f2272014-03-03 13:35:57 +000061 struct list_head list;
Steven Whitehousefefc03b2008-12-19 15:32:06 +000062 struct gfs2_jdesc *jd;
Steven Whitehousefefc03b2008-12-19 15:32:06 +000063
64 spin_lock(&sdp->sd_jindex_spin);
65 list_add(&list, &sdp->sd_jindex_list);
66 list_del_init(&sdp->sd_jindex_list);
67 sdp->sd_journals = 0;
68 spin_unlock(&sdp->sd_jindex_spin);
69
Bob Peterson601ef0d2020-01-28 20:23:45 +010070 sdp->sd_jdesc = NULL;
Steven Whitehousefefc03b2008-12-19 15:32:06 +000071 while (!list_empty(&list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +010072 jd = list_first_entry(&list, struct gfs2_jdesc, jd_list);
Steven Whitehouseb50f2272014-03-03 13:35:57 +000073 gfs2_free_journal_extents(jd);
Steven Whitehousefefc03b2008-12-19 15:32:06 +000074 list_del(&jd->jd_list);
75 iput(jd->jd_inode);
Bob Peterson601ef0d2020-01-28 20:23:45 +010076 jd->jd_inode = NULL;
Steven Whitehousefefc03b2008-12-19 15:32:06 +000077 kfree(jd);
78 }
79}
80
David Teiglandb3b94fa2006-01-16 16:50:04 +000081static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid)
82{
83 struct gfs2_jdesc *jd;
David Teiglandb3b94fa2006-01-16 16:50:04 +000084
85 list_for_each_entry(jd, head, jd_list) {
Andreas Gruenbacher736b2f72020-12-07 00:06:32 +010086 if (jd->jd_jid == jid)
87 return jd;
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 }
Andreas Gruenbacher736b2f72020-12-07 00:06:32 +010089 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000090}
91
92struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid)
93{
94 struct gfs2_jdesc *jd;
95
96 spin_lock(&sdp->sd_jindex_spin);
97 jd = jdesc_find_i(&sdp->sd_jindex_list, jid);
98 spin_unlock(&sdp->sd_jindex_spin);
99
100 return jd;
101}
102
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103int gfs2_jdesc_check(struct gfs2_jdesc *jd)
104{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400105 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
106 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100107 u64 size = i_size_read(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108
Fabian Frederick47a9a522016-08-02 12:05:27 -0500109 if (gfs2_check_internal_file_size(jd->jd_inode, 8 << 20, BIT(30)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100112 jd->jd_blocks = size >> sdp->sd_sb.sb_bsize_shift;
113
114 if (gfs2_write_alloc_required(ip, 0, size)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000115 gfs2_consist_inode(ip);
Bob Peterson461cb412010-06-24 19:21:20 -0400116 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 }
118
Bob Peterson461cb412010-06-24 19:21:20 -0400119 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120}
121
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000122static int init_threads(struct gfs2_sbd *sdp)
123{
124 struct task_struct *p;
125 int error = 0;
126
127 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
128 if (IS_ERR(p)) {
129 error = PTR_ERR(p);
130 fs_err(sdp, "can't start logd thread: %d\n", error);
131 return error;
132 }
133 sdp->sd_logd_process = p;
134
135 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
136 if (IS_ERR(p)) {
137 error = PTR_ERR(p);
138 fs_err(sdp, "can't start quotad thread: %d\n", error);
139 goto fail;
140 }
141 sdp->sd_quotad_process = p;
142 return 0;
143
144fail:
145 kthread_stop(sdp->sd_logd_process);
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600146 sdp->sd_logd_process = NULL;
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000147 return error;
148}
149
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150/**
151 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
152 * @sdp: the filesystem
153 *
154 * Returns: errno
155 */
156
157int gfs2_make_fs_rw(struct gfs2_sbd *sdp)
158{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400159 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500160 struct gfs2_glock *j_gl = ip->i_gl;
Al Viro55167622006-10-13 21:47:13 -0400161 struct gfs2_log_header_host head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 int error;
163
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000164 error = init_threads(sdp);
Andrew Price62dd0f92021-03-15 12:24:00 +0000165 if (error) {
166 gfs2_withdraw_delayed(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167 return error;
Andrew Price62dd0f92021-03-15 12:24:00 +0000168 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500170 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100171 if (gfs2_withdrawn(sdp)) {
172 error = -EIO;
173 goto fail;
174 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175
Abhi Dasf4686c22019-05-02 14:17:40 -0500176 error = gfs2_find_jhead(sdp->sd_jdesc, &head, false);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100177 if (error || gfs2_withdrawn(sdp))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178 goto fail;
179
180 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
181 gfs2_consist(sdp);
182 error = -EIO;
183 goto fail;
184 }
185
186 /* Initialize some head of the log stuff */
187 sdp->sd_log_sequence = head.lh_sequence + 1;
188 gfs2_log_pointers_init(sdp, head.lh_blkno);
189
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 error = gfs2_quota_init(sdp);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100191 if (error || gfs2_withdrawn(sdp))
Steven Whitehousea91ea692006-09-04 12:04:26 -0400192 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193
194 set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
195
David Teiglandb3b94fa2006-01-16 16:50:04 +0000196 return 0;
197
Steven Whitehousea91ea692006-09-04 12:04:26 -0400198fail:
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600199 if (sdp->sd_quotad_process)
200 kthread_stop(sdp->sd_quotad_process);
201 sdp->sd_quotad_process = NULL;
202 if (sdp->sd_logd_process)
203 kthread_stop(sdp->sd_logd_process);
204 sdp->sd_logd_process = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 return error;
206}
207
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500208void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100209{
210 const struct gfs2_statfs_change *str = buf;
211
212 sc->sc_total = be64_to_cpu(str->sc_total);
213 sc->sc_free = be64_to_cpu(str->sc_free);
214 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
215}
216
Abhi Das73092692020-10-20 15:58:03 -0500217void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100218{
219 struct gfs2_statfs_change *str = buf;
220
221 str->sc_total = cpu_to_be64(sc->sc_total);
222 str->sc_free = cpu_to_be64(sc->sc_free);
223 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
224}
225
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226int gfs2_statfs_init(struct gfs2_sbd *sdp)
227{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400228 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400229 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400230 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400231 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 struct buffer_head *m_bh, *l_bh;
233 struct gfs2_holder gh;
234 int error;
235
236 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
237 &gh);
238 if (error)
239 return error;
240
241 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
242 if (error)
243 goto out;
244
245 if (sdp->sd_args.ar_spectator) {
246 spin_lock(&sdp->sd_statfs_spin);
247 gfs2_statfs_change_in(m_sc, m_bh->b_data +
248 sizeof(struct gfs2_dinode));
249 spin_unlock(&sdp->sd_statfs_spin);
250 } else {
251 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
252 if (error)
253 goto out_m_bh;
254
255 spin_lock(&sdp->sd_statfs_spin);
256 gfs2_statfs_change_in(m_sc, m_bh->b_data +
257 sizeof(struct gfs2_dinode));
258 gfs2_statfs_change_in(l_sc, l_bh->b_data +
259 sizeof(struct gfs2_dinode));
260 spin_unlock(&sdp->sd_statfs_spin);
261
262 brelse(l_bh);
263 }
264
Steven Whitehousea91ea692006-09-04 12:04:26 -0400265out_m_bh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 brelse(m_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400267out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 return 0;
270}
271
Steven Whitehousecd915492006-09-04 12:49:07 -0400272void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
273 s64 dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400275 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400276 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500277 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 struct buffer_head *l_bh;
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500279 s64 x, y;
280 int need_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 int error;
282
283 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
284 if (error)
285 return;
286
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000287 gfs2_trans_add_meta(l_ip->i_gl, l_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288
289 spin_lock(&sdp->sd_statfs_spin);
290 l_sc->sc_total += total;
291 l_sc->sc_free += free;
292 l_sc->sc_dinodes += dinodes;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400293 gfs2_statfs_change_out(l_sc, l_bh->b_data + sizeof(struct gfs2_dinode));
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500294 if (sdp->sd_args.ar_statfs_percent) {
295 x = 100 * l_sc->sc_free;
296 y = m_sc->sc_free * sdp->sd_args.ar_statfs_percent;
297 if (x >= y || x <= -y)
298 need_sync = 1;
299 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300 spin_unlock(&sdp->sd_statfs_spin);
301
302 brelse(l_bh);
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500303 if (need_sync)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500304 gfs2_wake_up_statfs(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000305}
306
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500307void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh,
308 struct buffer_head *l_bh)
309{
310 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
311 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
312 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
313 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
314
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000315 gfs2_trans_add_meta(l_ip->i_gl, l_bh);
Bob Peterson901c6c62015-03-11 09:52:31 -0500316 gfs2_trans_add_meta(m_ip->i_gl, m_bh);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500317
318 spin_lock(&sdp->sd_statfs_spin);
319 m_sc->sc_total += l_sc->sc_total;
320 m_sc->sc_free += l_sc->sc_free;
321 m_sc->sc_dinodes += l_sc->sc_dinodes;
322 memset(l_sc, 0, sizeof(struct gfs2_statfs_change));
323 memset(l_bh->b_data + sizeof(struct gfs2_dinode),
324 0, sizeof(struct gfs2_statfs_change));
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500325 gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode));
Bob Peterson901c6c62015-03-11 09:52:31 -0500326 spin_unlock(&sdp->sd_statfs_spin);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500327}
328
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100329int gfs2_statfs_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000330{
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100331 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400332 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
333 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400334 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
335 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336 struct gfs2_holder gh;
337 struct buffer_head *m_bh, *l_bh;
338 int error;
339
340 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
341 &gh);
342 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600343 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344
345 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
346 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600347 goto out_unlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348
349 spin_lock(&sdp->sd_statfs_spin);
350 gfs2_statfs_change_in(m_sc, m_bh->b_data +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400351 sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352 if (!l_sc->sc_total && !l_sc->sc_free && !l_sc->sc_dinodes) {
353 spin_unlock(&sdp->sd_statfs_spin);
354 goto out_bh;
355 }
356 spin_unlock(&sdp->sd_statfs_spin);
357
358 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
359 if (error)
360 goto out_bh;
361
362 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
363 if (error)
364 goto out_bh2;
365
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500366 update_statfs(sdp, m_bh, l_bh);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500367 sdp->sd_statfs_force_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368
369 gfs2_trans_end(sdp);
370
Steven Whitehousea91ea692006-09-04 12:04:26 -0400371out_bh2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372 brelse(l_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400373out_bh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000374 brelse(m_bh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600375out_unlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376 gfs2_glock_dq_uninit(&gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600377out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378 return error;
379}
380
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381struct lfcc {
382 struct list_head list;
383 struct gfs2_holder gh;
384};
385
386/**
387 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
388 * journals are clean
389 * @sdp: the file system
David Teiglandb3b94fa2006-01-16 16:50:04 +0000390 *
391 * Returns: errno
392 */
393
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500394static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000395{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500396 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397 struct gfs2_jdesc *jd;
398 struct lfcc *lfcc;
399 LIST_HEAD(list);
Al Viro55167622006-10-13 21:47:13 -0400400 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000401 int error;
402
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
404 lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL);
405 if (!lfcc) {
406 error = -ENOMEM;
407 goto out;
408 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400409 ip = GFS2_I(jd->jd_inode);
410 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411 if (error) {
412 kfree(lfcc);
413 goto out;
414 }
415 list_add(&lfcc->list, &list);
416 }
417
Benjamin Marzinski24972552014-05-01 22:26:55 -0500418 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE,
Bob Petersonc860f8f2020-06-25 14:42:17 -0500419 LM_FLAG_NOEXP, &sdp->sd_freeze_gh);
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500420 if (error)
421 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422
423 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
424 error = gfs2_jdesc_check(jd);
425 if (error)
426 break;
Abhi Dasf4686c22019-05-02 14:17:40 -0500427 error = gfs2_find_jhead(jd, &lh, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428 if (error)
429 break;
430 if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
431 error = -EBUSY;
432 break;
433 }
434 }
435
436 if (error)
Bob Petersonc77b52c2020-12-22 14:43:27 -0600437 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000438
Steven Whitehousea91ea692006-09-04 12:04:26 -0400439out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440 while (!list_empty(&list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +0100441 lfcc = list_first_entry(&list, struct lfcc, list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442 list_del(&lfcc->list);
443 gfs2_glock_dq_uninit(&lfcc->gh);
444 kfree(lfcc);
445 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000446 return error;
447}
448
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100449void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
450{
451 struct gfs2_dinode *str = buf;
452
453 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
454 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
455 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
456 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
457 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
458 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
Eric W. Biedermand0546422013-01-31 22:08:10 -0800459 str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode));
460 str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode));
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100461 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
462 str->di_size = cpu_to_be64(i_size_read(&ip->i_inode));
463 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
464 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
465 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
466 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
467
468 str->di_goal_meta = cpu_to_be64(ip->i_goal);
469 str->di_goal_data = cpu_to_be64(ip->i_goal);
470 str->di_generation = cpu_to_be64(ip->i_generation);
471
472 str->di_flags = cpu_to_be32(ip->i_diskflags);
473 str->di_height = cpu_to_be16(ip->i_height);
474 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
475 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
476 GFS2_FORMAT_DE : 0);
477 str->di_depth = cpu_to_be16(ip->i_depth);
478 str->di_entries = cpu_to_be32(ip->i_entries);
479
480 str->di_eattr = cpu_to_be64(ip->i_eattr);
481 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
482 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
483 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
484}
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100485
486/**
487 * gfs2_write_inode - Make sure the inode is stable on the disk
488 * @inode: The inode
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100489 * @wbc: The writeback control structure
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100490 *
491 * Returns: errno
492 */
493
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100494static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100495{
496 struct gfs2_inode *ip = GFS2_I(inode);
497 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100498 struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl);
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100499 struct backing_dev_info *bdi = inode_to_bdi(metamapping->host);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100500 int ret = 0;
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200501 bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100502
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200503 if (flush_all)
Bob Petersonc1696fb2018-01-17 00:01:33 +0100504 gfs2_log_flush(GFS2_SB(inode), ip->i_gl,
Bob Peterson805c09072018-01-08 10:34:17 -0500505 GFS2_LOG_HEAD_FLUSH_NORMAL |
506 GFS2_LFC_WRITE_INODE);
Tejun Heoa88a3412015-05-22 17:13:28 -0400507 if (bdi->wb.dirty_exceeded)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100508 gfs2_ail1_flush(sdp, wbc);
Steven Whitehouse1d4ec642011-08-02 13:13:20 +0100509 else
510 filemap_fdatawrite(metamapping);
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200511 if (flush_all)
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100512 ret = filemap_fdatawait(metamapping);
513 if (ret)
514 mark_inode_dirty_sync(inode);
Abhi Das957a7ac2018-01-30 10:00:09 -0700515 else {
516 spin_lock(&inode->i_lock);
517 if (!(inode->i_flags & I_DIRTY))
518 gfs2_ordered_del_inode(ip);
519 spin_unlock(&inode->i_lock);
520 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100521 return ret;
522}
523
524/**
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100525 * gfs2_dirty_inode - check for atime updates
526 * @inode: The inode in question
527 * @flags: The type of dirty
528 *
529 * Unfortunately it can be called under any combination of inode
530 * glock and transaction lock, so we have to check carefully.
531 *
532 * At the moment this deals only with atime - it should be possible
533 * to expand that role in future, once a review of the locking has
534 * been carried out.
535 */
536
537static void gfs2_dirty_inode(struct inode *inode, int flags)
538{
539 struct gfs2_inode *ip = GFS2_I(inode);
540 struct gfs2_sbd *sdp = GFS2_SB(inode);
541 struct buffer_head *bh;
542 struct gfs2_holder gh;
543 int need_unlock = 0;
544 int need_endtrans = 0;
545 int ret;
546
Bob Petersoneb43e6602019-11-14 09:52:15 -0500547 if (unlikely(gfs2_withdrawn(sdp)))
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500548 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100549 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
550 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
551 if (ret) {
552 fs_err(sdp, "dirty_inode: glock %d\n", ret);
Bob Petersone28c02b2020-07-30 12:31:38 -0500553 gfs2_dump_glock(NULL, ip->i_gl, true);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100554 return;
555 }
556 need_unlock = 1;
Benjamin Marzinski3d162682012-11-06 00:49:28 -0600557 } else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE))
558 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100559
560 if (current->journal_info == NULL) {
561 ret = gfs2_trans_begin(sdp, RES_DINODE, 0);
562 if (ret) {
563 fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret);
564 goto out;
565 }
566 need_endtrans = 1;
567 }
568
569 ret = gfs2_meta_inode_buffer(ip, &bh);
570 if (ret == 0) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000571 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100572 gfs2_dinode_out(ip, bh->b_data);
573 brelse(bh);
574 }
575
576 if (need_endtrans)
577 gfs2_trans_end(sdp);
578out:
579 if (need_unlock)
580 gfs2_glock_dq_uninit(&gh);
581}
582
583/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100584 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
585 * @sdp: the filesystem
586 *
587 * Returns: errno
588 */
589
Yang Lieb602522021-03-04 09:28:57 -0500590void gfs2_make_fs_ro(struct gfs2_sbd *sdp)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100591{
Bob Peterson601ef0d2020-01-28 20:23:45 +0100592 int log_write_allowed = test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100593
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100594 gfs2_flush_delete_work(sdp);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100595 if (!log_write_allowed && current == sdp->sd_quotad_process)
596 fs_warn(sdp, "The quotad daemon is withdrawing.\n");
597 else if (sdp->sd_quotad_process)
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600598 kthread_stop(sdp->sd_quotad_process);
599 sdp->sd_quotad_process = NULL;
Bob Peterson601ef0d2020-01-28 20:23:45 +0100600
601 if (!log_write_allowed && current == sdp->sd_logd_process)
602 fs_warn(sdp, "The logd daemon is withdrawing.\n");
603 else if (sdp->sd_logd_process)
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600604 kthread_stop(sdp->sd_logd_process);
605 sdp->sd_logd_process = NULL;
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000606
Bob Peterson601ef0d2020-01-28 20:23:45 +0100607 if (log_write_allowed) {
608 gfs2_quota_sync(sdp->sd_vfs, 0);
609 gfs2_statfs_sync(sdp->sd_vfs, 0);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100610
Bob Peterson601ef0d2020-01-28 20:23:45 +0100611 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN |
612 GFS2_LFC_MAKE_FS_RO);
Andreas Gruenbacherf3708fb2020-12-13 09:21:34 +0100613 wait_event_timeout(sdp->sd_log_waitq,
614 gfs2_log_is_empty(sdp),
615 HZ * 5);
616 gfs2_assert_warn(sdp, gfs2_log_is_empty(sdp));
Bob Peterson601ef0d2020-01-28 20:23:45 +0100617 } else {
Andreas Gruenbacherf3708fb2020-12-13 09:21:34 +0100618 wait_event_timeout(sdp->sd_log_waitq,
619 gfs2_log_is_empty(sdp),
Bob Peterson601ef0d2020-01-28 20:23:45 +0100620 HZ * 5);
621 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100622 gfs2_quota_cleanup(sdp);
623
Bob Peterson601ef0d2020-01-28 20:23:45 +0100624 if (!log_write_allowed)
625 sdp->sd_vfs->s_flags |= SB_RDONLY;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100626}
627
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100628/**
629 * gfs2_put_super - Unmount the filesystem
630 * @sb: The VFS superblock
631 *
632 */
633
634static void gfs2_put_super(struct super_block *sb)
635{
636 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100637 struct gfs2_jdesc *jd;
638
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100639 /* No more recovery requests */
640 set_bit(SDF_NORECOVERY, &sdp->sd_flags);
641 smp_mb();
642
643 /* Wait on outstanding recovery */
644restart:
645 spin_lock(&sdp->sd_jindex_spin);
646 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
647 if (!test_bit(JDF_RECOVERY, &jd->jd_flags))
648 continue;
649 spin_unlock(&sdp->sd_jindex_spin);
650 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
NeilBrown74316202014-07-07 15:16:04 +1000651 TASK_UNINTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100652 goto restart;
653 }
654 spin_unlock(&sdp->sd_jindex_spin);
655
David Howellsbc98a422017-07-17 08:45:34 +0100656 if (!sb_rdonly(sb)) {
Yang Lieb602522021-03-04 09:28:57 -0500657 gfs2_make_fs_ro(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100658 }
Andreas Gruenbacher5a61ae12020-08-28 23:44:36 +0200659 WARN_ON(gfs2_withdrawing(sdp));
660
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100661 /* At this point, we're through modifying the disk */
662
663 /* Release stuff */
664
665 iput(sdp->sd_jindex);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100666 iput(sdp->sd_statfs_inode);
667 iput(sdp->sd_rindex);
668 iput(sdp->sd_quota_inode);
669
670 gfs2_glock_put(sdp->sd_rename_gl);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500671 gfs2_glock_put(sdp->sd_freeze_gl);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100672
673 if (!sdp->sd_args.ar_spectator) {
Bob Peterson601ef0d2020-01-28 20:23:45 +0100674 if (gfs2_holder_initialized(&sdp->sd_journal_gh))
675 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
676 if (gfs2_holder_initialized(&sdp->sd_jinode_gh))
677 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100678 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
679 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Abhi Das97fd7342020-10-20 15:58:04 -0500680 free_local_statfs_inodes(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100681 iput(sdp->sd_qc_inode);
682 }
683
684 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
685 gfs2_clear_rgrpd(sdp);
686 gfs2_jindex_free(sdp);
687 /* Take apart glock structures and buffer lists */
688 gfs2_gl_hash_clear(sdp);
Bob Petersona9dd9452020-10-27 10:10:02 -0500689 truncate_inode_pages_final(&sdp->sd_aspace);
Bob Petersonb2fb7da2017-07-28 07:22:55 -0500690 gfs2_delete_debugfs_file(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100691 /* Unmount the locking protocol */
692 gfs2_lm_unmount(sdp);
693
694 /* At this point, we're through participating in the lockspace */
695 gfs2_sys_fs_del(sdp);
Jamie Ilesc2a04b02020-10-12 14:13:09 +0100696 free_sbd(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100697}
698
699/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100700 * gfs2_sync_fs - sync the filesystem
701 * @sb: the superblock
Lee Jonesc551f662021-03-30 17:44:29 +0100702 * @wait: true to wait for completion
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100703 *
704 * Flushes the log to disk.
705 */
706
707static int gfs2_sync_fs(struct super_block *sb, int wait)
708{
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100709 struct gfs2_sbd *sdp = sb->s_fs_info;
Jan Karaa1177822012-07-03 16:45:29 +0200710
711 gfs2_quota_sync(sb, -1);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500712 if (wait)
Bob Peterson805c09072018-01-08 10:34:17 -0500713 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
714 GFS2_LFC_SYNC_FS);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500715 return sdp->sd_log_error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100716}
717
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600718void gfs2_freeze_func(struct work_struct *work)
719{
720 int error;
721 struct gfs2_holder freeze_gh;
722 struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work);
723 struct super_block *sb = sdp->sd_vfs;
724
725 atomic_inc(&sb->s_active);
Bob Petersonc77b52c2020-12-22 14:43:27 -0600726 error = gfs2_freeze_lock(sdp, &freeze_gh, 0);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600727 if (error) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600728 gfs2_assert_withdraw(sdp, 0);
Abhi Das8f9182192019-04-30 16:53:47 -0500729 } else {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600730 atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN);
731 error = thaw_super(sb);
732 if (error) {
Bob Petersonf29e62e2019-05-13 09:42:18 -0500733 fs_info(sdp, "GFS2: couldn't thaw filesystem: %d\n",
734 error);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600735 gfs2_assert_withdraw(sdp, 0);
736 }
Bob Petersonc77b52c2020-12-22 14:43:27 -0600737 gfs2_freeze_unlock(&freeze_gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600738 }
739 deactivate_super(sb);
Abhi Das8f9182192019-04-30 16:53:47 -0500740 clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags);
741 wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600742 return;
743}
744
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100745/**
746 * gfs2_freeze - prevent further writes to the filesystem
747 * @sb: the VFS structure for the filesystem
748 *
749 */
750
751static int gfs2_freeze(struct super_block *sb)
752{
753 struct gfs2_sbd *sdp = sb->s_fs_info;
Bob Petersonff132c52021-03-25 08:51:13 -0400754 int error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100755
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600756 mutex_lock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400757 if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN) {
758 error = -EBUSY;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600759 goto out;
Bob Petersonff132c52021-03-25 08:51:13 -0400760 }
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600761
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100762 for (;;) {
Bob Peterson60528af2019-11-14 09:53:36 -0500763 if (gfs2_withdrawn(sdp)) {
764 error = -EINVAL;
765 goto out;
766 }
767
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500768 error = gfs2_lock_fs_check_clean(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100769 if (!error)
770 break;
771
Bob Peterson55317f52019-04-29 09:36:23 -0600772 if (error == -EBUSY)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100773 fs_err(sdp, "waiting for recovery before freeze\n");
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500774 else if (error == -EIO) {
775 fs_err(sdp, "Fatal IO error: cannot freeze gfs2 due "
776 "to recovery error.\n");
777 goto out;
778 } else {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100779 fs_err(sdp, "error freezing FS: %d\n", error);
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500780 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100781 fs_err(sdp, "retrying...\n");
782 msleep(1000);
783 }
Abhi Das8f9182192019-04-30 16:53:47 -0500784 set_bit(SDF_FS_FROZEN, &sdp->sd_flags);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600785out:
786 mutex_unlock(&sdp->sd_freeze_mutex);
787 return error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100788}
789
790/**
791 * gfs2_unfreeze - reallow writes to the filesystem
792 * @sb: the VFS structure for the filesystem
793 *
794 */
795
796static int gfs2_unfreeze(struct super_block *sb)
797{
Steven Whitehoused564053f2013-01-11 10:49:34 +0000798 struct gfs2_sbd *sdp = sb->s_fs_info;
799
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600800 mutex_lock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400801 if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN ||
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500802 !gfs2_holder_initialized(&sdp->sd_freeze_gh)) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600803 mutex_unlock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400804 return -EINVAL;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600805 }
806
Bob Petersonc77b52c2020-12-22 14:43:27 -0600807 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600808 mutex_unlock(&sdp->sd_freeze_mutex);
Abhi Das8f9182192019-04-30 16:53:47 -0500809 return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100810}
811
812/**
Lee Jonesc551f662021-03-30 17:44:29 +0100813 * statfs_slow_fill - fill in the sg for a given RG
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100814 * @rgd: the RG
815 * @sc: the sc structure
816 *
817 * Returns: 0 on success, -ESTALE if the LVB is invalid
818 */
819
820static int statfs_slow_fill(struct gfs2_rgrpd *rgd,
821 struct gfs2_statfs_change_host *sc)
822{
823 gfs2_rgrp_verify(rgd);
824 sc->sc_total += rgd->rd_data;
825 sc->sc_free += rgd->rd_free;
826 sc->sc_dinodes += rgd->rd_dinodes;
827 return 0;
828}
829
830/**
831 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
832 * @sdp: the filesystem
833 * @sc: the sc info that will be returned
834 *
835 * Any error (other than a signal) will cause this routine to fall back
836 * to the synchronous version.
837 *
838 * FIXME: This really shouldn't busy wait like this.
839 *
840 * Returns: errno
841 */
842
843static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
844{
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100845 struct gfs2_rgrpd *rgd_next;
846 struct gfs2_holder *gha, *gh;
847 unsigned int slots = 64;
848 unsigned int x;
849 int done;
850 int error = 0, err;
851
852 memset(sc, 0, sizeof(struct gfs2_statfs_change_host));
Kees Cook6da2ec52018-06-12 13:55:00 -0700853 gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100854 if (!gha)
855 return -ENOMEM;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500856 for (x = 0; x < slots; x++)
857 gfs2_holder_mark_uninitialized(gha + x);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100858
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100859 rgd_next = gfs2_rgrpd_get_first(sdp);
860
861 for (;;) {
862 done = 1;
863
864 for (x = 0; x < slots; x++) {
865 gh = gha + x;
866
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500867 if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100868 err = gfs2_glock_wait(gh);
869 if (err) {
870 gfs2_holder_uninit(gh);
871 error = err;
872 } else {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -0500873 if (!error) {
874 struct gfs2_rgrpd *rgd =
875 gfs2_glock2rgrp(gh->gh_gl);
876
877 error = statfs_slow_fill(rgd, sc);
878 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100879 gfs2_glock_dq_uninit(gh);
880 }
881 }
882
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500883 if (gfs2_holder_initialized(gh))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100884 done = 0;
885 else if (rgd_next && !error) {
886 error = gfs2_glock_nq_init(rgd_next->rd_gl,
887 LM_ST_SHARED,
888 GL_ASYNC,
889 gh);
890 rgd_next = gfs2_rgrpd_get_next(rgd_next);
891 done = 0;
892 }
893
894 if (signal_pending(current))
895 error = -ERESTARTSYS;
896 }
897
898 if (done)
899 break;
900
901 yield();
902 }
903
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100904 kfree(gha);
905 return error;
906}
907
908/**
909 * gfs2_statfs_i - Do a statfs
910 * @sdp: the filesystem
Lee Jonesc551f662021-03-30 17:44:29 +0100911 * @sc: the sc structure
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100912 *
913 * Returns: errno
914 */
915
916static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
917{
918 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
919 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
920
921 spin_lock(&sdp->sd_statfs_spin);
922
923 *sc = *m_sc;
924 sc->sc_total += l_sc->sc_total;
925 sc->sc_free += l_sc->sc_free;
926 sc->sc_dinodes += l_sc->sc_dinodes;
927
928 spin_unlock(&sdp->sd_statfs_spin);
929
930 if (sc->sc_free < 0)
931 sc->sc_free = 0;
932 if (sc->sc_free > sc->sc_total)
933 sc->sc_free = sc->sc_total;
934 if (sc->sc_dinodes < 0)
935 sc->sc_dinodes = 0;
936
937 return 0;
938}
939
940/**
941 * gfs2_statfs - Gather and return stats about the filesystem
Lee Jonesc551f662021-03-30 17:44:29 +0100942 * @dentry: The name of the link
943 * @buf: The buffer
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100944 *
945 * Returns: 0 on success or error code
946 */
947
948static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
949{
Al Virofc640052016-04-10 01:33:30 -0400950 struct super_block *sb = dentry->d_sb;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100951 struct gfs2_sbd *sdp = sb->s_fs_info;
952 struct gfs2_statfs_change_host sc;
953 int error;
954
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100955 error = gfs2_rindex_update(sdp);
956 if (error)
957 return error;
958
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100959 if (gfs2_tune_get(sdp, gt_statfs_slow))
960 error = gfs2_statfs_slow(sdp, &sc);
961 else
962 error = gfs2_statfs_i(sdp, &sc);
963
964 if (error)
965 return error;
966
967 buf->f_type = GFS2_MAGIC;
968 buf->f_bsize = sdp->sd_sb.sb_bsize;
969 buf->f_blocks = sc.sc_total;
970 buf->f_bfree = sc.sc_free;
971 buf->f_bavail = sc.sc_free;
972 buf->f_files = sc.sc_dinodes + sc.sc_free;
973 buf->f_ffree = sc.sc_free;
974 buf->f_namelen = GFS2_FNAMESIZE;
975
976 return 0;
977}
978
979/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100980 * gfs2_drop_inode - Drop an inode (test for remote unlink)
981 * @inode: The inode to drop
982 *
Andreas Gruenbacher61b91cf2017-08-01 09:54:33 -0500983 * If we've received a callback on an iopen lock then it's because a
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100984 * remote node tried to deallocate the inode but failed due to this node
985 * still having the inode open. Here we mark the link count zero
986 * since we know that it must have reached zero if the GLF_DEMOTE flag
987 * is set on the iopen glock. If we didn't do a disk read since the
988 * remote node removed the final link then we might otherwise miss
989 * this event. This check ensures that this node will deallocate the
990 * inode's blocks, or alternatively pass the baton on to another
991 * node for later deallocation.
992 */
993
Al Viro45321ac2010-06-07 13:43:19 -0400994static int gfs2_drop_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100995{
996 struct gfs2_inode *ip = GFS2_I(inode);
997
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500998 if (!test_bit(GIF_FREE_VFS_INODE, &ip->i_flags) &&
999 inode->i_nlink &&
1000 gfs2_holder_initialized(&ip->i_iopen_gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001001 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001002 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001003 clear_nlink(inode);
1004 }
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -05001005
1006 /*
1007 * When under memory pressure when an inode's link count has dropped to
1008 * zero, defer deleting the inode to the delete workqueue. This avoids
1009 * calling into DLM under memory pressure, which can deadlock.
1010 */
1011 if (!inode->i_nlink &&
1012 unlikely(current->flags & PF_MEMALLOC) &&
1013 gfs2_holder_initialized(&ip->i_iopen_gh)) {
1014 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1015
1016 gfs2_glock_hold(gl);
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01001017 if (!gfs2_queue_delete_work(gl, 0))
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -05001018 gfs2_glock_queue_put(gl);
1019 return false;
1020 }
1021
Al Viro45321ac2010-06-07 13:43:19 -04001022 return generic_drop_inode(inode);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001023}
1024
1025static int is_ancestor(const struct dentry *d1, const struct dentry *d2)
1026{
1027 do {
1028 if (d1 == d2)
1029 return 1;
1030 d1 = d1->d_parent;
1031 } while (!IS_ROOT(d1));
1032 return 0;
1033}
1034
1035/**
1036 * gfs2_show_options - Show mount options for /proc/mounts
1037 * @s: seq_file structure
Al Viro34c80b12011-12-08 21:32:45 -05001038 * @root: root of this (sub)tree
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001039 *
1040 * Returns: 0 on success or error code
1041 */
1042
Al Viro34c80b12011-12-08 21:32:45 -05001043static int gfs2_show_options(struct seq_file *s, struct dentry *root)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001044{
Al Viro34c80b12011-12-08 21:32:45 -05001045 struct gfs2_sbd *sdp = root->d_sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001046 struct gfs2_args *args = &sdp->sd_args;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001047 int val;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001048
Al Viro34c80b12011-12-08 21:32:45 -05001049 if (is_ancestor(root, sdp->sd_master_dir))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001050 seq_puts(s, ",meta");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001051 if (args->ar_lockproto[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001052 seq_show_option(s, "lockproto", args->ar_lockproto);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001053 if (args->ar_locktable[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001054 seq_show_option(s, "locktable", args->ar_locktable);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001055 if (args->ar_hostdata[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001056 seq_show_option(s, "hostdata", args->ar_hostdata);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001057 if (args->ar_spectator)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001058 seq_puts(s, ",spectator");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001059 if (args->ar_localflocks)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001060 seq_puts(s, ",localflocks");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001061 if (args->ar_debug)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001062 seq_puts(s, ",debug");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001063 if (args->ar_posix_acl)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001064 seq_puts(s, ",acl");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001065 if (args->ar_quota != GFS2_QUOTA_DEFAULT) {
1066 char *state;
1067 switch (args->ar_quota) {
1068 case GFS2_QUOTA_OFF:
1069 state = "off";
1070 break;
1071 case GFS2_QUOTA_ACCOUNT:
1072 state = "account";
1073 break;
1074 case GFS2_QUOTA_ON:
1075 state = "on";
1076 break;
1077 default:
1078 state = "unknown";
1079 break;
1080 }
1081 seq_printf(s, ",quota=%s", state);
1082 }
1083 if (args->ar_suiddir)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001084 seq_puts(s, ",suiddir");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001085 if (args->ar_data != GFS2_DATA_DEFAULT) {
1086 char *state;
1087 switch (args->ar_data) {
1088 case GFS2_DATA_WRITEBACK:
1089 state = "writeback";
1090 break;
1091 case GFS2_DATA_ORDERED:
1092 state = "ordered";
1093 break;
1094 default:
1095 state = "unknown";
1096 break;
1097 }
1098 seq_printf(s, ",data=%s", state);
1099 }
1100 if (args->ar_discard)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001101 seq_puts(s, ",discard");
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -05001102 val = sdp->sd_tune.gt_logd_secs;
1103 if (val != 30)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001104 seq_printf(s, ",commit=%d", val);
1105 val = sdp->sd_tune.gt_statfs_quantum;
1106 if (val != 30)
1107 seq_printf(s, ",statfs_quantum=%d", val);
Steven Whitehouse2b9731e2012-08-20 17:07:49 +01001108 else if (sdp->sd_tune.gt_statfs_slow)
1109 seq_puts(s, ",statfs_quantum=0");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001110 val = sdp->sd_tune.gt_quota_quantum;
1111 if (val != 60)
1112 seq_printf(s, ",quota_quantum=%d", val);
1113 if (args->ar_statfs_percent)
1114 seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent);
Bob Petersond34843d2009-08-24 10:44:18 +01001115 if (args->ar_errors != GFS2_ERRORS_DEFAULT) {
1116 const char *state;
1117
1118 switch (args->ar_errors) {
1119 case GFS2_ERRORS_WITHDRAW:
1120 state = "withdraw";
1121 break;
1122 case GFS2_ERRORS_PANIC:
1123 state = "panic";
1124 break;
1125 default:
1126 state = "unknown";
1127 break;
1128 }
1129 seq_printf(s, ",errors=%s", state);
1130 }
Steven Whitehousecdcfde62009-10-30 10:48:53 +00001131 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001132 seq_puts(s, ",nobarrier");
Steven Whitehouse913a71d2010-05-06 11:03:29 +01001133 if (test_bit(SDF_DEMOTE, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001134 seq_puts(s, ",demote_interface_used");
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001135 if (args->ar_rgrplvb)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001136 seq_puts(s, ",rgrplvb");
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001137 if (args->ar_loccookie)
1138 seq_puts(s, ",loccookie");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001139 return 0;
1140}
1141
Steven Whitehousef42ab082011-04-14 16:50:31 +01001142static void gfs2_final_release_pages(struct gfs2_inode *ip)
1143{
1144 struct inode *inode = &ip->i_inode;
1145 struct gfs2_glock *gl = ip->i_gl;
1146
1147 truncate_inode_pages(gfs2_glock2aspace(ip->i_gl), 0);
1148 truncate_inode_pages(&inode->i_data, 0);
1149
Bob Peterson638803d2019-06-06 07:33:38 -05001150 if (atomic_read(&gl->gl_revokes) == 0) {
Steven Whitehousef42ab082011-04-14 16:50:31 +01001151 clear_bit(GLF_LFLUSH, &gl->gl_flags);
1152 clear_bit(GLF_DIRTY, &gl->gl_flags);
1153 }
1154}
1155
1156static int gfs2_dinode_dealloc(struct gfs2_inode *ip)
1157{
1158 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001159 struct gfs2_rgrpd *rgd;
Bob Peterson564e12b2011-11-21 13:36:17 -05001160 struct gfs2_holder gh;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001161 int error;
1162
1163 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001164 gfs2_consist_inode(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001165 return -EIO;
1166 }
1167
Bob Peterson8e2e0042012-07-19 08:12:40 -04001168 error = gfs2_rindex_update(sdp);
1169 if (error)
1170 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001171
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001172 error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001173 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001174 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001175
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001176 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001177 if (!rgd) {
1178 gfs2_consist_inode(ip);
1179 error = -EIO;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001180 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001181 }
1182
Bob Peterson4fc7ec32018-04-24 10:35:02 -07001183 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1184 LM_FLAG_NODE_SCOPE, &gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001185 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001186 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001187
Steven Whitehouse4667a0e2011-04-18 14:18:09 +01001188 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
1189 sdp->sd_jdesc->jd_blocks);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001190 if (error)
1191 goto out_rg_gunlock;
1192
1193 gfs2_free_di(rgd, ip);
1194
1195 gfs2_final_release_pages(ip);
1196
1197 gfs2_trans_end(sdp);
1198
1199out_rg_gunlock:
Bob Peterson564e12b2011-11-21 13:36:17 -05001200 gfs2_glock_dq_uninit(&gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001201out_qs:
1202 gfs2_quota_unhold(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001203 return error;
1204}
1205
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001206/**
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001207 * gfs2_glock_put_eventually
1208 * @gl: The glock to put
1209 *
1210 * When under memory pressure, trigger a deferred glock put to make sure we
1211 * won't call into DLM and deadlock. Otherwise, put the glock directly.
1212 */
1213
1214static void gfs2_glock_put_eventually(struct gfs2_glock *gl)
1215{
1216 if (current->flags & PF_MEMALLOC)
1217 gfs2_glock_queue_put(gl);
1218 else
1219 gfs2_glock_put(gl);
1220}
1221
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001222static bool gfs2_upgrade_iopen_glock(struct inode *inode)
1223{
1224 struct gfs2_inode *ip = GFS2_I(inode);
1225 struct gfs2_sbd *sdp = GFS2_SB(inode);
1226 struct gfs2_holder *gh = &ip->i_iopen_gh;
1227 long timeout = 5 * HZ;
1228 int error;
1229
1230 gh->gh_flags |= GL_NOCACHE;
1231 gfs2_glock_dq_wait(gh);
1232
1233 /*
1234 * If there are no other lock holders, we'll get the lock immediately.
1235 * Otherwise, the other nodes holding the lock will be notified about
1236 * our locking request. If they don't have the inode open, they'll
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001237 * evict the cached inode and release the lock. Otherwise, if they
1238 * poke the inode glock, we'll take this as an indication that they
1239 * still need the iopen glock and that they'll take care of deleting
1240 * the inode when they're done. As a last resort, if another node
1241 * keeps holding the iopen glock without showing any activity on the
1242 * inode glock, we'll eventually time out.
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001243 *
1244 * Note that we're passing the LM_FLAG_TRY_1CB flag to the first
1245 * locking request as an optimization to notify lock holders as soon as
1246 * possible. Without that flag, they'd be notified implicitly by the
1247 * second locking request.
1248 */
1249
1250 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE, gh);
1251 error = gfs2_glock_nq(gh);
1252 if (error != GLR_TRYFAILED)
1253 return !error;
1254
1255 gfs2_holder_reinit(LM_ST_EXCLUSIVE, GL_ASYNC | GL_NOCACHE, gh);
1256 error = gfs2_glock_nq(gh);
1257 if (error)
1258 return false;
1259
1260 timeout = wait_event_interruptible_timeout(sdp->sd_async_glock_wait,
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001261 !test_bit(HIF_WAIT, &gh->gh_iflags) ||
1262 test_bit(GLF_DEMOTE, &ip->i_gl->gl_flags),
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001263 timeout);
1264 if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1265 gfs2_glock_dq(gh);
1266 return false;
1267 }
1268 return true;
1269}
1270
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001271/**
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001272 * evict_should_delete - determine whether the inode is eligible for deletion
1273 * @inode: The inode to evict
Lee Jonesc551f662021-03-30 17:44:29 +01001274 * @gh: The glock holder structure
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001275 *
1276 * This function determines whether the evicted inode is eligible to be deleted
1277 * and locks the inode glock.
1278 *
1279 * Returns: the fate of the dinode
1280 */
1281static enum dinode_demise evict_should_delete(struct inode *inode,
1282 struct gfs2_holder *gh)
1283{
1284 struct gfs2_inode *ip = GFS2_I(inode);
1285 struct super_block *sb = inode->i_sb;
1286 struct gfs2_sbd *sdp = sb->s_fs_info;
1287 int ret;
1288
1289 if (test_bit(GIF_ALLOC_FAILED, &ip->i_flags)) {
1290 BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));
1291 goto should_delete;
1292 }
1293
1294 if (test_bit(GIF_DEFERRED_DELETE, &ip->i_flags))
1295 return SHOULD_DEFER_EVICTION;
1296
1297 /* Deletes should never happen under memory pressure anymore. */
1298 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
1299 return SHOULD_DEFER_EVICTION;
1300
1301 /* Must not read inode block until block type has been verified */
1302 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, gh);
1303 if (unlikely(ret)) {
1304 glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
1305 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1306 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
1307 return SHOULD_DEFER_EVICTION;
1308 }
1309
1310 if (gfs2_inode_already_deleted(ip->i_gl, ip->i_no_formal_ino))
1311 return SHOULD_NOT_DELETE_DINODE;
1312 ret = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED);
1313 if (ret)
1314 return SHOULD_NOT_DELETE_DINODE;
1315
1316 if (test_bit(GIF_INVALID, &ip->i_flags)) {
1317 ret = gfs2_inode_refresh(ip);
1318 if (ret)
1319 return SHOULD_NOT_DELETE_DINODE;
1320 }
1321
1322 /*
1323 * The inode may have been recreated in the meantime.
1324 */
1325 if (inode->i_nlink)
1326 return SHOULD_NOT_DELETE_DINODE;
1327
1328should_delete:
1329 if (gfs2_holder_initialized(&ip->i_iopen_gh) &&
1330 test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1331 if (!gfs2_upgrade_iopen_glock(inode)) {
1332 gfs2_holder_uninit(&ip->i_iopen_gh);
1333 return SHOULD_NOT_DELETE_DINODE;
1334 }
1335 }
1336 return SHOULD_DELETE_DINODE;
1337}
1338
1339/**
Bob Peterson6e7e9a52020-09-11 09:29:25 -05001340 * evict_unlinked_inode - delete the pieces of an unlinked evicted inode
1341 * @inode: The inode to evict
1342 */
1343static int evict_unlinked_inode(struct inode *inode)
1344{
1345 struct gfs2_inode *ip = GFS2_I(inode);
1346 int ret;
1347
1348 if (S_ISDIR(inode->i_mode) &&
1349 (ip->i_diskflags & GFS2_DIF_EXHASH)) {
1350 ret = gfs2_dir_exhash_dealloc(ip);
1351 if (ret)
1352 goto out;
1353 }
1354
1355 if (ip->i_eattr) {
1356 ret = gfs2_ea_dealloc(ip);
1357 if (ret)
1358 goto out;
1359 }
1360
1361 if (!gfs2_is_stuffed(ip)) {
1362 ret = gfs2_file_dealloc(ip);
1363 if (ret)
1364 goto out;
1365 }
1366
1367 /* We're about to clear the bitmap for the dinode, but as soon as we
1368 do, gfs2_create_inode can create another inode at the same block
1369 location and try to set gl_object again. We clear gl_object here so
1370 that subsequent inode creates don't see an old gl_object. */
1371 glock_clear_object(ip->i_gl, ip);
1372 ret = gfs2_dinode_dealloc(ip);
1373 gfs2_inode_remember_delete(ip->i_gl, ip->i_no_formal_ino);
1374out:
1375 return ret;
1376}
1377
Bob Petersond90be6a2020-09-11 14:53:52 -05001378/*
1379 * evict_linked_inode - evict an inode whose dinode has not been unlinked
1380 * @inode: The inode to evict
1381 */
1382static int evict_linked_inode(struct inode *inode)
1383{
1384 struct super_block *sb = inode->i_sb;
1385 struct gfs2_sbd *sdp = sb->s_fs_info;
1386 struct gfs2_inode *ip = GFS2_I(inode);
1387 struct address_space *metamapping;
1388 int ret;
1389
1390 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
1391 GFS2_LFC_EVICT_INODE);
1392 metamapping = gfs2_glock2aspace(ip->i_gl);
1393 if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) {
1394 filemap_fdatawrite(metamapping);
1395 filemap_fdatawait(metamapping);
1396 }
1397 write_inode_now(inode, 1);
1398 gfs2_ail_flush(ip->i_gl, 0);
1399
1400 ret = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);
1401 if (ret)
1402 return ret;
1403
1404 /* Needs to be done before glock release & also in a transaction */
1405 truncate_inode_pages(&inode->i_data, 0);
1406 truncate_inode_pages(metamapping, 0);
1407 gfs2_trans_end(sdp);
1408 return 0;
1409}
1410
Bob Peterson6e7e9a52020-09-11 09:29:25 -05001411/**
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001412 * gfs2_evict_inode - Remove an inode from cache
1413 * @inode: The inode to evict
1414 *
1415 * There are three cases to consider:
1416 * 1. i_nlink == 0, we are final opener (and must deallocate)
1417 * 2. i_nlink == 0, we are not the final opener (and cannot deallocate)
1418 * 3. i_nlink > 0
1419 *
1420 * If the fs is read only, then we have to treat all cases as per #3
1421 * since we are unable to do any deallocation. The inode will be
1422 * deallocated by the next read/write node to attempt an allocation
1423 * in the same resource group
1424 *
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001425 * We have to (at the moment) hold the inodes main lock to cover
1426 * the gap between unlocking the shared lock on the iopen lock and
1427 * taking the exclusive lock. I'd rather do a shared -> exclusive
1428 * conversion on the iopen lock, but we can change that later. This
1429 * is safe, just less efficient.
1430 */
1431
Al Virod5c15152010-06-07 11:05:19 -04001432static void gfs2_evict_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001433{
Steven Whitehouse001e8e82011-03-30 14:17:51 +01001434 struct super_block *sb = inode->i_sb;
1435 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001436 struct gfs2_inode *ip = GFS2_I(inode);
1437 struct gfs2_holder gh;
Bob Peterson23d828f2020-09-11 10:56:31 -05001438 int ret;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001439
Abhi Das05978802014-03-31 10:33:17 -05001440 if (test_bit(GIF_FREE_VFS_INODE, &ip->i_flags)) {
1441 clear_inode(inode);
1442 return;
1443 }
1444
David Howellsbc98a422017-07-17 08:45:34 +01001445 if (inode->i_nlink || sb_rdonly(sb))
Al Virod5c15152010-06-07 11:05:19 -04001446 goto out;
1447
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001448 gfs2_holder_mark_uninitialized(&gh);
1449 ret = evict_should_delete(inode, &gh);
1450 if (ret == SHOULD_DEFER_EVICTION)
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001451 goto out;
Bob Peterson0a0d9f52020-09-16 08:50:44 -05001452 if (ret == SHOULD_DELETE_DINODE)
1453 ret = evict_unlinked_inode(inode);
1454 else
1455 ret = evict_linked_inode(inode);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001456
Bob Petersona097dc7e2015-07-16 08:28:04 -05001457 if (gfs2_rs_active(&ip->i_res))
1458 gfs2_rs_deltree(&ip->i_res);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001459
Bob Peterson240c6232017-07-18 12:36:01 -05001460 if (gfs2_holder_initialized(&gh)) {
1461 glock_clear_object(ip->i_gl, ip);
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001462 gfs2_glock_dq_uninit(&gh);
Bob Peterson240c6232017-07-18 12:36:01 -05001463 }
Bob Peterson23d828f2020-09-11 10:56:31 -05001464 if (ret && ret != GLR_TRYFAILED && ret != -EROFS)
1465 fs_warn(sdp, "gfs2_evict_inode: %d\n", ret);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001466out:
Johannes Weiner91b0abe2014-04-03 14:47:49 -07001467 truncate_inode_pages_final(&inode->i_data);
Bob Peterson2fba46a2020-02-27 12:47:53 -06001468 if (ip->i_qadata)
1469 gfs2_assert_warn(sdp, ip->i_qadata->qa_ref == 0);
Andreas Gruenbacher15955482020-03-06 10:32:35 -06001470 gfs2_rs_delete(ip, NULL);
Steven Whitehouse45138992013-01-28 09:30:07 +00001471 gfs2_ordered_del_inode(ip);
Jan Karadbd57682012-05-03 14:48:02 +02001472 clear_inode(inode);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001473 gfs2_dir_hash_inval(ip);
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001474 if (ip->i_gl) {
1475 glock_clear_object(ip->i_gl, ip);
1476 wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE);
1477 gfs2_glock_add_to_lru(ip->i_gl);
1478 gfs2_glock_put_eventually(ip->i_gl);
1479 ip->i_gl = NULL;
1480 }
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001481 if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001482 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1483
1484 glock_clear_object(gl, ip);
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001485 if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1486 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1487 gfs2_glock_dq(&ip->i_iopen_gh);
1488 }
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001489 gfs2_glock_hold(gl);
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001490 gfs2_holder_uninit(&ip->i_iopen_gh);
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001491 gfs2_glock_put_eventually(gl);
Al Virod5c15152010-06-07 11:05:19 -04001492 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001493}
1494
1495static struct inode *gfs2_alloc_inode(struct super_block *sb)
1496{
1497 struct gfs2_inode *ip;
1498
1499 ip = kmem_cache_alloc(gfs2_inode_cachep, GFP_KERNEL);
Andreas Gruenbacherd4031252019-07-24 13:05:38 +02001500 if (!ip)
1501 return NULL;
1502 ip->i_flags = 0;
1503 ip->i_gl = NULL;
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001504 gfs2_holder_mark_uninitialized(&ip->i_iopen_gh);
Andreas Gruenbacherd4031252019-07-24 13:05:38 +02001505 memset(&ip->i_res, 0, sizeof(ip->i_res));
1506 RB_CLEAR_NODE(&ip->i_res.rs_node);
1507 ip->i_rahead = 0;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001508 return &ip->i_inode;
1509}
1510
Al Viro784494e2019-04-15 19:45:26 -04001511static void gfs2_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001512{
Al Viro784494e2019-04-15 19:45:26 -04001513 kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001514}
1515
Abhi Das97fd7342020-10-20 15:58:04 -05001516extern void free_local_statfs_inodes(struct gfs2_sbd *sdp)
1517{
1518 struct local_statfs_inode *lsi, *safe;
1519
1520 /* Run through the statfs inodes list to iput and free memory */
1521 list_for_each_entry_safe(lsi, safe, &sdp->sd_sc_inodes_list, si_list) {
1522 if (lsi->si_jid == sdp->sd_jdesc->jd_jid)
1523 sdp->sd_sc_inode = NULL; /* belongs to this node */
1524 if (lsi->si_sc_inode)
1525 iput(lsi->si_sc_inode);
1526 list_del(&lsi->si_list);
1527 kfree(lsi);
1528 }
1529}
1530
1531extern struct inode *find_local_statfs_inode(struct gfs2_sbd *sdp,
1532 unsigned int index)
1533{
1534 struct local_statfs_inode *lsi;
1535
1536 /* Return the local (per node) statfs inode in the
1537 * sdp->sd_sc_inodes_list corresponding to the 'index'. */
1538 list_for_each_entry(lsi, &sdp->sd_sc_inodes_list, si_list) {
1539 if (lsi->si_jid == index)
1540 return lsi->si_sc_inode;
1541 }
1542 return NULL;
1543}
1544
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001545const struct super_operations gfs2_super_ops = {
1546 .alloc_inode = gfs2_alloc_inode,
Al Viro784494e2019-04-15 19:45:26 -04001547 .free_inode = gfs2_free_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001548 .write_inode = gfs2_write_inode,
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001549 .dirty_inode = gfs2_dirty_inode,
Al Virod5c15152010-06-07 11:05:19 -04001550 .evict_inode = gfs2_evict_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001551 .put_super = gfs2_put_super,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001552 .sync_fs = gfs2_sync_fs,
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001553 .freeze_super = gfs2_freeze,
1554 .thaw_super = gfs2_unfreeze,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001555 .statfs = gfs2_statfs,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001556 .drop_inode = gfs2_drop_inode,
1557 .show_options = gfs2_show_options,
1558};
1559