blob: 57ee2bebd2484882ced1ae08b9b7b2f84cd9fb9f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir.h"
28#include "xfs_dir2.h"
29#include "xfs_dmapi.h"
30#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
33#include "xfs_ialloc_btree.h"
34#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_dir_sf.h"
36#include "xfs_dir2_sf.h"
37#include "xfs_attr_sf.h"
38#include "xfs_dinode.h"
39#include "xfs_inode.h"
40#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_btree.h"
42#include "xfs_alloc.h"
43#include "xfs_ialloc.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_error.h"
46#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_rw.h"
48#include "xfs_refcache.h"
49#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110050#include "xfs_log_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_dir2_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110052#include "xfs_extfree_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "xfs_acl.h"
54#include "xfs_attr.h"
55#include "xfs_clnt.h"
Christoph Hellwige13a73f2006-01-11 15:30:08 +110056#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
David Chinner8d280b92006-03-14 13:13:09 +110058STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60int
61xfs_init(void)
62{
63 extern kmem_zone_t *xfs_bmap_free_item_zone;
64 extern kmem_zone_t *xfs_btree_cur_zone;
65 extern kmem_zone_t *xfs_trans_zone;
66 extern kmem_zone_t *xfs_buf_item_zone;
67 extern kmem_zone_t *xfs_dabuf_zone;
68#ifdef XFS_DABUF_DEBUG
69 extern lock_t xfs_dabuf_global_lock;
70 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
71#endif
72
73 /*
74 * Initialize all of the zone allocators we use.
75 */
76 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
77 "xfs_bmap_free_item");
78 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
79 "xfs_btree_cur");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
81 xfs_da_state_zone =
82 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
83 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
Nathan Scott87582802006-03-14 13:18:19 +110084 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
85 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /*
88 * The size of the zone allocated buf log item is the maximum
89 * size possible under XFS. This wastes a little bit of memory,
90 * but it is much faster.
91 */
92 xfs_buf_item_zone =
93 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
94 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
95 NBWORD) * sizeof(int))),
96 "xfs_buf_item");
Nathan Scott87582802006-03-14 13:18:19 +110097 xfs_efd_zone =
98 kmem_zone_init((sizeof(xfs_efd_log_item_t) +
99 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
100 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 "xfs_efd_item");
Nathan Scott87582802006-03-14 13:18:19 +1100102 xfs_efi_zone =
103 kmem_zone_init((sizeof(xfs_efi_log_item_t) +
104 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
105 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 "xfs_efi_item");
Nathan Scott87582802006-03-14 13:18:19 +1100107
108 /*
109 * These zones warrant special memory allocator hints
110 */
111 xfs_inode_zone =
112 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
113 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
114 KM_ZONE_SPREAD, NULL);
115 xfs_ili_zone =
116 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
117 KM_ZONE_SPREAD, NULL);
118 xfs_chashlist_zone =
119 kmem_zone_init_flags(sizeof(xfs_chashlist_t), "xfs_chashlist",
120 KM_ZONE_SPREAD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /*
123 * Allocate global trace buffers.
124 */
125#ifdef XFS_ALLOC_TRACE
126 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
127#endif
128#ifdef XFS_BMAP_TRACE
129 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
130#endif
131#ifdef XFS_BMBT_TRACE
132 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
133#endif
134#ifdef XFS_DIR_TRACE
135 xfs_dir_trace_buf = ktrace_alloc(XFS_DIR_TRACE_SIZE, KM_SLEEP);
136#endif
137#ifdef XFS_ATTR_TRACE
138 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
139#endif
140#ifdef XFS_DIR2_TRACE
141 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
142#endif
143
144 xfs_dir_startup();
145
146#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
147 xfs_error_test_init();
148#endif /* DEBUG || INDUCE_IO_ERROR */
149
150 xfs_init_procfs();
151 xfs_sysctl_register();
152 return 0;
153}
154
155void
156xfs_cleanup(void)
157{
158 extern kmem_zone_t *xfs_bmap_free_item_zone;
159 extern kmem_zone_t *xfs_btree_cur_zone;
160 extern kmem_zone_t *xfs_inode_zone;
161 extern kmem_zone_t *xfs_trans_zone;
162 extern kmem_zone_t *xfs_da_state_zone;
163 extern kmem_zone_t *xfs_dabuf_zone;
164 extern kmem_zone_t *xfs_efd_zone;
165 extern kmem_zone_t *xfs_efi_zone;
166 extern kmem_zone_t *xfs_buf_item_zone;
167 extern kmem_zone_t *xfs_chashlist_zone;
168
169 xfs_cleanup_procfs();
170 xfs_sysctl_unregister();
171 xfs_refcache_destroy();
172 xfs_acl_zone_destroy(xfs_acl_zone);
173
174#ifdef XFS_DIR2_TRACE
175 ktrace_free(xfs_dir2_trace_buf);
176#endif
177#ifdef XFS_ATTR_TRACE
178 ktrace_free(xfs_attr_trace_buf);
179#endif
180#ifdef XFS_DIR_TRACE
181 ktrace_free(xfs_dir_trace_buf);
182#endif
183#ifdef XFS_BMBT_TRACE
184 ktrace_free(xfs_bmbt_trace_buf);
185#endif
186#ifdef XFS_BMAP_TRACE
187 ktrace_free(xfs_bmap_trace_buf);
188#endif
189#ifdef XFS_ALLOC_TRACE
190 ktrace_free(xfs_alloc_trace_buf);
191#endif
192
Nathan Scott3758dee2006-03-22 12:47:28 +1100193 kmem_zone_destroy(xfs_bmap_free_item_zone);
194 kmem_zone_destroy(xfs_btree_cur_zone);
195 kmem_zone_destroy(xfs_inode_zone);
196 kmem_zone_destroy(xfs_trans_zone);
197 kmem_zone_destroy(xfs_da_state_zone);
198 kmem_zone_destroy(xfs_dabuf_zone);
199 kmem_zone_destroy(xfs_buf_item_zone);
200 kmem_zone_destroy(xfs_efd_zone);
201 kmem_zone_destroy(xfs_efi_zone);
202 kmem_zone_destroy(xfs_ifork_zone);
203 kmem_zone_destroy(xfs_ili_zone);
204 kmem_zone_destroy(xfs_chashlist_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/*
208 * xfs_start_flags
209 *
210 * This function fills in xfs_mount_t fields based on mount args.
211 * Note: the superblock has _not_ yet been read in.
212 */
213STATIC int
214xfs_start_flags(
Nathan Scottb83bd132006-06-09 16:48:30 +1000215 struct bhv_vfs *vfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 struct xfs_mount_args *ap,
217 struct xfs_mount *mp)
218{
219 /* Values are in BBs */
220 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
221 /*
222 * At this point the superblock has not been read
223 * in, therefore we do not know the block size.
224 * Before the mount call ends we will convert
225 * these to FSBs.
226 */
227 mp->m_dalign = ap->sunit;
228 mp->m_swidth = ap->swidth;
229 }
230
231 if (ap->logbufs != -1 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ap->logbufs != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 (ap->logbufs < XLOG_MIN_ICLOGS ||
234 ap->logbufs > XLOG_MAX_ICLOGS)) {
235 cmn_err(CE_WARN,
236 "XFS: invalid logbufs value: %d [not %d-%d]",
237 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
238 return XFS_ERROR(EINVAL);
239 }
240 mp->m_logbufs = ap->logbufs;
241 if (ap->logbufsize != -1 &&
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100242 ap->logbufsize != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 ap->logbufsize != 16 * 1024 &&
244 ap->logbufsize != 32 * 1024 &&
245 ap->logbufsize != 64 * 1024 &&
246 ap->logbufsize != 128 * 1024 &&
247 ap->logbufsize != 256 * 1024) {
248 cmn_err(CE_WARN,
249 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
250 ap->logbufsize);
251 return XFS_ERROR(EINVAL);
252 }
253 mp->m_ihsize = ap->ihashsize;
254 mp->m_logbsize = ap->logbufsize;
255 mp->m_fsname_len = strlen(ap->fsname) + 1;
256 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
257 strcpy(mp->m_fsname, ap->fsname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +1100258 if (ap->rtname[0]) {
259 mp->m_rtname = kmem_alloc(strlen(ap->rtname) + 1, KM_SLEEP);
260 strcpy(mp->m_rtname, ap->rtname);
261 }
262 if (ap->logname[0]) {
263 mp->m_logname = kmem_alloc(strlen(ap->logname) + 1, KM_SLEEP);
264 strcpy(mp->m_logname, ap->logname);
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 if (ap->flags & XFSMNT_WSYNC)
268 mp->m_flags |= XFS_MOUNT_WSYNC;
269#if XFS_BIG_INUMS
270 if (ap->flags & XFSMNT_INO64) {
271 mp->m_flags |= XFS_MOUNT_INO64;
272 mp->m_inoadd = XFS_INO64_OFFSET;
273 }
274#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (ap->flags & XFSMNT_RETERR)
276 mp->m_flags |= XFS_MOUNT_RETERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (ap->flags & XFSMNT_NOALIGN)
278 mp->m_flags |= XFS_MOUNT_NOALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (ap->flags & XFSMNT_SWALLOC)
280 mp->m_flags |= XFS_MOUNT_SWALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (ap->flags & XFSMNT_OSYNCISOSYNC)
282 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (ap->flags & XFSMNT_32BITINODES)
Nathan Scottc11e2c32005-11-02 15:11:45 +1100284 mp->m_flags |= XFS_MOUNT_32BITINODES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (ap->flags & XFSMNT_IOSIZE) {
287 if (ap->iosizelog > XFS_MAX_IO_LOG ||
288 ap->iosizelog < XFS_MIN_IO_LOG) {
289 cmn_err(CE_WARN,
290 "XFS: invalid log iosize: %d [not %d-%d]",
291 ap->iosizelog, XFS_MIN_IO_LOG,
292 XFS_MAX_IO_LOG);
293 return XFS_ERROR(EINVAL);
294 }
295
296 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
297 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
298 }
299
300 if (ap->flags & XFSMNT_IHASHSIZE)
301 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (ap->flags & XFSMNT_IDELETE)
303 mp->m_flags |= XFS_MOUNT_IDELETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (ap->flags & XFSMNT_DIRSYNC)
305 mp->m_flags |= XFS_MOUNT_DIRSYNC;
Nathan Scott13059ff2006-01-11 15:32:01 +1100306 if (ap->flags & XFSMNT_ATTR2)
307 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnere8c8b3a2005-11-02 10:33:05 +1100308
Nathan Scotte718eeb2005-11-02 15:09:22 +1100309 if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
310 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
313 * no recovery flag requires a read-only mount
314 */
315 if (ap->flags & XFSMNT_NORECOVERY) {
316 if (!(vfs->vfs_flag & VFS_RDONLY)) {
317 cmn_err(CE_WARN,
318 "XFS: tried to mount a FS read-write without recovery!");
319 return XFS_ERROR(EINVAL);
320 }
321 mp->m_flags |= XFS_MOUNT_NORECOVERY;
322 }
323
324 if (ap->flags & XFSMNT_NOUUID)
325 mp->m_flags |= XFS_MOUNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100326 if (ap->flags & XFSMNT_BARRIER)
327 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100328 else
329 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 return 0;
332}
333
334/*
335 * This function fills in xfs_mount_t fields based on mount args.
336 * Note: the superblock _has_ now been read in.
337 */
338STATIC int
339xfs_finish_flags(
Nathan Scottb83bd132006-06-09 16:48:30 +1000340 struct bhv_vfs *vfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct xfs_mount_args *ap,
342 struct xfs_mount *mp)
343{
344 int ronly = (vfs->vfs_flag & VFS_RDONLY);
345
346 /* Fail a mount where the logbuf is smaller then the log stripe */
347 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
Nathan Scottc2cd2552006-01-11 15:35:32 +1100348 if ((ap->logbufsize <= 0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
350 mp->m_logbsize = mp->m_sb.sb_logsunit;
Nathan Scottc2cd2552006-01-11 15:35:32 +1100351 } else if (ap->logbufsize > 0 &&
352 ap->logbufsize < mp->m_sb.sb_logsunit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 cmn_err(CE_WARN,
354 "XFS: logbuf size must be greater than or equal to log stripe size");
355 return XFS_ERROR(EINVAL);
356 }
357 } else {
358 /* Fail a mount if the logbuf is larger than 32K */
359 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
360 cmn_err(CE_WARN,
361 "XFS: logbuf size for version 1 logs must be 16K or 32K");
362 return XFS_ERROR(EINVAL);
363 }
364 }
365
Nathan Scott13059ff2006-01-11 15:32:01 +1100366 if (XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
367 mp->m_flags |= XFS_MOUNT_ATTR2;
368 }
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /*
371 * prohibit r/w mounts of read-only filesystems
372 */
373 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
374 cmn_err(CE_WARN,
375 "XFS: cannot mount a read-only filesystem as read-write");
376 return XFS_ERROR(EROFS);
377 }
378
379 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * check for shared mount.
381 */
382 if (ap->flags & XFSMNT_SHARED) {
383 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
384 return XFS_ERROR(EINVAL);
385
386 /*
387 * For IRIX 6.5, shared mounts must have the shared
388 * version bit set, have the persistent readonly
389 * field set, must be version 0 and can only be mounted
390 * read-only.
391 */
392 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
393 (mp->m_sb.sb_shared_vn != 0))
394 return XFS_ERROR(EINVAL);
395
396 mp->m_flags |= XFS_MOUNT_SHARED;
397
398 /*
399 * Shared XFS V0 can't deal with DMI. Return EINVAL.
400 */
401 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
402 return XFS_ERROR(EINVAL);
403 }
404
405 return 0;
406}
407
408/*
409 * xfs_mount
410 *
411 * The file system configurations are:
412 * (1) device (partition) with data and internal log
413 * (2) logical volume with data and log subvolumes.
414 * (3) logical volume with data, log, and realtime subvolumes.
415 *
416 * We only have to handle opening the log and realtime volumes here if
417 * they are present. The data subvolume has already been opened by
418 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
419 */
420STATIC int
421xfs_mount(
422 struct bhv_desc *bhvp,
423 struct xfs_mount_args *args,
424 cred_t *credp)
425{
Nathan Scottb83bd132006-06-09 16:48:30 +1000426 struct bhv_vfs *vfsp = bhvtovfs(bhvp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct bhv_desc *p;
428 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
429 struct block_device *ddev, *logdev, *rtdev;
430 int flags = 0, error;
431
432 ddev = vfsp->vfs_super->s_bdev;
433 logdev = rtdev = NULL;
434
435 /*
436 * Setup xfs_mount function vectors from available behaviors
437 */
438 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
439 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
440 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
441 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
442 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
443 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
444
Nathan Scott764d1f82006-03-31 13:04:17 +1000445 if (args->flags & XFSMNT_QUIET)
446 flags |= XFS_MFSI_QUIET;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /*
449 * Open real time and log devices - order is important.
450 */
451 if (args->logname[0]) {
452 error = xfs_blkdev_get(mp, args->logname, &logdev);
453 if (error)
454 return error;
455 }
456 if (args->rtname[0]) {
457 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
458 if (error) {
459 xfs_blkdev_put(logdev);
460 return error;
461 }
462
463 if (rtdev == ddev || rtdev == logdev) {
464 cmn_err(CE_WARN,
465 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
466 xfs_blkdev_put(logdev);
467 xfs_blkdev_put(rtdev);
468 return EINVAL;
469 }
470 }
471
472 /*
473 * Setup xfs_mount buffer target pointers
474 */
475 error = ENOMEM;
476 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
477 if (!mp->m_ddev_targp) {
478 xfs_blkdev_put(logdev);
479 xfs_blkdev_put(rtdev);
480 return error;
481 }
482 if (rtdev) {
483 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
484 if (!mp->m_rtdev_targp)
485 goto error0;
486 }
487 mp->m_logdev_targp = (logdev && logdev != ddev) ?
488 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
489 if (!mp->m_logdev_targp)
490 goto error0;
491
492 /*
493 * Setup flags based on mount(2) options and then the superblock
494 */
495 error = xfs_start_flags(vfsp, args, mp);
496 if (error)
497 goto error1;
Nathan Scott764d1f82006-03-31 13:04:17 +1000498 error = xfs_readsb(mp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (error)
500 goto error1;
501 error = xfs_finish_flags(vfsp, args, mp);
502 if (error)
503 goto error2;
504
505 /*
506 * Setup xfs_mount buffer target pointers based on superblock
507 */
508 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
509 mp->m_sb.sb_sectsize);
510 if (!error && logdev && logdev != ddev) {
511 unsigned int log_sector_size = BBSIZE;
512
513 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
514 log_sector_size = mp->m_sb.sb_logsectsize;
515 error = xfs_setsize_buftarg(mp->m_logdev_targp,
516 mp->m_sb.sb_blocksize,
517 log_sector_size);
518 }
519 if (!error && rtdev)
520 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
521 mp->m_sb.sb_blocksize,
522 mp->m_sb.sb_sectsize);
523 if (error)
524 goto error2;
525
Nathan Scottb04ed212006-01-11 15:32:17 +1100526 if ((mp->m_flags & XFS_MOUNT_BARRIER) && !(vfsp->vfs_flag & VFS_RDONLY))
Christoph Hellwigc7d437d2006-01-11 15:28:56 +1100527 xfs_mountfs_check_barriers(mp);
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 error = XFS_IOINIT(vfsp, args, flags);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100530 if (error)
531 goto error2;
532
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100533 return 0;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535error2:
536 if (mp->m_sb_bp)
537 xfs_freesb(mp);
538error1:
539 xfs_binval(mp->m_ddev_targp);
540 if (logdev && logdev != ddev)
541 xfs_binval(mp->m_logdev_targp);
542 if (rtdev)
543 xfs_binval(mp->m_rtdev_targp);
544error0:
545 xfs_unmountfs_close(mp, credp);
546 return error;
547}
548
549STATIC int
550xfs_unmount(
551 bhv_desc_t *bdp,
552 int flags,
553 cred_t *credp)
554{
Nathan Scottb83bd132006-06-09 16:48:30 +1000555 bhv_vfs_t *vfsp = bhvtovfs(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 xfs_mount_t *mp = XFS_BHVTOM(bdp);
557 xfs_inode_t *rip;
558 vnode_t *rvp;
559 int unmount_event_wanted = 0;
560 int unmount_event_flags = 0;
561 int xfs_unmountfs_needed = 0;
562 int error;
563
564 rip = mp->m_rootip;
565 rvp = XFS_ITOV(rip);
566
567 if (vfsp->vfs_flag & VFS_DMI) {
568 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
569 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
570 NULL, NULL, 0, 0,
571 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
572 0:DM_FLAGS_UNWANTED);
573 if (error)
574 return XFS_ERROR(error);
575 unmount_event_wanted = 1;
576 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
577 0 : DM_FLAGS_UNWANTED;
578 }
579
580 /*
581 * First blow any referenced inode from this file system
582 * out of the reference cache, and delete the timer.
583 */
584 xfs_refcache_purge_mp(mp);
585
586 XFS_bflush(mp->m_ddev_targp);
587 error = xfs_unmount_flush(mp, 0);
588 if (error)
589 goto out;
590
591 ASSERT(vn_count(rvp) == 1);
592
593 /*
594 * Drop the reference count
595 */
596 VN_RELE(rvp);
597
598 /*
599 * If we're forcing a shutdown, typically because of a media error,
600 * we want to make sure we invalidate dirty pages that belong to
601 * referenced vnodes as well.
602 */
603 if (XFS_FORCED_SHUTDOWN(mp)) {
604 error = xfs_sync(&mp->m_bhv,
605 (SYNC_WAIT | SYNC_CLOSE), credp);
606 ASSERT(error != EFSCORRUPTED);
607 }
608 xfs_unmountfs_needed = 1;
609
610out:
611 /* Send DMAPI event, if required.
612 * Then do xfs_unmountfs() if needed.
613 * Then return error (or zero).
614 */
615 if (unmount_event_wanted) {
616 /* Note: mp structure must still exist for
617 * XFS_SEND_UNMOUNT() call.
618 */
619 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
620 DM_RIGHT_NULL, 0, error, unmount_event_flags);
621 }
622 if (xfs_unmountfs_needed) {
623 /*
624 * Call common unmount function to flush to disk
625 * and free the super block buffer & mount structures.
626 */
627 xfs_unmountfs(mp, credp);
628 }
629
630 return XFS_ERROR(error);
631}
632
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000633STATIC int
634xfs_quiesce_fs(
635 xfs_mount_t *mp)
636{
637 int count = 0, pincount;
Nathan Scott3758dee2006-03-22 12:47:28 +1100638
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000639 xfs_refcache_purge_mp(mp);
640 xfs_flush_buftarg(mp->m_ddev_targp, 0);
641 xfs_finish_reclaim_all(mp, 0);
642
643 /* This loop must run at least twice.
644 * The first instance of the loop will flush
645 * most meta data but that will generate more
646 * meta data (typically directory updates).
647 * Which then must be flushed and logged before
648 * we can write the unmount record.
Nathan Scott3758dee2006-03-22 12:47:28 +1100649 */
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000650 do {
651 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, 0, NULL);
652 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
653 if (!pincount) {
654 delay(50);
655 count++;
656 }
657 } while (count < 2);
658
659 return 0;
660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662STATIC int
663xfs_mntupdate(
664 bhv_desc_t *bdp,
665 int *flags,
666 struct xfs_mount_args *args)
667{
Nathan Scottb83bd132006-06-09 16:48:30 +1000668 bhv_vfs_t *vfsp = bhvtovfs(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Nathan Scottd08d3892006-05-08 19:51:28 +1000671 if (!(*flags & MS_RDONLY)) { /* rw/ro -> rw */
672 if (vfsp->vfs_flag & VFS_RDONLY)
673 vfsp->vfs_flag &= ~VFS_RDONLY;
674 if (args->flags & XFSMNT_BARRIER) {
675 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100676 xfs_mountfs_check_barriers(mp);
Nathan Scottd08d3892006-05-08 19:51:28 +1000677 } else {
678 mp->m_flags &= ~XFS_MOUNT_BARRIER;
679 }
680 } else if (!(vfsp->vfs_flag & VFS_RDONLY)) { /* rw -> ro */
Nathan Scottb83bd132006-06-09 16:48:30 +1000681 bhv_vfs_sync(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000682 xfs_quiesce_fs(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 xfs_log_unmount_write(mp);
684 xfs_unmountfs_writesb(mp);
685 vfsp->vfs_flag |= VFS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688}
689
690/*
691 * xfs_unmount_flush implements a set of flush operation on special
692 * inodes, which are needed as a separate set of operations so that
693 * they can be called as part of relocation process.
694 */
695int
696xfs_unmount_flush(
697 xfs_mount_t *mp, /* Mount structure we are getting
698 rid of. */
699 int relocation) /* Called from vfs relocation. */
700{
701 xfs_inode_t *rip = mp->m_rootip;
702 xfs_inode_t *rbmip;
703 xfs_inode_t *rsumip = NULL;
704 vnode_t *rvp = XFS_ITOV(rip);
705 int error;
706
707 xfs_ilock(rip, XFS_ILOCK_EXCL);
708 xfs_iflock(rip);
709
710 /*
711 * Flush out the real time inodes.
712 */
713 if ((rbmip = mp->m_rbmip) != NULL) {
714 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
715 xfs_iflock(rbmip);
716 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
717 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
718
719 if (error == EFSCORRUPTED)
720 goto fscorrupt_out;
721
722 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
723
724 rsumip = mp->m_rsumip;
725 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
726 xfs_iflock(rsumip);
727 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
728 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
729
730 if (error == EFSCORRUPTED)
731 goto fscorrupt_out;
732
733 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
734 }
735
736 /*
737 * Synchronously flush root inode to disk
738 */
739 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
740 if (error == EFSCORRUPTED)
741 goto fscorrupt_out2;
742
743 if (vn_count(rvp) != 1 && !relocation) {
744 xfs_iunlock(rip, XFS_ILOCK_EXCL);
745 return XFS_ERROR(EBUSY);
746 }
747
748 /*
749 * Release dquot that rootinode, rbmino and rsumino might be holding,
750 * flush and purge the quota inodes.
751 */
752 error = XFS_QM_UNMOUNT(mp);
753 if (error == EFSCORRUPTED)
754 goto fscorrupt_out2;
755
756 if (rbmip) {
757 VN_RELE(XFS_ITOV(rbmip));
758 VN_RELE(XFS_ITOV(rsumip));
759 }
760
761 xfs_iunlock(rip, XFS_ILOCK_EXCL);
762 return 0;
763
764fscorrupt_out:
765 xfs_ifunlock(rip);
766
767fscorrupt_out2:
768 xfs_iunlock(rip, XFS_ILOCK_EXCL);
769
770 return XFS_ERROR(EFSCORRUPTED);
771}
772
773/*
774 * xfs_root extracts the root vnode from a vfs.
775 *
776 * vfsp -- the vfs struct for the desired file system
777 * vpp -- address of the caller's vnode pointer which should be
778 * set to the desired fs root vnode
779 */
780STATIC int
781xfs_root(
782 bhv_desc_t *bdp,
783 vnode_t **vpp)
784{
785 vnode_t *vp;
786
787 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
788 VN_HOLD(vp);
789 *vpp = vp;
790 return 0;
791}
792
793/*
794 * xfs_statvfs
795 *
796 * Fill in the statvfs structure for the given file system. We use
797 * the superblock lock in the mount structure to ensure a consistent
798 * snapshot of the counters returned.
799 */
800STATIC int
801xfs_statvfs(
802 bhv_desc_t *bdp,
803 xfs_statfs_t *statp,
804 vnode_t *vp)
805{
806 __uint64_t fakeinos;
807 xfs_extlen_t lsize;
808 xfs_mount_t *mp;
809 xfs_sb_t *sbp;
810 unsigned long s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 mp = XFS_BHVTOM(bdp);
813 sbp = &(mp->m_sb);
814
815 statp->f_type = XFS_SB_MAGIC;
816
David Chinner8d280b92006-03-14 13:13:09 +1100817 xfs_icsb_sync_counters_lazy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 s = XFS_SB_LOCK(mp);
819 statp->f_bsize = sbp->sb_blocksize;
820 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
821 statp->f_blocks = sbp->sb_dblocks - lsize;
822 statp->f_bfree = statp->f_bavail = sbp->sb_fdblocks;
823 fakeinos = statp->f_bfree << sbp->sb_inopblog;
824#if XFS_BIG_INUMS
825 fakeinos += mp->m_inoadd;
826#endif
827 statp->f_files =
828 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
829 if (mp->m_maxicount)
830#if XFS_BIG_INUMS
831 if (!mp->m_inoadd)
832#endif
833 statp->f_files = min_t(typeof(statp->f_files),
834 statp->f_files,
835 mp->m_maxicount);
836 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
837 XFS_SB_UNLOCK(mp, s);
838
Nathan Scottcde410a2005-09-05 11:47:01 +1000839 xfs_statvfs_fsid(statp, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 statp->f_namelen = MAXNAMELEN - 1;
841
842 return 0;
843}
844
845
846/*
847 * xfs_sync flushes any pending I/O to file system vfsp.
848 *
849 * This routine is called by vfs_sync() to make sure that things make it
850 * out to disk eventually, on sync() system calls to flush out everything,
851 * and when the file system is unmounted. For the vfs_sync() case, all
852 * we really need to do is sync out the log to make all of our meta-data
853 * updates permanent (except for timestamps). For calls from pflushd(),
854 * dirty pages are kept moving by calling pdflush() on the inodes
855 * containing them. We also flush the inodes that we can lock without
856 * sleeping and the superblock if we can lock it without sleeping from
857 * vfs_sync() so that items at the tail of the log are always moving out.
858 *
859 * Flags:
860 * SYNC_BDFLUSH - We're being called from vfs_sync() so we don't want
861 * to sleep if we can help it. All we really need
862 * to do is ensure that the log is synced at least
863 * periodically. We also push the inodes and
864 * superblock if we can lock them without sleeping
865 * and they are not pinned.
866 * SYNC_ATTR - We need to flush the inodes. If SYNC_BDFLUSH is not
867 * set, then we really want to lock each inode and flush
868 * it.
869 * SYNC_WAIT - All the flushes that take place in this call should
870 * be synchronous.
871 * SYNC_DELWRI - This tells us to push dirty pages associated with
872 * inodes. SYNC_WAIT and SYNC_BDFLUSH are used to
873 * determine if they should be flushed sync, async, or
874 * delwri.
875 * SYNC_CLOSE - This flag is passed when the system is being
Nathan Scottc41564b2006-03-29 08:55:14 +1000876 * unmounted. We should sync and invalidate everything.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 * SYNC_FSDATA - This indicates that the caller would like to make
878 * sure the superblock is safe on disk. We can ensure
Nathan Scottc41564b2006-03-29 08:55:14 +1000879 * this by simply making sure the log gets flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * if SYNC_BDFLUSH is set, and by actually writing it
881 * out otherwise.
882 *
883 */
884/*ARGSUSED*/
885STATIC int
886xfs_sync(
887 bhv_desc_t *bdp,
888 int flags,
889 cred_t *credp)
890{
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000891 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000893 if (unlikely(flags == SYNC_QUIESCE))
894 return xfs_quiesce_fs(mp);
895 else
896 return xfs_syncsub(mp, flags, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899/*
900 * xfs sync routine for internal use
901 *
Nathan Scottb83bd132006-06-09 16:48:30 +1000902 * This routine supports all of the flags defined for the generic vfs_sync
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * interface as explained above under xfs_sync. In the interests of not
Nathan Scottc41564b2006-03-29 08:55:14 +1000904 * changing interfaces within the 6.5 family, additional internally-
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * required functions are specified within a separate xflags parameter,
906 * only available by calling this routine.
907 *
908 */
Nathan Scottee348072005-11-02 10:32:38 +1100909int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910xfs_sync_inodes(
911 xfs_mount_t *mp,
912 int flags,
913 int xflags,
914 int *bypassed)
915{
916 xfs_inode_t *ip = NULL;
917 xfs_inode_t *ip_next;
918 xfs_buf_t *bp;
919 vnode_t *vp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int error;
921 int last_error;
922 uint64_t fflag;
923 uint lock_flags;
924 uint base_lock_flags;
925 boolean_t mount_locked;
926 boolean_t vnode_refed;
927 int preempt;
928 xfs_dinode_t *dip;
929 xfs_iptr_t *ipointer;
930#ifdef DEBUG
931 boolean_t ipointer_in = B_FALSE;
932
933#define IPOINTER_SET ipointer_in = B_TRUE
934#define IPOINTER_CLR ipointer_in = B_FALSE
935#else
936#define IPOINTER_SET
937#define IPOINTER_CLR
938#endif
939
940
941/* Insert a marker record into the inode list after inode ip. The list
942 * must be locked when this is called. After the call the list will no
943 * longer be locked.
944 */
945#define IPOINTER_INSERT(ip, mp) { \
946 ASSERT(ipointer_in == B_FALSE); \
947 ipointer->ip_mnext = ip->i_mnext; \
948 ipointer->ip_mprev = ip; \
949 ip->i_mnext = (xfs_inode_t *)ipointer; \
950 ipointer->ip_mnext->i_mprev = (xfs_inode_t *)ipointer; \
951 preempt = 0; \
952 XFS_MOUNT_IUNLOCK(mp); \
953 mount_locked = B_FALSE; \
954 IPOINTER_SET; \
955 }
956
957/* Remove the marker from the inode list. If the marker was the only item
958 * in the list then there are no remaining inodes and we should zero out
959 * the whole list. If we are the current head of the list then move the head
960 * past us.
961 */
962#define IPOINTER_REMOVE(ip, mp) { \
963 ASSERT(ipointer_in == B_TRUE); \
964 if (ipointer->ip_mnext != (xfs_inode_t *)ipointer) { \
965 ip = ipointer->ip_mnext; \
966 ip->i_mprev = ipointer->ip_mprev; \
967 ipointer->ip_mprev->i_mnext = ip; \
968 if (mp->m_inodes == (xfs_inode_t *)ipointer) { \
969 mp->m_inodes = ip; \
970 } \
971 } else { \
972 ASSERT(mp->m_inodes == (xfs_inode_t *)ipointer); \
973 mp->m_inodes = NULL; \
974 ip = NULL; \
975 } \
976 IPOINTER_CLR; \
977 }
978
979#define XFS_PREEMPT_MASK 0x7f
980
981 if (bypassed)
982 *bypassed = 0;
983 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
984 return 0;
985 error = 0;
986 last_error = 0;
987 preempt = 0;
988
989 /* Allocate a reference marker */
990 ipointer = (xfs_iptr_t *)kmem_zalloc(sizeof(xfs_iptr_t), KM_SLEEP);
991
992 fflag = XFS_B_ASYNC; /* default is don't wait */
Nathan Scottee348072005-11-02 10:32:38 +1100993 if (flags & (SYNC_BDFLUSH | SYNC_DELWRI))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 fflag = XFS_B_DELWRI;
995 if (flags & SYNC_WAIT)
996 fflag = 0; /* synchronous overrides all */
997
998 base_lock_flags = XFS_ILOCK_SHARED;
999 if (flags & (SYNC_DELWRI | SYNC_CLOSE)) {
1000 /*
1001 * We need the I/O lock if we're going to call any of
1002 * the flush/inval routines.
1003 */
1004 base_lock_flags |= XFS_IOLOCK_SHARED;
1005 }
1006
1007 XFS_MOUNT_ILOCK(mp);
1008
1009 ip = mp->m_inodes;
1010
1011 mount_locked = B_TRUE;
1012 vnode_refed = B_FALSE;
1013
1014 IPOINTER_CLR;
1015
1016 do {
1017 ASSERT(ipointer_in == B_FALSE);
1018 ASSERT(vnode_refed == B_FALSE);
1019
1020 lock_flags = base_lock_flags;
1021
1022 /*
1023 * There were no inodes in the list, just break out
1024 * of the loop.
1025 */
1026 if (ip == NULL) {
1027 break;
1028 }
1029
1030 /*
1031 * We found another sync thread marker - skip it
1032 */
1033 if (ip->i_mount == NULL) {
1034 ip = ip->i_mnext;
1035 continue;
1036 }
1037
1038 vp = XFS_ITOV_NULL(ip);
1039
1040 /*
1041 * If the vnode is gone then this is being torn down,
1042 * call reclaim if it is flushed, else let regular flush
1043 * code deal with it later in the loop.
1044 */
1045
1046 if (vp == NULL) {
1047 /* Skip ones already in reclaim */
1048 if (ip->i_flags & XFS_IRECLAIM) {
1049 ip = ip->i_mnext;
1050 continue;
1051 }
1052 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0) {
1053 ip = ip->i_mnext;
1054 } else if ((xfs_ipincount(ip) == 0) &&
1055 xfs_iflock_nowait(ip)) {
1056 IPOINTER_INSERT(ip, mp);
1057
1058 xfs_finish_reclaim(ip, 1,
1059 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
1060
1061 XFS_MOUNT_ILOCK(mp);
1062 mount_locked = B_TRUE;
1063 IPOINTER_REMOVE(ip, mp);
1064 } else {
1065 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1066 ip = ip->i_mnext;
1067 }
1068 continue;
1069 }
1070
1071 if (VN_BAD(vp)) {
1072 ip = ip->i_mnext;
1073 continue;
1074 }
1075
1076 if (XFS_FORCED_SHUTDOWN(mp) && !(flags & SYNC_CLOSE)) {
1077 XFS_MOUNT_IUNLOCK(mp);
1078 kmem_free(ipointer, sizeof(xfs_iptr_t));
1079 return 0;
1080 }
1081
1082 /*
1083 * If this is just vfs_sync() or pflushd() calling
1084 * then we can skip inodes for which it looks like
1085 * there is nothing to do. Since we don't have the
Nathan Scottc41564b2006-03-29 08:55:14 +10001086 * inode locked this is racy, but these are periodic
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * calls so it doesn't matter. For the others we want
1088 * to know for sure, so we at least try to lock them.
1089 */
1090 if (flags & SYNC_BDFLUSH) {
1091 if (((ip->i_itemp == NULL) ||
1092 !(ip->i_itemp->ili_format.ilf_fields &
1093 XFS_ILOG_ALL)) &&
1094 (ip->i_update_core == 0)) {
1095 ip = ip->i_mnext;
1096 continue;
1097 }
1098 }
1099
1100 /*
1101 * Try to lock without sleeping. We're out of order with
1102 * the inode list lock here, so if we fail we need to drop
1103 * the mount lock and try again. If we're called from
1104 * bdflush() here, then don't bother.
1105 *
1106 * The inode lock here actually coordinates with the
1107 * almost spurious inode lock in xfs_ireclaim() to prevent
1108 * the vnode we handle here without a reference from
1109 * being freed while we reference it. If we lock the inode
1110 * while it's on the mount list here, then the spurious inode
1111 * lock in xfs_ireclaim() after the inode is pulled from
1112 * the mount list will sleep until we release it here.
1113 * This keeps the vnode from being freed while we reference
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001114 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 */
1116 if (xfs_ilock_nowait(ip, lock_flags) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if ((flags & SYNC_BDFLUSH) || (vp == NULL)) {
1118 ip = ip->i_mnext;
1119 continue;
1120 }
1121
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001122 vp = vn_grab(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (vp == NULL) {
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001124 ip = ip->i_mnext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 continue;
1126 }
1127
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001128 IPOINTER_INSERT(ip, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 xfs_ilock(ip, lock_flags);
1130
1131 ASSERT(vp == XFS_ITOV(ip));
1132 ASSERT(ip->i_mount == mp);
1133
1134 vnode_refed = B_TRUE;
1135 }
1136
1137 /* From here on in the loop we may have a marker record
1138 * in the inode list.
1139 */
1140
1141 if ((flags & SYNC_CLOSE) && (vp != NULL)) {
1142 /*
1143 * This is the shutdown case. We just need to
1144 * flush and invalidate all the pages associated
1145 * with the inode. Drop the inode lock since
1146 * we can't hold it across calls to the buffer
1147 * cache.
1148 *
1149 * We don't set the VREMAPPING bit in the vnode
1150 * here, because we don't hold the vnode lock
1151 * exclusively. It doesn't really matter, though,
1152 * because we only come here when we're shutting
1153 * down anyway.
1154 */
1155 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1156
1157 if (XFS_FORCED_SHUTDOWN(mp)) {
1158 VOP_TOSS_PAGES(vp, 0, -1, FI_REMAPF);
1159 } else {
1160 VOP_FLUSHINVAL_PAGES(vp, 0, -1, FI_REMAPF);
1161 }
1162
1163 xfs_ilock(ip, XFS_ILOCK_SHARED);
1164
1165 } else if ((flags & SYNC_DELWRI) && (vp != NULL)) {
1166 if (VN_DIRTY(vp)) {
1167 /* We need to have dropped the lock here,
1168 * so insert a marker if we have not already
1169 * done so.
1170 */
1171 if (mount_locked) {
1172 IPOINTER_INSERT(ip, mp);
1173 }
1174
1175 /*
1176 * Drop the inode lock since we can't hold it
1177 * across calls to the buffer cache.
1178 */
1179 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1180 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1,
1181 fflag, FI_NONE, error);
1182 xfs_ilock(ip, XFS_ILOCK_SHARED);
1183 }
1184
1185 }
1186
1187 if (flags & SYNC_BDFLUSH) {
1188 if ((flags & SYNC_ATTR) &&
1189 ((ip->i_update_core) ||
1190 ((ip->i_itemp != NULL) &&
1191 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1192
1193 /* Insert marker and drop lock if not already
1194 * done.
1195 */
1196 if (mount_locked) {
1197 IPOINTER_INSERT(ip, mp);
1198 }
1199
1200 /*
1201 * We don't want the periodic flushing of the
1202 * inodes by vfs_sync() to interfere with
1203 * I/O to the file, especially read I/O
1204 * where it is only the access time stamp
1205 * that is being flushed out. To prevent
1206 * long periods where we have both inode
1207 * locks held shared here while reading the
1208 * inode's buffer in from disk, we drop the
1209 * inode lock while reading in the inode
1210 * buffer. We have to release the buffer
1211 * and reacquire the inode lock so that they
1212 * are acquired in the proper order (inode
1213 * locks first). The buffer will go at the
1214 * end of the lru chain, though, so we can
1215 * expect it to still be there when we go
1216 * for it again in xfs_iflush().
1217 */
1218 if ((xfs_ipincount(ip) == 0) &&
1219 xfs_iflock_nowait(ip)) {
1220
1221 xfs_ifunlock(ip);
1222 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1223
1224 error = xfs_itobp(mp, NULL, ip,
Nathan Scottb12dd342006-03-17 17:26:04 +11001225 &dip, &bp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!error) {
1227 xfs_buf_relse(bp);
1228 } else {
1229 /* Bailing out, remove the
1230 * marker and free it.
1231 */
1232 XFS_MOUNT_ILOCK(mp);
1233
1234 IPOINTER_REMOVE(ip, mp);
1235
1236 XFS_MOUNT_IUNLOCK(mp);
1237
1238 ASSERT(!(lock_flags &
1239 XFS_IOLOCK_SHARED));
1240
1241 kmem_free(ipointer,
1242 sizeof(xfs_iptr_t));
1243 return (0);
1244 }
1245
1246 /*
1247 * Since we dropped the inode lock,
1248 * the inode may have been reclaimed.
1249 * Therefore, we reacquire the mount
1250 * lock and check to see if we were the
1251 * inode reclaimed. If this happened
1252 * then the ipointer marker will no
1253 * longer point back at us. In this
1254 * case, move ip along to the inode
1255 * after the marker, remove the marker
1256 * and continue.
1257 */
1258 XFS_MOUNT_ILOCK(mp);
1259 mount_locked = B_TRUE;
1260
1261 if (ip != ipointer->ip_mprev) {
1262 IPOINTER_REMOVE(ip, mp);
1263
1264 ASSERT(!vnode_refed);
1265 ASSERT(!(lock_flags &
1266 XFS_IOLOCK_SHARED));
1267 continue;
1268 }
1269
1270 ASSERT(ip->i_mount == mp);
1271
1272 if (xfs_ilock_nowait(ip,
1273 XFS_ILOCK_SHARED) == 0) {
1274 ASSERT(ip->i_mount == mp);
1275 /*
1276 * We failed to reacquire
1277 * the inode lock without
1278 * sleeping, so just skip
1279 * the inode for now. We
1280 * clear the ILOCK bit from
1281 * the lock_flags so that we
1282 * won't try to drop a lock
1283 * we don't hold below.
1284 */
1285 lock_flags &= ~XFS_ILOCK_SHARED;
1286 IPOINTER_REMOVE(ip_next, mp);
1287 } else if ((xfs_ipincount(ip) == 0) &&
1288 xfs_iflock_nowait(ip)) {
1289 ASSERT(ip->i_mount == mp);
1290 /*
1291 * Since this is vfs_sync()
1292 * calling we only flush the
1293 * inode out if we can lock
1294 * it without sleeping and
1295 * it is not pinned. Drop
1296 * the mount lock here so
1297 * that we don't hold it for
1298 * too long. We already have
1299 * a marker in the list here.
1300 */
1301 XFS_MOUNT_IUNLOCK(mp);
1302 mount_locked = B_FALSE;
1303 error = xfs_iflush(ip,
1304 XFS_IFLUSH_DELWRI);
1305 } else {
1306 ASSERT(ip->i_mount == mp);
1307 IPOINTER_REMOVE(ip_next, mp);
1308 }
1309 }
1310
1311 }
1312
1313 } else {
1314 if ((flags & SYNC_ATTR) &&
1315 ((ip->i_update_core) ||
1316 ((ip->i_itemp != NULL) &&
1317 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1318 if (mount_locked) {
1319 IPOINTER_INSERT(ip, mp);
1320 }
1321
1322 if (flags & SYNC_WAIT) {
1323 xfs_iflock(ip);
1324 error = xfs_iflush(ip,
1325 XFS_IFLUSH_SYNC);
1326 } else {
1327 /*
1328 * If we can't acquire the flush
1329 * lock, then the inode is already
1330 * being flushed so don't bother
1331 * waiting. If we can lock it then
1332 * do a delwri flush so we can
1333 * combine multiple inode flushes
1334 * in each disk write.
1335 */
1336 if (xfs_iflock_nowait(ip)) {
1337 error = xfs_iflush(ip,
1338 XFS_IFLUSH_DELWRI);
1339 }
1340 else if (bypassed)
1341 (*bypassed)++;
1342 }
1343 }
1344 }
1345
1346 if (lock_flags != 0) {
1347 xfs_iunlock(ip, lock_flags);
1348 }
1349
1350 if (vnode_refed) {
1351 /*
1352 * If we had to take a reference on the vnode
1353 * above, then wait until after we've unlocked
1354 * the inode to release the reference. This is
1355 * because we can be already holding the inode
1356 * lock when VN_RELE() calls xfs_inactive().
1357 *
1358 * Make sure to drop the mount lock before calling
1359 * VN_RELE() so that we don't trip over ourselves if
1360 * we have to go for the mount lock again in the
1361 * inactive code.
1362 */
1363 if (mount_locked) {
1364 IPOINTER_INSERT(ip, mp);
1365 }
1366
1367 VN_RELE(vp);
1368
1369 vnode_refed = B_FALSE;
1370 }
1371
1372 if (error) {
1373 last_error = error;
1374 }
1375
1376 /*
1377 * bail out if the filesystem is corrupted.
1378 */
1379 if (error == EFSCORRUPTED) {
1380 if (!mount_locked) {
1381 XFS_MOUNT_ILOCK(mp);
1382 IPOINTER_REMOVE(ip, mp);
1383 }
1384 XFS_MOUNT_IUNLOCK(mp);
1385 ASSERT(ipointer_in == B_FALSE);
1386 kmem_free(ipointer, sizeof(xfs_iptr_t));
1387 return XFS_ERROR(error);
1388 }
1389
1390 /* Let other threads have a chance at the mount lock
1391 * if we have looped many times without dropping the
1392 * lock.
1393 */
1394 if ((++preempt & XFS_PREEMPT_MASK) == 0) {
1395 if (mount_locked) {
1396 IPOINTER_INSERT(ip, mp);
1397 }
1398 }
1399
1400 if (mount_locked == B_FALSE) {
1401 XFS_MOUNT_ILOCK(mp);
1402 mount_locked = B_TRUE;
1403 IPOINTER_REMOVE(ip, mp);
1404 continue;
1405 }
1406
1407 ASSERT(ipointer_in == B_FALSE);
1408 ip = ip->i_mnext;
1409
1410 } while (ip != mp->m_inodes);
1411
1412 XFS_MOUNT_IUNLOCK(mp);
1413
1414 ASSERT(ipointer_in == B_FALSE);
1415
1416 kmem_free(ipointer, sizeof(xfs_iptr_t));
1417 return XFS_ERROR(last_error);
1418}
1419
1420/*
1421 * xfs sync routine for internal use
1422 *
Nathan Scottb83bd132006-06-09 16:48:30 +10001423 * This routine supports all of the flags defined for the generic vfs_sync
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 * interface as explained above under xfs_sync. In the interests of not
Nathan Scottc41564b2006-03-29 08:55:14 +10001425 * changing interfaces within the 6.5 family, additional internally-
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 * required functions are specified within a separate xflags parameter,
1427 * only available by calling this routine.
1428 *
1429 */
1430int
1431xfs_syncsub(
1432 xfs_mount_t *mp,
1433 int flags,
1434 int xflags,
1435 int *bypassed)
1436{
1437 int error = 0;
1438 int last_error = 0;
1439 uint log_flags = XFS_LOG_FORCE;
1440 xfs_buf_t *bp;
1441 xfs_buf_log_item_t *bip;
1442
1443 /*
1444 * Sync out the log. This ensures that the log is periodically
1445 * flushed even if there is not enough activity to fill it up.
1446 */
1447 if (flags & SYNC_WAIT)
1448 log_flags |= XFS_LOG_SYNC;
1449
1450 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1451
1452 if (flags & (SYNC_ATTR|SYNC_DELWRI)) {
1453 if (flags & SYNC_BDFLUSH)
1454 xfs_finish_reclaim_all(mp, 1);
1455 else
1456 error = xfs_sync_inodes(mp, flags, xflags, bypassed);
1457 }
1458
1459 /*
1460 * Flushing out dirty data above probably generated more
1461 * log activity, so if this isn't vfs_sync() then flush
1462 * the log again.
1463 */
1464 if (flags & SYNC_DELWRI) {
1465 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1466 }
1467
1468 if (flags & SYNC_FSDATA) {
1469 /*
1470 * If this is vfs_sync() then only sync the superblock
1471 * if we can lock it without sleeping and it is not pinned.
1472 */
1473 if (flags & SYNC_BDFLUSH) {
1474 bp = xfs_getsb(mp, XFS_BUF_TRYLOCK);
1475 if (bp != NULL) {
1476 bip = XFS_BUF_FSPRIVATE(bp,xfs_buf_log_item_t*);
1477 if ((bip != NULL) &&
1478 xfs_buf_item_dirty(bip)) {
1479 if (!(XFS_BUF_ISPINNED(bp))) {
1480 XFS_BUF_ASYNC(bp);
1481 error = xfs_bwrite(mp, bp);
1482 } else {
1483 xfs_buf_relse(bp);
1484 }
1485 } else {
1486 xfs_buf_relse(bp);
1487 }
1488 }
1489 } else {
1490 bp = xfs_getsb(mp, 0);
1491 /*
1492 * If the buffer is pinned then push on the log so
1493 * we won't get stuck waiting in the write for
1494 * someone, maybe ourselves, to flush the log.
1495 * Even though we just pushed the log above, we
1496 * did not have the superblock buffer locked at
1497 * that point so it can become pinned in between
1498 * there and here.
1499 */
1500 if (XFS_BUF_ISPINNED(bp))
1501 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
1502 if (flags & SYNC_WAIT)
1503 XFS_BUF_UNASYNC(bp);
1504 else
1505 XFS_BUF_ASYNC(bp);
1506 error = xfs_bwrite(mp, bp);
1507 }
1508 if (error) {
1509 last_error = error;
1510 }
1511 }
1512
1513 /*
1514 * If this is the periodic sync, then kick some entries out of
1515 * the reference cache. This ensures that idle entries are
1516 * eventually kicked out of the cache.
1517 */
1518 if (flags & SYNC_REFCACHE) {
Nathan Scottcde410a2005-09-05 11:47:01 +10001519 if (flags & SYNC_WAIT)
1520 xfs_refcache_purge_mp(mp);
1521 else
1522 xfs_refcache_purge_some(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
1525 /*
1526 * Now check to see if the log needs a "dummy" transaction.
1527 */
1528
1529 if (!(flags & SYNC_REMOUNT) && xfs_log_need_covered(mp)) {
1530 xfs_trans_t *tp;
1531 xfs_inode_t *ip;
1532
1533 /*
1534 * Put a dummy transaction in the log to tell
1535 * recovery that all others are OK.
1536 */
1537 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
1538 if ((error = xfs_trans_reserve(tp, 0,
1539 XFS_ICHANGE_LOG_RES(mp),
1540 0, 0, 0))) {
1541 xfs_trans_cancel(tp, 0);
1542 return error;
1543 }
1544
1545 ip = mp->m_rootip;
1546 xfs_ilock(ip, XFS_ILOCK_EXCL);
1547
1548 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1549 xfs_trans_ihold(tp, ip);
1550 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1551 error = xfs_trans_commit(tp, 0, NULL);
1552 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1553 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1554 }
1555
1556 /*
1557 * When shutting down, we need to insure that the AIL is pushed
1558 * to disk or the filesystem can appear corrupt from the PROM.
1559 */
1560 if ((flags & (SYNC_CLOSE|SYNC_WAIT)) == (SYNC_CLOSE|SYNC_WAIT)) {
1561 XFS_bflush(mp->m_ddev_targp);
1562 if (mp->m_rtdev_targp) {
1563 XFS_bflush(mp->m_rtdev_targp);
1564 }
1565 }
1566
1567 return XFS_ERROR(last_error);
1568}
1569
1570/*
1571 * xfs_vget - called by DMAPI and NFSD to get vnode from file handle
1572 */
1573STATIC int
1574xfs_vget(
1575 bhv_desc_t *bdp,
1576 vnode_t **vpp,
1577 fid_t *fidp)
1578{
1579 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1580 xfs_fid_t *xfid = (struct xfs_fid *)fidp;
1581 xfs_inode_t *ip;
1582 int error;
1583 xfs_ino_t ino;
1584 unsigned int igen;
1585
1586 /*
1587 * Invalid. Since handles can be created in user space and passed in
1588 * via gethandle(), this is not cause for a panic.
1589 */
1590 if (xfid->xfs_fid_len != sizeof(*xfid) - sizeof(xfid->xfs_fid_len))
1591 return XFS_ERROR(EINVAL);
1592
1593 ino = xfid->xfs_fid_ino;
1594 igen = xfid->xfs_fid_gen;
1595
1596 /*
1597 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1598 */
1599 if (ino == 0)
1600 return XFS_ERROR(ESTALE);
1601
1602 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
1603 if (error) {
1604 *vpp = NULL;
1605 return error;
1606 }
1607
1608 if (ip == NULL) {
1609 *vpp = NULL;
1610 return XFS_ERROR(EIO);
1611 }
1612
1613 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
1614 xfs_iput_new(ip, XFS_ILOCK_SHARED);
1615 *vpp = NULL;
1616 return XFS_ERROR(ENOENT);
1617 }
1618
1619 *vpp = XFS_ITOV(ip);
1620 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1621 return 0;
1622}
1623
1624
1625#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
1626#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
1627#define MNTOPT_LOGDEV "logdev" /* log device */
1628#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
1629#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
1630#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
1631#define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
1632#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
1633#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
1634#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
1635#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
1636#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
1637#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
Nathan Scotte69a3332005-09-02 16:42:26 +10001638#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
1639#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
1640#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
1641#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
Nathan Scott1f443ad2005-05-05 13:28:29 -07001642#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643#define MNTOPT_IHASHSIZE "ihashsize" /* size of inode hash table */
1644#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001645#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
Nathan Scottd8cc8902005-11-02 10:34:53 +11001646 * unwritten extent conversion */
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001647#define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1649#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1650#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1651#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
David Chinnere8c8b3a2005-11-02 10:33:05 +11001652#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
1653#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
1654 * in stat(). */
Nathan Scottd8cc8902005-11-02 10:34:53 +11001655#define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
1656#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Nathan Scott1f443ad2005-05-05 13:28:29 -07001658STATIC unsigned long
1659suffix_strtoul(const char *cp, char **endp, unsigned int base)
1660{
1661 int last, shift_left_factor = 0;
1662 char *value = (char *)cp;
1663
1664 last = strlen(value) - 1;
1665 if (value[last] == 'K' || value[last] == 'k') {
1666 shift_left_factor = 10;
1667 value[last] = '\0';
1668 }
1669 if (value[last] == 'M' || value[last] == 'm') {
1670 shift_left_factor = 20;
1671 value[last] = '\0';
1672 }
1673 if (value[last] == 'G' || value[last] == 'g') {
1674 shift_left_factor = 30;
1675 value[last] = '\0';
1676 }
1677
1678 return simple_strtoul(cp, endp, base) << shift_left_factor;
1679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001681STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682xfs_parseargs(
1683 struct bhv_desc *bhv,
1684 char *options,
1685 struct xfs_mount_args *args,
1686 int update)
1687{
Nathan Scottb83bd132006-06-09 16:48:30 +10001688 bhv_vfs_t *vfsp = bhvtovfs(bhv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 char *this_char, *value, *eov;
1690 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1691 int iosize;
1692
Nathan Scotte15f1952006-03-22 12:47:52 +11001693 args->flags |= XFSMNT_IDELETE;
Nathan Scott3bbcc8e2006-03-31 13:04:56 +10001694 args->flags |= XFSMNT_BARRIER;
1695 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 if (!options)
Nathan Scott05db2182005-11-04 09:49:07 +11001698 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1701
1702 while ((this_char = strsep(&options, ",")) != NULL) {
1703 if (!*this_char)
1704 continue;
1705 if ((value = strchr(this_char, '=')) != NULL)
1706 *value++ = 0;
1707
1708 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1709 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001710 cmn_err(CE_WARN,
1711 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001712 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return EINVAL;
1714 }
1715 args->logbufs = simple_strtoul(value, &eov, 10);
1716 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001718 cmn_err(CE_WARN,
1719 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001720 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return EINVAL;
1722 }
Nathan Scott1f443ad2005-05-05 13:28:29 -07001723 args->logbufsize = suffix_strtoul(value, &eov, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1725 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001726 cmn_err(CE_WARN,
1727 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001728 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return EINVAL;
1730 }
1731 strncpy(args->logname, value, MAXNAMELEN);
1732 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1733 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001734 cmn_err(CE_WARN,
1735 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001736 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return EINVAL;
1738 }
1739 strncpy(args->mtpt, value, MAXNAMELEN);
1740 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1741 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001742 cmn_err(CE_WARN,
1743 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001744 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return EINVAL;
1746 }
1747 strncpy(args->rtname, value, MAXNAMELEN);
1748 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1749 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001750 cmn_err(CE_WARN,
1751 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001752 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return EINVAL;
1754 }
1755 iosize = simple_strtoul(value, &eov, 10);
1756 args->flags |= XFSMNT_IOSIZE;
1757 args->iosizelog = (uint8_t) iosize;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001758 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1759 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001760 cmn_err(CE_WARN,
1761 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001762 this_char);
1763 return EINVAL;
1764 }
1765 iosize = suffix_strtoul(value, &eov, 10);
1766 args->flags |= XFSMNT_IOSIZE;
1767 args->iosizelog = ffs(iosize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1769 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001770 cmn_err(CE_WARN,
1771 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001772 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return EINVAL;
1774 }
1775 args->flags |= XFSMNT_IHASHSIZE;
1776 args->ihashsize = simple_strtoul(value, &eov, 10);
Nathan Scotte69a3332005-09-02 16:42:26 +10001777 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1778 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1779 vfsp->vfs_flag |= VFS_GRPID;
1780 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1781 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1782 vfsp->vfs_flag &= ~VFS_GRPID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1784 args->flags |= XFSMNT_WSYNC;
1785 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1786 args->flags |= XFSMNT_OSYNCISOSYNC;
1787 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1788 args->flags |= XFSMNT_NORECOVERY;
1789 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1790 args->flags |= XFSMNT_INO64;
1791#if !XFS_BIG_INUMS
Nathan Scottb6574522006-06-09 15:29:40 +10001792 cmn_err(CE_WARN,
1793 "XFS: %s option not allowed on this system",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001794 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return EINVAL;
1796#endif
1797 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1798 args->flags |= XFSMNT_NOALIGN;
1799 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1800 args->flags |= XFSMNT_SWALLOC;
1801 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1802 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001803 cmn_err(CE_WARN,
1804 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001805 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return EINVAL;
1807 }
1808 dsunit = simple_strtoul(value, &eov, 10);
1809 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1810 if (!value || !*value) {
Nathan Scottb6574522006-06-09 15:29:40 +10001811 cmn_err(CE_WARN,
1812 "XFS: %s option requires an argument",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001813 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return EINVAL;
1815 }
1816 dswidth = simple_strtoul(value, &eov, 10);
1817 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1818 args->flags &= ~XFSMNT_32BITINODES;
1819#if !XFS_BIG_INUMS
Nathan Scottb6574522006-06-09 15:29:40 +10001820 cmn_err(CE_WARN,
1821 "XFS: %s option not allowed on this system",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001822 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return EINVAL;
1824#endif
1825 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1826 args->flags |= XFSMNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001827 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1828 args->flags |= XFSMNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001829 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
1830 args->flags &= ~XFSMNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1832 args->flags &= ~XFSMNT_IDELETE;
1833 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1834 args->flags |= XFSMNT_IDELETE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001835 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Nathan Scotte718eeb2005-11-02 15:09:22 +11001836 args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001837 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
Nathan Scotte718eeb2005-11-02 15:09:22 +11001838 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001839 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001840 args->flags |= XFSMNT_ATTR2;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001841 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001842 args->flags &= ~XFSMNT_ATTR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 } else if (!strcmp(this_char, "osyncisdsync")) {
1844 /* no-op, this is now the default */
Nathan Scottb6574522006-06-09 15:29:40 +10001845 cmn_err(CE_WARN,
1846 "XFS: osyncisdsync is now the default, option is deprecated.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 } else if (!strcmp(this_char, "irixsgid")) {
Nathan Scottb6574522006-06-09 15:29:40 +10001848 cmn_err(CE_WARN,
1849 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 } else {
Nathan Scottb6574522006-06-09 15:29:40 +10001851 cmn_err(CE_WARN,
1852 "XFS: unknown mount option [%s].", this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return EINVAL;
1854 }
1855 }
1856
1857 if (args->flags & XFSMNT_NORECOVERY) {
1858 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
Nathan Scottb6574522006-06-09 15:29:40 +10001859 cmn_err(CE_WARN,
1860 "XFS: no-recovery mounts must be read-only.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return EINVAL;
1862 }
1863 }
1864
1865 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001866 cmn_err(CE_WARN,
1867 "XFS: sunit and swidth options incompatible with the noalign option");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return EINVAL;
1869 }
1870
1871 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001872 cmn_err(CE_WARN,
1873 "XFS: sunit and swidth must be specified together");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return EINVAL;
1875 }
1876
1877 if (dsunit && (dswidth % dsunit != 0)) {
Nathan Scottb6574522006-06-09 15:29:40 +10001878 cmn_err(CE_WARN,
1879 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 dswidth, dsunit);
1881 return EINVAL;
1882 }
1883
1884 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1885 if (dsunit) {
1886 args->sunit = dsunit;
1887 args->flags |= XFSMNT_RETERR;
1888 } else {
1889 args->sunit = vol_dsunit;
1890 }
1891 dswidth ? (args->swidth = dswidth) :
1892 (args->swidth = vol_dswidth);
1893 } else {
1894 args->sunit = args->swidth = 0;
1895 }
1896
Nathan Scott05db2182005-11-04 09:49:07 +11001897done:
Nathan Scottc11e2c32005-11-02 15:11:45 +11001898 if (args->flags & XFSMNT_32BITINODES)
1899 vfsp->vfs_flag |= VFS_32BITINODES;
Nathan Scotte718eeb2005-11-02 15:09:22 +11001900 if (args->flags2)
1901 args->flags |= XFSMNT_FLAGS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return 0;
1903}
1904
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001905STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906xfs_showargs(
1907 struct bhv_desc *bhv,
1908 struct seq_file *m)
1909{
1910 static struct proc_xfs_info {
1911 int flag;
1912 char *str;
1913 } xfs_info[] = {
1914 /* the few simple ones we can get from the mount struct */
1915 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1916 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1917 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1918 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1919 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1920 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1921 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 { 0, NULL }
1923 };
1924 struct proc_xfs_info *xfs_infop;
1925 struct xfs_mount *mp = XFS_BHVTOM(bhv);
Nathan Scottb83bd132006-06-09 16:48:30 +10001926 struct bhv_vfs *vfsp = XFS_MTOVFS(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1929 if (mp->m_flags & xfs_infop->flag)
1930 seq_puts(m, xfs_infop->str);
1931 }
1932
1933 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
1934 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", mp->m_ihsize);
1935
1936 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001937 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
1938 (int)(1 << mp->m_writeio_log) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 if (mp->m_logbufs > 0)
1941 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (mp->m_logbsize > 0)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001943 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001945 if (mp->m_logname)
1946 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001947 if (mp->m_rtname)
1948 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 if (mp->m_dalign > 0)
1951 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1952 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (mp->m_swidth > 0)
1954 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1955 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1956
Nathan Scotte15f1952006-03-22 12:47:52 +11001957 if (!(mp->m_flags & XFS_MOUNT_IDELETE))
1958 seq_printf(m, "," MNTOPT_IKEEP);
Nathan Scottfa7e7d72005-11-02 15:00:48 +11001959 if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
1960 seq_printf(m, "," MNTOPT_LARGEIO);
1961
Nathan Scottc11e2c32005-11-02 15:11:45 +11001962 if (!(vfsp->vfs_flag & VFS_32BITINODES))
1963 seq_printf(m, "," MNTOPT_64BITINODE);
Nathan Scotte69a3332005-09-02 16:42:26 +10001964 if (vfsp->vfs_flag & VFS_GRPID)
1965 seq_printf(m, "," MNTOPT_GRPID);
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968}
1969
1970STATIC void
1971xfs_freeze(
1972 bhv_desc_t *bdp)
1973{
1974 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1975
1976 while (atomic_read(&mp->m_active_trans) > 0)
1977 delay(100);
1978
1979 /* Push the superblock and write an unmount record */
1980 xfs_log_unmount_write(mp);
1981 xfs_unmountfs_writesb(mp);
Christoph Hellwige13a73f2006-01-11 15:30:08 +11001982 xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
1985
Nathan Scottb83bd132006-06-09 16:48:30 +10001986bhv_vfsops_t xfs_vfsops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1988 .vfs_parseargs = xfs_parseargs,
1989 .vfs_showargs = xfs_showargs,
1990 .vfs_mount = xfs_mount,
1991 .vfs_unmount = xfs_unmount,
1992 .vfs_mntupdate = xfs_mntupdate,
1993 .vfs_root = xfs_root,
1994 .vfs_statvfs = xfs_statvfs,
1995 .vfs_sync = xfs_sync,
1996 .vfs_vget = xfs_vget,
1997 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1998 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1999 .vfs_init_vnode = xfs_initialize_vnode,
2000 .vfs_force_shutdown = xfs_do_force_shutdown,
2001 .vfs_freeze = xfs_freeze,
2002};