gfs2: Handle -EBUSY result of insert_inode_locked4
[linux-2.6-block.git] / fs / gfs2 / super.c
CommitLineData
7336d0e6 1// SPDX-License-Identifier: GPL-2.0-only
b3b94faa
DT
2/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
da6dd40d 4 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
b3b94faa
DT
5 */
6
d77d1b58
JP
7#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
9e6e0a12 9#include <linux/bio.h>
174cd4b1 10#include <linux/sched/signal.h>
b3b94faa
DT
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
9e6e0a12
SW
15#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>
5c676f6d 20#include <linux/gfs2_ondisk.h>
9e6e0a12
SW
21#include <linux/crc32.h>
22#include <linux/time.h>
e402746a 23#include <linux/wait.h>
a9185b41 24#include <linux/writeback.h>
4667a0ec 25#include <linux/backing-dev.h>
2e60d768 26#include <linux/kernel.h>
b3b94faa
DT
27
28#include "gfs2.h"
5c676f6d 29#include "incore.h"
b3b94faa
DT
30#include "bmap.h"
31#include "dir.h"
b3b94faa
DT
32#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"
5c676f6d 42#include "util.h"
9e6e0a12 43#include "sys.h"
307cf6e6 44#include "xattr.h"
f4686c26 45#include "lops.h"
9e6e0a12 46
53dbc27e
BP
47enum dinode_demise {
48 SHOULD_DELETE_DINODE,
49 SHOULD_NOT_DELETE_DINODE,
50 SHOULD_DEFER_EVICTION,
51};
52
fefc03bf
SW
53/**
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{
b50f227b 61 struct list_head list;
fefc03bf 62 struct gfs2_jdesc *jd;
fefc03bf
SW
63
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
601ef0d5 70 sdp->sd_jdesc = NULL;
fefc03bf 71 while (!list_empty(&list)) {
969183bc 72 jd = list_first_entry(&list, struct gfs2_jdesc, jd_list);
b50f227b 73 gfs2_free_journal_extents(jd);
fefc03bf
SW
74 list_del(&jd->jd_list);
75 iput(jd->jd_inode);
601ef0d5 76 jd->jd_inode = NULL;
fefc03bf
SW
77 kfree(jd);
78 }
79}
80
b3b94faa
DT
81static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid)
82{
83 struct gfs2_jdesc *jd;
b3b94faa
DT
84
85 list_for_each_entry(jd, head, jd_list) {
736b2f77
AG
86 if (jd->jd_jid == jid)
87 return jd;
b3b94faa 88 }
736b2f77 89 return NULL;
b3b94faa
DT
90}
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
b3b94faa
DT
103int gfs2_jdesc_check(struct gfs2_jdesc *jd)
104{
feaa7bba
SW
105 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
106 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
a2e0f799 107 u64 size = i_size_read(jd->jd_inode);
b3b94faa 108
47a9a527 109 if (gfs2_check_internal_file_size(jd->jd_inode, 8 << 20, BIT(30)))
b3b94faa 110 return -EIO;
b3b94faa 111
a2e0f799
SW
112 jd->jd_blocks = size >> sdp->sd_sb.sb_bsize_shift;
113
114 if (gfs2_write_alloc_required(ip, 0, size)) {
b3b94faa 115 gfs2_consist_inode(ip);
461cb419 116 return -EIO;
b3b94faa
DT
117 }
118
461cb419 119 return 0;
b3b94faa
DT
120}
121
b3b94faa
DT
122/**
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{
feaa7bba 131 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
5c676f6d 132 struct gfs2_glock *j_gl = ip->i_gl;
55167622 133 struct gfs2_log_header_host head;
b3b94faa
DT
134 int error;
135
1a14d3a6 136 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
a28dc123
BP
137 if (gfs2_withdrawn(sdp))
138 return -EIO;
b3b94faa 139
f4686c26 140 error = gfs2_find_jhead(sdp->sd_jdesc, &head, false);
601ef0d5 141 if (error || gfs2_withdrawn(sdp))
a28dc123 142 return error;
b3b94faa
DT
143
144 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
145 gfs2_consist(sdp);
a28dc123 146 return -EIO;
b3b94faa
DT
147 }
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
b3b94faa 153 error = gfs2_quota_init(sdp);
a28dc123
BP
154 if (!error && !gfs2_withdrawn(sdp))
155 set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
b3b94faa
DT
156 return error;
157}
158
1946f70a 159void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
bb8d8a6f
SW
160{
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
73092698 168void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
bb8d8a6f
SW
169{
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
b3b94faa
DT
177int gfs2_statfs_init(struct gfs2_sbd *sdp)
178{
feaa7bba 179 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
bd209cc0 180 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
bd209cc0 181 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
70c11ba8 182 struct buffer_head *m_bh;
b3b94faa
DT
183 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 {
b3b94faa
DT
201 spin_lock(&sdp->sd_statfs_spin);
202 gfs2_statfs_change_in(m_sc, m_bh->b_data +
203 sizeof(struct gfs2_dinode));
70c11ba8 204 gfs2_statfs_change_in(l_sc, sdp->sd_sc_bh->b_data +
b3b94faa
DT
205 sizeof(struct gfs2_dinode));
206 spin_unlock(&sdp->sd_statfs_spin);
207
b3b94faa
DT
208 }
209
b3b94faa 210 brelse(m_bh);
a91ea69f 211out:
b3b94faa 212 gfs2_glock_dq_uninit(&gh);
b3b94faa
DT
213 return 0;
214}
215
cd915493
SW
216void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
217 s64 dinodes)
b3b94faa 218{
feaa7bba 219 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
bd209cc0 220 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
3d3c10f2 221 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
c14f5735
BM
222 s64 x, y;
223 int need_sync = 0;
b3b94faa 224
70c11ba8 225 gfs2_trans_add_meta(l_ip->i_gl, sdp->sd_sc_bh);
b3b94faa
DT
226
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;
70c11ba8
BP
231 gfs2_statfs_change_out(l_sc, sdp->sd_sc_bh->b_data +
232 sizeof(struct gfs2_dinode));
c14f5735
BM
233 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 }
b3b94faa
DT
239 spin_unlock(&sdp->sd_statfs_spin);
240
c14f5735 241 if (need_sync)
3d3c10f2 242 gfs2_wake_up_statfs(sdp);
b3b94faa
DT
243}
244
70c11ba8 245void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh)
1946f70a
BM
246{
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
70c11ba8 252 gfs2_trans_add_meta(l_ip->i_gl, sdp->sd_sc_bh);
901c6c66 253 gfs2_trans_add_meta(m_ip->i_gl, m_bh);
1946f70a
BM
254
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));
70c11ba8 260 memset(sdp->sd_sc_bh->b_data + sizeof(struct gfs2_dinode),
1946f70a 261 0, sizeof(struct gfs2_statfs_change));
1946f70a 262 gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode));
901c6c66 263 spin_unlock(&sdp->sd_statfs_spin);
1946f70a
BM
264}
265
8c42d637 266int gfs2_statfs_sync(struct super_block *sb, int type)
b3b94faa 267{
8c42d637 268 struct gfs2_sbd *sdp = sb->s_fs_info;
feaa7bba 269 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
bd209cc0
AV
270 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
271 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
b3b94faa 272 struct gfs2_holder gh;
70c11ba8 273 struct buffer_head *m_bh;
b3b94faa
DT
274 int error;
275
276 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
277 &gh);
278 if (error)
2e60d768 279 goto out;
b3b94faa
DT
280
281 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
282 if (error)
2e60d768 283 goto out_unlock;
b3b94faa
DT
284
285 spin_lock(&sdp->sd_statfs_spin);
286 gfs2_statfs_change_in(m_sc, m_bh->b_data +
907b9bce 287 sizeof(struct gfs2_dinode));
b3b94faa
DT
288 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
b3b94faa
DT
294 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
295 if (error)
70c11ba8 296 goto out_bh;
b3b94faa 297
70c11ba8 298 update_statfs(sdp, m_bh);
3d3c10f2 299 sdp->sd_statfs_force_sync = 0;
b3b94faa
DT
300
301 gfs2_trans_end(sdp);
302
a91ea69f 303out_bh:
b3b94faa 304 brelse(m_bh);
2e60d768 305out_unlock:
b3b94faa 306 gfs2_glock_dq_uninit(&gh);
2e60d768 307out:
b3b94faa
DT
308 return error;
309}
310
b3b94faa
DT
311struct 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
b3b94faa
DT
320 *
321 * Returns: errno
322 */
323
52b1cdcb 324static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp)
b3b94faa 325{
5c676f6d 326 struct gfs2_inode *ip;
b3b94faa
DT
327 struct gfs2_jdesc *jd;
328 struct lfcc *lfcc;
329 LIST_HEAD(list);
55167622 330 struct gfs2_log_header_host lh;
b3b94faa
DT
331 int error;
332
b3b94faa
DT
333 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 }
feaa7bba
SW
339 ip = GFS2_I(jd->jd_inode);
340 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
b3b94faa
DT
341 if (error) {
342 kfree(lfcc);
343 goto out;
344 }
345 list_add(&lfcc->list, &list);
346 }
347
24972557 348 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE,
ebdc416c
AG
349 LM_FLAG_NOEXP | GL_NOPID,
350 &sdp->sd_freeze_gh);
52b1cdcb
BP
351 if (error)
352 goto out;
b3b94faa
DT
353
354 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
355 error = gfs2_jdesc_check(jd);
356 if (error)
357 break;
f4686c26 358 error = gfs2_find_jhead(jd, &lh, false);
b3b94faa
DT
359 if (error)
360 break;
361 if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
362 error = -EBUSY;
363 break;
364 }
365 }
366
367 if (error)
c77b52c0 368 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
b3b94faa 369
a91ea69f 370out:
b3b94faa 371 while (!list_empty(&list)) {
969183bc 372 lfcc = list_first_entry(&list, struct lfcc, list);
b3b94faa
DT
373 list_del(&lfcc->list);
374 gfs2_glock_dq_uninit(&lfcc->gh);
375 kfree(lfcc);
376 }
b3b94faa
DT
377 return error;
378}
379
9eed04cd
SW
380void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
381{
382 struct gfs2_dinode *str = buf;
383
384 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
385 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
386 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
387 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
388 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
389 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
d0546426
EB
390 str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode));
391 str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode));
9eed04cd
SW
392 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
393 str->di_size = cpu_to_be64(i_size_read(&ip->i_inode));
394 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
395 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
396 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
397 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
398
399 str->di_goal_meta = cpu_to_be64(ip->i_goal);
400 str->di_goal_data = cpu_to_be64(ip->i_goal);
401 str->di_generation = cpu_to_be64(ip->i_generation);
402
403 str->di_flags = cpu_to_be32(ip->i_diskflags);
404 str->di_height = cpu_to_be16(ip->i_height);
405 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
406 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
407 GFS2_FORMAT_DE : 0);
408 str->di_depth = cpu_to_be16(ip->i_depth);
409 str->di_entries = cpu_to_be32(ip->i_entries);
410
411 str->di_eattr = cpu_to_be64(ip->i_eattr);
412 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
413 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
414 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
415}
9e6e0a12
SW
416
417/**
418 * gfs2_write_inode - Make sure the inode is stable on the disk
419 * @inode: The inode
1027efaa 420 * @wbc: The writeback control structure
9e6e0a12
SW
421 *
422 * Returns: errno
423 */
424
a9185b41 425static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc)
9e6e0a12
SW
426{
427 struct gfs2_inode *ip = GFS2_I(inode);
428 struct gfs2_sbd *sdp = GFS2_SB(inode);
1027efaa 429 struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl);
de1414a6 430 struct backing_dev_info *bdi = inode_to_bdi(metamapping->host);
ab9bbda0 431 int ret = 0;
adbc3ddf 432 bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip));
ab9bbda0 433
adbc3ddf 434 if (flush_all)
c1696fb8 435 gfs2_log_flush(GFS2_SB(inode), ip->i_gl,
805c0907
BP
436 GFS2_LOG_HEAD_FLUSH_NORMAL |
437 GFS2_LFC_WRITE_INODE);
a88a341a 438 if (bdi->wb.dirty_exceeded)
4667a0ec 439 gfs2_ail1_flush(sdp, wbc);
1d4ec642
SW
440 else
441 filemap_fdatawrite(metamapping);
adbc3ddf 442 if (flush_all)
1027efaa
SW
443 ret = filemap_fdatawait(metamapping);
444 if (ret)
445 mark_inode_dirty_sync(inode);
957a7acd
AD
446 else {
447 spin_lock(&inode->i_lock);
448 if (!(inode->i_flags & I_DIRTY))
449 gfs2_ordered_del_inode(ip);
450 spin_unlock(&inode->i_lock);
451 }
9e6e0a12
SW
452 return ret;
453}
454
ab9bbda0
SW
455/**
456 * gfs2_dirty_inode - check for atime updates
457 * @inode: The inode in question
458 * @flags: The type of dirty
459 *
460 * Unfortunately it can be called under any combination of inode
461 * glock and transaction lock, so we have to check carefully.
462 *
463 * At the moment this deals only with atime - it should be possible
464 * to expand that role in future, once a review of the locking has
465 * been carried out.
466 */
467
468static void gfs2_dirty_inode(struct inode *inode, int flags)
469{
470 struct gfs2_inode *ip = GFS2_I(inode);
471 struct gfs2_sbd *sdp = GFS2_SB(inode);
472 struct buffer_head *bh;
473 struct gfs2_holder gh;
474 int need_unlock = 0;
475 int need_endtrans = 0;
476 int ret;
477
38552ff6
AG
478 if (unlikely(!ip->i_gl)) {
479 /* This can only happen during incomplete inode creation. */
480 BUG_ON(!test_bit(GIF_ALLOC_FAILED, &ip->i_flags));
481 return;
482 }
483
eb43e660 484 if (unlikely(gfs2_withdrawn(sdp)))
0d1c7ae9 485 return;
ab9bbda0
SW
486 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
487 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
488 if (ret) {
489 fs_err(sdp, "dirty_inode: glock %d\n", ret);
e28c02b9 490 gfs2_dump_glock(NULL, ip->i_gl, true);
ab9bbda0
SW
491 return;
492 }
493 need_unlock = 1;
3d162688
BM
494 } else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE))
495 return;
ab9bbda0
SW
496
497 if (current->journal_info == NULL) {
498 ret = gfs2_trans_begin(sdp, RES_DINODE, 0);
499 if (ret) {
500 fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret);
501 goto out;
502 }
503 need_endtrans = 1;
504 }
505
506 ret = gfs2_meta_inode_buffer(ip, &bh);
507 if (ret == 0) {
350a9b0a 508 gfs2_trans_add_meta(ip->i_gl, bh);
ab9bbda0
SW
509 gfs2_dinode_out(ip, bh->b_data);
510 brelse(bh);
511 }
512
513 if (need_endtrans)
514 gfs2_trans_end(sdp);
515out:
516 if (need_unlock)
517 gfs2_glock_dq_uninit(&gh);
518}
519
9e6e0a12
SW
520/**
521 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
522 * @sdp: the filesystem
523 *
524 * Returns: errno
525 */
526
eb602521 527void gfs2_make_fs_ro(struct gfs2_sbd *sdp)
9e6e0a12 528{
601ef0d5
BP
529 int log_write_allowed = test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
530
a0e3cc65 531 gfs2_flush_delete_work(sdp);
601ef0d5
BP
532 if (!log_write_allowed && current == sdp->sd_quotad_process)
533 fs_warn(sdp, "The quotad daemon is withdrawing.\n");
534 else if (sdp->sd_quotad_process)
5b3a9f34
BP
535 kthread_stop(sdp->sd_quotad_process);
536 sdp->sd_quotad_process = NULL;
601ef0d5
BP
537
538 if (!log_write_allowed && current == sdp->sd_logd_process)
539 fs_warn(sdp, "The logd daemon is withdrawing.\n");
540 else if (sdp->sd_logd_process)
5b3a9f34
BP
541 kthread_stop(sdp->sd_logd_process);
542 sdp->sd_logd_process = NULL;
8ad151c2 543
601ef0d5
BP
544 if (log_write_allowed) {
545 gfs2_quota_sync(sdp->sd_vfs, 0);
546 gfs2_statfs_sync(sdp->sd_vfs, 0);
9e6e0a12 547
601ef0d5
BP
548 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN |
549 GFS2_LFC_MAKE_FS_RO);
f3708fb5
AG
550 wait_event_timeout(sdp->sd_log_waitq,
551 gfs2_log_is_empty(sdp),
552 HZ * 5);
553 gfs2_assert_warn(sdp, gfs2_log_is_empty(sdp));
601ef0d5 554 } else {
f3708fb5
AG
555 wait_event_timeout(sdp->sd_log_waitq,
556 gfs2_log_is_empty(sdp),
601ef0d5
BP
557 HZ * 5);
558 }
9e6e0a12
SW
559 gfs2_quota_cleanup(sdp);
560
601ef0d5
BP
561 if (!log_write_allowed)
562 sdp->sd_vfs->s_flags |= SB_RDONLY;
9e6e0a12
SW
563}
564
9e6e0a12
SW
565/**
566 * gfs2_put_super - Unmount the filesystem
567 * @sb: The VFS superblock
568 *
569 */
570
571static void gfs2_put_super(struct super_block *sb)
572{
573 struct gfs2_sbd *sdp = sb->s_fs_info;
9e6e0a12
SW
574 struct gfs2_jdesc *jd;
575
9e6e0a12
SW
576 /* No more recovery requests */
577 set_bit(SDF_NORECOVERY, &sdp->sd_flags);
578 smp_mb();
579
580 /* Wait on outstanding recovery */
581restart:
582 spin_lock(&sdp->sd_jindex_spin);
583 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
584 if (!test_bit(JDF_RECOVERY, &jd->jd_flags))
585 continue;
586 spin_unlock(&sdp->sd_jindex_spin);
587 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
74316201 588 TASK_UNINTERRUPTIBLE);
9e6e0a12
SW
589 goto restart;
590 }
591 spin_unlock(&sdp->sd_jindex_spin);
592
bc98a42c 593 if (!sb_rdonly(sb)) {
eb602521 594 gfs2_make_fs_ro(sdp);
9e6e0a12 595 }
5a61ae14
AG
596 WARN_ON(gfs2_withdrawing(sdp));
597
9e6e0a12
SW
598 /* At this point, we're through modifying the disk */
599
600 /* Release stuff */
601
602 iput(sdp->sd_jindex);
9e6e0a12
SW
603 iput(sdp->sd_statfs_inode);
604 iput(sdp->sd_rindex);
605 iput(sdp->sd_quota_inode);
606
607 gfs2_glock_put(sdp->sd_rename_gl);
24972557 608 gfs2_glock_put(sdp->sd_freeze_gl);
9e6e0a12
SW
609
610 if (!sdp->sd_args.ar_spectator) {
601ef0d5
BP
611 if (gfs2_holder_initialized(&sdp->sd_journal_gh))
612 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
613 if (gfs2_holder_initialized(&sdp->sd_jinode_gh))
614 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
70c11ba8 615 brelse(sdp->sd_sc_bh);
9e6e0a12
SW
616 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
617 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
97fd734b 618 free_local_statfs_inodes(sdp);
9e6e0a12
SW
619 iput(sdp->sd_qc_inode);
620 }
621
622 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
623 gfs2_clear_rgrpd(sdp);
624 gfs2_jindex_free(sdp);
625 /* Take apart glock structures and buffer lists */
626 gfs2_gl_hash_clear(sdp);
a9dd945c 627 truncate_inode_pages_final(&sdp->sd_aspace);
b2fb7dab 628 gfs2_delete_debugfs_file(sdp);
9e6e0a12
SW
629 /* Unmount the locking protocol */
630 gfs2_lm_unmount(sdp);
631
632 /* At this point, we're through participating in the lockspace */
633 gfs2_sys_fs_del(sdp);
c2a04b02 634 free_sbd(sdp);
9e6e0a12
SW
635}
636
9e6e0a12
SW
637/**
638 * gfs2_sync_fs - sync the filesystem
639 * @sb: the superblock
c551f66c 640 * @wait: true to wait for completion
9e6e0a12
SW
641 *
642 * Flushes the log to disk.
643 */
644
645static int gfs2_sync_fs(struct super_block *sb, int wait)
646{
1027efaa 647 struct gfs2_sbd *sdp = sb->s_fs_info;
a1177825
JK
648
649 gfs2_quota_sync(sb, -1);
942b0cdd 650 if (wait)
805c0907
BP
651 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
652 GFS2_LFC_SYNC_FS);
942b0cdd 653 return sdp->sd_log_error;
9e6e0a12
SW
654}
655
2e60d768
BM
656void gfs2_freeze_func(struct work_struct *work)
657{
658 int error;
659 struct gfs2_holder freeze_gh;
660 struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work);
661 struct super_block *sb = sdp->sd_vfs;
662
663 atomic_inc(&sb->s_active);
c77b52c0 664 error = gfs2_freeze_lock(sdp, &freeze_gh, 0);
2e60d768 665 if (error) {
2e60d768 666 gfs2_assert_withdraw(sdp, 0);
8f918219 667 } else {
2e60d768
BM
668 atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN);
669 error = thaw_super(sb);
670 if (error) {
f29e62ee
BP
671 fs_info(sdp, "GFS2: couldn't thaw filesystem: %d\n",
672 error);
2e60d768
BM
673 gfs2_assert_withdraw(sdp, 0);
674 }
c77b52c0 675 gfs2_freeze_unlock(&freeze_gh);
2e60d768
BM
676 }
677 deactivate_super(sb);
8f918219
AD
678 clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags);
679 wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN);
2e60d768
BM
680 return;
681}
682
9e6e0a12
SW
683/**
684 * gfs2_freeze - prevent further writes to the filesystem
685 * @sb: the VFS structure for the filesystem
686 *
687 */
688
689static int gfs2_freeze(struct super_block *sb)
690{
691 struct gfs2_sbd *sdp = sb->s_fs_info;
ff132c5f 692 int error;
9e6e0a12 693
2e60d768 694 mutex_lock(&sdp->sd_freeze_mutex);
ff132c5f
BP
695 if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN) {
696 error = -EBUSY;
2e60d768 697 goto out;
ff132c5f 698 }
2e60d768 699
9e6e0a12 700 for (;;) {
60528afa
BP
701 if (gfs2_withdrawn(sdp)) {
702 error = -EINVAL;
703 goto out;
704 }
705
52b1cdcb 706 error = gfs2_lock_fs_check_clean(sdp);
9e6e0a12
SW
707 if (!error)
708 break;
709
55317f5b 710 if (error == -EBUSY)
9e6e0a12 711 fs_err(sdp, "waiting for recovery before freeze\n");
52b1cdcb
BP
712 else if (error == -EIO) {
713 fs_err(sdp, "Fatal IO error: cannot freeze gfs2 due "
714 "to recovery error.\n");
715 goto out;
716 } else {
9e6e0a12 717 fs_err(sdp, "error freezing FS: %d\n", error);
52b1cdcb 718 }
9e6e0a12
SW
719 fs_err(sdp, "retrying...\n");
720 msleep(1000);
721 }
8f918219 722 set_bit(SDF_FS_FROZEN, &sdp->sd_flags);
2e60d768
BM
723out:
724 mutex_unlock(&sdp->sd_freeze_mutex);
725 return error;
9e6e0a12
SW
726}
727
728/**
729 * gfs2_unfreeze - reallow writes to the filesystem
730 * @sb: the VFS structure for the filesystem
731 *
732 */
733
734static int gfs2_unfreeze(struct super_block *sb)
735{
d564053f
SW
736 struct gfs2_sbd *sdp = sb->s_fs_info;
737
2e60d768 738 mutex_lock(&sdp->sd_freeze_mutex);
ff132c5f 739 if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN ||
6df9f9a2 740 !gfs2_holder_initialized(&sdp->sd_freeze_gh)) {
2e60d768 741 mutex_unlock(&sdp->sd_freeze_mutex);
ff132c5f 742 return -EINVAL;
2e60d768
BM
743 }
744
c77b52c0 745 gfs2_freeze_unlock(&sdp->sd_freeze_gh);
2e60d768 746 mutex_unlock(&sdp->sd_freeze_mutex);
8f918219 747 return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE);
9e6e0a12
SW
748}
749
750/**
c551f66c 751 * statfs_slow_fill - fill in the sg for a given RG
9e6e0a12
SW
752 * @rgd: the RG
753 * @sc: the sc structure
754 *
755 * Returns: 0 on success, -ESTALE if the LVB is invalid
756 */
757
758static int statfs_slow_fill(struct gfs2_rgrpd *rgd,
759 struct gfs2_statfs_change_host *sc)
760{
761 gfs2_rgrp_verify(rgd);
762 sc->sc_total += rgd->rd_data;
763 sc->sc_free += rgd->rd_free;
764 sc->sc_dinodes += rgd->rd_dinodes;
765 return 0;
766}
767
768/**
769 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
770 * @sdp: the filesystem
771 * @sc: the sc info that will be returned
772 *
773 * Any error (other than a signal) will cause this routine to fall back
774 * to the synchronous version.
775 *
776 * FIXME: This really shouldn't busy wait like this.
777 *
778 * Returns: errno
779 */
780
781static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
782{
9e6e0a12
SW
783 struct gfs2_rgrpd *rgd_next;
784 struct gfs2_holder *gha, *gh;
785 unsigned int slots = 64;
786 unsigned int x;
787 int done;
788 int error = 0, err;
789
790 memset(sc, 0, sizeof(struct gfs2_statfs_change_host));
6da2ec56 791 gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL);
9e6e0a12
SW
792 if (!gha)
793 return -ENOMEM;
6df9f9a2
AG
794 for (x = 0; x < slots; x++)
795 gfs2_holder_mark_uninitialized(gha + x);
9e6e0a12 796
9e6e0a12
SW
797 rgd_next = gfs2_rgrpd_get_first(sdp);
798
799 for (;;) {
800 done = 1;
801
802 for (x = 0; x < slots; x++) {
803 gh = gha + x;
804
6df9f9a2 805 if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) {
9e6e0a12
SW
806 err = gfs2_glock_wait(gh);
807 if (err) {
808 gfs2_holder_uninit(gh);
809 error = err;
810 } else {
6f6597ba
AG
811 if (!error) {
812 struct gfs2_rgrpd *rgd =
813 gfs2_glock2rgrp(gh->gh_gl);
814
815 error = statfs_slow_fill(rgd, sc);
816 }
9e6e0a12
SW
817 gfs2_glock_dq_uninit(gh);
818 }
819 }
820
6df9f9a2 821 if (gfs2_holder_initialized(gh))
9e6e0a12
SW
822 done = 0;
823 else if (rgd_next && !error) {
824 error = gfs2_glock_nq_init(rgd_next->rd_gl,
825 LM_ST_SHARED,
826 GL_ASYNC,
827 gh);
828 rgd_next = gfs2_rgrpd_get_next(rgd_next);
829 done = 0;
830 }
831
832 if (signal_pending(current))
833 error = -ERESTARTSYS;
834 }
835
836 if (done)
837 break;
838
839 yield();
840 }
841
9e6e0a12
SW
842 kfree(gha);
843 return error;
844}
845
846/**
847 * gfs2_statfs_i - Do a statfs
848 * @sdp: the filesystem
c551f66c 849 * @sc: the sc structure
9e6e0a12
SW
850 *
851 * Returns: errno
852 */
853
854static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
855{
856 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
857 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
858
859 spin_lock(&sdp->sd_statfs_spin);
860
861 *sc = *m_sc;
862 sc->sc_total += l_sc->sc_total;
863 sc->sc_free += l_sc->sc_free;
864 sc->sc_dinodes += l_sc->sc_dinodes;
865
866 spin_unlock(&sdp->sd_statfs_spin);
867
868 if (sc->sc_free < 0)
869 sc->sc_free = 0;
870 if (sc->sc_free > sc->sc_total)
871 sc->sc_free = sc->sc_total;
872 if (sc->sc_dinodes < 0)
873 sc->sc_dinodes = 0;
874
875 return 0;
876}
877
878/**
879 * gfs2_statfs - Gather and return stats about the filesystem
c551f66c
LJ
880 * @dentry: The name of the link
881 * @buf: The buffer
9e6e0a12
SW
882 *
883 * Returns: 0 on success or error code
884 */
885
886static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
887{
fc64005c 888 struct super_block *sb = dentry->d_sb;
9e6e0a12
SW
889 struct gfs2_sbd *sdp = sb->s_fs_info;
890 struct gfs2_statfs_change_host sc;
891 int error;
892
8339ee54
SW
893 error = gfs2_rindex_update(sdp);
894 if (error)
895 return error;
896
9e6e0a12
SW
897 if (gfs2_tune_get(sdp, gt_statfs_slow))
898 error = gfs2_statfs_slow(sdp, &sc);
899 else
900 error = gfs2_statfs_i(sdp, &sc);
901
902 if (error)
903 return error;
904
905 buf->f_type = GFS2_MAGIC;
906 buf->f_bsize = sdp->sd_sb.sb_bsize;
907 buf->f_blocks = sc.sc_total;
908 buf->f_bfree = sc.sc_free;
909 buf->f_bavail = sc.sc_free;
910 buf->f_files = sc.sc_dinodes + sc.sc_free;
911 buf->f_ffree = sc.sc_free;
912 buf->f_namelen = GFS2_FNAMESIZE;
913
914 return 0;
915}
916
9e6e0a12
SW
917/**
918 * gfs2_drop_inode - Drop an inode (test for remote unlink)
919 * @inode: The inode to drop
920 *
61b91cfd 921 * If we've received a callback on an iopen lock then it's because a
9e6e0a12
SW
922 * remote node tried to deallocate the inode but failed due to this node
923 * still having the inode open. Here we mark the link count zero
924 * since we know that it must have reached zero if the GLF_DEMOTE flag
925 * is set on the iopen glock. If we didn't do a disk read since the
926 * remote node removed the final link then we might otherwise miss
927 * this event. This check ensures that this node will deallocate the
928 * inode's blocks, or alternatively pass the baton on to another
929 * node for later deallocation.
930 */
931
45321ac5 932static int gfs2_drop_inode(struct inode *inode)
9e6e0a12
SW
933{
934 struct gfs2_inode *ip = GFS2_I(inode);
935
38552ff6 936 if (inode->i_nlink &&
6df9f9a2 937 gfs2_holder_initialized(&ip->i_iopen_gh)) {
9e6e0a12 938 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
6df9f9a2 939 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
9e6e0a12
SW
940 clear_nlink(inode);
941 }
6a1c8f6d
AG
942
943 /*
944 * When under memory pressure when an inode's link count has dropped to
945 * zero, defer deleting the inode to the delete workqueue. This avoids
946 * calling into DLM under memory pressure, which can deadlock.
947 */
948 if (!inode->i_nlink &&
949 unlikely(current->flags & PF_MEMALLOC) &&
950 gfs2_holder_initialized(&ip->i_iopen_gh)) {
951 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
952
953 gfs2_glock_hold(gl);
a0e3cc65 954 if (!gfs2_queue_delete_work(gl, 0))
6a1c8f6d 955 gfs2_glock_queue_put(gl);
ba3ca2bc 956 return 0;
6a1c8f6d
AG
957 }
958
45321ac5 959 return generic_drop_inode(inode);
9e6e0a12
SW
960}
961
962static int is_ancestor(const struct dentry *d1, const struct dentry *d2)
963{
964 do {
965 if (d1 == d2)
966 return 1;
967 d1 = d1->d_parent;
968 } while (!IS_ROOT(d1));
969 return 0;
970}
971
972/**
973 * gfs2_show_options - Show mount options for /proc/mounts
974 * @s: seq_file structure
34c80b1d 975 * @root: root of this (sub)tree
9e6e0a12
SW
976 *
977 * Returns: 0 on success or error code
978 */
979
34c80b1d 980static int gfs2_show_options(struct seq_file *s, struct dentry *root)
9e6e0a12 981{
34c80b1d 982 struct gfs2_sbd *sdp = root->d_sb->s_fs_info;
9e6e0a12 983 struct gfs2_args *args = &sdp->sd_args;
3d3c10f2 984 int val;
9e6e0a12 985
34c80b1d 986 if (is_ancestor(root, sdp->sd_master_dir))
eaebdedc 987 seq_puts(s, ",meta");
9e6e0a12 988 if (args->ar_lockproto[0])
a068acf2 989 seq_show_option(s, "lockproto", args->ar_lockproto);
9e6e0a12 990 if (args->ar_locktable[0])
a068acf2 991 seq_show_option(s, "locktable", args->ar_locktable);
9e6e0a12 992 if (args->ar_hostdata[0])
a068acf2 993 seq_show_option(s, "hostdata", args->ar_hostdata);
9e6e0a12 994 if (args->ar_spectator)
eaebdedc 995 seq_puts(s, ",spectator");
9e6e0a12 996 if (args->ar_localflocks)
eaebdedc 997 seq_puts(s, ",localflocks");
9e6e0a12 998 if (args->ar_debug)
eaebdedc 999 seq_puts(s, ",debug");
9e6e0a12 1000 if (args->ar_posix_acl)
eaebdedc 1001 seq_puts(s, ",acl");
9e6e0a12
SW
1002 if (args->ar_quota != GFS2_QUOTA_DEFAULT) {
1003 char *state;
1004 switch (args->ar_quota) {
1005 case GFS2_QUOTA_OFF:
1006 state = "off";
1007 break;
1008 case GFS2_QUOTA_ACCOUNT:
1009 state = "account";
1010 break;
1011 case GFS2_QUOTA_ON:
1012 state = "on";
1013 break;
1014 default:
1015 state = "unknown";
1016 break;
1017 }
1018 seq_printf(s, ",quota=%s", state);
1019 }
1020 if (args->ar_suiddir)
eaebdedc 1021 seq_puts(s, ",suiddir");
9e6e0a12
SW
1022 if (args->ar_data != GFS2_DATA_DEFAULT) {
1023 char *state;
1024 switch (args->ar_data) {
1025 case GFS2_DATA_WRITEBACK:
1026 state = "writeback";
1027 break;
1028 case GFS2_DATA_ORDERED:
1029 state = "ordered";
1030 break;
1031 default:
1032 state = "unknown";
1033 break;
1034 }
1035 seq_printf(s, ",data=%s", state);
1036 }
1037 if (args->ar_discard)
eaebdedc 1038 seq_puts(s, ",discard");
5e687eac
BM
1039 val = sdp->sd_tune.gt_logd_secs;
1040 if (val != 30)
3d3c10f2
BM
1041 seq_printf(s, ",commit=%d", val);
1042 val = sdp->sd_tune.gt_statfs_quantum;
1043 if (val != 30)
1044 seq_printf(s, ",statfs_quantum=%d", val);
2b9731e8
SW
1045 else if (sdp->sd_tune.gt_statfs_slow)
1046 seq_puts(s, ",statfs_quantum=0");
3d3c10f2
BM
1047 val = sdp->sd_tune.gt_quota_quantum;
1048 if (val != 60)
1049 seq_printf(s, ",quota_quantum=%d", val);
1050 if (args->ar_statfs_percent)
1051 seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent);
d34843d0
BP
1052 if (args->ar_errors != GFS2_ERRORS_DEFAULT) {
1053 const char *state;
1054
1055 switch (args->ar_errors) {
1056 case GFS2_ERRORS_WITHDRAW:
1057 state = "withdraw";
1058 break;
1059 case GFS2_ERRORS_PANIC:
1060 state = "panic";
1061 break;
1062 default:
1063 state = "unknown";
1064 break;
1065 }
1066 seq_printf(s, ",errors=%s", state);
1067 }
cdcfde62 1068 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags))
eaebdedc 1069 seq_puts(s, ",nobarrier");
913a71d2 1070 if (test_bit(SDF_DEMOTE, &sdp->sd_flags))
eaebdedc 1071 seq_puts(s, ",demote_interface_used");
90306c41 1072 if (args->ar_rgrplvb)
eaebdedc 1073 seq_puts(s, ",rgrplvb");
471f3db2
BM
1074 if (args->ar_loccookie)
1075 seq_puts(s, ",loccookie");
9e6e0a12
SW
1076 return 0;
1077}
1078
f42ab085
SW
1079static void gfs2_final_release_pages(struct gfs2_inode *ip)
1080{
1081 struct inode *inode = &ip->i_inode;
1082 struct gfs2_glock *gl = ip->i_gl;
1083
38552ff6
AG
1084 if (unlikely(!gl)) {
1085 /* This can only happen during incomplete inode creation. */
1086 BUG_ON(!test_bit(GIF_ALLOC_FAILED, &ip->i_flags));
1087 return;
1088 }
1089
1090 truncate_inode_pages(gfs2_glock2aspace(gl), 0);
f42ab085
SW
1091 truncate_inode_pages(&inode->i_data, 0);
1092
638803d4 1093 if (atomic_read(&gl->gl_revokes) == 0) {
f42ab085
SW
1094 clear_bit(GLF_LFLUSH, &gl->gl_flags);
1095 clear_bit(GLF_DIRTY, &gl->gl_flags);
1096 }
1097}
1098
1099static int gfs2_dinode_dealloc(struct gfs2_inode *ip)
1100{
1101 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
f42ab085 1102 struct gfs2_rgrpd *rgd;
564e12b1 1103 struct gfs2_holder gh;
f42ab085
SW
1104 int error;
1105
1106 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
94fb763b 1107 gfs2_consist_inode(ip);
f42ab085
SW
1108 return -EIO;
1109 }
1110
8e2e0047
BP
1111 error = gfs2_rindex_update(sdp);
1112 if (error)
1113 return error;
f42ab085 1114
f4108a60 1115 error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
f42ab085 1116 if (error)
5407e242 1117 return error;
f42ab085 1118
66fc061b 1119 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
f42ab085
SW
1120 if (!rgd) {
1121 gfs2_consist_inode(ip);
1122 error = -EIO;
8339ee54 1123 goto out_qs;
f42ab085
SW
1124 }
1125
4fc7ec31
BP
1126 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1127 LM_FLAG_NODE_SCOPE, &gh);
f42ab085 1128 if (error)
8339ee54 1129 goto out_qs;
f42ab085 1130
4667a0ec
SW
1131 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
1132 sdp->sd_jdesc->jd_blocks);
f42ab085
SW
1133 if (error)
1134 goto out_rg_gunlock;
1135
1136 gfs2_free_di(rgd, ip);
1137
1138 gfs2_final_release_pages(ip);
1139
1140 gfs2_trans_end(sdp);
1141
1142out_rg_gunlock:
564e12b1 1143 gfs2_glock_dq_uninit(&gh);
f42ab085
SW
1144out_qs:
1145 gfs2_quota_unhold(ip);
f42ab085
SW
1146 return error;
1147}
1148
71c1b213
AG
1149/**
1150 * gfs2_glock_put_eventually
1151 * @gl: The glock to put
1152 *
1153 * When under memory pressure, trigger a deferred glock put to make sure we
1154 * won't call into DLM and deadlock. Otherwise, put the glock directly.
1155 */
1156
1157static void gfs2_glock_put_eventually(struct gfs2_glock *gl)
1158{
1159 if (current->flags & PF_MEMALLOC)
1160 gfs2_glock_queue_put(gl);
1161 else
1162 gfs2_glock_put(gl);
1163}
1164
9e73330f
AG
1165static bool gfs2_upgrade_iopen_glock(struct inode *inode)
1166{
1167 struct gfs2_inode *ip = GFS2_I(inode);
1168 struct gfs2_sbd *sdp = GFS2_SB(inode);
1169 struct gfs2_holder *gh = &ip->i_iopen_gh;
1170 long timeout = 5 * HZ;
1171 int error;
1172
1173 gh->gh_flags |= GL_NOCACHE;
1174 gfs2_glock_dq_wait(gh);
1175
1176 /*
1177 * If there are no other lock holders, we'll get the lock immediately.
1178 * Otherwise, the other nodes holding the lock will be notified about
1179 * our locking request. If they don't have the inode open, they'll
9e8990de
AG
1180 * evict the cached inode and release the lock. Otherwise, if they
1181 * poke the inode glock, we'll take this as an indication that they
1182 * still need the iopen glock and that they'll take care of deleting
1183 * the inode when they're done. As a last resort, if another node
1184 * keeps holding the iopen glock without showing any activity on the
1185 * inode glock, we'll eventually time out.
9e73330f
AG
1186 *
1187 * Note that we're passing the LM_FLAG_TRY_1CB flag to the first
1188 * locking request as an optimization to notify lock holders as soon as
1189 * possible. Without that flag, they'd be notified implicitly by the
1190 * second locking request.
1191 */
1192
1193 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE, gh);
1194 error = gfs2_glock_nq(gh);
1195 if (error != GLR_TRYFAILED)
1196 return !error;
1197
1198 gfs2_holder_reinit(LM_ST_EXCLUSIVE, GL_ASYNC | GL_NOCACHE, gh);
1199 error = gfs2_glock_nq(gh);
1200 if (error)
1201 return false;
1202
1203 timeout = wait_event_interruptible_timeout(sdp->sd_async_glock_wait,
9e8990de
AG
1204 !test_bit(HIF_WAIT, &gh->gh_iflags) ||
1205 test_bit(GLF_DEMOTE, &ip->i_gl->gl_flags),
9e73330f
AG
1206 timeout);
1207 if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1208 gfs2_glock_dq(gh);
1209 return false;
1210 }
53d69132 1211 return gfs2_glock_holder_ready(gh) == 0;
9e73330f
AG
1212}
1213
53dbc27e
BP
1214/**
1215 * evict_should_delete - determine whether the inode is eligible for deletion
1216 * @inode: The inode to evict
c551f66c 1217 * @gh: The glock holder structure
53dbc27e
BP
1218 *
1219 * This function determines whether the evicted inode is eligible to be deleted
1220 * and locks the inode glock.
1221 *
1222 * Returns: the fate of the dinode
1223 */
1224static enum dinode_demise evict_should_delete(struct inode *inode,
1225 struct gfs2_holder *gh)
1226{
1227 struct gfs2_inode *ip = GFS2_I(inode);
1228 struct super_block *sb = inode->i_sb;
1229 struct gfs2_sbd *sdp = sb->s_fs_info;
1230 int ret;
1231
38552ff6 1232 if (unlikely(test_bit(GIF_ALLOC_FAILED, &ip->i_flags)))
53dbc27e 1233 goto should_delete;
53dbc27e
BP
1234
1235 if (test_bit(GIF_DEFERRED_DELETE, &ip->i_flags))
1236 return SHOULD_DEFER_EVICTION;
1237
1238 /* Deletes should never happen under memory pressure anymore. */
1239 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
1240 return SHOULD_DEFER_EVICTION;
1241
1242 /* Must not read inode block until block type has been verified */
1243 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, gh);
1244 if (unlikely(ret)) {
1245 glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
1246 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1247 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
1248 return SHOULD_DEFER_EVICTION;
1249 }
1250
1251 if (gfs2_inode_already_deleted(ip->i_gl, ip->i_no_formal_ino))
1252 return SHOULD_NOT_DELETE_DINODE;
1253 ret = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED);
1254 if (ret)
1255 return SHOULD_NOT_DELETE_DINODE;
1256
8d567162
AG
1257 ret = gfs2_instantiate(gh);
1258 if (ret)
1259 return SHOULD_NOT_DELETE_DINODE;
53dbc27e
BP
1260
1261 /*
1262 * The inode may have been recreated in the meantime.
1263 */
1264 if (inode->i_nlink)
1265 return SHOULD_NOT_DELETE_DINODE;
1266
1267should_delete:
1268 if (gfs2_holder_initialized(&ip->i_iopen_gh) &&
1269 test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1270 if (!gfs2_upgrade_iopen_glock(inode)) {
1271 gfs2_holder_uninit(&ip->i_iopen_gh);
1272 return SHOULD_NOT_DELETE_DINODE;
1273 }
1274 }
1275 return SHOULD_DELETE_DINODE;
1276}
1277
6e7e9a50
BP
1278/**
1279 * evict_unlinked_inode - delete the pieces of an unlinked evicted inode
1280 * @inode: The inode to evict
1281 */
1282static int evict_unlinked_inode(struct inode *inode)
1283{
1284 struct gfs2_inode *ip = GFS2_I(inode);
1285 int ret;
1286
1287 if (S_ISDIR(inode->i_mode) &&
1288 (ip->i_diskflags & GFS2_DIF_EXHASH)) {
1289 ret = gfs2_dir_exhash_dealloc(ip);
1290 if (ret)
1291 goto out;
1292 }
1293
1294 if (ip->i_eattr) {
1295 ret = gfs2_ea_dealloc(ip);
1296 if (ret)
1297 goto out;
1298 }
1299
1300 if (!gfs2_is_stuffed(ip)) {
1301 ret = gfs2_file_dealloc(ip);
1302 if (ret)
1303 goto out;
1304 }
1305
1306 /* We're about to clear the bitmap for the dinode, but as soon as we
1307 do, gfs2_create_inode can create another inode at the same block
1308 location and try to set gl_object again. We clear gl_object here so
1309 that subsequent inode creates don't see an old gl_object. */
38552ff6
AG
1310 if (ip->i_gl) {
1311 glock_clear_object(ip->i_gl, ip);
1312 gfs2_inode_remember_delete(ip->i_gl, ip->i_no_formal_ino);
1313 }
6e7e9a50 1314 ret = gfs2_dinode_dealloc(ip);
6e7e9a50
BP
1315out:
1316 return ret;
1317}
1318
d90be6ab
BP
1319/*
1320 * evict_linked_inode - evict an inode whose dinode has not been unlinked
1321 * @inode: The inode to evict
1322 */
1323static int evict_linked_inode(struct inode *inode)
1324{
1325 struct super_block *sb = inode->i_sb;
1326 struct gfs2_sbd *sdp = sb->s_fs_info;
1327 struct gfs2_inode *ip = GFS2_I(inode);
1328 struct address_space *metamapping;
1329 int ret;
1330
1331 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
1332 GFS2_LFC_EVICT_INODE);
1333 metamapping = gfs2_glock2aspace(ip->i_gl);
1334 if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) {
1335 filemap_fdatawrite(metamapping);
1336 filemap_fdatawait(metamapping);
1337 }
1338 write_inode_now(inode, 1);
1339 gfs2_ail_flush(ip->i_gl, 0);
1340
1341 ret = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);
1342 if (ret)
1343 return ret;
1344
1345 /* Needs to be done before glock release & also in a transaction */
1346 truncate_inode_pages(&inode->i_data, 0);
1347 truncate_inode_pages(metamapping, 0);
1348 gfs2_trans_end(sdp);
1349 return 0;
1350}
1351
380f7c65
SW
1352/**
1353 * gfs2_evict_inode - Remove an inode from cache
1354 * @inode: The inode to evict
1355 *
1356 * There are three cases to consider:
1357 * 1. i_nlink == 0, we are final opener (and must deallocate)
1358 * 2. i_nlink == 0, we are not the final opener (and cannot deallocate)
1359 * 3. i_nlink > 0
1360 *
1361 * If the fs is read only, then we have to treat all cases as per #3
1362 * since we are unable to do any deallocation. The inode will be
1363 * deallocated by the next read/write node to attempt an allocation
1364 * in the same resource group
1365 *
9e6e0a12
SW
1366 * We have to (at the moment) hold the inodes main lock to cover
1367 * the gap between unlocking the shared lock on the iopen lock and
1368 * taking the exclusive lock. I'd rather do a shared -> exclusive
1369 * conversion on the iopen lock, but we can change that later. This
1370 * is safe, just less efficient.
1371 */
1372
d5c1515c 1373static void gfs2_evict_inode(struct inode *inode)
9e6e0a12 1374{
001e8e8d
SW
1375 struct super_block *sb = inode->i_sb;
1376 struct gfs2_sbd *sdp = sb->s_fs_info;
9e6e0a12
SW
1377 struct gfs2_inode *ip = GFS2_I(inode);
1378 struct gfs2_holder gh;
23d828fc 1379 int ret;
9e6e0a12 1380
38552ff6 1381 if (inode->i_nlink || sb_rdonly(sb) || !ip->i_no_addr)
d5c1515c
AV
1382 goto out;
1383
53dbc27e
BP
1384 gfs2_holder_mark_uninitialized(&gh);
1385 ret = evict_should_delete(inode, &gh);
1386 if (ret == SHOULD_DEFER_EVICTION)
8c7b9262 1387 goto out;
0a0d9f55
BP
1388 if (ret == SHOULD_DELETE_DINODE)
1389 ret = evict_unlinked_inode(inode);
1390 else
1391 ret = evict_linked_inode(inode);
9e6e0a12 1392
a097dc7e
BP
1393 if (gfs2_rs_active(&ip->i_res))
1394 gfs2_rs_deltree(&ip->i_res);
8e2e0047 1395
240c6235
BP
1396 if (gfs2_holder_initialized(&gh)) {
1397 glock_clear_object(ip->i_gl, ip);
e0b62e21 1398 gfs2_glock_dq_uninit(&gh);
240c6235 1399 }
23d828fc
BP
1400 if (ret && ret != GLR_TRYFAILED && ret != -EROFS)
1401 fs_warn(sdp, "gfs2_evict_inode: %d\n", ret);
9e6e0a12 1402out:
91b0abe3 1403 truncate_inode_pages_final(&inode->i_data);
2fba46a0
BP
1404 if (ip->i_qadata)
1405 gfs2_assert_warn(sdp, ip->i_qadata->qa_ref == 0);
7336905a 1406 gfs2_rs_deltree(&ip->i_res);
45138990 1407 gfs2_ordered_del_inode(ip);
dbd5768f 1408 clear_inode(inode);
17d539f0 1409 gfs2_dir_hash_inval(ip);
6df9f9a2 1410 if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
71c1b213
AG
1411 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1412
1413 glock_clear_object(gl, ip);
40e7e86e
AG
1414 if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1415 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1416 gfs2_glock_dq(&ip->i_iopen_gh);
1417 }
71c1b213 1418 gfs2_glock_hold(gl);
40e7e86e 1419 gfs2_holder_uninit(&ip->i_iopen_gh);
71c1b213 1420 gfs2_glock_put_eventually(gl);
d5c1515c 1421 }
49462e2b
BP
1422 if (ip->i_gl) {
1423 glock_clear_object(ip->i_gl, ip);
1424 wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE);
1425 gfs2_glock_add_to_lru(ip->i_gl);
1426 gfs2_glock_put_eventually(ip->i_gl);
1427 ip->i_gl = NULL;
1428 }
9e6e0a12
SW
1429}
1430
1431static struct inode *gfs2_alloc_inode(struct super_block *sb)
1432{
1433 struct gfs2_inode *ip;
1434
fd60b288 1435 ip = alloc_inode_sb(sb, gfs2_inode_cachep, GFP_KERNEL);
d4031259
AG
1436 if (!ip)
1437 return NULL;
38552ff6 1438 ip->i_no_addr = 0;
d4031259
AG
1439 ip->i_flags = 0;
1440 ip->i_gl = NULL;
40e7e86e 1441 gfs2_holder_mark_uninitialized(&ip->i_iopen_gh);
d4031259
AG
1442 memset(&ip->i_res, 0, sizeof(ip->i_res));
1443 RB_CLEAR_NODE(&ip->i_res.rs_node);
1444 ip->i_rahead = 0;
9e6e0a12
SW
1445 return &ip->i_inode;
1446}
1447
784494e1 1448static void gfs2_free_inode(struct inode *inode)
9e6e0a12 1449{
784494e1 1450 kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode));
fa0d7e3d
NP
1451}
1452
97fd734b
AD
1453extern void free_local_statfs_inodes(struct gfs2_sbd *sdp)
1454{
1455 struct local_statfs_inode *lsi, *safe;
1456
1457 /* Run through the statfs inodes list to iput and free memory */
1458 list_for_each_entry_safe(lsi, safe, &sdp->sd_sc_inodes_list, si_list) {
1459 if (lsi->si_jid == sdp->sd_jdesc->jd_jid)
1460 sdp->sd_sc_inode = NULL; /* belongs to this node */
1461 if (lsi->si_sc_inode)
1462 iput(lsi->si_sc_inode);
1463 list_del(&lsi->si_list);
1464 kfree(lsi);
1465 }
1466}
1467
1468extern struct inode *find_local_statfs_inode(struct gfs2_sbd *sdp,
1469 unsigned int index)
1470{
1471 struct local_statfs_inode *lsi;
1472
1473 /* Return the local (per node) statfs inode in the
1474 * sdp->sd_sc_inodes_list corresponding to the 'index'. */
1475 list_for_each_entry(lsi, &sdp->sd_sc_inodes_list, si_list) {
1476 if (lsi->si_jid == index)
1477 return lsi->si_sc_inode;
1478 }
1479 return NULL;
1480}
1481
9e6e0a12
SW
1482const struct super_operations gfs2_super_ops = {
1483 .alloc_inode = gfs2_alloc_inode,
784494e1 1484 .free_inode = gfs2_free_inode,
9e6e0a12 1485 .write_inode = gfs2_write_inode,
ab9bbda0 1486 .dirty_inode = gfs2_dirty_inode,
d5c1515c 1487 .evict_inode = gfs2_evict_inode,
9e6e0a12 1488 .put_super = gfs2_put_super,
9e6e0a12 1489 .sync_fs = gfs2_sync_fs,
2e60d768
BM
1490 .freeze_super = gfs2_freeze,
1491 .thaw_super = gfs2_unfreeze,
9e6e0a12 1492 .statfs = gfs2_statfs,
9e6e0a12
SW
1493 .drop_inode = gfs2_drop_inode,
1494 .show_options = gfs2_show_options,
1495};
1496