blob: 775de2b5727cd8c7cb803a74b8d3314e35cd7837 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scotta805bad2006-06-19 08:40:27 +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 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_btree.h"
Christoph Hellwig8c4ed632008-10-30 16:55:13 +110039#include "xfs_btree_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rtalloc.h"
43#include "xfs_error.h"
44#include "xfs_itable.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100045#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_attr.h"
48#include "xfs_buf_item.h"
49#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100050#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_version.h"
David Chinnera67d7c52007-11-23 16:29:32 +110052#include "xfs_log_priv.h"
David Chinner249a8c12008-02-05 12:13:32 +110053#include "xfs_trans_priv.h"
Christoph Hellwig48b62a12008-05-20 11:30:39 +100054#include "xfs_filestream.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100055#include "xfs_da_btree.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100056#include "xfs_extfree_item.h"
57#include "xfs_mru_cache.h"
58#include "xfs_inode_item.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110059#include "xfs_sync.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000060#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <linux/namei.h>
63#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090064#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mount.h>
Christoph Hellwig0829c362005-09-02 16:58:49 +100066#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/writeback.h>
Christoph Hellwig4df08c52005-09-05 08:34:18 +100068#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080069#include <linux/freezer.h>
Christoph Hellwig62a877e2008-07-18 17:12:36 +100070#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070072static const struct super_operations xfs_super_operations;
David Chinner7989cb82007-02-10 18:34:56 +110073static kmem_zone_t *xfs_ioend_zone;
Christoph Hellwig0829c362005-09-02 16:58:49 +100074mempool_t *xfs_ioend_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
David Chinnera67d7c52007-11-23 16:29:32 +110076#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
77#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
78#define MNTOPT_LOGDEV "logdev" /* log device */
79#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
80#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
81#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
David Chinnera67d7c52007-11-23 16:29:32 +110082#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
83#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
84#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
85#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
86#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
87#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
88#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
89#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
90#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
91#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
92#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
93#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
94#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
95 * unwritten extent conversion */
96#define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
97#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
98#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
99#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
100#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
101#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
102#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
103 * in stat(). */
104#define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
105#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
106#define MNTOPT_FILESTREAM "filestreams" /* use filestreams allocator */
107#define MNTOPT_QUOTA "quota" /* disk quotas (user) */
108#define MNTOPT_NOQUOTA "noquota" /* no quotas */
109#define MNTOPT_USRQUOTA "usrquota" /* user quota enabled */
110#define MNTOPT_GRPQUOTA "grpquota" /* group quota enabled */
111#define MNTOPT_PRJQUOTA "prjquota" /* project quota enabled */
112#define MNTOPT_UQUOTA "uquota" /* user quota (IRIX variant) */
113#define MNTOPT_GQUOTA "gquota" /* group quota (IRIX variant) */
114#define MNTOPT_PQUOTA "pquota" /* project quota (IRIX variant) */
115#define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
116#define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
117#define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
118#define MNTOPT_QUOTANOENF "qnoenforce" /* same as uqnoenforce */
119#define MNTOPT_DMAPI "dmapi" /* DMI enabled (DMAPI / XDSM) */
120#define MNTOPT_XDSM "xdsm" /* DMI enabled (DMAPI / XDSM) */
121#define MNTOPT_DMI "dmi" /* DMI enabled (DMAPI / XDSM) */
Dave Chinner71e330b2010-05-21 14:37:18 +1000122#define MNTOPT_DELAYLOG "delaylog" /* Delayed loging enabled */
123#define MNTOPT_NODELAYLOG "nodelaylog" /* Delayed loging disabled */
David Chinnera67d7c52007-11-23 16:29:32 +1100124
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000125/*
126 * Table driven mount option parser.
127 *
128 * Currently only used for remount, but it will be used for mount
129 * in the future, too.
130 */
131enum {
132 Opt_barrier, Opt_nobarrier, Opt_err
133};
134
Steven Whitehousea447c092008-10-13 10:46:57 +0100135static const match_table_t tokens = {
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000136 {Opt_barrier, "barrier"},
137 {Opt_nobarrier, "nobarrier"},
138 {Opt_err, NULL}
139};
140
141
David Chinnera67d7c52007-11-23 16:29:32 +1100142STATIC unsigned long
143suffix_strtoul(char *s, char **endp, unsigned int base)
144{
145 int last, shift_left_factor = 0;
146 char *value = s;
147
148 last = strlen(value) - 1;
149 if (value[last] == 'K' || value[last] == 'k') {
150 shift_left_factor = 10;
151 value[last] = '\0';
152 }
153 if (value[last] == 'M' || value[last] == 'm') {
154 shift_left_factor = 20;
155 value[last] = '\0';
156 }
157 if (value[last] == 'G' || value[last] == 'g') {
158 shift_left_factor = 30;
159 value[last] = '\0';
160 }
161
162 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
163}
164
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100165/*
166 * This function fills in xfs_mount_t fields based on mount args.
167 * Note: the superblock has _not_ yet been read in.
168 *
169 * Note that this function leaks the various device name allocations on
170 * failure. The caller takes care of them.
171 */
David Chinnera67d7c52007-11-23 16:29:32 +1100172STATIC int
173xfs_parseargs(
174 struct xfs_mount *mp,
175 char *options,
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100176 char **mtpt)
David Chinnera67d7c52007-11-23 16:29:32 +1100177{
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100178 struct super_block *sb = mp->m_super;
David Chinnera67d7c52007-11-23 16:29:32 +1100179 char *this_char, *value, *eov;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100180 int dsunit = 0;
181 int dswidth = 0;
182 int iosize = 0;
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100183 int dmapi_implies_ikeep = 1;
Christoph Hellwiga5687782009-02-09 08:37:39 +0100184 __uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100185
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100186 /*
187 * Copy binary VFS mount flags we are interested in.
188 */
189 if (sb->s_flags & MS_RDONLY)
190 mp->m_flags |= XFS_MOUNT_RDONLY;
191 if (sb->s_flags & MS_DIRSYNC)
192 mp->m_flags |= XFS_MOUNT_DIRSYNC;
193 if (sb->s_flags & MS_SYNCHRONOUS)
194 mp->m_flags |= XFS_MOUNT_WSYNC;
195
196 /*
197 * Set some default flags that could be cleared by the mount option
198 * parsing.
199 */
200 mp->m_flags |= XFS_MOUNT_BARRIER;
201 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
202 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
203
204 /*
205 * These can be overridden by the mount option parsing.
206 */
207 mp->m_logbufs = -1;
208 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100209
210 if (!options)
211 goto done;
212
David Chinnera67d7c52007-11-23 16:29:32 +1100213 while ((this_char = strsep(&options, ",")) != NULL) {
214 if (!*this_char)
215 continue;
216 if ((value = strchr(this_char, '=')) != NULL)
217 *value++ = 0;
218
219 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
220 if (!value || !*value) {
221 cmn_err(CE_WARN,
222 "XFS: %s option requires an argument",
223 this_char);
224 return EINVAL;
225 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100226 mp->m_logbufs = simple_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100227 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
228 if (!value || !*value) {
229 cmn_err(CE_WARN,
230 "XFS: %s option requires an argument",
231 this_char);
232 return EINVAL;
233 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100234 mp->m_logbsize = suffix_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100235 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
236 if (!value || !*value) {
237 cmn_err(CE_WARN,
238 "XFS: %s option requires an argument",
239 this_char);
240 return EINVAL;
241 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100242 mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
243 if (!mp->m_logname)
244 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100245 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
246 if (!value || !*value) {
247 cmn_err(CE_WARN,
248 "XFS: %s option requires an argument",
249 this_char);
250 return EINVAL;
251 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100252 *mtpt = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
253 if (!*mtpt)
254 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100255 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
256 if (!value || !*value) {
257 cmn_err(CE_WARN,
258 "XFS: %s option requires an argument",
259 this_char);
260 return EINVAL;
261 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100262 mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
263 if (!mp->m_rtname)
264 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100265 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
266 if (!value || !*value) {
267 cmn_err(CE_WARN,
268 "XFS: %s option requires an argument",
269 this_char);
270 return EINVAL;
271 }
272 iosize = simple_strtoul(value, &eov, 10);
Christoph Hellwig1ec79442008-10-30 17:55:08 +1100273 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100274 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
275 if (!value || !*value) {
276 cmn_err(CE_WARN,
277 "XFS: %s option requires an argument",
278 this_char);
279 return EINVAL;
280 }
281 iosize = suffix_strtoul(value, &eov, 10);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100282 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100283 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
284 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
285 mp->m_flags |= XFS_MOUNT_GRPID;
286 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
287 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
288 mp->m_flags &= ~XFS_MOUNT_GRPID;
289 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100290 mp->m_flags |= XFS_MOUNT_WSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100291 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100292 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100293 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100294 mp->m_flags |= XFS_MOUNT_NORECOVERY;
David Chinnera67d7c52007-11-23 16:29:32 +1100295 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100296 mp->m_flags |= XFS_MOUNT_NOALIGN;
David Chinnera67d7c52007-11-23 16:29:32 +1100297 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100298 mp->m_flags |= XFS_MOUNT_SWALLOC;
David Chinnera67d7c52007-11-23 16:29:32 +1100299 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
300 if (!value || !*value) {
301 cmn_err(CE_WARN,
302 "XFS: %s option requires an argument",
303 this_char);
304 return EINVAL;
305 }
306 dsunit = simple_strtoul(value, &eov, 10);
307 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
308 if (!value || !*value) {
309 cmn_err(CE_WARN,
310 "XFS: %s option requires an argument",
311 this_char);
312 return EINVAL;
313 }
314 dswidth = simple_strtoul(value, &eov, 10);
315 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100316 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100317#if !XFS_BIG_INUMS
318 cmn_err(CE_WARN,
319 "XFS: %s option not allowed on this system",
320 this_char);
321 return EINVAL;
322#endif
323 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100324 mp->m_flags |= XFS_MOUNT_NOUUID;
David Chinnera67d7c52007-11-23 16:29:32 +1100325 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100326 mp->m_flags |= XFS_MOUNT_BARRIER;
David Chinnera67d7c52007-11-23 16:29:32 +1100327 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100328 mp->m_flags &= ~XFS_MOUNT_BARRIER;
David Chinnera67d7c52007-11-23 16:29:32 +1100329 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100330 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100331 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100332 dmapi_implies_ikeep = 0;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100333 mp->m_flags &= ~XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100334 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100335 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
David Chinnera67d7c52007-11-23 16:29:32 +1100336 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100337 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
David Chinnera67d7c52007-11-23 16:29:32 +1100338 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100339 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100340 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100341 mp->m_flags &= ~XFS_MOUNT_ATTR2;
342 mp->m_flags |= XFS_MOUNT_NOATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100343 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100344 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100345 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100346 mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
347 XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
Christoph Hellwig469fc232008-10-30 17:54:57 +1100348 XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100349 XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100350 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
351 !strcmp(this_char, MNTOPT_UQUOTA) ||
352 !strcmp(this_char, MNTOPT_USRQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100353 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
354 XFS_UQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100355 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
356 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100357 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
358 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100359 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
360 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100361 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
362 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100363 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100364 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
365 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100366 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
367 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100368 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
369 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100370 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100371 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
372 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100373 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100374 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100375 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100376 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100377 } else if (!strcmp(this_char, MNTOPT_DMI)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100378 mp->m_flags |= XFS_MOUNT_DMAPI;
Dave Chinner71e330b2010-05-21 14:37:18 +1000379 } else if (!strcmp(this_char, MNTOPT_DELAYLOG)) {
380 mp->m_flags |= XFS_MOUNT_DELAYLOG;
381 cmn_err(CE_WARN,
382 "Enabling EXPERIMENTAL delayed logging feature "
383 "- use at your own risk.\n");
384 } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) {
385 mp->m_flags &= ~XFS_MOUNT_DELAYLOG;
David Chinnera67d7c52007-11-23 16:29:32 +1100386 } else if (!strcmp(this_char, "ihashsize")) {
387 cmn_err(CE_WARN,
388 "XFS: ihashsize no longer used, option is deprecated.");
389 } else if (!strcmp(this_char, "osyncisdsync")) {
390 /* no-op, this is now the default */
391 cmn_err(CE_WARN,
392 "XFS: osyncisdsync is now the default, option is deprecated.");
393 } else if (!strcmp(this_char, "irixsgid")) {
394 cmn_err(CE_WARN,
395 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
396 } else {
397 cmn_err(CE_WARN,
398 "XFS: unknown mount option [%s].", this_char);
399 return EINVAL;
400 }
401 }
402
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100403 /*
404 * no recovery flag requires a read-only mount
405 */
406 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
407 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
408 cmn_err(CE_WARN, "XFS: no-recovery mounts must be read-only.");
409 return EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100410 }
411
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100412 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
David Chinnera67d7c52007-11-23 16:29:32 +1100413 cmn_err(CE_WARN,
414 "XFS: sunit and swidth options incompatible with the noalign option");
415 return EINVAL;
416 }
417
Christoph Hellwig7d095252009-06-08 15:33:32 +0200418#ifndef CONFIG_XFS_QUOTA
419 if (XFS_IS_QUOTA_RUNNING(mp)) {
420 cmn_err(CE_WARN,
421 "XFS: quota support not available in this kernel.");
422 return EINVAL;
423 }
424#endif
425
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100426 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
427 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
David Chinnera67d7c52007-11-23 16:29:32 +1100428 cmn_err(CE_WARN,
429 "XFS: cannot mount with both project and group quota");
430 return EINVAL;
431 }
432
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100433 if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
David Chinnera67d7c52007-11-23 16:29:32 +1100434 printk("XFS: %s option needs the mount point option as well\n",
435 MNTOPT_DMAPI);
436 return EINVAL;
437 }
438
439 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
440 cmn_err(CE_WARN,
441 "XFS: sunit and swidth must be specified together");
442 return EINVAL;
443 }
444
445 if (dsunit && (dswidth % dsunit != 0)) {
446 cmn_err(CE_WARN,
447 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
448 dswidth, dsunit);
449 return EINVAL;
450 }
451
452 /*
453 * Applications using DMI filesystems often expect the
454 * inode generation number to be monotonically increasing.
455 * If we delete inode chunks we break this assumption, so
456 * keep unused inode chunks on disk for DMI filesystems
457 * until we come up with a better solution.
458 * Note that if "ikeep" or "noikeep" mount options are
459 * supplied, then they are honored.
460 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100461 if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
462 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100463
464done:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100465 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
466 /*
467 * At this point the superblock has not been read
468 * in, therefore we do not know the block size.
469 * Before the mount call ends we will convert
470 * these to FSBs.
471 */
472 if (dsunit) {
473 mp->m_dalign = dsunit;
474 mp->m_flags |= XFS_MOUNT_RETERR;
475 }
476
477 if (dswidth)
478 mp->m_swidth = dswidth;
479 }
480
481 if (mp->m_logbufs != -1 &&
482 mp->m_logbufs != 0 &&
483 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
484 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
485 cmn_err(CE_WARN,
486 "XFS: invalid logbufs value: %d [not %d-%d]",
487 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
488 return XFS_ERROR(EINVAL);
489 }
490 if (mp->m_logbsize != -1 &&
491 mp->m_logbsize != 0 &&
492 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
493 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
494 !is_power_of_2(mp->m_logbsize))) {
495 cmn_err(CE_WARN,
496 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
497 mp->m_logbsize);
498 return XFS_ERROR(EINVAL);
499 }
500
501 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
502 if (!mp->m_fsname)
503 return ENOMEM;
504 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
505
506 if (iosizelog) {
507 if (iosizelog > XFS_MAX_IO_LOG ||
508 iosizelog < XFS_MIN_IO_LOG) {
509 cmn_err(CE_WARN,
510 "XFS: invalid log iosize: %d [not %d-%d]",
511 iosizelog, XFS_MIN_IO_LOG,
512 XFS_MAX_IO_LOG);
513 return XFS_ERROR(EINVAL);
514 }
515
516 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
517 mp->m_readio_log = iosizelog;
518 mp->m_writeio_log = iosizelog;
519 }
520
David Chinnera67d7c52007-11-23 16:29:32 +1100521 return 0;
522}
523
524struct proc_xfs_info {
525 int flag;
526 char *str;
527};
528
529STATIC int
530xfs_showargs(
531 struct xfs_mount *mp,
532 struct seq_file *m)
533{
534 static struct proc_xfs_info xfs_info_set[] = {
535 /* the few simple ones we can get from the mount struct */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100536 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
David Chinnera67d7c52007-11-23 16:29:32 +1100537 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
David Chinnera67d7c52007-11-23 16:29:32 +1100538 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
539 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
540 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
541 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
542 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
543 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
544 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
545 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
546 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
Dave Chinner71e330b2010-05-21 14:37:18 +1000547 { XFS_MOUNT_DELAYLOG, "," MNTOPT_DELAYLOG },
David Chinnera67d7c52007-11-23 16:29:32 +1100548 { 0, NULL }
549 };
550 static struct proc_xfs_info xfs_info_unset[] = {
551 /* the few simple ones we can get from the mount struct */
David Chinnera67d7c52007-11-23 16:29:32 +1100552 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
553 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
554 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
555 { 0, NULL }
556 };
557 struct proc_xfs_info *xfs_infop;
558
559 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
560 if (mp->m_flags & xfs_infop->flag)
561 seq_puts(m, xfs_infop->str);
562 }
563 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
564 if (!(mp->m_flags & xfs_infop->flag))
565 seq_puts(m, xfs_infop->str);
566 }
567
568 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
569 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
570 (int)(1 << mp->m_writeio_log) >> 10);
571
572 if (mp->m_logbufs > 0)
573 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
574 if (mp->m_logbsize > 0)
575 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
576
577 if (mp->m_logname)
578 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
579 if (mp->m_rtname)
580 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
581
582 if (mp->m_dalign > 0)
583 seq_printf(m, "," MNTOPT_SUNIT "=%d",
584 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
585 if (mp->m_swidth > 0)
586 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
587 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
588
589 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
590 seq_puts(m, "," MNTOPT_USRQUOTA);
591 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
592 seq_puts(m, "," MNTOPT_UQUOTANOENF);
593
Alex Elder988abe42009-09-02 17:02:24 -0500594 /* Either project or group quotas can be active, not both */
David Chinnera67d7c52007-11-23 16:29:32 +1100595
Alex Elder988abe42009-09-02 17:02:24 -0500596 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
597 if (mp->m_qflags & XFS_OQUOTA_ENFD)
598 seq_puts(m, "," MNTOPT_PRJQUOTA);
599 else
600 seq_puts(m, "," MNTOPT_PQUOTANOENF);
601 } else if (mp->m_qflags & XFS_GQUOTA_ACCT) {
602 if (mp->m_qflags & XFS_OQUOTA_ENFD)
603 seq_puts(m, "," MNTOPT_GRPQUOTA);
604 else
605 seq_puts(m, "," MNTOPT_GQUOTANOENF);
606 }
David Chinnera67d7c52007-11-23 16:29:32 +1100607
608 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
609 seq_puts(m, "," MNTOPT_NOQUOTA);
610
611 return 0;
612}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613__uint64_t
614xfs_max_file_offset(
615 unsigned int blockshift)
616{
617 unsigned int pagefactor = 1;
618 unsigned int bitshift = BITS_PER_LONG - 1;
619
620 /* Figure out maximum filesize, on Linux this can depend on
621 * the filesystem blocksize (on 32 bit platforms).
622 * __block_prepare_write does this in an [unsigned] long...
623 * page->index << (PAGE_CACHE_SHIFT - bbits)
624 * So, for page sized blocks (4K on 32 bit platforms),
625 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
626 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
627 * but for smaller blocksizes it is less (bbits = log2 bsize).
628 * Note1: get_block_t takes a long (implicit cast from above)
629 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
630 * can optionally convert the [unsigned] long from above into
631 * an [unsigned] long long.
632 */
633
634#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200635# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ASSERT(sizeof(sector_t) == 8);
637 pagefactor = PAGE_CACHE_SIZE;
638 bitshift = BITS_PER_LONG;
639# else
640 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
641# endif
642#endif
643
644 return (((__uint64_t)pagefactor) << bitshift) - 1;
645}
646
Hannes Eder3180e662009-03-04 19:34:10 +0100647STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648xfs_blkdev_get(
649 xfs_mount_t *mp,
650 const char *name,
651 struct block_device **bdevp)
652{
653 int error = 0;
654
Al Viro30c40d22008-02-22 19:50:45 -0500655 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (IS_ERR(*bdevp)) {
657 error = PTR_ERR(*bdevp);
658 printk("XFS: Invalid device [%s], error=%d\n", name, error);
659 }
660
661 return -error;
662}
663
Hannes Eder3180e662009-03-04 19:34:10 +0100664STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665xfs_blkdev_put(
666 struct block_device *bdev)
667{
668 if (bdev)
Al Viro30c40d22008-02-22 19:50:45 -0500669 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100672/*
673 * Try to write out the superblock using barriers.
674 */
675STATIC int
676xfs_barrier_test(
677 xfs_mount_t *mp)
678{
679 xfs_buf_t *sbp = xfs_getsb(mp, 0);
680 int error;
681
682 XFS_BUF_UNDONE(sbp);
683 XFS_BUF_UNREAD(sbp);
684 XFS_BUF_UNDELAYWRITE(sbp);
685 XFS_BUF_WRITE(sbp);
686 XFS_BUF_UNASYNC(sbp);
687 XFS_BUF_ORDERED(sbp);
688
689 xfsbdstrat(mp, sbp);
690 error = xfs_iowait(sbp);
691
692 /*
693 * Clear all the flags we set and possible error state in the
694 * buffer. We only did the write to try out whether barriers
695 * worked and shouldn't leave any traces in the superblock
696 * buffer.
697 */
698 XFS_BUF_DONE(sbp);
699 XFS_BUF_ERROR(sbp, 0);
700 XFS_BUF_UNORDERED(sbp);
701
702 xfs_buf_relse(sbp);
703 return error;
704}
705
Eric Sandeend96f8f82009-07-02 00:09:33 -0500706STATIC void
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100707xfs_mountfs_check_barriers(xfs_mount_t *mp)
708{
709 int error;
710
711 if (mp->m_logdev_targp != mp->m_ddev_targp) {
712 xfs_fs_cmn_err(CE_NOTE, mp,
713 "Disabling barriers, not supported with external log device");
714 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100715 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100716 }
717
Nathan Scottb2ea4012006-07-28 17:05:13 +1000718 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
719 xfs_fs_cmn_err(CE_NOTE, mp,
720 "Disabling barriers, underlying device is readonly");
721 mp->m_flags &= ~XFS_MOUNT_BARRIER;
722 return;
723 }
724
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100725 error = xfs_barrier_test(mp);
726 if (error) {
727 xfs_fs_cmn_err(CE_NOTE, mp,
728 "Disabling barriers, trial barrier write failed");
729 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100730 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100731 }
732}
733
734void
735xfs_blkdev_issue_flush(
736 xfs_buftarg_t *buftarg)
737{
Nathan Scottce8e9222006-01-11 15:39:08 +1100738 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100739}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000741STATIC void
742xfs_close_devices(
743 struct xfs_mount *mp)
744{
745 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000746 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500747 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000748 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000749 }
750 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000751 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500752 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000753 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000754 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500755 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000756}
757
758/*
759 * The file system configurations are:
760 * (1) device (partition) with data and internal log
761 * (2) logical volume with data and log subvolumes.
762 * (3) logical volume with data, log, and realtime subvolumes.
763 *
764 * We only have to handle opening the log and realtime volumes here if
765 * they are present. The data subvolume has already been opened by
766 * get_sb_bdev() and is stored in sb->s_bdev.
767 */
768STATIC int
769xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100770 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000771{
772 struct block_device *ddev = mp->m_super->s_bdev;
773 struct block_device *logdev = NULL, *rtdev = NULL;
774 int error;
775
776 /*
777 * Open real time and log devices - order is important.
778 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100779 if (mp->m_logname) {
780 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000781 if (error)
782 goto out;
783 }
784
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100785 if (mp->m_rtname) {
786 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000787 if (error)
788 goto out_close_logdev;
789
790 if (rtdev == ddev || rtdev == logdev) {
791 cmn_err(CE_WARN,
792 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
793 error = EINVAL;
794 goto out_close_rtdev;
795 }
796 }
797
798 /*
799 * Setup xfs_mount buffer target pointers
800 */
801 error = ENOMEM;
Jan Engelhardte2a07812010-03-23 09:52:55 +1100802 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0, mp->m_fsname);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000803 if (!mp->m_ddev_targp)
804 goto out_close_rtdev;
805
806 if (rtdev) {
Jan Engelhardte2a07812010-03-23 09:52:55 +1100807 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1, mp->m_fsname);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000808 if (!mp->m_rtdev_targp)
809 goto out_free_ddev_targ;
810 }
811
812 if (logdev && logdev != ddev) {
Jan Engelhardte2a07812010-03-23 09:52:55 +1100813 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1, mp->m_fsname);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000814 if (!mp->m_logdev_targp)
815 goto out_free_rtdev_targ;
816 } else {
817 mp->m_logdev_targp = mp->m_ddev_targp;
818 }
819
820 return 0;
821
822 out_free_rtdev_targ:
823 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500824 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000825 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500826 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000827 out_close_rtdev:
828 if (rtdev)
829 xfs_blkdev_put(rtdev);
830 out_close_logdev:
831 if (logdev && logdev != ddev)
832 xfs_blkdev_put(logdev);
833 out:
834 return error;
835}
836
Christoph Hellwige34b5622008-05-20 15:10:36 +1000837/*
838 * Setup xfs_mount buffer target pointers based on superblock
839 */
840STATIC int
841xfs_setup_devices(
842 struct xfs_mount *mp)
843{
844 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000845
Christoph Hellwige34b5622008-05-20 15:10:36 +1000846 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
847 mp->m_sb.sb_sectsize);
848 if (error)
849 return error;
850
851 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
852 unsigned int log_sector_size = BBSIZE;
853
854 if (xfs_sb_version_hassector(&mp->m_sb))
855 log_sector_size = mp->m_sb.sb_logsectsize;
856 error = xfs_setsize_buftarg(mp->m_logdev_targp,
857 mp->m_sb.sb_blocksize,
858 log_sector_size);
859 if (error)
860 return error;
861 }
862 if (mp->m_rtdev_targp) {
863 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
864 mp->m_sb.sb_blocksize,
865 mp->m_sb.sb_sectsize);
866 if (error)
867 return error;
868 }
869
870 return 0;
871}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000872
David Chinner249a8c12008-02-05 12:13:32 +1100873/*
874 * XFS AIL push thread support
875 */
876void
877xfsaild_wakeup(
David Chinner82fa9012008-10-30 17:38:26 +1100878 struct xfs_ail *ailp,
David Chinner249a8c12008-02-05 12:13:32 +1100879 xfs_lsn_t threshold_lsn)
880{
David Chinner82fa9012008-10-30 17:38:26 +1100881 ailp->xa_target = threshold_lsn;
882 wake_up_process(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100883}
884
Hannes Eder3180e662009-03-04 19:34:10 +0100885STATIC int
David Chinner249a8c12008-02-05 12:13:32 +1100886xfsaild(
887 void *data)
888{
David Chinner82fa9012008-10-30 17:38:26 +1100889 struct xfs_ail *ailp = data;
David Chinner249a8c12008-02-05 12:13:32 +1100890 xfs_lsn_t last_pushed_lsn = 0;
Dave Chinner453eac82010-01-11 11:49:58 +0000891 long tout = 0; /* milliseconds */
David Chinner249a8c12008-02-05 12:13:32 +1100892
893 while (!kthread_should_stop()) {
Dave Chinner453eac82010-01-11 11:49:58 +0000894 schedule_timeout_interruptible(tout ?
895 msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT);
David Chinner249a8c12008-02-05 12:13:32 +1100896
897 /* swsusp */
898 try_to_freeze();
899
David Chinner82fa9012008-10-30 17:38:26 +1100900 ASSERT(ailp->xa_mount->m_log);
901 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
David Chinner249a8c12008-02-05 12:13:32 +1100902 continue;
903
David Chinner82fa9012008-10-30 17:38:26 +1100904 tout = xfsaild_push(ailp, &last_pushed_lsn);
David Chinner249a8c12008-02-05 12:13:32 +1100905 }
906
907 return 0;
908} /* xfsaild */
909
910int
911xfsaild_start(
David Chinner82fa9012008-10-30 17:38:26 +1100912 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100913{
David Chinner82fa9012008-10-30 17:38:26 +1100914 ailp->xa_target = 0;
Jan Engelhardte2a07812010-03-23 09:52:55 +1100915 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
916 ailp->xa_mount->m_fsname);
David Chinner82fa9012008-10-30 17:38:26 +1100917 if (IS_ERR(ailp->xa_task))
918 return -PTR_ERR(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100919 return 0;
920}
921
922void
923xfsaild_stop(
David Chinner82fa9012008-10-30 17:38:26 +1100924 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100925{
David Chinner82fa9012008-10-30 17:38:26 +1100926 kthread_stop(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100927}
928
929
David Chinnerbf904242008-10-30 17:36:14 +1100930/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100932xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct super_block *sb)
934{
David Chinnerbf904242008-10-30 17:36:14 +1100935 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100936 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
David Chinnerbf904242008-10-30 17:36:14 +1100939/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100940 * Now that the generic code is guaranteed not to be accessing
941 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100942 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100944xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000945 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000947 struct xfs_inode *ip = XFS_I(inode);
948
949 xfs_itrace_entry(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100950
951 XFS_STATS_INC(vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000952
953 /* bad inode, get out here ASAP */
954 if (is_bad_inode(inode))
955 goto out_reclaim;
956
957 xfs_ioend_wait(ip);
958
959 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
960
961 /*
962 * We should never get here with one of the reclaim flags already set.
963 */
964 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
965 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
966
967 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000968 * We always use background reclaim here because even if the
969 * inode is clean, it still may be under IO and hence we have
970 * to take the flush lock. The background reclaim path handles
971 * this more efficiently than we can here, so simply let background
972 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000973 */
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000974out_reclaim:
Dave Chinner57817c62010-01-10 23:51:47 +0000975 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
David Chinner07c8f672008-10-30 16:11:59 +1100978/*
979 * Slab object creation initialisation for the XFS inode.
980 * This covers only the idempotent fields in the XFS inode;
981 * all other fields need to be initialised on allocation
982 * from the slab. This avoids the need to repeatedly intialise
983 * fields in the xfs inode that left in the initialise state
984 * when freeing the inode.
985 */
David Chinnerbf904242008-10-30 17:36:14 +1100986STATIC void
987xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100988 void *inode)
989{
990 struct xfs_inode *ip = inode;
991
992 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100993
994 /* vfs inode */
995 inode_init_once(VFS_I(ip));
996
997 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100998 atomic_set(&ip->i_iocount, 0);
999 atomic_set(&ip->i_pincount, 0);
1000 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +11001001 init_waitqueue_head(&ip->i_ipin_wait);
1002 /*
1003 * Because we want to use a counting completion, complete
1004 * the flush completion once to allow a single access to
1005 * the flush completion without blocking.
1006 */
1007 init_completion(&ip->i_flush);
1008 complete(&ip->i_flush);
1009
1010 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
1011 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +11001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001015 * Dirty the XFS inode when mark_inode_dirty_sync() is called so that
1016 * we catch unlogged VFS level updates to the inode. Care must be taken
1017 * here - the transaction code calls mark_inode_dirty_sync() to mark the
1018 * VFS inode dirty in a transaction and clears the i_update_core field;
1019 * it must clear the field after calling mark_inode_dirty_sync() to
1020 * correctly indicate that the dirty state has been propagated into the
1021 * inode log item.
1022 *
1023 * We need the barrier() to maintain correct ordering between unlogged
1024 * updates and the transaction commit code that clears the i_update_core
1025 * field. This requires all updates to be completed before marking the
1026 * inode dirty.
1027 */
1028STATIC void
1029xfs_fs_dirty_inode(
1030 struct inode *inode)
1031{
1032 barrier();
1033 XFS_I(inode)->i_update_core = 1;
1034}
1035
Christoph Hellwig07fec732010-02-09 11:43:49 +11001036STATIC int
1037xfs_log_inode(
1038 struct xfs_inode *ip)
1039{
1040 struct xfs_mount *mp = ip->i_mount;
1041 struct xfs_trans *tp;
1042 int error;
1043
1044 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1045 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
1046 error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
1047
1048 if (error) {
1049 xfs_trans_cancel(tp, 0);
1050 /* we need to return with the lock hold shared */
1051 xfs_ilock(ip, XFS_ILOCK_SHARED);
1052 return error;
1053 }
1054
1055 xfs_ilock(ip, XFS_ILOCK_EXCL);
1056
1057 /*
1058 * Note - it's possible that we might have pushed ourselves out of the
1059 * way during trans_reserve which would flush the inode. But there's
1060 * no guarantee that the inode buffer has actually gone out yet (it's
1061 * delwri). Plus the buffer could be pinned anyway if it's part of
1062 * an inode in another recent transaction. So we play it safe and
1063 * fire off the transaction anyway.
1064 */
1065 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1066 xfs_trans_ihold(tp, ip);
1067 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1068 xfs_trans_set_sync(tp);
1069 error = xfs_trans_commit(tp, 0);
1070 xfs_ilock_demote(ip, XFS_ILOCK_EXCL);
1071
1072 return error;
1073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001076xfs_fs_write_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 struct inode *inode,
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001078 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Dave Chinner2e656092008-11-28 14:23:33 +11001080 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001081 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig07fec732010-02-09 11:43:49 +11001082 int error = EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Dave Chinner2e656092008-11-28 14:23:33 +11001084 xfs_itrace_entry(ip);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001085
1086 if (XFS_FORCED_SHUTDOWN(mp))
1087 return XFS_ERROR(EIO);
1088
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001089 if (wbc->sync_mode == WB_SYNC_ALL) {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001090 /*
1091 * Make sure the inode has hit stable storage. By using the
1092 * log and the fsync transactions we reduce the IOs we have
1093 * to do here from two (log and inode) to just the log.
1094 *
1095 * Note: We still need to do a delwri write of the inode after
1096 * this to flush it to the backing buffer so that bulkstat
1097 * works properly if this is the first time the inode has been
1098 * written. Because we hold the ilock atomically over the
1099 * transaction commit and the inode flush we are guaranteed
1100 * that the inode is not pinned when it returns. If the flush
1101 * lock is already held, then the inode has already been
1102 * flushed once and we don't need to flush it again. Hence
1103 * the code will only flush the inode if it isn't already
1104 * being flushed.
1105 */
Christoph Hellwig37bc5742010-04-20 17:00:59 +10001106 xfs_ioend_wait(ip);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001107 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig07fec732010-02-09 11:43:49 +11001108 if (ip->i_update_core) {
1109 error = xfs_log_inode(ip);
1110 if (error)
1111 goto out_unlock;
1112 }
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001113 } else {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001114 /*
1115 * We make this non-blocking if the inode is contended, return
1116 * EAGAIN to indicate to the caller that they did not succeed.
1117 * This prevents the flush path from blocking on inodes inside
1118 * another operation right now, they get caught later by xfs_sync.
1119 */
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001120 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1121 goto out;
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001122 }
1123
Christoph Hellwig07fec732010-02-09 11:43:49 +11001124 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1125 goto out_unlock;
1126
1127 /*
1128 * Now we have the flush lock and the inode is not pinned, we can check
1129 * if the inode is really clean as we know that there are no pending
1130 * transaction completions, it is not waiting on the delayed write
1131 * queue and there is no IO in progress.
1132 */
1133 if (xfs_inode_clean(ip)) {
1134 xfs_ifunlock(ip);
1135 error = 0;
1136 goto out_unlock;
1137 }
1138 error = xfs_iflush(ip, 0);
1139
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001140 out_unlock:
1141 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1142 out:
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001143 /*
1144 * if we failed to write out the inode then mark
1145 * it dirty again so we'll try again later.
1146 */
1147 if (error)
Dave Chinner2e656092008-11-28 14:23:33 +11001148 xfs_mark_inode_dirty_sync(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return -error;
1150}
1151
1152STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001153xfs_fs_clear_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 struct inode *inode)
1155{
Christoph Hellwig1543d792007-08-29 11:46:47 +10001156 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001157
David Chinner99fa8cb2008-10-30 17:36:40 +11001158 xfs_itrace_entry(ip);
1159 XFS_STATS_INC(vn_rele);
1160 XFS_STATS_INC(vn_remove);
1161 XFS_STATS_DEC(vn_active);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001162
Christoph Hellwig033da482009-10-19 04:05:26 +00001163 /*
1164 * The iolock is used by the file system to coordinate reads,
1165 * writes, and block truncates. Up to this point the lock
1166 * protected concurrent accesses by users of the inode. But
1167 * from here forward we're doing some final processing of the
1168 * inode because we're done with it, and although we reuse the
1169 * iolock for protection it is really a distinct lock class
1170 * (in the lockdep sense) from before. To keep lockdep happy
1171 * (and basically indicate what we are doing), we explicitly
1172 * re-init the iolock here.
1173 */
1174 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
1175 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
1176
David Chinner99fa8cb2008-10-30 17:36:40 +11001177 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001181xfs_free_fsname(
1182 struct xfs_mount *mp)
1183{
1184 kfree(mp->m_fsname);
1185 kfree(mp->m_rtname);
1186 kfree(mp->m_logname);
1187}
1188
1189STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001190xfs_fs_put_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct super_block *sb)
1192{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001193 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
David Chinnera167b172008-10-30 17:06:18 +11001195 xfs_syncd_stop(mp);
Christoph Hellwig075fe102009-06-08 15:35:48 +02001196
1197 if (!(sb->s_flags & MS_RDONLY)) {
1198 /*
1199 * XXX(hch): this should be SYNC_WAIT.
1200 *
1201 * Or more likely not needed at all because the VFS is already
1202 * calling ->sync_fs after shutting down all filestem
1203 * operations and just before calling ->put_super.
1204 */
1205 xfs_sync_data(mp, 0);
1206 xfs_sync_attr(mp, 0);
1207 }
Christoph Hellwige48ad312008-05-20 11:30:52 +10001208
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001209 XFS_SEND_PREUNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001210
1211 /*
1212 * Blow away any referenced inode in the filestreams cache.
1213 * This can and will cause log traffic as inodes go inactive
1214 * here.
1215 */
1216 xfs_filestream_unmount(mp);
1217
1218 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001219
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001220 XFS_SEND_UNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001221
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001222 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001223 xfs_freesb(mp);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001224 xfs_inode_shrinker_unregister(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001225 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001226 xfs_close_devices(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001227 xfs_dmops_put(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001228 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001229 kfree(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001233xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 struct super_block *sb,
1235 int wait)
1236{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001237 struct xfs_mount *mp = XFS_M(sb);
Nathan Scottb83bd132006-06-09 16:48:30 +10001238 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001240 /*
Christoph Hellwig69961a22009-10-06 20:29:28 +00001241 * Not much we can do for the first async pass. Writing out the
1242 * superblock would be counter-productive as we are going to redirty
1243 * when writing out other data and metadata (and writing out a single
1244 * block is quite fast anyway).
1245 *
1246 * Try to asynchronously kick off quota syncing at least.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001247 */
Christoph Hellwig69961a22009-10-06 20:29:28 +00001248 if (!wait) {
1249 xfs_qm_sync(mp, SYNC_TRYLOCK);
1250 return 0;
1251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Christoph Hellwig69961a22009-10-06 20:29:28 +00001253 error = xfs_quiesce_data(mp);
1254 if (error)
1255 return -error;
1256
1257 if (laptop_mode) {
Christoph Hellwig74394492007-08-30 17:21:22 +10001258 int prev_sync_seq = mp->m_sync_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 /*
1261 * The disk must be active because we're syncing.
1262 * We schedule xfssyncd now (now that the disk is
1263 * active) instead of later (when it might not be).
1264 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001265 wake_up_process(mp->m_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * We have to wait for the sync iteration to complete.
1268 * If we don't, the disk activity caused by the sync
1269 * will come after the sync is completed, and that
1270 * triggers another sync from laptop mode.
1271 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001272 wait_event(mp->m_wait_single_sync_task,
1273 mp->m_sync_seq != prev_sync_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
Christoph Hellwig69961a22009-10-06 20:29:28 +00001276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001280xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001281 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 struct kstatfs *statp)
1283{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001284 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1285 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001286 struct xfs_inode *ip = XFS_I(dentry->d_inode);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001287 __uint64_t fakeinos, id;
1288 xfs_extlen_t lsize;
1289
1290 statp->f_type = XFS_SB_MAGIC;
1291 statp->f_namelen = MAXNAMELEN - 1;
1292
1293 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1294 statp->f_fsid.val[0] = (u32)id;
1295 statp->f_fsid.val[1] = (u32)(id >> 32);
1296
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001297 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001298
1299 spin_lock(&mp->m_sb_lock);
1300 statp->f_bsize = sbp->sb_blocksize;
1301 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1302 statp->f_blocks = sbp->sb_dblocks - lsize;
1303 statp->f_bfree = statp->f_bavail =
1304 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1305 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001306 statp->f_files =
1307 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1308 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001309 statp->f_files = min_t(typeof(statp->f_files),
1310 statp->f_files,
1311 mp->m_maxicount);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001312 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1313 spin_unlock(&mp->m_sb_lock);
1314
Christoph Hellwig7d095252009-06-08 15:33:32 +02001315 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) ||
1316 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) ==
1317 (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
1318 xfs_qm_statvfs(ip, statp);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Eric Sandeend5db0f92010-02-05 22:59:53 +00001322STATIC void
1323xfs_save_resvblks(struct xfs_mount *mp)
1324{
1325 __uint64_t resblks = 0;
1326
1327 mp->m_resblks_save = mp->m_resblks;
1328 xfs_reserve_blocks(mp, &resblks, NULL);
1329}
1330
1331STATIC void
1332xfs_restore_resvblks(struct xfs_mount *mp)
1333{
1334 __uint64_t resblks;
1335
1336 if (mp->m_resblks_save) {
1337 resblks = mp->m_resblks_save;
1338 mp->m_resblks_save = 0;
1339 } else
1340 resblks = xfs_default_resblks(mp);
1341
1342 xfs_reserve_blocks(mp, &resblks, NULL);
1343}
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001346xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct super_block *sb,
1348 int *flags,
1349 char *options)
1350{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001351 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001352 substring_t args[MAX_OPT_ARGS];
1353 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001354 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001356 while ((p = strsep(&options, ",")) != NULL) {
1357 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001358
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001359 if (!*p)
1360 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001361
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001362 token = match_token(p, tokens, args);
1363 switch (token) {
1364 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001365 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001366
1367 /*
1368 * Test if barriers are actually working if we can,
1369 * else delay this check until the filesystem is
1370 * marked writeable.
1371 */
1372 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1373 xfs_mountfs_check_barriers(mp);
1374 break;
1375 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001376 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001377 break;
1378 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001379 /*
1380 * Logically we would return an error here to prevent
1381 * users from believing they might have changed
1382 * mount options using remount which can't be changed.
1383 *
1384 * But unfortunately mount(8) adds all options from
1385 * mtab and fstab to the mount arguments in some cases
1386 * so we can't blindly reject options, but have to
1387 * check for each specified option if it actually
1388 * differs from the currently set option and only
1389 * reject it if that's the case.
1390 *
1391 * Until that is implemented we return success for
1392 * every remount request, and silently ignore all
1393 * options that we can't actually change.
1394 */
1395#if 0
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001396 printk(KERN_INFO
1397 "XFS: mount option \"%s\" not supported for remount\n", p);
1398 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001399#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001400 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001401#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001402 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001403 }
1404
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001405 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001406 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1407 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1408 if (mp->m_flags & XFS_MOUNT_BARRIER)
1409 xfs_mountfs_check_barriers(mp);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001410
1411 /*
1412 * If this is the first remount to writeable state we
1413 * might have some superblock changes to update.
1414 */
1415 if (mp->m_update_flags) {
1416 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1417 if (error) {
1418 cmn_err(CE_WARN,
1419 "XFS: failed to write sb changes");
1420 return error;
1421 }
1422 mp->m_update_flags = 0;
1423 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001424
1425 /*
1426 * Fill out the reserve pool if it is empty. Use the stashed
1427 * value if it is non-zero, otherwise go with the default.
1428 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001429 xfs_restore_resvblks(mp);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001430 }
1431
1432 /* rw -> ro */
1433 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
Dave Chinnercbe132a2010-01-26 15:08:49 +11001434 /*
1435 * After we have synced the data but before we sync the
1436 * metadata, we need to free up the reserve block pool so that
1437 * the used block count in the superblock on disk is correct at
1438 * the end of the remount. Stash the current reserve pool size
1439 * so that if we get remounted rw, we can return it to the same
1440 * size.
1441 */
Dave Chinnercbe132a2010-01-26 15:08:49 +11001442
David Chinnere9f1c6e2008-10-30 17:15:50 +11001443 xfs_quiesce_data(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001444 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001445 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001446 mp->m_flags |= XFS_MOUNT_RDONLY;
1447 }
1448
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001452/*
1453 * Second stage of a freeze. The data is already frozen so we only
David Chinner76bf1052008-10-30 17:16:21 +11001454 * need to take care of the metadata. Once that's done write a dummy
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001455 * record to dirty the log in case of a crash while frozen.
1456 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001457STATIC int
1458xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct super_block *sb)
1460{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001461 struct xfs_mount *mp = XFS_M(sb);
1462
Eric Sandeend5db0f92010-02-05 22:59:53 +00001463 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001464 xfs_quiesce_attr(mp);
Takashi Satoc4be0c12009-01-09 16:40:58 -08001465 return -xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001469xfs_fs_unfreeze(
1470 struct super_block *sb)
1471{
1472 struct xfs_mount *mp = XFS_M(sb);
1473
1474 xfs_restore_resvblks(mp);
1475 return 0;
1476}
1477
1478STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001479xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 struct seq_file *m,
1481 struct vfsmount *mnt)
1482{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001483 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001486/*
1487 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001488 * Note: the superblock _has_ now been read in.
1489 */
1490STATIC int
1491xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001492 struct xfs_mount *mp)
1493{
1494 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1495
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001496 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001497 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001498 if (mp->m_logbsize <= 0 &&
1499 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001500 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001501 } else if (mp->m_logbsize > 0 &&
1502 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001503 cmn_err(CE_WARN,
1504 "XFS: logbuf size must be greater than or equal to log stripe size");
1505 return XFS_ERROR(EINVAL);
1506 }
1507 } else {
1508 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001509 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001510 cmn_err(CE_WARN,
1511 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1512 return XFS_ERROR(EINVAL);
1513 }
1514 }
1515
1516 /*
1517 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1518 * told by noattr2 to turn it off
1519 */
1520 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001521 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001522 mp->m_flags |= XFS_MOUNT_ATTR2;
1523
1524 /*
1525 * prohibit r/w mounts of read-only filesystems
1526 */
1527 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1528 cmn_err(CE_WARN,
1529 "XFS: cannot mount a read-only filesystem as read-write");
1530 return XFS_ERROR(EROFS);
1531 }
1532
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001533 return 0;
1534}
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001537xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 struct super_block *sb,
1539 void *data,
1540 int silent)
1541{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001542 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001543 struct xfs_mount *mp = NULL;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001544 int flags = 0, error = ENOMEM;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001545 char *mtpt = NULL;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001546
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001547 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1548 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001549 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001551 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001552 mutex_init(&mp->m_growlock);
1553 atomic_set(&mp->m_active_trans, 0);
Christoph Hellwig74394492007-08-30 17:21:22 +10001554 INIT_LIST_HEAD(&mp->m_sync_list);
1555 spin_lock_init(&mp->m_sync_lock);
1556 init_waitqueue_head(&mp->m_wait_single_sync_task);
1557
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001558 mp->m_super = sb;
1559 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001561 error = xfs_parseargs(mp, (char *)data, &mtpt);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001562 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001563 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001566 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001567 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001568#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001569 sb->s_qcop = &xfs_quotactl_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001570#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001571 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001573 error = xfs_dmops_get(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001574 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001575 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001576
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001577 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001578 flags |= XFS_MFSI_QUIET;
1579
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001580 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001581 if (error)
Christoph Hellwig7d095252009-06-08 15:33:32 +02001582 goto out_put_dmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001583
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001584 if (xfs_icsb_init_counters(mp))
1585 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1586
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001587 error = xfs_readsb(mp, flags);
1588 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001589 goto out_destroy_counters;
1590
1591 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001592 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001593 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001594
Christoph Hellwige34b5622008-05-20 15:10:36 +10001595 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001596 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001597 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001598
1599 if (mp->m_flags & XFS_MOUNT_BARRIER)
1600 xfs_mountfs_check_barriers(mp);
1601
1602 error = xfs_filestream_mount(mp);
1603 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001604 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001605
Christoph Hellwig42490232008-08-13 16:49:32 +10001606 error = xfs_mountfs(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001607 if (error)
Christoph Hellwig120226c2008-05-20 15:11:11 +10001608 goto out_filestream_unmount;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001609
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001610 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001612 sb->s_magic = XFS_SB_MAGIC;
1613 sb->s_blocksize = mp->m_sb.sb_blocksize;
1614 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1616 sb->s_time_gran = 1;
1617 set_posix_acl_flag(sb);
1618
David Chinner01651642008-08-13 15:45:15 +10001619 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001620 if (!root) {
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001621 error = ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 goto fail_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001623 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001624 if (is_bad_inode(root)) {
1625 error = EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 goto fail_vnrele;
1627 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001628 sb->s_root = d_alloc_root(root);
1629 if (!sb->s_root) {
1630 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 goto fail_vnrele;
1632 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001633
David Chinnera167b172008-10-30 17:06:18 +11001634 error = xfs_syncd_init(mp);
1635 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto fail_vnrele;
Christoph Hellwig74394492007-08-30 17:21:22 +10001637
Dave Chinner9bf729c2010-04-29 09:55:50 +10001638 xfs_inode_shrinker_register(mp);
1639
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001640 kfree(mtpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return 0;
1642
Christoph Hellwig120226c2008-05-20 15:11:11 +10001643 out_filestream_unmount:
1644 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001645 out_free_sb:
1646 xfs_freesb(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001647 out_destroy_counters:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001648 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001649 xfs_close_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001650 out_put_dmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001651 xfs_dmops_put(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001652 out_free_fsname:
1653 xfs_free_fsname(mp);
1654 kfree(mtpt);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001655 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001656 out:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001657 return -error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001658
1659 fail_vnrele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (sb->s_root) {
1661 dput(sb->s_root);
1662 sb->s_root = NULL;
1663 } else {
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001664 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001667 fail_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001668 /*
1669 * Blow away any referenced inode in the filestreams cache.
1670 * This can and will cause log traffic as inodes go inactive
1671 * here.
1672 */
1673 xfs_filestream_unmount(mp);
1674
1675 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001676
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001677 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001678 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
David Howells454e2392006-06-23 02:02:57 -07001681STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001682xfs_fs_get_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 struct file_system_type *fs_type,
1684 int flags,
1685 const char *dev_name,
David Howells454e2392006-06-23 02:02:57 -07001686 void *data,
1687 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
David Howells454e2392006-06-23 02:02:57 -07001689 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1690 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001693static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001694 .alloc_inode = xfs_fs_alloc_inode,
1695 .destroy_inode = xfs_fs_destroy_inode,
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001696 .dirty_inode = xfs_fs_dirty_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001697 .write_inode = xfs_fs_write_inode,
1698 .clear_inode = xfs_fs_clear_inode,
1699 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001700 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001701 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001702 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001703 .statfs = xfs_fs_statfs,
1704 .remount_fs = xfs_fs_remount,
1705 .show_options = xfs_fs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706};
1707
Andrew Morton5085b602007-02-20 13:57:47 -08001708static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 .owner = THIS_MODULE,
1710 .name = "xfs",
Nathan Scotta50cd262006-03-14 14:06:18 +11001711 .get_sb = xfs_fs_get_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 .kill_sb = kill_block_super,
1713 .fs_flags = FS_REQUIRES_DEV,
1714};
1715
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001716STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001717xfs_init_zones(void)
1718{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001719
1720 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1721 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001722 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001723
1724 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1725 xfs_ioend_zone);
1726 if (!xfs_ioend_pool)
1727 goto out_destroy_ioend_zone;
1728
1729 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1730 "xfs_log_ticket");
1731 if (!xfs_log_ticket_zone)
1732 goto out_destroy_ioend_pool;
1733
1734 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1735 "xfs_bmap_free_item");
1736 if (!xfs_bmap_free_item_zone)
1737 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001738
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001739 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1740 "xfs_btree_cur");
1741 if (!xfs_btree_cur_zone)
1742 goto out_destroy_bmap_free_item_zone;
1743
1744 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1745 "xfs_da_state");
1746 if (!xfs_da_state_zone)
1747 goto out_destroy_btree_cur_zone;
1748
1749 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1750 if (!xfs_dabuf_zone)
1751 goto out_destroy_da_state_zone;
1752
1753 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1754 if (!xfs_ifork_zone)
1755 goto out_destroy_dabuf_zone;
1756
1757 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1758 if (!xfs_trans_zone)
1759 goto out_destroy_ifork_zone;
1760
1761 /*
1762 * The size of the zone allocated buf log item is the maximum
1763 * size possible under XFS. This wastes a little bit of memory,
1764 * but it is much faster.
1765 */
1766 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
Dave Chinnerc1155412010-05-07 11:05:19 +10001767 (((XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK) /
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001768 NBWORD) * sizeof(int))), "xfs_buf_item");
1769 if (!xfs_buf_item_zone)
1770 goto out_destroy_trans_zone;
1771
1772 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1773 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1774 sizeof(xfs_extent_t))), "xfs_efd_item");
1775 if (!xfs_efd_zone)
1776 goto out_destroy_buf_item_zone;
1777
1778 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1779 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1780 sizeof(xfs_extent_t))), "xfs_efi_item");
1781 if (!xfs_efi_zone)
1782 goto out_destroy_efd_zone;
1783
1784 xfs_inode_zone =
1785 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
David Chinnerbf904242008-10-30 17:36:14 +11001786 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1787 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001788 if (!xfs_inode_zone)
1789 goto out_destroy_efi_zone;
1790
1791 xfs_ili_zone =
1792 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1793 KM_ZONE_SPREAD, NULL);
1794 if (!xfs_ili_zone)
1795 goto out_destroy_inode_zone;
1796
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001797 return 0;
1798
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001799 out_destroy_inode_zone:
1800 kmem_zone_destroy(xfs_inode_zone);
1801 out_destroy_efi_zone:
1802 kmem_zone_destroy(xfs_efi_zone);
1803 out_destroy_efd_zone:
1804 kmem_zone_destroy(xfs_efd_zone);
1805 out_destroy_buf_item_zone:
1806 kmem_zone_destroy(xfs_buf_item_zone);
1807 out_destroy_trans_zone:
1808 kmem_zone_destroy(xfs_trans_zone);
1809 out_destroy_ifork_zone:
1810 kmem_zone_destroy(xfs_ifork_zone);
1811 out_destroy_dabuf_zone:
1812 kmem_zone_destroy(xfs_dabuf_zone);
1813 out_destroy_da_state_zone:
1814 kmem_zone_destroy(xfs_da_state_zone);
1815 out_destroy_btree_cur_zone:
1816 kmem_zone_destroy(xfs_btree_cur_zone);
1817 out_destroy_bmap_free_item_zone:
1818 kmem_zone_destroy(xfs_bmap_free_item_zone);
1819 out_destroy_log_ticket_zone:
1820 kmem_zone_destroy(xfs_log_ticket_zone);
1821 out_destroy_ioend_pool:
1822 mempool_destroy(xfs_ioend_pool);
1823 out_destroy_ioend_zone:
1824 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001825 out:
1826 return -ENOMEM;
1827}
1828
1829STATIC void
1830xfs_destroy_zones(void)
1831{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001832 kmem_zone_destroy(xfs_ili_zone);
1833 kmem_zone_destroy(xfs_inode_zone);
1834 kmem_zone_destroy(xfs_efi_zone);
1835 kmem_zone_destroy(xfs_efd_zone);
1836 kmem_zone_destroy(xfs_buf_item_zone);
1837 kmem_zone_destroy(xfs_trans_zone);
1838 kmem_zone_destroy(xfs_ifork_zone);
1839 kmem_zone_destroy(xfs_dabuf_zone);
1840 kmem_zone_destroy(xfs_da_state_zone);
1841 kmem_zone_destroy(xfs_btree_cur_zone);
1842 kmem_zone_destroy(xfs_bmap_free_item_zone);
1843 kmem_zone_destroy(xfs_log_ticket_zone);
1844 mempool_destroy(xfs_ioend_pool);
1845 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001846
1847}
1848
1849STATIC int __init
1850init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Christoph Hellwig65795912008-11-28 14:23:33 +11001854 printk(KERN_INFO XFS_VERSION_STRING " with "
1855 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001857 xfs_ioend_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001858 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Nathan Scott87582802006-03-14 13:18:19 +11001860 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001861 if (error)
1862 goto out;
1863
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001864 error = xfs_mru_cache_init();
1865 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001866 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001867
1868 error = xfs_filestream_init();
1869 if (error)
1870 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Nathan Scottce8e9222006-01-11 15:39:08 +11001872 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001873 if (error)
1874 goto out_filestream_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001876 error = xfs_init_procfs();
1877 if (error)
1878 goto out_buf_terminate;
1879
1880 error = xfs_sysctl_register();
1881 if (error)
1882 goto out_cleanup_procfs;
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 vfs_initquota();
Dave Chinner9bf729c2010-04-29 09:55:50 +10001885 xfs_inode_shrinker_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 error = register_filesystem(&xfs_fs_type);
1888 if (error)
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001889 goto out_sysctl_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return 0;
1891
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001892 out_sysctl_unregister:
1893 xfs_sysctl_unregister();
1894 out_cleanup_procfs:
1895 xfs_cleanup_procfs();
1896 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001897 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001898 out_filestream_uninit:
1899 xfs_filestream_uninit();
1900 out_mru_cache_uninit:
1901 xfs_mru_cache_uninit();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001902 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001903 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001904 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return error;
1906}
1907
1908STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001909exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 vfs_exitquota();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 unregister_filesystem(&xfs_fs_type);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001913 xfs_inode_shrinker_destroy();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001914 xfs_sysctl_unregister();
1915 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001916 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001917 xfs_filestream_uninit();
1918 xfs_mru_cache_uninit();
Nathan Scott87582802006-03-14 13:18:19 +11001919 xfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
1922module_init(init_xfs_fs);
1923module_exit(exit_xfs_fs);
1924
1925MODULE_AUTHOR("Silicon Graphics, Inc.");
1926MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1927MODULE_LICENSE("GPL");