blob: 29f1edca76de3eca8d6af75ce7a197c6eb82a368 [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) */
122
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000123/*
124 * Table driven mount option parser.
125 *
126 * Currently only used for remount, but it will be used for mount
127 * in the future, too.
128 */
129enum {
130 Opt_barrier, Opt_nobarrier, Opt_err
131};
132
Steven Whitehousea447c092008-10-13 10:46:57 +0100133static const match_table_t tokens = {
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000134 {Opt_barrier, "barrier"},
135 {Opt_nobarrier, "nobarrier"},
136 {Opt_err, NULL}
137};
138
139
David Chinnera67d7c52007-11-23 16:29:32 +1100140STATIC unsigned long
141suffix_strtoul(char *s, char **endp, unsigned int base)
142{
143 int last, shift_left_factor = 0;
144 char *value = s;
145
146 last = strlen(value) - 1;
147 if (value[last] == 'K' || value[last] == 'k') {
148 shift_left_factor = 10;
149 value[last] = '\0';
150 }
151 if (value[last] == 'M' || value[last] == 'm') {
152 shift_left_factor = 20;
153 value[last] = '\0';
154 }
155 if (value[last] == 'G' || value[last] == 'g') {
156 shift_left_factor = 30;
157 value[last] = '\0';
158 }
159
160 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
161}
162
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100163/*
164 * This function fills in xfs_mount_t fields based on mount args.
165 * Note: the superblock has _not_ yet been read in.
166 *
167 * Note that this function leaks the various device name allocations on
168 * failure. The caller takes care of them.
169 */
David Chinnera67d7c52007-11-23 16:29:32 +1100170STATIC int
171xfs_parseargs(
172 struct xfs_mount *mp,
173 char *options,
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100174 char **mtpt)
David Chinnera67d7c52007-11-23 16:29:32 +1100175{
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100176 struct super_block *sb = mp->m_super;
David Chinnera67d7c52007-11-23 16:29:32 +1100177 char *this_char, *value, *eov;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100178 int dsunit = 0;
179 int dswidth = 0;
180 int iosize = 0;
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100181 int dmapi_implies_ikeep = 1;
Christoph Hellwiga5687782009-02-09 08:37:39 +0100182 __uint8_t iosizelog = 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100183
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100184 /*
185 * Copy binary VFS mount flags we are interested in.
186 */
187 if (sb->s_flags & MS_RDONLY)
188 mp->m_flags |= XFS_MOUNT_RDONLY;
189 if (sb->s_flags & MS_DIRSYNC)
190 mp->m_flags |= XFS_MOUNT_DIRSYNC;
191 if (sb->s_flags & MS_SYNCHRONOUS)
192 mp->m_flags |= XFS_MOUNT_WSYNC;
193
194 /*
195 * Set some default flags that could be cleared by the mount option
196 * parsing.
197 */
198 mp->m_flags |= XFS_MOUNT_BARRIER;
199 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
200 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
201
202 /*
203 * These can be overridden by the mount option parsing.
204 */
205 mp->m_logbufs = -1;
206 mp->m_logbsize = -1;
David Chinnera67d7c52007-11-23 16:29:32 +1100207
208 if (!options)
209 goto done;
210
David Chinnera67d7c52007-11-23 16:29:32 +1100211 while ((this_char = strsep(&options, ",")) != NULL) {
212 if (!*this_char)
213 continue;
214 if ((value = strchr(this_char, '=')) != NULL)
215 *value++ = 0;
216
217 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
218 if (!value || !*value) {
219 cmn_err(CE_WARN,
220 "XFS: %s option requires an argument",
221 this_char);
222 return EINVAL;
223 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100224 mp->m_logbufs = simple_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100225 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
226 if (!value || !*value) {
227 cmn_err(CE_WARN,
228 "XFS: %s option requires an argument",
229 this_char);
230 return EINVAL;
231 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100232 mp->m_logbsize = suffix_strtoul(value, &eov, 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100233 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
234 if (!value || !*value) {
235 cmn_err(CE_WARN,
236 "XFS: %s option requires an argument",
237 this_char);
238 return EINVAL;
239 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100240 mp->m_logname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
241 if (!mp->m_logname)
242 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100243 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
244 if (!value || !*value) {
245 cmn_err(CE_WARN,
246 "XFS: %s option requires an argument",
247 this_char);
248 return EINVAL;
249 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100250 *mtpt = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
251 if (!*mtpt)
252 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100253 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
254 if (!value || !*value) {
255 cmn_err(CE_WARN,
256 "XFS: %s option requires an argument",
257 this_char);
258 return EINVAL;
259 }
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100260 mp->m_rtname = kstrndup(value, MAXNAMELEN, GFP_KERNEL);
261 if (!mp->m_rtname)
262 return ENOMEM;
David Chinnera67d7c52007-11-23 16:29:32 +1100263 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
264 if (!value || !*value) {
265 cmn_err(CE_WARN,
266 "XFS: %s option requires an argument",
267 this_char);
268 return EINVAL;
269 }
270 iosize = simple_strtoul(value, &eov, 10);
Christoph Hellwig1ec79442008-10-30 17:55:08 +1100271 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100272 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
273 if (!value || !*value) {
274 cmn_err(CE_WARN,
275 "XFS: %s option requires an argument",
276 this_char);
277 return EINVAL;
278 }
279 iosize = suffix_strtoul(value, &eov, 10);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100280 iosizelog = ffs(iosize) - 1;
David Chinnera67d7c52007-11-23 16:29:32 +1100281 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
282 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
283 mp->m_flags |= XFS_MOUNT_GRPID;
284 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
285 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
286 mp->m_flags &= ~XFS_MOUNT_GRPID;
287 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100288 mp->m_flags |= XFS_MOUNT_WSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100289 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100290 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
David Chinnera67d7c52007-11-23 16:29:32 +1100291 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100292 mp->m_flags |= XFS_MOUNT_NORECOVERY;
David Chinnera67d7c52007-11-23 16:29:32 +1100293 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100294 mp->m_flags |= XFS_MOUNT_NOALIGN;
David Chinnera67d7c52007-11-23 16:29:32 +1100295 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100296 mp->m_flags |= XFS_MOUNT_SWALLOC;
David Chinnera67d7c52007-11-23 16:29:32 +1100297 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
298 if (!value || !*value) {
299 cmn_err(CE_WARN,
300 "XFS: %s option requires an argument",
301 this_char);
302 return EINVAL;
303 }
304 dsunit = simple_strtoul(value, &eov, 10);
305 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
306 if (!value || !*value) {
307 cmn_err(CE_WARN,
308 "XFS: %s option requires an argument",
309 this_char);
310 return EINVAL;
311 }
312 dswidth = simple_strtoul(value, &eov, 10);
313 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100314 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100315#if !XFS_BIG_INUMS
316 cmn_err(CE_WARN,
317 "XFS: %s option not allowed on this system",
318 this_char);
319 return EINVAL;
320#endif
321 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100322 mp->m_flags |= XFS_MOUNT_NOUUID;
David Chinnera67d7c52007-11-23 16:29:32 +1100323 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100324 mp->m_flags |= XFS_MOUNT_BARRIER;
David Chinnera67d7c52007-11-23 16:29:32 +1100325 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
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_IKEEP)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100328 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100329 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100330 dmapi_implies_ikeep = 0;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100331 mp->m_flags &= ~XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100332 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100333 mp->m_flags &= ~XFS_MOUNT_COMPAT_IOSIZE;
David Chinnera67d7c52007-11-23 16:29:32 +1100334 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
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_ATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100337 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100338 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100339 mp->m_flags &= ~XFS_MOUNT_ATTR2;
340 mp->m_flags |= XFS_MOUNT_NOATTR2;
David Chinnera67d7c52007-11-23 16:29:32 +1100341 } else if (!strcmp(this_char, MNTOPT_FILESTREAM)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100342 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
David Chinnera67d7c52007-11-23 16:29:32 +1100343 } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100344 mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
345 XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
Christoph Hellwig469fc232008-10-30 17:54:57 +1100346 XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100347 XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100348 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
349 !strcmp(this_char, MNTOPT_UQUOTA) ||
350 !strcmp(this_char, MNTOPT_USRQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100351 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
352 XFS_UQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100353 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
354 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100355 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
356 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100357 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
358 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100359 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
360 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100361 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100362 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
363 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100364 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
365 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100366 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
367 XFS_OQUOTA_ENFD);
David Chinnera67d7c52007-11-23 16:29:32 +1100368 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100369 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
370 mp->m_qflags &= ~XFS_OQUOTA_ENFD;
David Chinnera67d7c52007-11-23 16:29:32 +1100371 } else if (!strcmp(this_char, MNTOPT_DMAPI)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100372 mp->m_flags |= XFS_MOUNT_DMAPI;
David Chinnera67d7c52007-11-23 16:29:32 +1100373 } else if (!strcmp(this_char, MNTOPT_XDSM)) {
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_DMI)) {
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, "ihashsize")) {
378 cmn_err(CE_WARN,
379 "XFS: ihashsize no longer used, option is deprecated.");
380 } else if (!strcmp(this_char, "osyncisdsync")) {
381 /* no-op, this is now the default */
382 cmn_err(CE_WARN,
383 "XFS: osyncisdsync is now the default, option is deprecated.");
384 } else if (!strcmp(this_char, "irixsgid")) {
385 cmn_err(CE_WARN,
386 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
387 } else {
388 cmn_err(CE_WARN,
389 "XFS: unknown mount option [%s].", this_char);
390 return EINVAL;
391 }
392 }
393
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100394 /*
395 * no recovery flag requires a read-only mount
396 */
397 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
398 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
399 cmn_err(CE_WARN, "XFS: no-recovery mounts must be read-only.");
400 return EINVAL;
David Chinnera67d7c52007-11-23 16:29:32 +1100401 }
402
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100403 if ((mp->m_flags & XFS_MOUNT_NOALIGN) && (dsunit || dswidth)) {
David Chinnera67d7c52007-11-23 16:29:32 +1100404 cmn_err(CE_WARN,
405 "XFS: sunit and swidth options incompatible with the noalign option");
406 return EINVAL;
407 }
408
Christoph Hellwig7d095252009-06-08 15:33:32 +0200409#ifndef CONFIG_XFS_QUOTA
410 if (XFS_IS_QUOTA_RUNNING(mp)) {
411 cmn_err(CE_WARN,
412 "XFS: quota support not available in this kernel.");
413 return EINVAL;
414 }
415#endif
416
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100417 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
418 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE))) {
David Chinnera67d7c52007-11-23 16:29:32 +1100419 cmn_err(CE_WARN,
420 "XFS: cannot mount with both project and group quota");
421 return EINVAL;
422 }
423
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100424 if ((mp->m_flags & XFS_MOUNT_DMAPI) && (!*mtpt || *mtpt[0] == '\0')) {
David Chinnera67d7c52007-11-23 16:29:32 +1100425 printk("XFS: %s option needs the mount point option as well\n",
426 MNTOPT_DMAPI);
427 return EINVAL;
428 }
429
430 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
431 cmn_err(CE_WARN,
432 "XFS: sunit and swidth must be specified together");
433 return EINVAL;
434 }
435
436 if (dsunit && (dswidth % dsunit != 0)) {
437 cmn_err(CE_WARN,
438 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
439 dswidth, dsunit);
440 return EINVAL;
441 }
442
443 /*
444 * Applications using DMI filesystems often expect the
445 * inode generation number to be monotonically increasing.
446 * If we delete inode chunks we break this assumption, so
447 * keep unused inode chunks on disk for DMI filesystems
448 * until we come up with a better solution.
449 * Note that if "ikeep" or "noikeep" mount options are
450 * supplied, then they are honored.
451 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100452 if ((mp->m_flags & XFS_MOUNT_DMAPI) && dmapi_implies_ikeep)
453 mp->m_flags |= XFS_MOUNT_IKEEP;
David Chinnera67d7c52007-11-23 16:29:32 +1100454
455done:
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100456 if (!(mp->m_flags & XFS_MOUNT_NOALIGN)) {
457 /*
458 * At this point the superblock has not been read
459 * in, therefore we do not know the block size.
460 * Before the mount call ends we will convert
461 * these to FSBs.
462 */
463 if (dsunit) {
464 mp->m_dalign = dsunit;
465 mp->m_flags |= XFS_MOUNT_RETERR;
466 }
467
468 if (dswidth)
469 mp->m_swidth = dswidth;
470 }
471
472 if (mp->m_logbufs != -1 &&
473 mp->m_logbufs != 0 &&
474 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
475 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
476 cmn_err(CE_WARN,
477 "XFS: invalid logbufs value: %d [not %d-%d]",
478 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
479 return XFS_ERROR(EINVAL);
480 }
481 if (mp->m_logbsize != -1 &&
482 mp->m_logbsize != 0 &&
483 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
484 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
485 !is_power_of_2(mp->m_logbsize))) {
486 cmn_err(CE_WARN,
487 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
488 mp->m_logbsize);
489 return XFS_ERROR(EINVAL);
490 }
491
492 mp->m_fsname = kstrndup(sb->s_id, MAXNAMELEN, GFP_KERNEL);
493 if (!mp->m_fsname)
494 return ENOMEM;
495 mp->m_fsname_len = strlen(mp->m_fsname) + 1;
496
497 if (iosizelog) {
498 if (iosizelog > XFS_MAX_IO_LOG ||
499 iosizelog < XFS_MIN_IO_LOG) {
500 cmn_err(CE_WARN,
501 "XFS: invalid log iosize: %d [not %d-%d]",
502 iosizelog, XFS_MIN_IO_LOG,
503 XFS_MAX_IO_LOG);
504 return XFS_ERROR(EINVAL);
505 }
506
507 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
508 mp->m_readio_log = iosizelog;
509 mp->m_writeio_log = iosizelog;
510 }
511
David Chinnera67d7c52007-11-23 16:29:32 +1100512 return 0;
513}
514
515struct proc_xfs_info {
516 int flag;
517 char *str;
518};
519
520STATIC int
521xfs_showargs(
522 struct xfs_mount *mp,
523 struct seq_file *m)
524{
525 static struct proc_xfs_info xfs_info_set[] = {
526 /* the few simple ones we can get from the mount struct */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +1100527 { XFS_MOUNT_IKEEP, "," MNTOPT_IKEEP },
David Chinnera67d7c52007-11-23 16:29:32 +1100528 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
David Chinnera67d7c52007-11-23 16:29:32 +1100529 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
530 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
531 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
532 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
533 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
534 { XFS_MOUNT_ATTR2, "," MNTOPT_ATTR2 },
535 { XFS_MOUNT_FILESTREAMS, "," MNTOPT_FILESTREAM },
536 { XFS_MOUNT_DMAPI, "," MNTOPT_DMAPI },
537 { XFS_MOUNT_GRPID, "," MNTOPT_GRPID },
538 { 0, NULL }
539 };
540 static struct proc_xfs_info xfs_info_unset[] = {
541 /* the few simple ones we can get from the mount struct */
David Chinnera67d7c52007-11-23 16:29:32 +1100542 { XFS_MOUNT_COMPAT_IOSIZE, "," MNTOPT_LARGEIO },
543 { XFS_MOUNT_BARRIER, "," MNTOPT_NOBARRIER },
544 { XFS_MOUNT_SMALL_INUMS, "," MNTOPT_64BITINODE },
545 { 0, NULL }
546 };
547 struct proc_xfs_info *xfs_infop;
548
549 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
550 if (mp->m_flags & xfs_infop->flag)
551 seq_puts(m, xfs_infop->str);
552 }
553 for (xfs_infop = xfs_info_unset; xfs_infop->flag; xfs_infop++) {
554 if (!(mp->m_flags & xfs_infop->flag))
555 seq_puts(m, xfs_infop->str);
556 }
557
558 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
559 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
560 (int)(1 << mp->m_writeio_log) >> 10);
561
562 if (mp->m_logbufs > 0)
563 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
564 if (mp->m_logbsize > 0)
565 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
566
567 if (mp->m_logname)
568 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
569 if (mp->m_rtname)
570 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
571
572 if (mp->m_dalign > 0)
573 seq_printf(m, "," MNTOPT_SUNIT "=%d",
574 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
575 if (mp->m_swidth > 0)
576 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
577 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
578
579 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
580 seq_puts(m, "," MNTOPT_USRQUOTA);
581 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
582 seq_puts(m, "," MNTOPT_UQUOTANOENF);
583
Alex Elder988abe42009-09-02 17:02:24 -0500584 /* Either project or group quotas can be active, not both */
David Chinnera67d7c52007-11-23 16:29:32 +1100585
Alex Elder988abe42009-09-02 17:02:24 -0500586 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
587 if (mp->m_qflags & XFS_OQUOTA_ENFD)
588 seq_puts(m, "," MNTOPT_PRJQUOTA);
589 else
590 seq_puts(m, "," MNTOPT_PQUOTANOENF);
591 } else if (mp->m_qflags & XFS_GQUOTA_ACCT) {
592 if (mp->m_qflags & XFS_OQUOTA_ENFD)
593 seq_puts(m, "," MNTOPT_GRPQUOTA);
594 else
595 seq_puts(m, "," MNTOPT_GQUOTANOENF);
596 }
David Chinnera67d7c52007-11-23 16:29:32 +1100597
598 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
599 seq_puts(m, "," MNTOPT_NOQUOTA);
600
601 return 0;
602}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603__uint64_t
604xfs_max_file_offset(
605 unsigned int blockshift)
606{
607 unsigned int pagefactor = 1;
608 unsigned int bitshift = BITS_PER_LONG - 1;
609
610 /* Figure out maximum filesize, on Linux this can depend on
611 * the filesystem blocksize (on 32 bit platforms).
612 * __block_prepare_write does this in an [unsigned] long...
613 * page->index << (PAGE_CACHE_SHIFT - bbits)
614 * So, for page sized blocks (4K on 32 bit platforms),
615 * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
616 * (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
617 * but for smaller blocksizes it is less (bbits = log2 bsize).
618 * Note1: get_block_t takes a long (implicit cast from above)
619 * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
620 * can optionally convert the [unsigned] long from above into
621 * an [unsigned] long long.
622 */
623
624#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200625# if defined(CONFIG_LBDAF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 ASSERT(sizeof(sector_t) == 8);
627 pagefactor = PAGE_CACHE_SIZE;
628 bitshift = BITS_PER_LONG;
629# else
630 pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
631# endif
632#endif
633
634 return (((__uint64_t)pagefactor) << bitshift) - 1;
635}
636
Hannes Eder3180e662009-03-04 19:34:10 +0100637STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638xfs_blkdev_get(
639 xfs_mount_t *mp,
640 const char *name,
641 struct block_device **bdevp)
642{
643 int error = 0;
644
Al Viro30c40d22008-02-22 19:50:45 -0500645 *bdevp = open_bdev_exclusive(name, FMODE_READ|FMODE_WRITE, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (IS_ERR(*bdevp)) {
647 error = PTR_ERR(*bdevp);
648 printk("XFS: Invalid device [%s], error=%d\n", name, error);
649 }
650
651 return -error;
652}
653
Hannes Eder3180e662009-03-04 19:34:10 +0100654STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655xfs_blkdev_put(
656 struct block_device *bdev)
657{
658 if (bdev)
Al Viro30c40d22008-02-22 19:50:45 -0500659 close_bdev_exclusive(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100662/*
663 * Try to write out the superblock using barriers.
664 */
665STATIC int
666xfs_barrier_test(
667 xfs_mount_t *mp)
668{
669 xfs_buf_t *sbp = xfs_getsb(mp, 0);
670 int error;
671
672 XFS_BUF_UNDONE(sbp);
673 XFS_BUF_UNREAD(sbp);
674 XFS_BUF_UNDELAYWRITE(sbp);
675 XFS_BUF_WRITE(sbp);
676 XFS_BUF_UNASYNC(sbp);
677 XFS_BUF_ORDERED(sbp);
678
679 xfsbdstrat(mp, sbp);
680 error = xfs_iowait(sbp);
681
682 /*
683 * Clear all the flags we set and possible error state in the
684 * buffer. We only did the write to try out whether barriers
685 * worked and shouldn't leave any traces in the superblock
686 * buffer.
687 */
688 XFS_BUF_DONE(sbp);
689 XFS_BUF_ERROR(sbp, 0);
690 XFS_BUF_UNORDERED(sbp);
691
692 xfs_buf_relse(sbp);
693 return error;
694}
695
Eric Sandeend96f8f82009-07-02 00:09:33 -0500696STATIC void
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100697xfs_mountfs_check_barriers(xfs_mount_t *mp)
698{
699 int error;
700
701 if (mp->m_logdev_targp != mp->m_ddev_targp) {
702 xfs_fs_cmn_err(CE_NOTE, mp,
703 "Disabling barriers, not supported with external log device");
704 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100705 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100706 }
707
Nathan Scottb2ea4012006-07-28 17:05:13 +1000708 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
709 xfs_fs_cmn_err(CE_NOTE, mp,
710 "Disabling barriers, underlying device is readonly");
711 mp->m_flags &= ~XFS_MOUNT_BARRIER;
712 return;
713 }
714
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100715 error = xfs_barrier_test(mp);
716 if (error) {
717 xfs_fs_cmn_err(CE_NOTE, mp,
718 "Disabling barriers, trial barrier write failed");
719 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100720 return;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100721 }
722}
723
724void
725xfs_blkdev_issue_flush(
726 xfs_buftarg_t *buftarg)
727{
Nathan Scottce8e9222006-01-11 15:39:08 +1100728 blkdev_issue_flush(buftarg->bt_bdev, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100729}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000731STATIC void
732xfs_close_devices(
733 struct xfs_mount *mp)
734{
735 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000736 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500737 xfs_free_buftarg(mp, mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000738 xfs_blkdev_put(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000739 }
740 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000741 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Christoph Hellwigb7963132009-03-03 14:48:37 -0500742 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000743 xfs_blkdev_put(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000744 }
Christoph Hellwigb7963132009-03-03 14:48:37 -0500745 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000746}
747
748/*
749 * The file system configurations are:
750 * (1) device (partition) with data and internal log
751 * (2) logical volume with data and log subvolumes.
752 * (3) logical volume with data, log, and realtime subvolumes.
753 *
754 * We only have to handle opening the log and realtime volumes here if
755 * they are present. The data subvolume has already been opened by
756 * get_sb_bdev() and is stored in sb->s_bdev.
757 */
758STATIC int
759xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100760 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000761{
762 struct block_device *ddev = mp->m_super->s_bdev;
763 struct block_device *logdev = NULL, *rtdev = NULL;
764 int error;
765
766 /*
767 * Open real time and log devices - order is important.
768 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100769 if (mp->m_logname) {
770 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000771 if (error)
772 goto out;
773 }
774
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100775 if (mp->m_rtname) {
776 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000777 if (error)
778 goto out_close_logdev;
779
780 if (rtdev == ddev || rtdev == logdev) {
781 cmn_err(CE_WARN,
782 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
783 error = EINVAL;
784 goto out_close_rtdev;
785 }
786 }
787
788 /*
789 * Setup xfs_mount buffer target pointers
790 */
791 error = ENOMEM;
792 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
793 if (!mp->m_ddev_targp)
794 goto out_close_rtdev;
795
796 if (rtdev) {
797 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
798 if (!mp->m_rtdev_targp)
799 goto out_free_ddev_targ;
800 }
801
802 if (logdev && logdev != ddev) {
803 mp->m_logdev_targp = xfs_alloc_buftarg(logdev, 1);
804 if (!mp->m_logdev_targp)
805 goto out_free_rtdev_targ;
806 } else {
807 mp->m_logdev_targp = mp->m_ddev_targp;
808 }
809
810 return 0;
811
812 out_free_rtdev_targ:
813 if (mp->m_rtdev_targp)
Christoph Hellwigb7963132009-03-03 14:48:37 -0500814 xfs_free_buftarg(mp, mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000815 out_free_ddev_targ:
Christoph Hellwigb7963132009-03-03 14:48:37 -0500816 xfs_free_buftarg(mp, mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000817 out_close_rtdev:
818 if (rtdev)
819 xfs_blkdev_put(rtdev);
820 out_close_logdev:
821 if (logdev && logdev != ddev)
822 xfs_blkdev_put(logdev);
823 out:
824 return error;
825}
826
Christoph Hellwige34b5622008-05-20 15:10:36 +1000827/*
828 * Setup xfs_mount buffer target pointers based on superblock
829 */
830STATIC int
831xfs_setup_devices(
832 struct xfs_mount *mp)
833{
834 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000835
Christoph Hellwige34b5622008-05-20 15:10:36 +1000836 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
837 mp->m_sb.sb_sectsize);
838 if (error)
839 return error;
840
841 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
842 unsigned int log_sector_size = BBSIZE;
843
844 if (xfs_sb_version_hassector(&mp->m_sb))
845 log_sector_size = mp->m_sb.sb_logsectsize;
846 error = xfs_setsize_buftarg(mp->m_logdev_targp,
847 mp->m_sb.sb_blocksize,
848 log_sector_size);
849 if (error)
850 return error;
851 }
852 if (mp->m_rtdev_targp) {
853 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
854 mp->m_sb.sb_blocksize,
855 mp->m_sb.sb_sectsize);
856 if (error)
857 return error;
858 }
859
860 return 0;
861}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000862
David Chinner249a8c12008-02-05 12:13:32 +1100863/*
864 * XFS AIL push thread support
865 */
866void
867xfsaild_wakeup(
David Chinner82fa9012008-10-30 17:38:26 +1100868 struct xfs_ail *ailp,
David Chinner249a8c12008-02-05 12:13:32 +1100869 xfs_lsn_t threshold_lsn)
870{
David Chinner82fa9012008-10-30 17:38:26 +1100871 ailp->xa_target = threshold_lsn;
872 wake_up_process(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100873}
874
Hannes Eder3180e662009-03-04 19:34:10 +0100875STATIC int
David Chinner249a8c12008-02-05 12:13:32 +1100876xfsaild(
877 void *data)
878{
David Chinner82fa9012008-10-30 17:38:26 +1100879 struct xfs_ail *ailp = data;
David Chinner249a8c12008-02-05 12:13:32 +1100880 xfs_lsn_t last_pushed_lsn = 0;
Dave Chinner453eac82010-01-11 11:49:58 +0000881 long tout = 0; /* milliseconds */
David Chinner249a8c12008-02-05 12:13:32 +1100882
883 while (!kthread_should_stop()) {
Dave Chinner453eac82010-01-11 11:49:58 +0000884 schedule_timeout_interruptible(tout ?
885 msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT);
David Chinner249a8c12008-02-05 12:13:32 +1100886
887 /* swsusp */
888 try_to_freeze();
889
David Chinner82fa9012008-10-30 17:38:26 +1100890 ASSERT(ailp->xa_mount->m_log);
891 if (XFS_FORCED_SHUTDOWN(ailp->xa_mount))
David Chinner249a8c12008-02-05 12:13:32 +1100892 continue;
893
David Chinner82fa9012008-10-30 17:38:26 +1100894 tout = xfsaild_push(ailp, &last_pushed_lsn);
David Chinner249a8c12008-02-05 12:13:32 +1100895 }
896
897 return 0;
898} /* xfsaild */
899
900int
901xfsaild_start(
David Chinner82fa9012008-10-30 17:38:26 +1100902 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100903{
David Chinner82fa9012008-10-30 17:38:26 +1100904 ailp->xa_target = 0;
905 ailp->xa_task = kthread_run(xfsaild, ailp, "xfsaild");
906 if (IS_ERR(ailp->xa_task))
907 return -PTR_ERR(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100908 return 0;
909}
910
911void
912xfsaild_stop(
David Chinner82fa9012008-10-30 17:38:26 +1100913 struct xfs_ail *ailp)
David Chinner249a8c12008-02-05 12:13:32 +1100914{
David Chinner82fa9012008-10-30 17:38:26 +1100915 kthread_stop(ailp->xa_task);
David Chinner249a8c12008-02-05 12:13:32 +1100916}
917
918
David Chinnerbf904242008-10-30 17:36:14 +1100919/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100921xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct super_block *sb)
923{
David Chinnerbf904242008-10-30 17:36:14 +1100924 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100925 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
David Chinnerbf904242008-10-30 17:36:14 +1100928/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100929 * Now that the generic code is guaranteed not to be accessing
930 * the linux inode, we can reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100933xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000934 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000936 struct xfs_inode *ip = XFS_I(inode);
937
938 xfs_itrace_entry(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100939
940 XFS_STATS_INC(vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000941
942 /* bad inode, get out here ASAP */
943 if (is_bad_inode(inode))
944 goto out_reclaim;
945
946 xfs_ioend_wait(ip);
947
948 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
949
950 /*
951 * We should never get here with one of the reclaim flags already set.
952 */
953 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
954 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
955
956 /*
Dave Chinner57817c62010-01-10 23:51:47 +0000957 * We always use background reclaim here because even if the
958 * inode is clean, it still may be under IO and hence we have
959 * to take the flush lock. The background reclaim path handles
960 * this more efficiently than we can here, so simply let background
961 * reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000962 */
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000963out_reclaim:
Dave Chinner57817c62010-01-10 23:51:47 +0000964 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
David Chinner07c8f672008-10-30 16:11:59 +1100967/*
968 * Slab object creation initialisation for the XFS inode.
969 * This covers only the idempotent fields in the XFS inode;
970 * all other fields need to be initialised on allocation
971 * from the slab. This avoids the need to repeatedly intialise
972 * fields in the xfs inode that left in the initialise state
973 * when freeing the inode.
974 */
David Chinnerbf904242008-10-30 17:36:14 +1100975STATIC void
976xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100977 void *inode)
978{
979 struct xfs_inode *ip = inode;
980
981 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100982
983 /* vfs inode */
984 inode_init_once(VFS_I(ip));
985
986 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100987 atomic_set(&ip->i_iocount, 0);
988 atomic_set(&ip->i_pincount, 0);
989 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100990 init_waitqueue_head(&ip->i_ipin_wait);
991 /*
992 * Because we want to use a counting completion, complete
993 * the flush completion once to allow a single access to
994 * the flush completion without blocking.
995 */
996 init_completion(&ip->i_flush);
997 complete(&ip->i_flush);
998
999 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
1000 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +11001001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001004 * Dirty the XFS inode when mark_inode_dirty_sync() is called so that
1005 * we catch unlogged VFS level updates to the inode. Care must be taken
1006 * here - the transaction code calls mark_inode_dirty_sync() to mark the
1007 * VFS inode dirty in a transaction and clears the i_update_core field;
1008 * it must clear the field after calling mark_inode_dirty_sync() to
1009 * correctly indicate that the dirty state has been propagated into the
1010 * inode log item.
1011 *
1012 * We need the barrier() to maintain correct ordering between unlogged
1013 * updates and the transaction commit code that clears the i_update_core
1014 * field. This requires all updates to be completed before marking the
1015 * inode dirty.
1016 */
1017STATIC void
1018xfs_fs_dirty_inode(
1019 struct inode *inode)
1020{
1021 barrier();
1022 XFS_I(inode)->i_update_core = 1;
1023}
1024
Christoph Hellwig07fec732010-02-09 11:43:49 +11001025STATIC int
1026xfs_log_inode(
1027 struct xfs_inode *ip)
1028{
1029 struct xfs_mount *mp = ip->i_mount;
1030 struct xfs_trans *tp;
1031 int error;
1032
1033 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1034 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
1035 error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
1036
1037 if (error) {
1038 xfs_trans_cancel(tp, 0);
1039 /* we need to return with the lock hold shared */
1040 xfs_ilock(ip, XFS_ILOCK_SHARED);
1041 return error;
1042 }
1043
1044 xfs_ilock(ip, XFS_ILOCK_EXCL);
1045
1046 /*
1047 * Note - it's possible that we might have pushed ourselves out of the
1048 * way during trans_reserve which would flush the inode. But there's
1049 * no guarantee that the inode buffer has actually gone out yet (it's
1050 * delwri). Plus the buffer could be pinned anyway if it's part of
1051 * an inode in another recent transaction. So we play it safe and
1052 * fire off the transaction anyway.
1053 */
1054 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1055 xfs_trans_ihold(tp, ip);
1056 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1057 xfs_trans_set_sync(tp);
1058 error = xfs_trans_commit(tp, 0);
1059 xfs_ilock_demote(ip, XFS_ILOCK_EXCL);
1060
1061 return error;
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001065xfs_fs_write_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct inode *inode,
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001067 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Dave Chinner2e656092008-11-28 14:23:33 +11001069 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001070 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig07fec732010-02-09 11:43:49 +11001071 int error = EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Dave Chinner2e656092008-11-28 14:23:33 +11001073 xfs_itrace_entry(ip);
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001074
1075 if (XFS_FORCED_SHUTDOWN(mp))
1076 return XFS_ERROR(EIO);
1077
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001078 if (wbc->sync_mode == WB_SYNC_ALL) {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001079 /*
1080 * Make sure the inode has hit stable storage. By using the
1081 * log and the fsync transactions we reduce the IOs we have
1082 * to do here from two (log and inode) to just the log.
1083 *
1084 * Note: We still need to do a delwri write of the inode after
1085 * this to flush it to the backing buffer so that bulkstat
1086 * works properly if this is the first time the inode has been
1087 * written. Because we hold the ilock atomically over the
1088 * transaction commit and the inode flush we are guaranteed
1089 * that the inode is not pinned when it returns. If the flush
1090 * lock is already held, then the inode has already been
1091 * flushed once and we don't need to flush it again. Hence
1092 * the code will only flush the inode if it isn't already
1093 * being flushed.
1094 */
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001095 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig07fec732010-02-09 11:43:49 +11001096 if (ip->i_update_core) {
1097 error = xfs_log_inode(ip);
1098 if (error)
1099 goto out_unlock;
1100 }
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001101 } else {
Christoph Hellwig07fec732010-02-09 11:43:49 +11001102 /*
1103 * We make this non-blocking if the inode is contended, return
1104 * EAGAIN to indicate to the caller that they did not succeed.
1105 * This prevents the flush path from blocking on inodes inside
1106 * another operation right now, they get caught later by xfs_sync.
1107 */
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001108 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1109 goto out;
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001110 }
1111
Christoph Hellwig07fec732010-02-09 11:43:49 +11001112 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip))
1113 goto out_unlock;
1114
1115 /*
1116 * Now we have the flush lock and the inode is not pinned, we can check
1117 * if the inode is really clean as we know that there are no pending
1118 * transaction completions, it is not waiting on the delayed write
1119 * queue and there is no IO in progress.
1120 */
1121 if (xfs_inode_clean(ip)) {
1122 xfs_ifunlock(ip);
1123 error = 0;
1124 goto out_unlock;
1125 }
1126 error = xfs_iflush(ip, 0);
1127
Christoph Hellwigd4bb6d02009-02-04 09:36:19 +01001128 out_unlock:
1129 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1130 out:
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001131 /*
1132 * if we failed to write out the inode then mark
1133 * it dirty again so we'll try again later.
1134 */
1135 if (error)
Dave Chinner2e656092008-11-28 14:23:33 +11001136 xfs_mark_inode_dirty_sync(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return -error;
1138}
1139
1140STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001141xfs_fs_clear_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct inode *inode)
1143{
Christoph Hellwig1543d792007-08-29 11:46:47 +10001144 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001145
David Chinner99fa8cb2008-10-30 17:36:40 +11001146 xfs_itrace_entry(ip);
1147 XFS_STATS_INC(vn_rele);
1148 XFS_STATS_INC(vn_remove);
1149 XFS_STATS_DEC(vn_active);
Christoph Hellwig56d433e2005-09-05 08:23:54 +10001150
Christoph Hellwig033da482009-10-19 04:05:26 +00001151 /*
1152 * The iolock is used by the file system to coordinate reads,
1153 * writes, and block truncates. Up to this point the lock
1154 * protected concurrent accesses by users of the inode. But
1155 * from here forward we're doing some final processing of the
1156 * inode because we're done with it, and although we reuse the
1157 * iolock for protection it is really a distinct lock class
1158 * (in the lockdep sense) from before. To keep lockdep happy
1159 * (and basically indicate what we are doing), we explicitly
1160 * re-init the iolock here.
1161 */
1162 ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock));
1163 mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino);
1164
David Chinner99fa8cb2008-10-30 17:36:40 +11001165 xfs_inactive(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168STATIC void
Christoph Hellwiga7381592008-08-13 16:04:05 +10001169xfs_free_fsname(
1170 struct xfs_mount *mp)
1171{
1172 kfree(mp->m_fsname);
1173 kfree(mp->m_rtname);
1174 kfree(mp->m_logname);
1175}
1176
1177STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +11001178xfs_fs_put_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 struct super_block *sb)
1180{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001181 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
David Chinnera167b172008-10-30 17:06:18 +11001183 xfs_syncd_stop(mp);
Christoph Hellwig075fe102009-06-08 15:35:48 +02001184
1185 if (!(sb->s_flags & MS_RDONLY)) {
1186 /*
1187 * XXX(hch): this should be SYNC_WAIT.
1188 *
1189 * Or more likely not needed at all because the VFS is already
1190 * calling ->sync_fs after shutting down all filestem
1191 * operations and just before calling ->put_super.
1192 */
1193 xfs_sync_data(mp, 0);
1194 xfs_sync_attr(mp, 0);
1195 }
Christoph Hellwige48ad312008-05-20 11:30:52 +10001196
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001197 XFS_SEND_PREUNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001198
1199 /*
1200 * Blow away any referenced inode in the filestreams cache.
1201 * This can and will cause log traffic as inodes go inactive
1202 * here.
1203 */
1204 xfs_filestream_unmount(mp);
1205
1206 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001207
Christoph Hellwig30ac0682009-11-14 16:17:24 +00001208 XFS_SEND_UNMOUNT(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001209
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001210 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001211 xfs_freesb(mp);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001212 xfs_inode_shrinker_unregister(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001213 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001214 xfs_close_devices(mp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001215 xfs_dmops_put(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +10001216 xfs_free_fsname(mp);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001217 kfree(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +00001221xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 struct super_block *sb,
1223 int wait)
1224{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001225 struct xfs_mount *mp = XFS_M(sb);
Nathan Scottb83bd132006-06-09 16:48:30 +10001226 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001228 /*
Christoph Hellwig69961a22009-10-06 20:29:28 +00001229 * Not much we can do for the first async pass. Writing out the
1230 * superblock would be counter-productive as we are going to redirty
1231 * when writing out other data and metadata (and writing out a single
1232 * block is quite fast anyway).
1233 *
1234 * Try to asynchronously kick off quota syncing at least.
Lachlan McIlroye893bff2007-10-12 11:13:35 +10001235 */
Christoph Hellwig69961a22009-10-06 20:29:28 +00001236 if (!wait) {
1237 xfs_qm_sync(mp, SYNC_TRYLOCK);
1238 return 0;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Christoph Hellwig69961a22009-10-06 20:29:28 +00001241 error = xfs_quiesce_data(mp);
1242 if (error)
1243 return -error;
1244
1245 if (laptop_mode) {
Christoph Hellwig74394492007-08-30 17:21:22 +10001246 int prev_sync_seq = mp->m_sync_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /*
1249 * The disk must be active because we're syncing.
1250 * We schedule xfssyncd now (now that the disk is
1251 * active) instead of later (when it might not be).
1252 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001253 wake_up_process(mp->m_sync_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * We have to wait for the sync iteration to complete.
1256 * If we don't, the disk activity caused by the sync
1257 * will come after the sync is completed, and that
1258 * triggers another sync from laptop mode.
1259 */
Christoph Hellwig74394492007-08-30 17:21:22 +10001260 wait_event(mp->m_wait_single_sync_task,
1261 mp->m_sync_seq != prev_sync_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Christoph Hellwig69961a22009-10-06 20:29:28 +00001264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001268xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -07001269 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 struct kstatfs *statp)
1271{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001272 struct xfs_mount *mp = XFS_M(dentry->d_sb);
1273 xfs_sb_t *sbp = &mp->m_sb;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001274 struct xfs_inode *ip = XFS_I(dentry->d_inode);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001275 __uint64_t fakeinos, id;
1276 xfs_extlen_t lsize;
1277
1278 statp->f_type = XFS_SB_MAGIC;
1279 statp->f_namelen = MAXNAMELEN - 1;
1280
1281 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
1282 statp->f_fsid.val[0] = (u32)id;
1283 statp->f_fsid.val[1] = (u32)(id >> 32);
1284
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001285 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001286
1287 spin_lock(&mp->m_sb_lock);
1288 statp->f_bsize = sbp->sb_blocksize;
1289 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
1290 statp->f_blocks = sbp->sb_dblocks - lsize;
1291 statp->f_bfree = statp->f_bavail =
1292 sbp->sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1293 fakeinos = statp->f_bfree << sbp->sb_inopblog;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001294 statp->f_files =
1295 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
1296 if (mp->m_maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +02001297 statp->f_files = min_t(typeof(statp->f_files),
1298 statp->f_files,
1299 mp->m_maxicount);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001300 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
1301 spin_unlock(&mp->m_sb_lock);
1302
Christoph Hellwig7d095252009-06-08 15:33:32 +02001303 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) ||
1304 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))) ==
1305 (XFS_PQUOTA_ACCT|XFS_OQUOTA_ENFD))
1306 xfs_qm_statvfs(ip, statp);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
Eric Sandeend5db0f92010-02-05 22:59:53 +00001310STATIC void
1311xfs_save_resvblks(struct xfs_mount *mp)
1312{
1313 __uint64_t resblks = 0;
1314
1315 mp->m_resblks_save = mp->m_resblks;
1316 xfs_reserve_blocks(mp, &resblks, NULL);
1317}
1318
1319STATIC void
1320xfs_restore_resvblks(struct xfs_mount *mp)
1321{
1322 __uint64_t resblks;
1323
1324 if (mp->m_resblks_save) {
1325 resblks = mp->m_resblks_save;
1326 mp->m_resblks_save = 0;
1327 } else
1328 resblks = xfs_default_resblks(mp);
1329
1330 xfs_reserve_blocks(mp, &resblks, NULL);
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001334xfs_fs_remount(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 struct super_block *sb,
1336 int *flags,
1337 char *options)
1338{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001339 struct xfs_mount *mp = XFS_M(sb);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001340 substring_t args[MAX_OPT_ARGS];
1341 char *p;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001342 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001344 while ((p = strsep(&options, ",")) != NULL) {
1345 int token;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001346
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001347 if (!*p)
1348 continue;
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001349
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001350 token = match_token(p, tokens, args);
1351 switch (token) {
1352 case Opt_barrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001353 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001354
1355 /*
1356 * Test if barriers are actually working if we can,
1357 * else delay this check until the filesystem is
1358 * marked writeable.
1359 */
1360 if (!(mp->m_flags & XFS_MOUNT_RDONLY))
1361 xfs_mountfs_check_barriers(mp);
1362 break;
1363 case Opt_nobarrier:
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001364 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001365 break;
1366 default:
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001367 /*
1368 * Logically we would return an error here to prevent
1369 * users from believing they might have changed
1370 * mount options using remount which can't be changed.
1371 *
1372 * But unfortunately mount(8) adds all options from
1373 * mtab and fstab to the mount arguments in some cases
1374 * so we can't blindly reject options, but have to
1375 * check for each specified option if it actually
1376 * differs from the currently set option and only
1377 * reject it if that's the case.
1378 *
1379 * Until that is implemented we return success for
1380 * every remount request, and silently ignore all
1381 * options that we can't actually change.
1382 */
1383#if 0
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001384 printk(KERN_INFO
1385 "XFS: mount option \"%s\" not supported for remount\n", p);
1386 return -EINVAL;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001387#else
Christoph Hellwig6c5e51d2008-10-12 14:30:44 +02001388 break;
Christoph Hellwig6efdf282008-09-17 16:49:33 +10001389#endif
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001390 }
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001391 }
1392
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001393 /* ro -> rw */
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001394 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(*flags & MS_RDONLY)) {
1395 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1396 if (mp->m_flags & XFS_MOUNT_BARRIER)
1397 xfs_mountfs_check_barriers(mp);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001398
1399 /*
1400 * If this is the first remount to writeable state we
1401 * might have some superblock changes to update.
1402 */
1403 if (mp->m_update_flags) {
1404 error = xfs_mount_log_sb(mp, mp->m_update_flags);
1405 if (error) {
1406 cmn_err(CE_WARN,
1407 "XFS: failed to write sb changes");
1408 return error;
1409 }
1410 mp->m_update_flags = 0;
1411 }
Dave Chinnercbe132a2010-01-26 15:08:49 +11001412
1413 /*
1414 * Fill out the reserve pool if it is empty. Use the stashed
1415 * value if it is non-zero, otherwise go with the default.
1416 */
Eric Sandeend5db0f92010-02-05 22:59:53 +00001417 xfs_restore_resvblks(mp);
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001418 }
1419
1420 /* rw -> ro */
1421 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) {
Dave Chinnercbe132a2010-01-26 15:08:49 +11001422 /*
1423 * After we have synced the data but before we sync the
1424 * metadata, we need to free up the reserve block pool so that
1425 * the used block count in the superblock on disk is correct at
1426 * the end of the remount. Stash the current reserve pool size
1427 * so that if we get remounted rw, we can return it to the same
1428 * size.
1429 */
Dave Chinnercbe132a2010-01-26 15:08:49 +11001430
David Chinnere9f1c6e2008-10-30 17:15:50 +11001431 xfs_quiesce_data(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +00001432 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001433 xfs_quiesce_attr(mp);
Christoph Hellwig48b62a12008-05-20 11:30:39 +10001434 mp->m_flags |= XFS_MOUNT_RDONLY;
1435 }
1436
Christoph Hellwig62a877e2008-07-18 17:12:36 +10001437 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001440/*
1441 * Second stage of a freeze. The data is already frozen so we only
David Chinner76bf1052008-10-30 17:16:21 +11001442 * need to take care of the metadata. Once that's done write a dummy
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001443 * record to dirty the log in case of a crash while frozen.
1444 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08001445STATIC int
1446xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct super_block *sb)
1448{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +10001449 struct xfs_mount *mp = XFS_M(sb);
1450
Eric Sandeend5db0f92010-02-05 22:59:53 +00001451 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +11001452 xfs_quiesce_attr(mp);
Takashi Satoc4be0c12009-01-09 16:40:58 -08001453 return -xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
1456STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +00001457xfs_fs_unfreeze(
1458 struct super_block *sb)
1459{
1460 struct xfs_mount *mp = XFS_M(sb);
1461
1462 xfs_restore_resvblks(mp);
1463 return 0;
1464}
1465
1466STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001467xfs_fs_show_options(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 struct seq_file *m,
1469 struct vfsmount *mnt)
1470{
Christoph Hellwig745f6912007-08-30 17:20:39 +10001471 return -xfs_showargs(XFS_M(mnt->mnt_sb), m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001474/*
1475 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001476 * Note: the superblock _has_ now been read in.
1477 */
1478STATIC int
1479xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001480 struct xfs_mount *mp)
1481{
1482 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
1483
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001484 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001485 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001486 if (mp->m_logbsize <= 0 &&
1487 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001488 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001489 } else if (mp->m_logbsize > 0 &&
1490 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001491 cmn_err(CE_WARN,
1492 "XFS: logbuf size must be greater than or equal to log stripe size");
1493 return XFS_ERROR(EINVAL);
1494 }
1495 } else {
1496 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001497 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001498 cmn_err(CE_WARN,
1499 "XFS: logbuf size for version 1 logs must be 16K or 32K");
1500 return XFS_ERROR(EINVAL);
1501 }
1502 }
1503
1504 /*
1505 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
1506 * told by noattr2 to turn it off
1507 */
1508 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001509 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001510 mp->m_flags |= XFS_MOUNT_ATTR2;
1511
1512 /*
1513 * prohibit r/w mounts of read-only filesystems
1514 */
1515 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
1516 cmn_err(CE_WARN,
1517 "XFS: cannot mount a read-only filesystem as read-write");
1518 return XFS_ERROR(EROFS);
1519 }
1520
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001521 return 0;
1522}
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001525xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 struct super_block *sb,
1527 void *data,
1528 int silent)
1529{
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001530 struct inode *root;
Christoph Hellwig745f6912007-08-30 17:20:39 +10001531 struct xfs_mount *mp = NULL;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001532 int flags = 0, error = ENOMEM;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001533 char *mtpt = NULL;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001534
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001535 mp = kzalloc(sizeof(struct xfs_mount), GFP_KERNEL);
1536 if (!mp)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001537 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001539 spin_lock_init(&mp->m_sb_lock);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001540 mutex_init(&mp->m_growlock);
1541 atomic_set(&mp->m_active_trans, 0);
Christoph Hellwig74394492007-08-30 17:21:22 +10001542 INIT_LIST_HEAD(&mp->m_sync_list);
1543 spin_lock_init(&mp->m_sync_lock);
1544 init_waitqueue_head(&mp->m_wait_single_sync_task);
1545
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001546 mp->m_super = sb;
1547 sb->s_fs_info = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001549 error = xfs_parseargs(mp, (char *)data, &mtpt);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001550 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001551 goto out_free_fsname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001554 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001555 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001556#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001557 sb->s_qcop = &xfs_quotactl_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001558#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001559 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001561 error = xfs_dmops_get(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001562 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001563 goto out_free_fsname;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001564
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001565 if (silent)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001566 flags |= XFS_MFSI_QUIET;
1567
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001568 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001569 if (error)
Christoph Hellwig7d095252009-06-08 15:33:32 +02001570 goto out_put_dmops;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001571
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001572 if (xfs_icsb_init_counters(mp))
1573 mp->m_flags |= XFS_MOUNT_NO_PERCPU_SB;
1574
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001575 error = xfs_readsb(mp, flags);
1576 if (error)
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001577 goto out_destroy_counters;
1578
1579 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001580 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001581 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001582
Christoph Hellwige34b5622008-05-20 15:10:36 +10001583 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001584 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001585 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001586
1587 if (mp->m_flags & XFS_MOUNT_BARRIER)
1588 xfs_mountfs_check_barriers(mp);
1589
1590 error = xfs_filestream_mount(mp);
1591 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001592 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001593
Christoph Hellwig42490232008-08-13 16:49:32 +10001594 error = xfs_mountfs(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001595 if (error)
Christoph Hellwig120226c2008-05-20 15:11:11 +10001596 goto out_filestream_unmount;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001597
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001598 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, mtpt, mp->m_fsname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001600 sb->s_magic = XFS_SB_MAGIC;
1601 sb->s_blocksize = mp->m_sb.sb_blocksize;
1602 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1604 sb->s_time_gran = 1;
1605 set_posix_acl_flag(sb);
1606
David Chinner01651642008-08-13 15:45:15 +10001607 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001608 if (!root) {
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001609 error = ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 goto fail_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001611 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001612 if (is_bad_inode(root)) {
1613 error = EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 goto fail_vnrele;
1615 }
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001616 sb->s_root = d_alloc_root(root);
1617 if (!sb->s_root) {
1618 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 goto fail_vnrele;
1620 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001621
David Chinnera167b172008-10-30 17:06:18 +11001622 error = xfs_syncd_init(mp);
1623 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 goto fail_vnrele;
Christoph Hellwig74394492007-08-30 17:21:22 +10001625
Dave Chinner9bf729c2010-04-29 09:55:50 +10001626 xfs_inode_shrinker_register(mp);
1627
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001628 kfree(mtpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
1630
Christoph Hellwig120226c2008-05-20 15:11:11 +10001631 out_filestream_unmount:
1632 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001633 out_free_sb:
1634 xfs_freesb(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001635 out_destroy_counters:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001636 xfs_icsb_destroy_counters(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001637 xfs_close_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001638 out_put_dmops:
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001639 xfs_dmops_put(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001640 out_free_fsname:
1641 xfs_free_fsname(mp);
1642 kfree(mtpt);
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001643 kfree(mp);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001644 out:
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001645 return -error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001646
1647 fail_vnrele:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (sb->s_root) {
1649 dput(sb->s_root);
1650 sb->s_root = NULL;
1651 } else {
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001652 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001655 fail_unmount:
Christoph Hellwige48ad312008-05-20 11:30:52 +10001656 /*
1657 * Blow away any referenced inode in the filestreams cache.
1658 * This can and will cause log traffic as inodes go inactive
1659 * here.
1660 */
1661 xfs_filestream_unmount(mp);
1662
1663 XFS_bflush(mp->m_ddev_targp);
Christoph Hellwige48ad312008-05-20 11:30:52 +10001664
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001665 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001666 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
David Howells454e2392006-06-23 02:02:57 -07001669STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +11001670xfs_fs_get_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 struct file_system_type *fs_type,
1672 int flags,
1673 const char *dev_name,
David Howells454e2392006-06-23 02:02:57 -07001674 void *data,
1675 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
David Howells454e2392006-06-23 02:02:57 -07001677 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
1678 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001681static const struct super_operations xfs_super_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +11001682 .alloc_inode = xfs_fs_alloc_inode,
1683 .destroy_inode = xfs_fs_destroy_inode,
Christoph Hellwigf9581b12009-10-06 20:29:26 +00001684 .dirty_inode = xfs_fs_dirty_inode,
Nathan Scotta50cd262006-03-14 14:06:18 +11001685 .write_inode = xfs_fs_write_inode,
1686 .clear_inode = xfs_fs_clear_inode,
1687 .put_super = xfs_fs_put_super,
Christoph Hellwig69961a22009-10-06 20:29:28 +00001688 .sync_fs = xfs_fs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001689 .freeze_fs = xfs_fs_freeze,
Eric Sandeend5db0f92010-02-05 22:59:53 +00001690 .unfreeze_fs = xfs_fs_unfreeze,
Nathan Scotta50cd262006-03-14 14:06:18 +11001691 .statfs = xfs_fs_statfs,
1692 .remount_fs = xfs_fs_remount,
1693 .show_options = xfs_fs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694};
1695
Andrew Morton5085b602007-02-20 13:57:47 -08001696static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 .owner = THIS_MODULE,
1698 .name = "xfs",
Nathan Scotta50cd262006-03-14 14:06:18 +11001699 .get_sb = xfs_fs_get_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 .kill_sb = kill_block_super,
1701 .fs_flags = FS_REQUIRES_DEV,
1702};
1703
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001704STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001705xfs_init_zones(void)
1706{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001707
1708 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
1709 if (!xfs_ioend_zone)
David Chinnerbf904242008-10-30 17:36:14 +11001710 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001711
1712 xfs_ioend_pool = mempool_create_slab_pool(4 * MAX_BUF_PER_PAGE,
1713 xfs_ioend_zone);
1714 if (!xfs_ioend_pool)
1715 goto out_destroy_ioend_zone;
1716
1717 xfs_log_ticket_zone = kmem_zone_init(sizeof(xlog_ticket_t),
1718 "xfs_log_ticket");
1719 if (!xfs_log_ticket_zone)
1720 goto out_destroy_ioend_pool;
1721
1722 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
1723 "xfs_bmap_free_item");
1724 if (!xfs_bmap_free_item_zone)
1725 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001726
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001727 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
1728 "xfs_btree_cur");
1729 if (!xfs_btree_cur_zone)
1730 goto out_destroy_bmap_free_item_zone;
1731
1732 xfs_da_state_zone = kmem_zone_init(sizeof(xfs_da_state_t),
1733 "xfs_da_state");
1734 if (!xfs_da_state_zone)
1735 goto out_destroy_btree_cur_zone;
1736
1737 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
1738 if (!xfs_dabuf_zone)
1739 goto out_destroy_da_state_zone;
1740
1741 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
1742 if (!xfs_ifork_zone)
1743 goto out_destroy_dabuf_zone;
1744
1745 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
1746 if (!xfs_trans_zone)
1747 goto out_destroy_ifork_zone;
1748
1749 /*
1750 * The size of the zone allocated buf log item is the maximum
1751 * size possible under XFS. This wastes a little bit of memory,
1752 * but it is much faster.
1753 */
1754 xfs_buf_item_zone = kmem_zone_init((sizeof(xfs_buf_log_item_t) +
1755 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
1756 NBWORD) * sizeof(int))), "xfs_buf_item");
1757 if (!xfs_buf_item_zone)
1758 goto out_destroy_trans_zone;
1759
1760 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
1761 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
1762 sizeof(xfs_extent_t))), "xfs_efd_item");
1763 if (!xfs_efd_zone)
1764 goto out_destroy_buf_item_zone;
1765
1766 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
1767 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
1768 sizeof(xfs_extent_t))), "xfs_efi_item");
1769 if (!xfs_efi_zone)
1770 goto out_destroy_efd_zone;
1771
1772 xfs_inode_zone =
1773 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
David Chinnerbf904242008-10-30 17:36:14 +11001774 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM | KM_ZONE_SPREAD,
1775 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001776 if (!xfs_inode_zone)
1777 goto out_destroy_efi_zone;
1778
1779 xfs_ili_zone =
1780 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
1781 KM_ZONE_SPREAD, NULL);
1782 if (!xfs_ili_zone)
1783 goto out_destroy_inode_zone;
1784
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001785 return 0;
1786
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001787 out_destroy_inode_zone:
1788 kmem_zone_destroy(xfs_inode_zone);
1789 out_destroy_efi_zone:
1790 kmem_zone_destroy(xfs_efi_zone);
1791 out_destroy_efd_zone:
1792 kmem_zone_destroy(xfs_efd_zone);
1793 out_destroy_buf_item_zone:
1794 kmem_zone_destroy(xfs_buf_item_zone);
1795 out_destroy_trans_zone:
1796 kmem_zone_destroy(xfs_trans_zone);
1797 out_destroy_ifork_zone:
1798 kmem_zone_destroy(xfs_ifork_zone);
1799 out_destroy_dabuf_zone:
1800 kmem_zone_destroy(xfs_dabuf_zone);
1801 out_destroy_da_state_zone:
1802 kmem_zone_destroy(xfs_da_state_zone);
1803 out_destroy_btree_cur_zone:
1804 kmem_zone_destroy(xfs_btree_cur_zone);
1805 out_destroy_bmap_free_item_zone:
1806 kmem_zone_destroy(xfs_bmap_free_item_zone);
1807 out_destroy_log_ticket_zone:
1808 kmem_zone_destroy(xfs_log_ticket_zone);
1809 out_destroy_ioend_pool:
1810 mempool_destroy(xfs_ioend_pool);
1811 out_destroy_ioend_zone:
1812 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001813 out:
1814 return -ENOMEM;
1815}
1816
1817STATIC void
1818xfs_destroy_zones(void)
1819{
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001820 kmem_zone_destroy(xfs_ili_zone);
1821 kmem_zone_destroy(xfs_inode_zone);
1822 kmem_zone_destroy(xfs_efi_zone);
1823 kmem_zone_destroy(xfs_efd_zone);
1824 kmem_zone_destroy(xfs_buf_item_zone);
1825 kmem_zone_destroy(xfs_trans_zone);
1826 kmem_zone_destroy(xfs_ifork_zone);
1827 kmem_zone_destroy(xfs_dabuf_zone);
1828 kmem_zone_destroy(xfs_da_state_zone);
1829 kmem_zone_destroy(xfs_btree_cur_zone);
1830 kmem_zone_destroy(xfs_bmap_free_item_zone);
1831 kmem_zone_destroy(xfs_log_ticket_zone);
1832 mempool_destroy(xfs_ioend_pool);
1833 kmem_zone_destroy(xfs_ioend_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001834
1835}
1836
1837STATIC int __init
1838init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Christoph Hellwig65795912008-11-28 14:23:33 +11001842 printk(KERN_INFO XFS_VERSION_STRING " with "
1843 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Christoph Hellwig25e41b32008-12-03 12:20:39 +01001845 xfs_ioend_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001846 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Nathan Scott87582802006-03-14 13:18:19 +11001848 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001849 if (error)
1850 goto out;
1851
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001852 error = xfs_mru_cache_init();
1853 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001854 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001855
1856 error = xfs_filestream_init();
1857 if (error)
1858 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Nathan Scottce8e9222006-01-11 15:39:08 +11001860 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001861 if (error)
1862 goto out_filestream_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001864 error = xfs_init_procfs();
1865 if (error)
1866 goto out_buf_terminate;
1867
1868 error = xfs_sysctl_register();
1869 if (error)
1870 goto out_cleanup_procfs;
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 vfs_initquota();
Dave Chinner9bf729c2010-04-29 09:55:50 +10001873 xfs_inode_shrinker_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 error = register_filesystem(&xfs_fs_type);
1876 if (error)
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001877 goto out_sysctl_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return 0;
1879
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001880 out_sysctl_unregister:
1881 xfs_sysctl_unregister();
1882 out_cleanup_procfs:
1883 xfs_cleanup_procfs();
1884 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11001885 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001886 out_filestream_uninit:
1887 xfs_filestream_uninit();
1888 out_mru_cache_uninit:
1889 xfs_mru_cache_uninit();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001890 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11001891 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001892 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return error;
1894}
1895
1896STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001897exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 vfs_exitquota();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 unregister_filesystem(&xfs_fs_type);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001901 xfs_inode_shrinker_destroy();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001902 xfs_sysctl_unregister();
1903 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11001904 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001905 xfs_filestream_uninit();
1906 xfs_mru_cache_uninit();
Nathan Scott87582802006-03-14 13:18:19 +11001907 xfs_destroy_zones();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
1910module_init(init_xfs_fs);
1911module_exit(exit_xfs_fs);
1912
1913MODULE_AUTHOR("Silicon Graphics, Inc.");
1914MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1915MODULE_LICENSE("GPL");