blob: 01e274b902c0f30512783993646f024e5cc94659 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
33#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_dir2_sf.h"
35#include "xfs_attr_sf.h"
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_btree.h"
40#include "xfs_alloc.h"
41#include "xfs_ialloc.h"
Nathan Scotta844f452005-11-02 14:38:42 +110042#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_error.h"
44#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110047#include "xfs_log_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_dir2_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110049#include "xfs_extfree_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "xfs_acl.h"
51#include "xfs_attr.h"
52#include "xfs_clnt.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100053#include "xfs_mru_cache.h"
54#include "xfs_filestream.h"
Christoph Hellwige13a73f2006-01-11 15:30:08 +110055#include "xfs_fsops.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100056#include "xfs_vnodeops.h"
Christoph Hellwig48c872a9f2007-08-30 17:20:31 +100057#include "xfs_vfsops.h"
Christoph Hellwig43355092008-03-27 18:01:08 +110058#include "xfs_utils.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110059#include "xfs_sync.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
David Chinner3c85c362008-04-10 12:19:40 +100062STATIC void
Christoph Hellwigf898d6c2005-06-21 15:40:48 +100063xfs_quiesce_fs(
64 xfs_mount_t *mp)
65{
66 int count = 0, pincount;
Nathan Scott3758dee2006-03-22 12:47:28 +110067
Christoph Hellwigf898d6c2005-06-21 15:40:48 +100068 xfs_flush_buftarg(mp->m_ddev_targp, 0);
69 xfs_finish_reclaim_all(mp, 0);
70
71 /* This loop must run at least twice.
72 * The first instance of the loop will flush
73 * most meta data but that will generate more
74 * meta data (typically directory updates).
75 * Which then must be flushed and logged before
76 * we can write the unmount record.
Nathan Scott3758dee2006-03-22 12:47:28 +110077 */
Christoph Hellwigf898d6c2005-06-21 15:40:48 +100078 do {
David Chinner516b2e72007-06-18 16:50:48 +100079 xfs_syncsub(mp, SYNC_INODE_QUIESCE, NULL);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +100080 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
81 if (!pincount) {
82 delay(50);
83 count++;
84 }
85 } while (count < 2);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +100086}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
David Chinner516b2e72007-06-18 16:50:48 +100088/*
89 * Second stage of a quiesce. The data is already synced, now we have to take
90 * care of the metadata. New transactions are already blocked, so we need to
91 * wait for any remaining transactions to drain out before proceding.
92 */
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100093void
David Chinner516b2e72007-06-18 16:50:48 +100094xfs_attr_quiesce(
95 xfs_mount_t *mp)
96{
David Chinnere5720ee2008-04-10 12:21:18 +100097 int error = 0;
98
David Chinner516b2e72007-06-18 16:50:48 +100099 /* wait for all modifications to complete */
100 while (atomic_read(&mp->m_active_trans) > 0)
101 delay(100);
102
103 /* flush inodes and push all remaining buffers out to disk */
104 xfs_quiesce_fs(mp);
105
106 ASSERT_ALWAYS(atomic_read(&mp->m_active_trans) == 0);
107
108 /* Push the superblock and write an unmount record */
David Chinnere5720ee2008-04-10 12:21:18 +1000109 error = xfs_log_sbcount(mp, 1);
110 if (error)
111 xfs_fs_cmn_err(CE_WARN, mp,
112 "xfs_attr_quiesce: failed to log sb changes. "
113 "Frozen image may not be consistent.");
David Chinner516b2e72007-06-18 16:50:48 +1000114 xfs_log_unmount_write(mp);
115 xfs_unmountfs_writesb(mp);
116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/*
119 * xfs_unmount_flush implements a set of flush operation on special
120 * inodes, which are needed as a separate set of operations so that
121 * they can be called as part of relocation process.
122 */
123int
124xfs_unmount_flush(
125 xfs_mount_t *mp, /* Mount structure we are getting
126 rid of. */
127 int relocation) /* Called from vfs relocation. */
128{
129 xfs_inode_t *rip = mp->m_rootip;
130 xfs_inode_t *rbmip;
131 xfs_inode_t *rsumip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int error;
133
Lachlan McIlroyf7c66ce2007-05-08 13:50:19 +1000134 xfs_ilock(rip, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 xfs_iflock(rip);
136
137 /*
138 * Flush out the real time inodes.
139 */
140 if ((rbmip = mp->m_rbmip) != NULL) {
141 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
142 xfs_iflock(rbmip);
143 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
144 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
145
146 if (error == EFSCORRUPTED)
147 goto fscorrupt_out;
148
David Chinnere4f75292008-08-13 16:00:45 +1000149 ASSERT(vn_count(VFS_I(rbmip)) == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 rsumip = mp->m_rsumip;
152 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
153 xfs_iflock(rsumip);
154 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
155 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
156
157 if (error == EFSCORRUPTED)
158 goto fscorrupt_out;
159
David Chinnere4f75292008-08-13 16:00:45 +1000160 ASSERT(vn_count(VFS_I(rsumip)) == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162
163 /*
164 * Synchronously flush root inode to disk
165 */
166 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
167 if (error == EFSCORRUPTED)
168 goto fscorrupt_out2;
169
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000170 if (vn_count(VFS_I(rip)) != 1 && !relocation) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 xfs_iunlock(rip, XFS_ILOCK_EXCL);
172 return XFS_ERROR(EBUSY);
173 }
174
175 /*
176 * Release dquot that rootinode, rbmino and rsumino might be holding,
177 * flush and purge the quota inodes.
178 */
179 error = XFS_QM_UNMOUNT(mp);
180 if (error == EFSCORRUPTED)
181 goto fscorrupt_out2;
182
183 if (rbmip) {
Christoph Hellwig43355092008-03-27 18:01:08 +1100184 IRELE(rbmip);
185 IRELE(rsumip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 xfs_iunlock(rip, XFS_ILOCK_EXCL);
189 return 0;
190
191fscorrupt_out:
192 xfs_ifunlock(rip);
193
194fscorrupt_out2:
195 xfs_iunlock(rip, XFS_ILOCK_EXCL);
196
197 return XFS_ERROR(EFSCORRUPTED);
198}
199