blob: 597d044a09a1e41c91f644925d7d0b8b91f08bf2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott1e69dd02006-06-19 08:39:53 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * 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"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_dinode.h"
30#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_rw.h"
33
34/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * Force a shutdown of the filesystem instantly while keeping
36 * the filesystem consistent. We don't do an unmount here; just shutdown
37 * the shop, make sure that absolutely nothing persistent happens to
38 * this filesystem after this point.
39 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040void
41xfs_do_force_shutdown(
Christoph Hellwig48c872a9f2007-08-30 17:20:31 +100042 xfs_mount_t *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int flags,
44 char *fname,
45 int lnnum)
46{
47 int logerror;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Nathan Scott7d04a332006-06-09 14:58:38 +100049 logerror = flags & SHUTDOWN_LOG_IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Nathan Scott7d04a332006-06-09 14:58:38 +100051 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110052 xfs_notice(mp,
53 "%s(0x%x) called from line %d of file %s. Return address = 0x%p",
54 __func__, flags, lnnum, fname, __return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
56 /*
57 * No need to duplicate efforts.
58 */
59 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
60 return;
61
62 /*
63 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
64 * queue up anybody new on the log reservations, and wakes up
Nathan Scott7d04a332006-06-09 14:58:38 +100065 * everybody who's sleeping on log reservations to tell them
66 * the bad news.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
68 if (xfs_log_force_umount(mp, logerror))
69 return;
70
Nathan Scott7d04a332006-06-09 14:58:38 +100071 if (flags & SHUTDOWN_CORRUPT_INCORE) {
Dave Chinner6a19d932011-03-07 10:02:35 +110072 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
73 "Corruption of in-memory data detected. Shutting down filesystem");
74 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 xfs_stack_trace();
Nathan Scott7d04a332006-06-09 14:58:38 +100076 } else if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (logerror) {
Dave Chinner6a19d932011-03-07 10:02:35 +110078 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
79 "Log I/O Error Detected. Shutting down filesystem");
Nathan Scott7d04a332006-06-09 14:58:38 +100080 } else if (flags & SHUTDOWN_DEVICE_REQ) {
Dave Chinner6a19d932011-03-07 10:02:35 +110081 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
82 "All device paths lost. Shutting down filesystem");
Nathan Scott7d04a332006-06-09 14:58:38 +100083 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
Dave Chinner6a19d932011-03-07 10:02:35 +110084 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
85 "I/O Error Detected. Shutting down filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87 }
Nathan Scott7d04a332006-06-09 14:58:38 +100088 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +110089 xfs_alert(mp,
90 "Please umount the filesystem and rectify the problem(s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * This isn't an absolute requirement, but it is
96 * just a good idea to call xfs_read_buf instead of
97 * directly doing a read_buf call. For one, we shouldn't
98 * be doing this disk read if we are in SHUTDOWN state anyway,
99 * so this stops that from happening. Secondly, this does all
100 * the error checking stuff and the brelse if appropriate for
101 * the caller, so the code can be a little leaner.
102 */
103
104int
105xfs_read_buf(
106 struct xfs_mount *mp,
107 xfs_buftarg_t *target,
108 xfs_daddr_t blkno,
109 int len,
110 uint flags,
111 xfs_buf_t **bpp)
112{
113 xfs_buf_t *bp;
114 int error;
115
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000116 if (!flags)
117 flags = XBF_LOCK | XBF_MAPPED;
118
119 bp = xfs_buf_read(target, blkno, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (!bp)
121 return XFS_ERROR(EIO);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +0000122 error = bp->b_error;
123 if (!error && !XFS_FORCED_SHUTDOWN(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *bpp = bp;
125 } else {
126 *bpp = NULL;
127 if (error) {
Christoph Hellwig901796a2011-10-10 16:52:49 +0000128 xfs_buf_ioerror_alert(bp, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 } else {
130 error = XFS_ERROR(EIO);
131 }
132 if (bp) {
133 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +0000134 xfs_buf_stale(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /*
136 * brelse clears B_ERROR and b_error
137 */
138 xfs_buf_relse(bp);
139 }
140 }
141 return (error);
142}
143
144/*
Christoph Hellwig5683f532009-11-14 16:17:21 +0000145 * helper function to extract extent size hint from inode
146 */
147xfs_extlen_t
148xfs_get_extsz_hint(
149 struct xfs_inode *ip)
150{
Christoph Hellwig0d8b30a2011-01-25 09:06:20 +0000151 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
152 return ip->i_d.di_extsize;
153 if (XFS_IS_REALTIME_INODE(ip))
154 return ip->i_mount->m_sb.sb_rextsize;
155 return 0;
Christoph Hellwig5683f532009-11-14 16:17:21 +0000156}