blob: 0f93e8beca4d957a12ea38420c04f95fc8e3da45 [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
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122/**
123 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
124 * @sdp: the filesystem
125 *
126 * Returns: errno
127 */
128
129int gfs2_make_fs_rw(struct gfs2_sbd *sdp)
130{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400131 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500132 struct gfs2_glock *j_gl = ip->i_gl;
Al Viro55167622006-10-13 21:47:13 -0400133 struct gfs2_log_header_host head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000134 int error;
135
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500136 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
Bob Petersona28dc122021-05-14 07:42:33 -0500137 if (gfs2_withdrawn(sdp))
138 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139
Abhi Dasf4686c22019-05-02 14:17:40 -0500140 error = gfs2_find_jhead(sdp->sd_jdesc, &head, false);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100141 if (error || gfs2_withdrawn(sdp))
Bob Petersona28dc122021-05-14 07:42:33 -0500142 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143
144 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
145 gfs2_consist(sdp);
Bob Petersona28dc122021-05-14 07:42:33 -0500146 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 }
148
149 /* Initialize some head of the log stuff */
150 sdp->sd_log_sequence = head.lh_sequence + 1;
151 gfs2_log_pointers_init(sdp, head.lh_blkno);
152
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153 error = gfs2_quota_init(sdp);
Bob Petersona28dc122021-05-14 07:42:33 -0500154 if (!error && !gfs2_withdrawn(sdp))
155 set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156 return error;
157}
158
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500159void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100160{
161 const struct gfs2_statfs_change *str = buf;
162
163 sc->sc_total = be64_to_cpu(str->sc_total);
164 sc->sc_free = be64_to_cpu(str->sc_free);
165 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
166}
167
Abhi Das73092692020-10-20 15:58:03 -0500168void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100169{
170 struct gfs2_statfs_change *str = buf;
171
172 str->sc_total = cpu_to_be64(sc->sc_total);
173 str->sc_free = cpu_to_be64(sc->sc_free);
174 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
175}
176
David Teiglandb3b94fa2006-01-16 16:50:04 +0000177int gfs2_statfs_init(struct gfs2_sbd *sdp)
178{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400179 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400180 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
Al Virobd209cc2006-10-13 23:43:19 -0400181 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
Bob Peterson70c11ba2021-06-30 11:46:17 -0500182 struct buffer_head *m_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183 struct gfs2_holder gh;
184 int error;
185
186 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
187 &gh);
188 if (error)
189 return error;
190
191 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
192 if (error)
193 goto out;
194
195 if (sdp->sd_args.ar_spectator) {
196 spin_lock(&sdp->sd_statfs_spin);
197 gfs2_statfs_change_in(m_sc, m_bh->b_data +
198 sizeof(struct gfs2_dinode));
199 spin_unlock(&sdp->sd_statfs_spin);
200 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 spin_lock(&sdp->sd_statfs_spin);
202 gfs2_statfs_change_in(m_sc, m_bh->b_data +
203 sizeof(struct gfs2_dinode));
Bob Peterson70c11ba2021-06-30 11:46:17 -0500204 gfs2_statfs_change_in(l_sc, sdp->sd_sc_bh->b_data +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 sizeof(struct gfs2_dinode));
206 spin_unlock(&sdp->sd_statfs_spin);
207
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208 }
209
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210 brelse(m_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400211out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000213 return 0;
214}
215
Steven Whitehousecd915492006-09-04 12:49:07 -0400216void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
217 s64 dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400219 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400220 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500221 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500222 s64 x, y;
223 int need_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224
Bob Peterson70c11ba2021-06-30 11:46:17 -0500225 gfs2_trans_add_meta(l_ip->i_gl, sdp->sd_sc_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226
227 spin_lock(&sdp->sd_statfs_spin);
228 l_sc->sc_total += total;
229 l_sc->sc_free += free;
230 l_sc->sc_dinodes += dinodes;
Bob Peterson70c11ba2021-06-30 11:46:17 -0500231 gfs2_statfs_change_out(l_sc, sdp->sd_sc_bh->b_data +
232 sizeof(struct gfs2_dinode));
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500233 if (sdp->sd_args.ar_statfs_percent) {
234 x = 100 * l_sc->sc_free;
235 y = m_sc->sc_free * sdp->sd_args.ar_statfs_percent;
236 if (x >= y || x <= -y)
237 need_sync = 1;
238 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 spin_unlock(&sdp->sd_statfs_spin);
240
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500241 if (need_sync)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500242 gfs2_wake_up_statfs(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243}
244
Bob Peterson70c11ba2021-06-30 11:46:17 -0500245void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh)
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500246{
247 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
248 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
249 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
250 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
251
Bob Peterson70c11ba2021-06-30 11:46:17 -0500252 gfs2_trans_add_meta(l_ip->i_gl, sdp->sd_sc_bh);
Bob Peterson901c6c62015-03-11 09:52:31 -0500253 gfs2_trans_add_meta(m_ip->i_gl, m_bh);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500254
255 spin_lock(&sdp->sd_statfs_spin);
256 m_sc->sc_total += l_sc->sc_total;
257 m_sc->sc_free += l_sc->sc_free;
258 m_sc->sc_dinodes += l_sc->sc_dinodes;
259 memset(l_sc, 0, sizeof(struct gfs2_statfs_change));
Bob Peterson70c11ba2021-06-30 11:46:17 -0500260 memset(sdp->sd_sc_bh->b_data + sizeof(struct gfs2_dinode),
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500261 0, sizeof(struct gfs2_statfs_change));
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500262 gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode));
Bob Peterson901c6c62015-03-11 09:52:31 -0500263 spin_unlock(&sdp->sd_statfs_spin);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500264}
265
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100266int gfs2_statfs_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267{
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100268 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400269 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400270 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
271 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272 struct gfs2_holder gh;
Bob Peterson70c11ba2021-06-30 11:46:17 -0500273 struct buffer_head *m_bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 int error;
275
276 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
277 &gh);
278 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600279 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000280
281 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
282 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600283 goto out_unlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284
285 spin_lock(&sdp->sd_statfs_spin);
286 gfs2_statfs_change_in(m_sc, m_bh->b_data +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400287 sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288 if (!l_sc->sc_total && !l_sc->sc_free && !l_sc->sc_dinodes) {
289 spin_unlock(&sdp->sd_statfs_spin);
290 goto out_bh;
291 }
292 spin_unlock(&sdp->sd_statfs_spin);
293
Bob Peterson70c11ba2021-06-30 11:46:17 -0500294 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000295 if (error)
296 goto out_bh;
297
Bob Peterson70c11ba2021-06-30 11:46:17 -0500298 update_statfs(sdp, m_bh);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500299 sdp->sd_statfs_force_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000300
301 gfs2_trans_end(sdp);
302
Steven Whitehousea91ea692006-09-04 12:04:26 -0400303out_bh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304 brelse(m_bh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600305out_unlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000306 gfs2_glock_dq_uninit(&gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600307out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308 return error;
309}
310
David Teiglandb3b94fa2006-01-16 16:50:04 +0000311struct lfcc {
312 struct list_head list;
313 struct gfs2_holder gh;
314};
315
316/**
317 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
318 * journals are clean
319 * @sdp: the file system
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320 *
321 * Returns: errno
322 */
323
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500324static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500326 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 struct gfs2_jdesc *jd;
328 struct lfcc *lfcc;
329 LIST_HEAD(list);
Al Viro55167622006-10-13 21:47:13 -0400330 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 int error;
332
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
334 lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL);
335 if (!lfcc) {
336 error = -ENOMEM;
337 goto out;
338 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400339 ip = GFS2_I(jd->jd_inode);
340 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000341 if (error) {
342 kfree(lfcc);
343 goto out;
344 }
345 list_add(&lfcc->list, &list);
346 }
347
Benjamin Marzinski24972552014-05-01 22:26:55 -0500348 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE,
Bob Petersonc860f8f2020-06-25 14:42:17 -0500349 LM_FLAG_NOEXP, &sdp->sd_freeze_gh);
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500350 if (error)
351 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352
353 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
354 error = gfs2_jdesc_check(jd);
355 if (error)
356 break;
Abhi Dasf4686c22019-05-02 14:17:40 -0500357 error = gfs2_find_jhead(jd, &lh, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000358 if (error)
359 break;
360 if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
361 error = -EBUSY;
362 break;
363 }
364 }
365
366 if (error)
Bob Petersonc77b52c2020-12-22 14:43:27 -0600367 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368
Steven Whitehousea91ea692006-09-04 12:04:26 -0400369out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370 while (!list_empty(&list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +0100371 lfcc = list_first_entry(&list, struct lfcc, list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372 list_del(&lfcc->list);
373 gfs2_glock_dq_uninit(&lfcc->gh);
374 kfree(lfcc);
375 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376 return error;
377}
378
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100379void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
380{
381 struct gfs2_dinode *str = buf;
382
383 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
384 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
385 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
386 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
387 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
388 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
Eric W. Biedermand0546422013-01-31 22:08:10 -0800389 str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode));
390 str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode));
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100391 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
392 str->di_size = cpu_to_be64(i_size_read(&ip->i_inode));
393 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
394 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
395 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
396 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
397
398 str->di_goal_meta = cpu_to_be64(ip->i_goal);
399 str->di_goal_data = cpu_to_be64(ip->i_goal);
400 str->di_generation = cpu_to_be64(ip->i_generation);
401
402 str->di_flags = cpu_to_be32(ip->i_diskflags);
403 str->di_height = cpu_to_be16(ip->i_height);
404 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
405 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
406 GFS2_FORMAT_DE : 0);
407 str->di_depth = cpu_to_be16(ip->i_depth);
408 str->di_entries = cpu_to_be32(ip->i_entries);
409
410 str->di_eattr = cpu_to_be64(ip->i_eattr);
411 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
412 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
413 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
414}
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100415
416/**
417 * gfs2_write_inode - Make sure the inode is stable on the disk
418 * @inode: The inode
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100419 * @wbc: The writeback control structure
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100420 *
421 * Returns: errno
422 */
423
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100424static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100425{
426 struct gfs2_inode *ip = GFS2_I(inode);
427 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100428 struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl);
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100429 struct backing_dev_info *bdi = inode_to_bdi(metamapping->host);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100430 int ret = 0;
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200431 bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100432
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200433 if (flush_all)
Bob Petersonc1696fb2018-01-17 00:01:33 +0100434 gfs2_log_flush(GFS2_SB(inode), ip->i_gl,
Bob Peterson805c09072018-01-08 10:34:17 -0500435 GFS2_LOG_HEAD_FLUSH_NORMAL |
436 GFS2_LFC_WRITE_INODE);
Tejun Heoa88a3412015-05-22 17:13:28 -0400437 if (bdi->wb.dirty_exceeded)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100438 gfs2_ail1_flush(sdp, wbc);
Steven Whitehouse1d4ec642011-08-02 13:13:20 +0100439 else
440 filemap_fdatawrite(metamapping);
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200441 if (flush_all)
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100442 ret = filemap_fdatawait(metamapping);
443 if (ret)
444 mark_inode_dirty_sync(inode);
Abhi Das957a7ac2018-01-30 10:00:09 -0700445 else {
446 spin_lock(&inode->i_lock);
447 if (!(inode->i_flags & I_DIRTY))
448 gfs2_ordered_del_inode(ip);
449 spin_unlock(&inode->i_lock);
450 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100451 return ret;
452}
453
454/**
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100455 * gfs2_dirty_inode - check for atime updates
456 * @inode: The inode in question
457 * @flags: The type of dirty
458 *
459 * Unfortunately it can be called under any combination of inode
460 * glock and transaction lock, so we have to check carefully.
461 *
462 * At the moment this deals only with atime - it should be possible
463 * to expand that role in future, once a review of the locking has
464 * been carried out.
465 */
466
467static void gfs2_dirty_inode(struct inode *inode, int flags)
468{
469 struct gfs2_inode *ip = GFS2_I(inode);
470 struct gfs2_sbd *sdp = GFS2_SB(inode);
471 struct buffer_head *bh;
472 struct gfs2_holder gh;
473 int need_unlock = 0;
474 int need_endtrans = 0;
475 int ret;
476
Bob Petersoneb43e662019-11-14 09:52:15 -0500477 if (unlikely(gfs2_withdrawn(sdp)))
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500478 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100479 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
480 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
481 if (ret) {
482 fs_err(sdp, "dirty_inode: glock %d\n", ret);
Bob Petersone28c02b2020-07-30 12:31:38 -0500483 gfs2_dump_glock(NULL, ip->i_gl, true);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100484 return;
485 }
486 need_unlock = 1;
Benjamin Marzinski3d162682012-11-06 00:49:28 -0600487 } else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE))
488 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100489
490 if (current->journal_info == NULL) {
491 ret = gfs2_trans_begin(sdp, RES_DINODE, 0);
492 if (ret) {
493 fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret);
494 goto out;
495 }
496 need_endtrans = 1;
497 }
498
499 ret = gfs2_meta_inode_buffer(ip, &bh);
500 if (ret == 0) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000501 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100502 gfs2_dinode_out(ip, bh->b_data);
503 brelse(bh);
504 }
505
506 if (need_endtrans)
507 gfs2_trans_end(sdp);
508out:
509 if (need_unlock)
510 gfs2_glock_dq_uninit(&gh);
511}
512
513/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100514 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
515 * @sdp: the filesystem
516 *
517 * Returns: errno
518 */
519
Yang Lieb602522021-03-04 09:28:57 -0500520void gfs2_make_fs_ro(struct gfs2_sbd *sdp)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100521{
Bob Peterson601ef0d2020-01-28 20:23:45 +0100522 int log_write_allowed = test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100523
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100524 gfs2_flush_delete_work(sdp);
Bob Peterson601ef0d2020-01-28 20:23:45 +0100525 if (!log_write_allowed && current == sdp->sd_quotad_process)
526 fs_warn(sdp, "The quotad daemon is withdrawing.\n");
527 else if (sdp->sd_quotad_process)
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600528 kthread_stop(sdp->sd_quotad_process);
529 sdp->sd_quotad_process = NULL;
Bob Peterson601ef0d2020-01-28 20:23:45 +0100530
531 if (!log_write_allowed && current == sdp->sd_logd_process)
532 fs_warn(sdp, "The logd daemon is withdrawing.\n");
533 else if (sdp->sd_logd_process)
Bob Peterson5b3a9f32019-04-26 08:11:27 -0600534 kthread_stop(sdp->sd_logd_process);
535 sdp->sd_logd_process = NULL;
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000536
Bob Peterson601ef0d2020-01-28 20:23:45 +0100537 if (log_write_allowed) {
538 gfs2_quota_sync(sdp->sd_vfs, 0);
539 gfs2_statfs_sync(sdp->sd_vfs, 0);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100540
Bob Peterson601ef0d2020-01-28 20:23:45 +0100541 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN |
542 GFS2_LFC_MAKE_FS_RO);
Andreas Gruenbacherf3708fb2020-12-13 09:21:34 +0100543 wait_event_timeout(sdp->sd_log_waitq,
544 gfs2_log_is_empty(sdp),
545 HZ * 5);
546 gfs2_assert_warn(sdp, gfs2_log_is_empty(sdp));
Bob Peterson601ef0d2020-01-28 20:23:45 +0100547 } else {
Andreas Gruenbacherf3708fb2020-12-13 09:21:34 +0100548 wait_event_timeout(sdp->sd_log_waitq,
549 gfs2_log_is_empty(sdp),
Bob Peterson601ef0d2020-01-28 20:23:45 +0100550 HZ * 5);
551 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100552 gfs2_quota_cleanup(sdp);
553
Bob Peterson601ef0d2020-01-28 20:23:45 +0100554 if (!log_write_allowed)
555 sdp->sd_vfs->s_flags |= SB_RDONLY;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100556}
557
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100558/**
559 * gfs2_put_super - Unmount the filesystem
560 * @sb: The VFS superblock
561 *
562 */
563
564static void gfs2_put_super(struct super_block *sb)
565{
566 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100567 struct gfs2_jdesc *jd;
568
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100569 /* No more recovery requests */
570 set_bit(SDF_NORECOVERY, &sdp->sd_flags);
571 smp_mb();
572
573 /* Wait on outstanding recovery */
574restart:
575 spin_lock(&sdp->sd_jindex_spin);
576 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
577 if (!test_bit(JDF_RECOVERY, &jd->jd_flags))
578 continue;
579 spin_unlock(&sdp->sd_jindex_spin);
580 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
NeilBrown74316202014-07-07 15:16:04 +1000581 TASK_UNINTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100582 goto restart;
583 }
584 spin_unlock(&sdp->sd_jindex_spin);
585
David Howellsbc98a422017-07-17 08:45:34 +0100586 if (!sb_rdonly(sb)) {
Yang Lieb602522021-03-04 09:28:57 -0500587 gfs2_make_fs_ro(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100588 }
Andreas Gruenbacher5a61ae12020-08-28 23:44:36 +0200589 WARN_ON(gfs2_withdrawing(sdp));
590
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100591 /* At this point, we're through modifying the disk */
592
593 /* Release stuff */
594
595 iput(sdp->sd_jindex);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100596 iput(sdp->sd_statfs_inode);
597 iput(sdp->sd_rindex);
598 iput(sdp->sd_quota_inode);
599
600 gfs2_glock_put(sdp->sd_rename_gl);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500601 gfs2_glock_put(sdp->sd_freeze_gl);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100602
603 if (!sdp->sd_args.ar_spectator) {
Bob Peterson601ef0d2020-01-28 20:23:45 +0100604 if (gfs2_holder_initialized(&sdp->sd_journal_gh))
605 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
606 if (gfs2_holder_initialized(&sdp->sd_jinode_gh))
607 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Bob Peterson70c11ba2021-06-30 11:46:17 -0500608 brelse(sdp->sd_sc_bh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100609 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
610 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Abhi Das97fd7342020-10-20 15:58:04 -0500611 free_local_statfs_inodes(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100612 iput(sdp->sd_qc_inode);
613 }
614
615 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
616 gfs2_clear_rgrpd(sdp);
617 gfs2_jindex_free(sdp);
618 /* Take apart glock structures and buffer lists */
619 gfs2_gl_hash_clear(sdp);
Bob Petersona9dd9452020-10-27 10:10:02 -0500620 truncate_inode_pages_final(&sdp->sd_aspace);
Bob Petersonb2fb7da2017-07-28 07:22:55 -0500621 gfs2_delete_debugfs_file(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100622 /* Unmount the locking protocol */
623 gfs2_lm_unmount(sdp);
624
625 /* At this point, we're through participating in the lockspace */
626 gfs2_sys_fs_del(sdp);
Jamie Ilesc2a04b02020-10-12 14:13:09 +0100627 free_sbd(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100628}
629
630/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100631 * gfs2_sync_fs - sync the filesystem
632 * @sb: the superblock
Lee Jonesc551f662021-03-30 17:44:29 +0100633 * @wait: true to wait for completion
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100634 *
635 * Flushes the log to disk.
636 */
637
638static int gfs2_sync_fs(struct super_block *sb, int wait)
639{
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100640 struct gfs2_sbd *sdp = sb->s_fs_info;
Jan Karaa1177822012-07-03 16:45:29 +0200641
642 gfs2_quota_sync(sb, -1);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500643 if (wait)
Bob Peterson805c09072018-01-08 10:34:17 -0500644 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
645 GFS2_LFC_SYNC_FS);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500646 return sdp->sd_log_error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100647}
648
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600649void gfs2_freeze_func(struct work_struct *work)
650{
651 int error;
652 struct gfs2_holder freeze_gh;
653 struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work);
654 struct super_block *sb = sdp->sd_vfs;
655
656 atomic_inc(&sb->s_active);
Bob Petersonc77b52c2020-12-22 14:43:27 -0600657 error = gfs2_freeze_lock(sdp, &freeze_gh, 0);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600658 if (error) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600659 gfs2_assert_withdraw(sdp, 0);
Abhi Das8f9182192019-04-30 16:53:47 -0500660 } else {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600661 atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN);
662 error = thaw_super(sb);
663 if (error) {
Bob Petersonf29e62e2019-05-13 09:42:18 -0500664 fs_info(sdp, "GFS2: couldn't thaw filesystem: %d\n",
665 error);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600666 gfs2_assert_withdraw(sdp, 0);
667 }
Bob Petersonc77b52c2020-12-22 14:43:27 -0600668 gfs2_freeze_unlock(&freeze_gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600669 }
670 deactivate_super(sb);
Abhi Das8f9182192019-04-30 16:53:47 -0500671 clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags);
672 wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600673 return;
674}
675
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100676/**
677 * gfs2_freeze - prevent further writes to the filesystem
678 * @sb: the VFS structure for the filesystem
679 *
680 */
681
682static int gfs2_freeze(struct super_block *sb)
683{
684 struct gfs2_sbd *sdp = sb->s_fs_info;
Bob Petersonff132c52021-03-25 08:51:13 -0400685 int error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100686
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600687 mutex_lock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400688 if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN) {
689 error = -EBUSY;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600690 goto out;
Bob Petersonff132c52021-03-25 08:51:13 -0400691 }
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600692
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100693 for (;;) {
Bob Peterson60528af2019-11-14 09:53:36 -0500694 if (gfs2_withdrawn(sdp)) {
695 error = -EINVAL;
696 goto out;
697 }
698
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500699 error = gfs2_lock_fs_check_clean(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100700 if (!error)
701 break;
702
Bob Peterson55317f52019-04-29 09:36:23 -0600703 if (error == -EBUSY)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100704 fs_err(sdp, "waiting for recovery before freeze\n");
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500705 else if (error == -EIO) {
706 fs_err(sdp, "Fatal IO error: cannot freeze gfs2 due "
707 "to recovery error.\n");
708 goto out;
709 } else {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100710 fs_err(sdp, "error freezing FS: %d\n", error);
Bob Peterson52b1cdc2019-11-15 09:42:46 -0500711 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100712 fs_err(sdp, "retrying...\n");
713 msleep(1000);
714 }
Abhi Das8f9182192019-04-30 16:53:47 -0500715 set_bit(SDF_FS_FROZEN, &sdp->sd_flags);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600716out:
717 mutex_unlock(&sdp->sd_freeze_mutex);
718 return error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100719}
720
721/**
722 * gfs2_unfreeze - reallow writes to the filesystem
723 * @sb: the VFS structure for the filesystem
724 *
725 */
726
727static int gfs2_unfreeze(struct super_block *sb)
728{
Steven Whitehoused564053f2013-01-11 10:49:34 +0000729 struct gfs2_sbd *sdp = sb->s_fs_info;
730
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600731 mutex_lock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400732 if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN ||
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500733 !gfs2_holder_initialized(&sdp->sd_freeze_gh)) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600734 mutex_unlock(&sdp->sd_freeze_mutex);
Bob Petersonff132c52021-03-25 08:51:13 -0400735 return -EINVAL;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600736 }
737
Bob Petersonc77b52c2020-12-22 14:43:27 -0600738 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600739 mutex_unlock(&sdp->sd_freeze_mutex);
Abhi Das8f9182192019-04-30 16:53:47 -0500740 return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100741}
742
743/**
Lee Jonesc551f662021-03-30 17:44:29 +0100744 * statfs_slow_fill - fill in the sg for a given RG
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100745 * @rgd: the RG
746 * @sc: the sc structure
747 *
748 * Returns: 0 on success, -ESTALE if the LVB is invalid
749 */
750
751static int statfs_slow_fill(struct gfs2_rgrpd *rgd,
752 struct gfs2_statfs_change_host *sc)
753{
754 gfs2_rgrp_verify(rgd);
755 sc->sc_total += rgd->rd_data;
756 sc->sc_free += rgd->rd_free;
757 sc->sc_dinodes += rgd->rd_dinodes;
758 return 0;
759}
760
761/**
762 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
763 * @sdp: the filesystem
764 * @sc: the sc info that will be returned
765 *
766 * Any error (other than a signal) will cause this routine to fall back
767 * to the synchronous version.
768 *
769 * FIXME: This really shouldn't busy wait like this.
770 *
771 * Returns: errno
772 */
773
774static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
775{
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100776 struct gfs2_rgrpd *rgd_next;
777 struct gfs2_holder *gha, *gh;
778 unsigned int slots = 64;
779 unsigned int x;
780 int done;
781 int error = 0, err;
782
783 memset(sc, 0, sizeof(struct gfs2_statfs_change_host));
Kees Cook6da2ec52018-06-12 13:55:00 -0700784 gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100785 if (!gha)
786 return -ENOMEM;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500787 for (x = 0; x < slots; x++)
788 gfs2_holder_mark_uninitialized(gha + x);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100789
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100790 rgd_next = gfs2_rgrpd_get_first(sdp);
791
792 for (;;) {
793 done = 1;
794
795 for (x = 0; x < slots; x++) {
796 gh = gha + x;
797
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500798 if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100799 err = gfs2_glock_wait(gh);
800 if (err) {
801 gfs2_holder_uninit(gh);
802 error = err;
803 } else {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -0500804 if (!error) {
805 struct gfs2_rgrpd *rgd =
806 gfs2_glock2rgrp(gh->gh_gl);
807
808 error = statfs_slow_fill(rgd, sc);
809 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100810 gfs2_glock_dq_uninit(gh);
811 }
812 }
813
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500814 if (gfs2_holder_initialized(gh))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100815 done = 0;
816 else if (rgd_next && !error) {
817 error = gfs2_glock_nq_init(rgd_next->rd_gl,
818 LM_ST_SHARED,
819 GL_ASYNC,
820 gh);
821 rgd_next = gfs2_rgrpd_get_next(rgd_next);
822 done = 0;
823 }
824
825 if (signal_pending(current))
826 error = -ERESTARTSYS;
827 }
828
829 if (done)
830 break;
831
832 yield();
833 }
834
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100835 kfree(gha);
836 return error;
837}
838
839/**
840 * gfs2_statfs_i - Do a statfs
841 * @sdp: the filesystem
Lee Jonesc551f662021-03-30 17:44:29 +0100842 * @sc: the sc structure
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100843 *
844 * Returns: errno
845 */
846
847static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
848{
849 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
850 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
851
852 spin_lock(&sdp->sd_statfs_spin);
853
854 *sc = *m_sc;
855 sc->sc_total += l_sc->sc_total;
856 sc->sc_free += l_sc->sc_free;
857 sc->sc_dinodes += l_sc->sc_dinodes;
858
859 spin_unlock(&sdp->sd_statfs_spin);
860
861 if (sc->sc_free < 0)
862 sc->sc_free = 0;
863 if (sc->sc_free > sc->sc_total)
864 sc->sc_free = sc->sc_total;
865 if (sc->sc_dinodes < 0)
866 sc->sc_dinodes = 0;
867
868 return 0;
869}
870
871/**
872 * gfs2_statfs - Gather and return stats about the filesystem
Lee Jonesc551f662021-03-30 17:44:29 +0100873 * @dentry: The name of the link
874 * @buf: The buffer
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100875 *
876 * Returns: 0 on success or error code
877 */
878
879static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
880{
Al Virofc640052016-04-10 01:33:30 -0400881 struct super_block *sb = dentry->d_sb;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100882 struct gfs2_sbd *sdp = sb->s_fs_info;
883 struct gfs2_statfs_change_host sc;
884 int error;
885
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100886 error = gfs2_rindex_update(sdp);
887 if (error)
888 return error;
889
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100890 if (gfs2_tune_get(sdp, gt_statfs_slow))
891 error = gfs2_statfs_slow(sdp, &sc);
892 else
893 error = gfs2_statfs_i(sdp, &sc);
894
895 if (error)
896 return error;
897
898 buf->f_type = GFS2_MAGIC;
899 buf->f_bsize = sdp->sd_sb.sb_bsize;
900 buf->f_blocks = sc.sc_total;
901 buf->f_bfree = sc.sc_free;
902 buf->f_bavail = sc.sc_free;
903 buf->f_files = sc.sc_dinodes + sc.sc_free;
904 buf->f_ffree = sc.sc_free;
905 buf->f_namelen = GFS2_FNAMESIZE;
906
907 return 0;
908}
909
910/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100911 * gfs2_drop_inode - Drop an inode (test for remote unlink)
912 * @inode: The inode to drop
913 *
Andreas Gruenbacher61b91cf2017-08-01 09:54:33 -0500914 * If we've received a callback on an iopen lock then it's because a
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100915 * remote node tried to deallocate the inode but failed due to this node
916 * still having the inode open. Here we mark the link count zero
917 * since we know that it must have reached zero if the GLF_DEMOTE flag
918 * is set on the iopen glock. If we didn't do a disk read since the
919 * remote node removed the final link then we might otherwise miss
920 * this event. This check ensures that this node will deallocate the
921 * inode's blocks, or alternatively pass the baton on to another
922 * node for later deallocation.
923 */
924
Al Viro45321ac2010-06-07 13:43:19 -0400925static int gfs2_drop_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100926{
927 struct gfs2_inode *ip = GFS2_I(inode);
928
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500929 if (!test_bit(GIF_FREE_VFS_INODE, &ip->i_flags) &&
930 inode->i_nlink &&
931 gfs2_holder_initialized(&ip->i_iopen_gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100932 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500933 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100934 clear_nlink(inode);
935 }
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -0500936
937 /*
938 * When under memory pressure when an inode's link count has dropped to
939 * zero, defer deleting the inode to the delete workqueue. This avoids
940 * calling into DLM under memory pressure, which can deadlock.
941 */
942 if (!inode->i_nlink &&
943 unlikely(current->flags & PF_MEMALLOC) &&
944 gfs2_holder_initialized(&ip->i_iopen_gh)) {
945 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
946
947 gfs2_glock_hold(gl);
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100948 if (!gfs2_queue_delete_work(gl, 0))
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -0500949 gfs2_glock_queue_put(gl);
Bob Petersonba3ca2b2021-07-29 07:34:39 -0500950 return 0;
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -0500951 }
952
Al Viro45321ac2010-06-07 13:43:19 -0400953 return generic_drop_inode(inode);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100954}
955
956static int is_ancestor(const struct dentry *d1, const struct dentry *d2)
957{
958 do {
959 if (d1 == d2)
960 return 1;
961 d1 = d1->d_parent;
962 } while (!IS_ROOT(d1));
963 return 0;
964}
965
966/**
967 * gfs2_show_options - Show mount options for /proc/mounts
968 * @s: seq_file structure
Al Viro34c80b12011-12-08 21:32:45 -0500969 * @root: root of this (sub)tree
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100970 *
971 * Returns: 0 on success or error code
972 */
973
Al Viro34c80b12011-12-08 21:32:45 -0500974static int gfs2_show_options(struct seq_file *s, struct dentry *root)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100975{
Al Viro34c80b12011-12-08 21:32:45 -0500976 struct gfs2_sbd *sdp = root->d_sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100977 struct gfs2_args *args = &sdp->sd_args;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500978 int val;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100979
Al Viro34c80b12011-12-08 21:32:45 -0500980 if (is_ancestor(root, sdp->sd_master_dir))
Fabian Frederickeaebded2014-07-02 22:08:46 +0200981 seq_puts(s, ",meta");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100982 if (args->ar_lockproto[0])
Kees Cooka068acf2015-09-04 15:44:57 -0700983 seq_show_option(s, "lockproto", args->ar_lockproto);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100984 if (args->ar_locktable[0])
Kees Cooka068acf2015-09-04 15:44:57 -0700985 seq_show_option(s, "locktable", args->ar_locktable);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100986 if (args->ar_hostdata[0])
Kees Cooka068acf2015-09-04 15:44:57 -0700987 seq_show_option(s, "hostdata", args->ar_hostdata);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100988 if (args->ar_spectator)
Fabian Frederickeaebded2014-07-02 22:08:46 +0200989 seq_puts(s, ",spectator");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100990 if (args->ar_localflocks)
Fabian Frederickeaebded2014-07-02 22:08:46 +0200991 seq_puts(s, ",localflocks");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100992 if (args->ar_debug)
Fabian Frederickeaebded2014-07-02 22:08:46 +0200993 seq_puts(s, ",debug");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100994 if (args->ar_posix_acl)
Fabian Frederickeaebded2014-07-02 22:08:46 +0200995 seq_puts(s, ",acl");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100996 if (args->ar_quota != GFS2_QUOTA_DEFAULT) {
997 char *state;
998 switch (args->ar_quota) {
999 case GFS2_QUOTA_OFF:
1000 state = "off";
1001 break;
1002 case GFS2_QUOTA_ACCOUNT:
1003 state = "account";
1004 break;
1005 case GFS2_QUOTA_ON:
1006 state = "on";
1007 break;
1008 default:
1009 state = "unknown";
1010 break;
1011 }
1012 seq_printf(s, ",quota=%s", state);
1013 }
1014 if (args->ar_suiddir)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001015 seq_puts(s, ",suiddir");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001016 if (args->ar_data != GFS2_DATA_DEFAULT) {
1017 char *state;
1018 switch (args->ar_data) {
1019 case GFS2_DATA_WRITEBACK:
1020 state = "writeback";
1021 break;
1022 case GFS2_DATA_ORDERED:
1023 state = "ordered";
1024 break;
1025 default:
1026 state = "unknown";
1027 break;
1028 }
1029 seq_printf(s, ",data=%s", state);
1030 }
1031 if (args->ar_discard)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001032 seq_puts(s, ",discard");
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -05001033 val = sdp->sd_tune.gt_logd_secs;
1034 if (val != 30)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001035 seq_printf(s, ",commit=%d", val);
1036 val = sdp->sd_tune.gt_statfs_quantum;
1037 if (val != 30)
1038 seq_printf(s, ",statfs_quantum=%d", val);
Steven Whitehouse2b9731e2012-08-20 17:07:49 +01001039 else if (sdp->sd_tune.gt_statfs_slow)
1040 seq_puts(s, ",statfs_quantum=0");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001041 val = sdp->sd_tune.gt_quota_quantum;
1042 if (val != 60)
1043 seq_printf(s, ",quota_quantum=%d", val);
1044 if (args->ar_statfs_percent)
1045 seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent);
Bob Petersond34843d2009-08-24 10:44:18 +01001046 if (args->ar_errors != GFS2_ERRORS_DEFAULT) {
1047 const char *state;
1048
1049 switch (args->ar_errors) {
1050 case GFS2_ERRORS_WITHDRAW:
1051 state = "withdraw";
1052 break;
1053 case GFS2_ERRORS_PANIC:
1054 state = "panic";
1055 break;
1056 default:
1057 state = "unknown";
1058 break;
1059 }
1060 seq_printf(s, ",errors=%s", state);
1061 }
Steven Whitehousecdcfde62009-10-30 10:48:53 +00001062 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001063 seq_puts(s, ",nobarrier");
Steven Whitehouse913a71d2010-05-06 11:03:29 +01001064 if (test_bit(SDF_DEMOTE, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001065 seq_puts(s, ",demote_interface_used");
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001066 if (args->ar_rgrplvb)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001067 seq_puts(s, ",rgrplvb");
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001068 if (args->ar_loccookie)
1069 seq_puts(s, ",loccookie");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001070 return 0;
1071}
1072
Steven Whitehousef42ab082011-04-14 16:50:31 +01001073static void gfs2_final_release_pages(struct gfs2_inode *ip)
1074{
1075 struct inode *inode = &ip->i_inode;
1076 struct gfs2_glock *gl = ip->i_gl;
1077
1078 truncate_inode_pages(gfs2_glock2aspace(ip->i_gl), 0);
1079 truncate_inode_pages(&inode->i_data, 0);
1080
Bob Peterson638803d2019-06-06 07:33:38 -05001081 if (atomic_read(&gl->gl_revokes) == 0) {
Steven Whitehousef42ab082011-04-14 16:50:31 +01001082 clear_bit(GLF_LFLUSH, &gl->gl_flags);
1083 clear_bit(GLF_DIRTY, &gl->gl_flags);
1084 }
1085}
1086
1087static int gfs2_dinode_dealloc(struct gfs2_inode *ip)
1088{
1089 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001090 struct gfs2_rgrpd *rgd;
Bob Peterson564e12b2011-11-21 13:36:17 -05001091 struct gfs2_holder gh;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001092 int error;
1093
1094 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001095 gfs2_consist_inode(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001096 return -EIO;
1097 }
1098
Bob Peterson8e2e0042012-07-19 08:12:40 -04001099 error = gfs2_rindex_update(sdp);
1100 if (error)
1101 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001102
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001103 error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001104 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001105 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001106
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001107 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001108 if (!rgd) {
1109 gfs2_consist_inode(ip);
1110 error = -EIO;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001111 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001112 }
1113
Bob Peterson4fc7ec32018-04-24 10:35:02 -07001114 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1115 LM_FLAG_NODE_SCOPE, &gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001116 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001117 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001118
Steven Whitehouse4667a0e2011-04-18 14:18:09 +01001119 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
1120 sdp->sd_jdesc->jd_blocks);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001121 if (error)
1122 goto out_rg_gunlock;
1123
1124 gfs2_free_di(rgd, ip);
1125
1126 gfs2_final_release_pages(ip);
1127
1128 gfs2_trans_end(sdp);
1129
1130out_rg_gunlock:
Bob Peterson564e12b2011-11-21 13:36:17 -05001131 gfs2_glock_dq_uninit(&gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001132out_qs:
1133 gfs2_quota_unhold(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001134 return error;
1135}
1136
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001137/**
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001138 * gfs2_glock_put_eventually
1139 * @gl: The glock to put
1140 *
1141 * When under memory pressure, trigger a deferred glock put to make sure we
1142 * won't call into DLM and deadlock. Otherwise, put the glock directly.
1143 */
1144
1145static void gfs2_glock_put_eventually(struct gfs2_glock *gl)
1146{
1147 if (current->flags & PF_MEMALLOC)
1148 gfs2_glock_queue_put(gl);
1149 else
1150 gfs2_glock_put(gl);
1151}
1152
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001153static bool gfs2_upgrade_iopen_glock(struct inode *inode)
1154{
1155 struct gfs2_inode *ip = GFS2_I(inode);
1156 struct gfs2_sbd *sdp = GFS2_SB(inode);
1157 struct gfs2_holder *gh = &ip->i_iopen_gh;
1158 long timeout = 5 * HZ;
1159 int error;
1160
1161 gh->gh_flags |= GL_NOCACHE;
1162 gfs2_glock_dq_wait(gh);
1163
1164 /*
1165 * If there are no other lock holders, we'll get the lock immediately.
1166 * Otherwise, the other nodes holding the lock will be notified about
1167 * our locking request. If they don't have the inode open, they'll
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001168 * evict the cached inode and release the lock. Otherwise, if they
1169 * poke the inode glock, we'll take this as an indication that they
1170 * still need the iopen glock and that they'll take care of deleting
1171 * the inode when they're done. As a last resort, if another node
1172 * keeps holding the iopen glock without showing any activity on the
1173 * inode glock, we'll eventually time out.
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001174 *
1175 * Note that we're passing the LM_FLAG_TRY_1CB flag to the first
1176 * locking request as an optimization to notify lock holders as soon as
1177 * possible. Without that flag, they'd be notified implicitly by the
1178 * second locking request.
1179 */
1180
1181 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE, gh);
1182 error = gfs2_glock_nq(gh);
1183 if (error != GLR_TRYFAILED)
1184 return !error;
1185
1186 gfs2_holder_reinit(LM_ST_EXCLUSIVE, GL_ASYNC | GL_NOCACHE, gh);
1187 error = gfs2_glock_nq(gh);
1188 if (error)
1189 return false;
1190
1191 timeout = wait_event_interruptible_timeout(sdp->sd_async_glock_wait,
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001192 !test_bit(HIF_WAIT, &gh->gh_iflags) ||
1193 test_bit(GLF_DEMOTE, &ip->i_gl->gl_flags),
Andreas Gruenbacher9e733302020-01-14 14:59:08 +01001194 timeout);
1195 if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1196 gfs2_glock_dq(gh);
1197 return false;
1198 }
1199 return true;
1200}
1201
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001202/**
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001203 * evict_should_delete - determine whether the inode is eligible for deletion
1204 * @inode: The inode to evict
Lee Jonesc551f662021-03-30 17:44:29 +01001205 * @gh: The glock holder structure
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001206 *
1207 * This function determines whether the evicted inode is eligible to be deleted
1208 * and locks the inode glock.
1209 *
1210 * Returns: the fate of the dinode
1211 */
1212static enum dinode_demise evict_should_delete(struct inode *inode,
1213 struct gfs2_holder *gh)
1214{
1215 struct gfs2_inode *ip = GFS2_I(inode);
1216 struct super_block *sb = inode->i_sb;
1217 struct gfs2_sbd *sdp = sb->s_fs_info;
1218 int ret;
1219
1220 if (test_bit(GIF_ALLOC_FAILED, &ip->i_flags)) {
1221 BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));
1222 goto should_delete;
1223 }
1224
1225 if (test_bit(GIF_DEFERRED_DELETE, &ip->i_flags))
1226 return SHOULD_DEFER_EVICTION;
1227
1228 /* Deletes should never happen under memory pressure anymore. */
1229 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
1230 return SHOULD_DEFER_EVICTION;
1231
1232 /* Must not read inode block until block type has been verified */
1233 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, gh);
1234 if (unlikely(ret)) {
1235 glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
1236 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1237 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
1238 return SHOULD_DEFER_EVICTION;
1239 }
1240
1241 if (gfs2_inode_already_deleted(ip->i_gl, ip->i_no_formal_ino))
1242 return SHOULD_NOT_DELETE_DINODE;
1243 ret = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED);
1244 if (ret)
1245 return SHOULD_NOT_DELETE_DINODE;
1246
Bob Petersonec1d3982021-10-05 09:10:51 -05001247 if (test_bit(GLF_INSTANTIATE_NEEDED, &ip->i_gl->gl_flags)) {
Bob Petersonf2e70d82021-10-06 09:29:18 -05001248 ret = gfs2_instantiate(gh);
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001249 if (ret)
1250 return SHOULD_NOT_DELETE_DINODE;
1251 }
1252
1253 /*
1254 * The inode may have been recreated in the meantime.
1255 */
1256 if (inode->i_nlink)
1257 return SHOULD_NOT_DELETE_DINODE;
1258
1259should_delete:
1260 if (gfs2_holder_initialized(&ip->i_iopen_gh) &&
1261 test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1262 if (!gfs2_upgrade_iopen_glock(inode)) {
1263 gfs2_holder_uninit(&ip->i_iopen_gh);
1264 return SHOULD_NOT_DELETE_DINODE;
1265 }
1266 }
1267 return SHOULD_DELETE_DINODE;
1268}
1269
1270/**
Bob Peterson6e7e9a52020-09-11 09:29:25 -05001271 * evict_unlinked_inode - delete the pieces of an unlinked evicted inode
1272 * @inode: The inode to evict
1273 */
1274static int evict_unlinked_inode(struct inode *inode)
1275{
1276 struct gfs2_inode *ip = GFS2_I(inode);
1277 int ret;
1278
1279 if (S_ISDIR(inode->i_mode) &&
1280 (ip->i_diskflags & GFS2_DIF_EXHASH)) {
1281 ret = gfs2_dir_exhash_dealloc(ip);
1282 if (ret)
1283 goto out;
1284 }
1285
1286 if (ip->i_eattr) {
1287 ret = gfs2_ea_dealloc(ip);
1288 if (ret)
1289 goto out;
1290 }
1291
1292 if (!gfs2_is_stuffed(ip)) {
1293 ret = gfs2_file_dealloc(ip);
1294 if (ret)
1295 goto out;
1296 }
1297
1298 /* We're about to clear the bitmap for the dinode, but as soon as we
1299 do, gfs2_create_inode can create another inode at the same block
1300 location and try to set gl_object again. We clear gl_object here so
1301 that subsequent inode creates don't see an old gl_object. */
1302 glock_clear_object(ip->i_gl, ip);
1303 ret = gfs2_dinode_dealloc(ip);
1304 gfs2_inode_remember_delete(ip->i_gl, ip->i_no_formal_ino);
1305out:
1306 return ret;
1307}
1308
Bob Petersond90be6a2020-09-11 14:53:52 -05001309/*
1310 * evict_linked_inode - evict an inode whose dinode has not been unlinked
1311 * @inode: The inode to evict
1312 */
1313static int evict_linked_inode(struct inode *inode)
1314{
1315 struct super_block *sb = inode->i_sb;
1316 struct gfs2_sbd *sdp = sb->s_fs_info;
1317 struct gfs2_inode *ip = GFS2_I(inode);
1318 struct address_space *metamapping;
1319 int ret;
1320
1321 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
1322 GFS2_LFC_EVICT_INODE);
1323 metamapping = gfs2_glock2aspace(ip->i_gl);
1324 if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) {
1325 filemap_fdatawrite(metamapping);
1326 filemap_fdatawait(metamapping);
1327 }
1328 write_inode_now(inode, 1);
1329 gfs2_ail_flush(ip->i_gl, 0);
1330
1331 ret = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);
1332 if (ret)
1333 return ret;
1334
1335 /* Needs to be done before glock release & also in a transaction */
1336 truncate_inode_pages(&inode->i_data, 0);
1337 truncate_inode_pages(metamapping, 0);
1338 gfs2_trans_end(sdp);
1339 return 0;
1340}
1341
Bob Peterson6e7e9a52020-09-11 09:29:25 -05001342/**
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001343 * gfs2_evict_inode - Remove an inode from cache
1344 * @inode: The inode to evict
1345 *
1346 * There are three cases to consider:
1347 * 1. i_nlink == 0, we are final opener (and must deallocate)
1348 * 2. i_nlink == 0, we are not the final opener (and cannot deallocate)
1349 * 3. i_nlink > 0
1350 *
1351 * If the fs is read only, then we have to treat all cases as per #3
1352 * since we are unable to do any deallocation. The inode will be
1353 * deallocated by the next read/write node to attempt an allocation
1354 * in the same resource group
1355 *
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001356 * We have to (at the moment) hold the inodes main lock to cover
1357 * the gap between unlocking the shared lock on the iopen lock and
1358 * taking the exclusive lock. I'd rather do a shared -> exclusive
1359 * conversion on the iopen lock, but we can change that later. This
1360 * is safe, just less efficient.
1361 */
1362
Al Virod5c15152010-06-07 11:05:19 -04001363static void gfs2_evict_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001364{
Steven Whitehouse001e8e82011-03-30 14:17:51 +01001365 struct super_block *sb = inode->i_sb;
1366 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001367 struct gfs2_inode *ip = GFS2_I(inode);
1368 struct gfs2_holder gh;
Bob Peterson23d828f2020-09-11 10:56:31 -05001369 int ret;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001370
Abhi Das05978802014-03-31 10:33:17 -05001371 if (test_bit(GIF_FREE_VFS_INODE, &ip->i_flags)) {
1372 clear_inode(inode);
1373 return;
1374 }
1375
David Howellsbc98a422017-07-17 08:45:34 +01001376 if (inode->i_nlink || sb_rdonly(sb))
Al Virod5c15152010-06-07 11:05:19 -04001377 goto out;
1378
Bob Peterson53dbc27e2020-09-11 10:30:26 -05001379 gfs2_holder_mark_uninitialized(&gh);
1380 ret = evict_should_delete(inode, &gh);
1381 if (ret == SHOULD_DEFER_EVICTION)
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001382 goto out;
Bob Peterson0a0d9f52020-09-16 08:50:44 -05001383 if (ret == SHOULD_DELETE_DINODE)
1384 ret = evict_unlinked_inode(inode);
1385 else
1386 ret = evict_linked_inode(inode);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001387
Bob Petersona097dc7e2015-07-16 08:28:04 -05001388 if (gfs2_rs_active(&ip->i_res))
1389 gfs2_rs_deltree(&ip->i_res);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001390
Bob Peterson240c6232017-07-18 12:36:01 -05001391 if (gfs2_holder_initialized(&gh)) {
1392 glock_clear_object(ip->i_gl, ip);
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001393 gfs2_glock_dq_uninit(&gh);
Bob Peterson240c6232017-07-18 12:36:01 -05001394 }
Bob Peterson23d828f2020-09-11 10:56:31 -05001395 if (ret && ret != GLR_TRYFAILED && ret != -EROFS)
1396 fs_warn(sdp, "gfs2_evict_inode: %d\n", ret);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001397out:
Johannes Weiner91b0abe2014-04-03 14:47:49 -07001398 truncate_inode_pages_final(&inode->i_data);
Bob Peterson2fba46a2020-02-27 12:47:53 -06001399 if (ip->i_qadata)
1400 gfs2_assert_warn(sdp, ip->i_qadata->qa_ref == 0);
Andreas Gruenbacher15955482020-03-06 10:32:35 -06001401 gfs2_rs_delete(ip, NULL);
Steven Whitehouse45138992013-01-28 09:30:07 +00001402 gfs2_ordered_del_inode(ip);
Jan Karadbd57682012-05-03 14:48:02 +02001403 clear_inode(inode);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001404 gfs2_dir_hash_inval(ip);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001405 if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001406 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1407
1408 glock_clear_object(gl, ip);
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001409 if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1410 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1411 gfs2_glock_dq(&ip->i_iopen_gh);
1412 }
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001413 gfs2_glock_hold(gl);
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001414 gfs2_holder_uninit(&ip->i_iopen_gh);
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001415 gfs2_glock_put_eventually(gl);
Al Virod5c15152010-06-07 11:05:19 -04001416 }
Bob Peterson49462e22021-10-28 11:53:10 -05001417 if (ip->i_gl) {
1418 glock_clear_object(ip->i_gl, ip);
1419 wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE);
1420 gfs2_glock_add_to_lru(ip->i_gl);
1421 gfs2_glock_put_eventually(ip->i_gl);
1422 ip->i_gl = NULL;
1423 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001424}
1425
1426static struct inode *gfs2_alloc_inode(struct super_block *sb)
1427{
1428 struct gfs2_inode *ip;
1429
1430 ip = kmem_cache_alloc(gfs2_inode_cachep, GFP_KERNEL);
Andreas Gruenbacherd4031252019-07-24 13:05:38 +02001431 if (!ip)
1432 return NULL;
1433 ip->i_flags = 0;
1434 ip->i_gl = NULL;
Andreas Gruenbacher40e7e862020-01-24 14:14:46 +01001435 gfs2_holder_mark_uninitialized(&ip->i_iopen_gh);
Andreas Gruenbacherd4031252019-07-24 13:05:38 +02001436 memset(&ip->i_res, 0, sizeof(ip->i_res));
1437 RB_CLEAR_NODE(&ip->i_res.rs_node);
1438 ip->i_rahead = 0;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001439 return &ip->i_inode;
1440}
1441
Al Viro784494e2019-04-15 19:45:26 -04001442static void gfs2_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001443{
Al Viro784494e2019-04-15 19:45:26 -04001444 kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001445}
1446
Abhi Das97fd7342020-10-20 15:58:04 -05001447extern void free_local_statfs_inodes(struct gfs2_sbd *sdp)
1448{
1449 struct local_statfs_inode *lsi, *safe;
1450
1451 /* Run through the statfs inodes list to iput and free memory */
1452 list_for_each_entry_safe(lsi, safe, &sdp->sd_sc_inodes_list, si_list) {
1453 if (lsi->si_jid == sdp->sd_jdesc->jd_jid)
1454 sdp->sd_sc_inode = NULL; /* belongs to this node */
1455 if (lsi->si_sc_inode)
1456 iput(lsi->si_sc_inode);
1457 list_del(&lsi->si_list);
1458 kfree(lsi);
1459 }
1460}
1461
1462extern struct inode *find_local_statfs_inode(struct gfs2_sbd *sdp,
1463 unsigned int index)
1464{
1465 struct local_statfs_inode *lsi;
1466
1467 /* Return the local (per node) statfs inode in the
1468 * sdp->sd_sc_inodes_list corresponding to the 'index'. */
1469 list_for_each_entry(lsi, &sdp->sd_sc_inodes_list, si_list) {
1470 if (lsi->si_jid == index)
1471 return lsi->si_sc_inode;
1472 }
1473 return NULL;
1474}
1475
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001476const struct super_operations gfs2_super_ops = {
1477 .alloc_inode = gfs2_alloc_inode,
Al Viro784494e2019-04-15 19:45:26 -04001478 .free_inode = gfs2_free_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001479 .write_inode = gfs2_write_inode,
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001480 .dirty_inode = gfs2_dirty_inode,
Al Virod5c15152010-06-07 11:05:19 -04001481 .evict_inode = gfs2_evict_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001482 .put_super = gfs2_put_super,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001483 .sync_fs = gfs2_sync_fs,
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001484 .freeze_super = gfs2_freeze,
1485 .thaw_super = gfs2_unfreeze,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001486 .statfs = gfs2_statfs,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001487 .drop_inode = gfs2_drop_inode,
1488 .show_options = gfs2_show_options,
1489};
1490