blob: 7227baee89946c66c3f7e99dba92c29eed0488a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * XFS filesystem operations.
3 *
4 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * Further, this software is distributed without any warranty that it is
15 * free of the rightful claim of any third person regarding infringement
16 * or the like. Any license provided herein, whether implied or
17 * otherwise, applies only to this software file. Patent licenses, if
18 * any, provided herein do not apply to combinations of this program with
19 * other software, or any other product whatsoever.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 *
25 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
26 * Mountain View, CA 94043, or:
27 *
28 * http://www.sgi.com
29 *
30 * For further information regarding this notice, see:
31 *
32 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 */
34
35#include "xfs.h"
36#include "xfs_macros.h"
37#include "xfs_types.h"
38#include "xfs_inum.h"
39#include "xfs_log.h"
40#include "xfs_trans.h"
41#include "xfs_sb.h"
42#include "xfs_dir.h"
43#include "xfs_dir2.h"
44#include "xfs_dmapi.h"
45#include "xfs_mount.h"
46#include "xfs_bmap_btree.h"
47#include "xfs_ialloc_btree.h"
48#include "xfs_alloc_btree.h"
49#include "xfs_btree.h"
50#include "xfs_alloc.h"
51#include "xfs_ialloc.h"
52#include "xfs_attr_sf.h"
53#include "xfs_dir_sf.h"
54#include "xfs_dir2_sf.h"
55#include "xfs_dinode.h"
56#include "xfs_inode_item.h"
57#include "xfs_inode.h"
58#include "xfs_ag.h"
59#include "xfs_error.h"
60#include "xfs_bmap.h"
61#include "xfs_da_btree.h"
62#include "xfs_rw.h"
63#include "xfs_refcache.h"
64#include "xfs_buf_item.h"
65#include "xfs_extfree_item.h"
66#include "xfs_quota.h"
67#include "xfs_dir2_trace.h"
68#include "xfs_acl.h"
69#include "xfs_attr.h"
70#include "xfs_clnt.h"
71#include "xfs_log_priv.h"
72
73STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
74
75int
76xfs_init(void)
77{
78 extern kmem_zone_t *xfs_bmap_free_item_zone;
79 extern kmem_zone_t *xfs_btree_cur_zone;
80 extern kmem_zone_t *xfs_trans_zone;
81 extern kmem_zone_t *xfs_buf_item_zone;
82 extern kmem_zone_t *xfs_dabuf_zone;
83#ifdef XFS_DABUF_DEBUG
84 extern lock_t xfs_dabuf_global_lock;
85 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
86#endif
87
88 /*
89 * Initialize all of the zone allocators we use.
90 */
91 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
92 "xfs_bmap_free_item");
93 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
94 "xfs_btree_cur");
95 xfs_inode_zone = kmem_zone_init(sizeof(xfs_inode_t), "xfs_inode");
96 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
97 xfs_da_state_zone =
98 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
99 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
100
101 /*
102 * The size of the zone allocated buf log item is the maximum
103 * size possible under XFS. This wastes a little bit of memory,
104 * but it is much faster.
105 */
106 xfs_buf_item_zone =
107 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
108 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
109 NBWORD) * sizeof(int))),
110 "xfs_buf_item");
111 xfs_efd_zone = kmem_zone_init((sizeof(xfs_efd_log_item_t) +
112 ((XFS_EFD_MAX_FAST_EXTENTS - 1) * sizeof(xfs_extent_t))),
113 "xfs_efd_item");
114 xfs_efi_zone = kmem_zone_init((sizeof(xfs_efi_log_item_t) +
115 ((XFS_EFI_MAX_FAST_EXTENTS - 1) * sizeof(xfs_extent_t))),
116 "xfs_efi_item");
117 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
118 xfs_ili_zone = kmem_zone_init(sizeof(xfs_inode_log_item_t), "xfs_ili");
119 xfs_chashlist_zone = kmem_zone_init(sizeof(xfs_chashlist_t),
120 "xfs_chashlist");
121 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
122
123 /*
124 * Allocate global trace buffers.
125 */
126#ifdef XFS_ALLOC_TRACE
127 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
128#endif
129#ifdef XFS_BMAP_TRACE
130 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
131#endif
132#ifdef XFS_BMBT_TRACE
133 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
134#endif
135#ifdef XFS_DIR_TRACE
136 xfs_dir_trace_buf = ktrace_alloc(XFS_DIR_TRACE_SIZE, KM_SLEEP);
137#endif
138#ifdef XFS_ATTR_TRACE
139 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
140#endif
141#ifdef XFS_DIR2_TRACE
142 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
143#endif
144
145 xfs_dir_startup();
146
147#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
148 xfs_error_test_init();
149#endif /* DEBUG || INDUCE_IO_ERROR */
150
151 xfs_init_procfs();
152 xfs_sysctl_register();
153 return 0;
154}
155
156void
157xfs_cleanup(void)
158{
159 extern kmem_zone_t *xfs_bmap_free_item_zone;
160 extern kmem_zone_t *xfs_btree_cur_zone;
161 extern kmem_zone_t *xfs_inode_zone;
162 extern kmem_zone_t *xfs_trans_zone;
163 extern kmem_zone_t *xfs_da_state_zone;
164 extern kmem_zone_t *xfs_dabuf_zone;
165 extern kmem_zone_t *xfs_efd_zone;
166 extern kmem_zone_t *xfs_efi_zone;
167 extern kmem_zone_t *xfs_buf_item_zone;
168 extern kmem_zone_t *xfs_chashlist_zone;
169
170 xfs_cleanup_procfs();
171 xfs_sysctl_unregister();
172 xfs_refcache_destroy();
173 xfs_acl_zone_destroy(xfs_acl_zone);
174
175#ifdef XFS_DIR2_TRACE
176 ktrace_free(xfs_dir2_trace_buf);
177#endif
178#ifdef XFS_ATTR_TRACE
179 ktrace_free(xfs_attr_trace_buf);
180#endif
181#ifdef XFS_DIR_TRACE
182 ktrace_free(xfs_dir_trace_buf);
183#endif
184#ifdef XFS_BMBT_TRACE
185 ktrace_free(xfs_bmbt_trace_buf);
186#endif
187#ifdef XFS_BMAP_TRACE
188 ktrace_free(xfs_bmap_trace_buf);
189#endif
190#ifdef XFS_ALLOC_TRACE
191 ktrace_free(xfs_alloc_trace_buf);
192#endif
193
194 kmem_cache_destroy(xfs_bmap_free_item_zone);
195 kmem_cache_destroy(xfs_btree_cur_zone);
196 kmem_cache_destroy(xfs_inode_zone);
197 kmem_cache_destroy(xfs_trans_zone);
198 kmem_cache_destroy(xfs_da_state_zone);
199 kmem_cache_destroy(xfs_dabuf_zone);
200 kmem_cache_destroy(xfs_buf_item_zone);
201 kmem_cache_destroy(xfs_efd_zone);
202 kmem_cache_destroy(xfs_efi_zone);
203 kmem_cache_destroy(xfs_ifork_zone);
204 kmem_cache_destroy(xfs_ili_zone);
205 kmem_cache_destroy(xfs_chashlist_zone);
206}
207
208/*
209 * xfs_start_flags
210 *
211 * This function fills in xfs_mount_t fields based on mount args.
212 * Note: the superblock has _not_ yet been read in.
213 */
214STATIC int
215xfs_start_flags(
216 struct vfs *vfs,
217 struct xfs_mount_args *ap,
218 struct xfs_mount *mp)
219{
220 /* Values are in BBs */
221 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
222 /*
223 * At this point the superblock has not been read
224 * in, therefore we do not know the block size.
225 * Before the mount call ends we will convert
226 * these to FSBs.
227 */
228 mp->m_dalign = ap->sunit;
229 mp->m_swidth = ap->swidth;
230 }
231
232 if (ap->logbufs != -1 &&
233#if defined(DEBUG) || defined(XLOG_NOLOG)
234 ap->logbufs != 0 &&
235#endif
236 (ap->logbufs < XLOG_MIN_ICLOGS ||
237 ap->logbufs > XLOG_MAX_ICLOGS)) {
238 cmn_err(CE_WARN,
239 "XFS: invalid logbufs value: %d [not %d-%d]",
240 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
241 return XFS_ERROR(EINVAL);
242 }
243 mp->m_logbufs = ap->logbufs;
244 if (ap->logbufsize != -1 &&
245 ap->logbufsize != 16 * 1024 &&
246 ap->logbufsize != 32 * 1024 &&
247 ap->logbufsize != 64 * 1024 &&
248 ap->logbufsize != 128 * 1024 &&
249 ap->logbufsize != 256 * 1024) {
250 cmn_err(CE_WARN,
251 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
252 ap->logbufsize);
253 return XFS_ERROR(EINVAL);
254 }
255 mp->m_ihsize = ap->ihashsize;
256 mp->m_logbsize = ap->logbufsize;
257 mp->m_fsname_len = strlen(ap->fsname) + 1;
258 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
259 strcpy(mp->m_fsname, ap->fsname);
260
261 if (ap->flags & XFSMNT_WSYNC)
262 mp->m_flags |= XFS_MOUNT_WSYNC;
263#if XFS_BIG_INUMS
264 if (ap->flags & XFSMNT_INO64) {
265 mp->m_flags |= XFS_MOUNT_INO64;
266 mp->m_inoadd = XFS_INO64_OFFSET;
267 }
268#endif
269 if (ap->flags & XFSMNT_NOATIME)
270 mp->m_flags |= XFS_MOUNT_NOATIME;
271
272 if (ap->flags & XFSMNT_RETERR)
273 mp->m_flags |= XFS_MOUNT_RETERR;
274
275 if (ap->flags & XFSMNT_NOALIGN)
276 mp->m_flags |= XFS_MOUNT_NOALIGN;
277
278 if (ap->flags & XFSMNT_SWALLOC)
279 mp->m_flags |= XFS_MOUNT_SWALLOC;
280
281 if (ap->flags & XFSMNT_OSYNCISOSYNC)
282 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
283
284 if (ap->flags & XFSMNT_32BITINODES)
285 mp->m_flags |= (XFS_MOUNT_32BITINODES | XFS_MOUNT_32BITINOOPT);
286
287 if (ap->flags & XFSMNT_IOSIZE) {
288 if (ap->iosizelog > XFS_MAX_IO_LOG ||
289 ap->iosizelog < XFS_MIN_IO_LOG) {
290 cmn_err(CE_WARN,
291 "XFS: invalid log iosize: %d [not %d-%d]",
292 ap->iosizelog, XFS_MIN_IO_LOG,
293 XFS_MAX_IO_LOG);
294 return XFS_ERROR(EINVAL);
295 }
296
297 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
298 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
299 }
300
301 if (ap->flags & XFSMNT_IHASHSIZE)
302 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
303
304 if (ap->flags & XFSMNT_IDELETE)
305 mp->m_flags |= XFS_MOUNT_IDELETE;
306
307 if (ap->flags & XFSMNT_DIRSYNC)
308 mp->m_flags |= XFS_MOUNT_DIRSYNC;
309
David Chinnere8c8b3a2005-11-02 10:33:05 +1100310 if (ap->flags & XFSMNT_COMPAT_IOSIZE)
311 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
314 * no recovery flag requires a read-only mount
315 */
316 if (ap->flags & XFSMNT_NORECOVERY) {
317 if (!(vfs->vfs_flag & VFS_RDONLY)) {
318 cmn_err(CE_WARN,
319 "XFS: tried to mount a FS read-write without recovery!");
320 return XFS_ERROR(EINVAL);
321 }
322 mp->m_flags |= XFS_MOUNT_NORECOVERY;
323 }
324
325 if (ap->flags & XFSMNT_NOUUID)
326 mp->m_flags |= XFS_MOUNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100327 if (ap->flags & XFSMNT_BARRIER)
328 mp->m_flags |= XFS_MOUNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 return 0;
331}
332
333/*
334 * This function fills in xfs_mount_t fields based on mount args.
335 * Note: the superblock _has_ now been read in.
336 */
337STATIC int
338xfs_finish_flags(
339 struct vfs *vfs,
340 struct xfs_mount_args *ap,
341 struct xfs_mount *mp)
342{
343 int ronly = (vfs->vfs_flag & VFS_RDONLY);
344
345 /* Fail a mount where the logbuf is smaller then the log stripe */
346 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
347 if ((ap->logbufsize == -1) &&
348 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
349 mp->m_logbsize = mp->m_sb.sb_logsunit;
350 } else if (ap->logbufsize < mp->m_sb.sb_logsunit) {
351 cmn_err(CE_WARN,
352 "XFS: logbuf size must be greater than or equal to log stripe size");
353 return XFS_ERROR(EINVAL);
354 }
355 } else {
356 /* Fail a mount if the logbuf is larger than 32K */
357 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
358 cmn_err(CE_WARN,
359 "XFS: logbuf size for version 1 logs must be 16K or 32K");
360 return XFS_ERROR(EINVAL);
361 }
362 }
363
364 /*
365 * prohibit r/w mounts of read-only filesystems
366 */
367 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
368 cmn_err(CE_WARN,
369 "XFS: cannot mount a read-only filesystem as read-write");
370 return XFS_ERROR(EROFS);
371 }
372
373 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * check for shared mount.
375 */
376 if (ap->flags & XFSMNT_SHARED) {
377 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
378 return XFS_ERROR(EINVAL);
379
380 /*
381 * For IRIX 6.5, shared mounts must have the shared
382 * version bit set, have the persistent readonly
383 * field set, must be version 0 and can only be mounted
384 * read-only.
385 */
386 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
387 (mp->m_sb.sb_shared_vn != 0))
388 return XFS_ERROR(EINVAL);
389
390 mp->m_flags |= XFS_MOUNT_SHARED;
391
392 /*
393 * Shared XFS V0 can't deal with DMI. Return EINVAL.
394 */
395 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
396 return XFS_ERROR(EINVAL);
397 }
398
399 return 0;
400}
401
402/*
403 * xfs_mount
404 *
405 * The file system configurations are:
406 * (1) device (partition) with data and internal log
407 * (2) logical volume with data and log subvolumes.
408 * (3) logical volume with data, log, and realtime subvolumes.
409 *
410 * We only have to handle opening the log and realtime volumes here if
411 * they are present. The data subvolume has already been opened by
412 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
413 */
414STATIC int
415xfs_mount(
416 struct bhv_desc *bhvp,
417 struct xfs_mount_args *args,
418 cred_t *credp)
419{
420 struct vfs *vfsp = bhvtovfs(bhvp);
421 struct bhv_desc *p;
422 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
423 struct block_device *ddev, *logdev, *rtdev;
424 int flags = 0, error;
425
426 ddev = vfsp->vfs_super->s_bdev;
427 logdev = rtdev = NULL;
428
429 /*
430 * Setup xfs_mount function vectors from available behaviors
431 */
432 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
433 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
434 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
435 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
436 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
437 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
438
439 /*
440 * Open real time and log devices - order is important.
441 */
442 if (args->logname[0]) {
443 error = xfs_blkdev_get(mp, args->logname, &logdev);
444 if (error)
445 return error;
446 }
447 if (args->rtname[0]) {
448 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
449 if (error) {
450 xfs_blkdev_put(logdev);
451 return error;
452 }
453
454 if (rtdev == ddev || rtdev == logdev) {
455 cmn_err(CE_WARN,
456 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
457 xfs_blkdev_put(logdev);
458 xfs_blkdev_put(rtdev);
459 return EINVAL;
460 }
461 }
462
463 /*
464 * Setup xfs_mount buffer target pointers
465 */
466 error = ENOMEM;
467 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
468 if (!mp->m_ddev_targp) {
469 xfs_blkdev_put(logdev);
470 xfs_blkdev_put(rtdev);
471 return error;
472 }
473 if (rtdev) {
474 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
475 if (!mp->m_rtdev_targp)
476 goto error0;
477 }
478 mp->m_logdev_targp = (logdev && logdev != ddev) ?
479 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
480 if (!mp->m_logdev_targp)
481 goto error0;
482
483 /*
484 * Setup flags based on mount(2) options and then the superblock
485 */
486 error = xfs_start_flags(vfsp, args, mp);
487 if (error)
488 goto error1;
489 error = xfs_readsb(mp);
490 if (error)
491 goto error1;
492 error = xfs_finish_flags(vfsp, args, mp);
493 if (error)
494 goto error2;
495
496 /*
497 * Setup xfs_mount buffer target pointers based on superblock
498 */
499 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
500 mp->m_sb.sb_sectsize);
501 if (!error && logdev && logdev != ddev) {
502 unsigned int log_sector_size = BBSIZE;
503
504 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
505 log_sector_size = mp->m_sb.sb_logsectsize;
506 error = xfs_setsize_buftarg(mp->m_logdev_targp,
507 mp->m_sb.sb_blocksize,
508 log_sector_size);
509 }
510 if (!error && rtdev)
511 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
512 mp->m_sb.sb_blocksize,
513 mp->m_sb.sb_sectsize);
514 if (error)
515 goto error2;
516
517 error = XFS_IOINIT(vfsp, args, flags);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100518 if (error)
519 goto error2;
520
521 if ((args->flags & XFSMNT_BARRIER) &&
522 !(XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY))
523 xfs_mountfs_check_barriers(mp);
524 return 0;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526error2:
527 if (mp->m_sb_bp)
528 xfs_freesb(mp);
529error1:
530 xfs_binval(mp->m_ddev_targp);
531 if (logdev && logdev != ddev)
532 xfs_binval(mp->m_logdev_targp);
533 if (rtdev)
534 xfs_binval(mp->m_rtdev_targp);
535error0:
536 xfs_unmountfs_close(mp, credp);
537 return error;
538}
539
540STATIC int
541xfs_unmount(
542 bhv_desc_t *bdp,
543 int flags,
544 cred_t *credp)
545{
546 struct vfs *vfsp = bhvtovfs(bdp);
547 xfs_mount_t *mp = XFS_BHVTOM(bdp);
548 xfs_inode_t *rip;
549 vnode_t *rvp;
550 int unmount_event_wanted = 0;
551 int unmount_event_flags = 0;
552 int xfs_unmountfs_needed = 0;
553 int error;
554
555 rip = mp->m_rootip;
556 rvp = XFS_ITOV(rip);
557
558 if (vfsp->vfs_flag & VFS_DMI) {
559 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
560 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
561 NULL, NULL, 0, 0,
562 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
563 0:DM_FLAGS_UNWANTED);
564 if (error)
565 return XFS_ERROR(error);
566 unmount_event_wanted = 1;
567 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
568 0 : DM_FLAGS_UNWANTED;
569 }
570
571 /*
572 * First blow any referenced inode from this file system
573 * out of the reference cache, and delete the timer.
574 */
575 xfs_refcache_purge_mp(mp);
576
577 XFS_bflush(mp->m_ddev_targp);
578 error = xfs_unmount_flush(mp, 0);
579 if (error)
580 goto out;
581
582 ASSERT(vn_count(rvp) == 1);
583
584 /*
585 * Drop the reference count
586 */
587 VN_RELE(rvp);
588
589 /*
590 * If we're forcing a shutdown, typically because of a media error,
591 * we want to make sure we invalidate dirty pages that belong to
592 * referenced vnodes as well.
593 */
594 if (XFS_FORCED_SHUTDOWN(mp)) {
595 error = xfs_sync(&mp->m_bhv,
596 (SYNC_WAIT | SYNC_CLOSE), credp);
597 ASSERT(error != EFSCORRUPTED);
598 }
599 xfs_unmountfs_needed = 1;
600
601out:
602 /* Send DMAPI event, if required.
603 * Then do xfs_unmountfs() if needed.
604 * Then return error (or zero).
605 */
606 if (unmount_event_wanted) {
607 /* Note: mp structure must still exist for
608 * XFS_SEND_UNMOUNT() call.
609 */
610 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
611 DM_RIGHT_NULL, 0, error, unmount_event_flags);
612 }
613 if (xfs_unmountfs_needed) {
614 /*
615 * Call common unmount function to flush to disk
616 * and free the super block buffer & mount structures.
617 */
618 xfs_unmountfs(mp, credp);
619 }
620
621 return XFS_ERROR(error);
622}
623
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000624STATIC int
625xfs_quiesce_fs(
626 xfs_mount_t *mp)
627{
628 int count = 0, pincount;
629
630 xfs_refcache_purge_mp(mp);
631 xfs_flush_buftarg(mp->m_ddev_targp, 0);
632 xfs_finish_reclaim_all(mp, 0);
633
634 /* This loop must run at least twice.
635 * The first instance of the loop will flush
636 * most meta data but that will generate more
637 * meta data (typically directory updates).
638 * Which then must be flushed and logged before
639 * we can write the unmount record.
640 */
641 do {
642 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, 0, NULL);
643 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
644 if (!pincount) {
645 delay(50);
646 count++;
647 }
648 } while (count < 2);
649
650 return 0;
651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653STATIC int
654xfs_mntupdate(
655 bhv_desc_t *bdp,
656 int *flags,
657 struct xfs_mount_args *args)
658{
659 struct vfs *vfsp = bhvtovfs(bdp);
660 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000661 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (args->flags & XFSMNT_NOATIME)
664 mp->m_flags |= XFS_MOUNT_NOATIME;
665 else
666 mp->m_flags &= ~XFS_MOUNT_NOATIME;
667
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100668 if ((vfsp->vfs_flag & VFS_RDONLY) &&
669 !(*flags & MS_RDONLY)) {
670 vfsp->vfs_flag &= ~VFS_RDONLY;
671
672 if (args->flags & XFSMNT_BARRIER)
673 xfs_mountfs_check_barriers(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100676 if (!(vfsp->vfs_flag & VFS_RDONLY) &&
677 (*flags & MS_RDONLY)) {
678 VFS_SYNC(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL, error);
679
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000680 xfs_quiesce_fs(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 /* Ok now write out an unmount record */
683 xfs_log_unmount_write(mp);
684 xfs_unmountfs_writesb(mp);
685 vfsp->vfs_flag |= VFS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 return 0;
689}
690
691/*
692 * xfs_unmount_flush implements a set of flush operation on special
693 * inodes, which are needed as a separate set of operations so that
694 * they can be called as part of relocation process.
695 */
696int
697xfs_unmount_flush(
698 xfs_mount_t *mp, /* Mount structure we are getting
699 rid of. */
700 int relocation) /* Called from vfs relocation. */
701{
702 xfs_inode_t *rip = mp->m_rootip;
703 xfs_inode_t *rbmip;
704 xfs_inode_t *rsumip = NULL;
705 vnode_t *rvp = XFS_ITOV(rip);
706 int error;
707
708 xfs_ilock(rip, XFS_ILOCK_EXCL);
709 xfs_iflock(rip);
710
711 /*
712 * Flush out the real time inodes.
713 */
714 if ((rbmip = mp->m_rbmip) != NULL) {
715 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
716 xfs_iflock(rbmip);
717 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
718 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
719
720 if (error == EFSCORRUPTED)
721 goto fscorrupt_out;
722
723 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
724
725 rsumip = mp->m_rsumip;
726 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
727 xfs_iflock(rsumip);
728 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
729 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
730
731 if (error == EFSCORRUPTED)
732 goto fscorrupt_out;
733
734 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
735 }
736
737 /*
738 * Synchronously flush root inode to disk
739 */
740 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
741 if (error == EFSCORRUPTED)
742 goto fscorrupt_out2;
743
744 if (vn_count(rvp) != 1 && !relocation) {
745 xfs_iunlock(rip, XFS_ILOCK_EXCL);
746 return XFS_ERROR(EBUSY);
747 }
748
749 /*
750 * Release dquot that rootinode, rbmino and rsumino might be holding,
751 * flush and purge the quota inodes.
752 */
753 error = XFS_QM_UNMOUNT(mp);
754 if (error == EFSCORRUPTED)
755 goto fscorrupt_out2;
756
757 if (rbmip) {
758 VN_RELE(XFS_ITOV(rbmip));
759 VN_RELE(XFS_ITOV(rsumip));
760 }
761
762 xfs_iunlock(rip, XFS_ILOCK_EXCL);
763 return 0;
764
765fscorrupt_out:
766 xfs_ifunlock(rip);
767
768fscorrupt_out2:
769 xfs_iunlock(rip, XFS_ILOCK_EXCL);
770
771 return XFS_ERROR(EFSCORRUPTED);
772}
773
774/*
775 * xfs_root extracts the root vnode from a vfs.
776 *
777 * vfsp -- the vfs struct for the desired file system
778 * vpp -- address of the caller's vnode pointer which should be
779 * set to the desired fs root vnode
780 */
781STATIC int
782xfs_root(
783 bhv_desc_t *bdp,
784 vnode_t **vpp)
785{
786 vnode_t *vp;
787
788 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
789 VN_HOLD(vp);
790 *vpp = vp;
791 return 0;
792}
793
794/*
795 * xfs_statvfs
796 *
797 * Fill in the statvfs structure for the given file system. We use
798 * the superblock lock in the mount structure to ensure a consistent
799 * snapshot of the counters returned.
800 */
801STATIC int
802xfs_statvfs(
803 bhv_desc_t *bdp,
804 xfs_statfs_t *statp,
805 vnode_t *vp)
806{
807 __uint64_t fakeinos;
808 xfs_extlen_t lsize;
809 xfs_mount_t *mp;
810 xfs_sb_t *sbp;
811 unsigned long s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 mp = XFS_BHVTOM(bdp);
814 sbp = &(mp->m_sb);
815
816 statp->f_type = XFS_SB_MAGIC;
817
818 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
876 * unmounted. We should sync and invalidate everthing.
877 * SYNC_FSDATA - This indicates that the caller would like to make
878 * sure the superblock is safe on disk. We can ensure
879 * this by simply makeing sure the log gets flushed
880 * 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 *
902 * This routine supports all of the flags defined for the generic VFS_SYNC
903 * interface as explained above under xfs_sync. In the interests of not
904 * changing interfaces within the 6.5 family, additional internallly-
905 * 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
1086 * inode locked this is racey, but these are periodic
1087 * 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,
1225 &dip, &bp, 0);
1226 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 *
1423 * This routine supports all of the flags defined for the generic VFS_SYNC
1424 * interface as explained above under xfs_sync. In the interests of not
1425 * changing interfaces within the 6.5 family, additional internallly-
1426 * 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
1646 unwritten extent conversion */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1648#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1649#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1650#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
David Chinnere8c8b3a2005-11-02 10:33:05 +11001651#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
1652#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
1653 * in stat(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Nathan Scott1f443ad2005-05-05 13:28:29 -07001655STATIC unsigned long
1656suffix_strtoul(const char *cp, char **endp, unsigned int base)
1657{
1658 int last, shift_left_factor = 0;
1659 char *value = (char *)cp;
1660
1661 last = strlen(value) - 1;
1662 if (value[last] == 'K' || value[last] == 'k') {
1663 shift_left_factor = 10;
1664 value[last] = '\0';
1665 }
1666 if (value[last] == 'M' || value[last] == 'm') {
1667 shift_left_factor = 20;
1668 value[last] = '\0';
1669 }
1670 if (value[last] == 'G' || value[last] == 'g') {
1671 shift_left_factor = 30;
1672 value[last] = '\0';
1673 }
1674
1675 return simple_strtoul(cp, endp, base) << shift_left_factor;
1676}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001678STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679xfs_parseargs(
1680 struct bhv_desc *bhv,
1681 char *options,
1682 struct xfs_mount_args *args,
1683 int update)
1684{
1685 struct vfs *vfsp = bhvtovfs(bhv);
1686 char *this_char, *value, *eov;
1687 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1688 int iosize;
1689
David Chinnere8c8b3a2005-11-02 10:33:05 +11001690 args->flags |= XFSMNT_COMPAT_IOSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691#if 0 /* XXX: off by default, until some remaining issues ironed out */
1692 args->flags |= XFSMNT_IDELETE; /* default to on */
1693#endif
1694
1695 if (!options)
1696 return 0;
1697
1698 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1699
1700 while ((this_char = strsep(&options, ",")) != NULL) {
1701 if (!*this_char)
1702 continue;
1703 if ((value = strchr(this_char, '=')) != NULL)
1704 *value++ = 0;
1705
1706 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1707 if (!value || !*value) {
1708 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001709 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return EINVAL;
1711 }
1712 args->logbufs = simple_strtoul(value, &eov, 10);
1713 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (!value || !*value) {
1715 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001716 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return EINVAL;
1718 }
Nathan Scott1f443ad2005-05-05 13:28:29 -07001719 args->logbufsize = suffix_strtoul(value, &eov, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1721 if (!value || !*value) {
1722 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001723 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return EINVAL;
1725 }
1726 strncpy(args->logname, value, MAXNAMELEN);
1727 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1728 if (!value || !*value) {
1729 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001730 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return EINVAL;
1732 }
1733 strncpy(args->mtpt, value, MAXNAMELEN);
1734 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1735 if (!value || !*value) {
1736 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001737 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return EINVAL;
1739 }
1740 strncpy(args->rtname, value, MAXNAMELEN);
1741 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1742 if (!value || !*value) {
1743 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001744 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return EINVAL;
1746 }
1747 iosize = simple_strtoul(value, &eov, 10);
1748 args->flags |= XFSMNT_IOSIZE;
1749 args->iosizelog = (uint8_t) iosize;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001750 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1751 if (!value || !*value) {
1752 printk("XFS: %s option requires an argument\n",
1753 this_char);
1754 return EINVAL;
1755 }
1756 iosize = suffix_strtoul(value, &eov, 10);
1757 args->flags |= XFSMNT_IOSIZE;
1758 args->iosizelog = ffs(iosize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1760 if (!value || !*value) {
1761 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001762 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return EINVAL;
1764 }
1765 args->flags |= XFSMNT_IHASHSIZE;
1766 args->ihashsize = simple_strtoul(value, &eov, 10);
Nathan Scotte69a3332005-09-02 16:42:26 +10001767 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1768 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1769 vfsp->vfs_flag |= VFS_GRPID;
1770 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1771 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1772 vfsp->vfs_flag &= ~VFS_GRPID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1774 args->flags |= XFSMNT_WSYNC;
1775 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1776 args->flags |= XFSMNT_OSYNCISOSYNC;
1777 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1778 args->flags |= XFSMNT_NORECOVERY;
1779 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1780 args->flags |= XFSMNT_INO64;
1781#if !XFS_BIG_INUMS
1782 printk("XFS: %s option not allowed on this system\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001783 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return EINVAL;
1785#endif
1786 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1787 args->flags |= XFSMNT_NOALIGN;
1788 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1789 args->flags |= XFSMNT_SWALLOC;
1790 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1791 if (!value || !*value) {
1792 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001793 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return EINVAL;
1795 }
1796 dsunit = simple_strtoul(value, &eov, 10);
1797 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1798 if (!value || !*value) {
1799 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001800 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return EINVAL;
1802 }
1803 dswidth = simple_strtoul(value, &eov, 10);
1804 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1805 args->flags &= ~XFSMNT_32BITINODES;
1806#if !XFS_BIG_INUMS
1807 printk("XFS: %s option not allowed on this system\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001808 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return EINVAL;
1810#endif
1811 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1812 args->flags |= XFSMNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001813 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1814 args->flags |= XFSMNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1816 args->flags &= ~XFSMNT_IDELETE;
1817 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1818 args->flags |= XFSMNT_IDELETE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001819 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
1820 args->flags &= ~XFSMNT_COMPAT_IOSIZE;
1821 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
1822 args->flags |= XFSMNT_COMPAT_IOSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 } else if (!strcmp(this_char, "osyncisdsync")) {
1824 /* no-op, this is now the default */
1825printk("XFS: osyncisdsync is now the default, option is deprecated.\n");
1826 } else if (!strcmp(this_char, "irixsgid")) {
1827printk("XFS: irixsgid is now a sysctl(2) variable, option is deprecated.\n");
1828 } else {
1829 printk("XFS: unknown mount option [%s].\n", this_char);
1830 return EINVAL;
1831 }
1832 }
1833
1834 if (args->flags & XFSMNT_NORECOVERY) {
1835 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
1836 printk("XFS: no-recovery mounts must be read-only.\n");
1837 return EINVAL;
1838 }
1839 }
1840
1841 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
1842 printk(
1843 "XFS: sunit and swidth options incompatible with the noalign option\n");
1844 return EINVAL;
1845 }
1846
1847 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
1848 printk("XFS: sunit and swidth must be specified together\n");
1849 return EINVAL;
1850 }
1851
1852 if (dsunit && (dswidth % dsunit != 0)) {
1853 printk(
1854 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)\n",
1855 dswidth, dsunit);
1856 return EINVAL;
1857 }
1858
1859 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1860 if (dsunit) {
1861 args->sunit = dsunit;
1862 args->flags |= XFSMNT_RETERR;
1863 } else {
1864 args->sunit = vol_dsunit;
1865 }
1866 dswidth ? (args->swidth = dswidth) :
1867 (args->swidth = vol_dswidth);
1868 } else {
1869 args->sunit = args->swidth = 0;
1870 }
1871
1872 return 0;
1873}
1874
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001875STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876xfs_showargs(
1877 struct bhv_desc *bhv,
1878 struct seq_file *m)
1879{
1880 static struct proc_xfs_info {
1881 int flag;
1882 char *str;
1883 } xfs_info[] = {
1884 /* the few simple ones we can get from the mount struct */
1885 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1886 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1887 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1888 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1889 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1890 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1891 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001892 { XFS_MOUNT_BARRIER, "," MNTOPT_BARRIER },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 { XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP },
1894 { 0, NULL }
1895 };
1896 struct proc_xfs_info *xfs_infop;
1897 struct xfs_mount *mp = XFS_BHVTOM(bhv);
Nathan Scotte69a3332005-09-02 16:42:26 +10001898 struct vfs *vfsp = XFS_MTOVFS(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1901 if (mp->m_flags & xfs_infop->flag)
1902 seq_puts(m, xfs_infop->str);
1903 }
1904
1905 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
1906 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", mp->m_ihsize);
1907
1908 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Nathan Scott1f443ad2005-05-05 13:28:29 -07001909 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%d", 1<<mp->m_writeio_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 if (mp->m_logbufs > 0)
1912 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
1913
1914 if (mp->m_logbsize > 0)
1915 seq_printf(m, "," MNTOPT_LOGBSIZE "=%d", mp->m_logbsize);
1916
1917 if (mp->m_ddev_targp != mp->m_logdev_targp)
1918 seq_printf(m, "," MNTOPT_LOGDEV "=%s",
1919 XFS_BUFTARG_NAME(mp->m_logdev_targp));
1920
1921 if (mp->m_rtdev_targp && mp->m_ddev_targp != mp->m_rtdev_targp)
1922 seq_printf(m, "," MNTOPT_RTDEV "=%s",
1923 XFS_BUFTARG_NAME(mp->m_rtdev_targp));
1924
1925 if (mp->m_dalign > 0)
1926 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1927 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
1928
1929 if (mp->m_swidth > 0)
1930 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1931 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1932
1933 if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT))
1934 seq_printf(m, "," MNTOPT_64BITINODE);
Nathan Scotte69a3332005-09-02 16:42:26 +10001935
1936 if (vfsp->vfs_flag & VFS_GRPID)
1937 seq_printf(m, "," MNTOPT_GRPID);
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return 0;
1940}
1941
1942STATIC void
1943xfs_freeze(
1944 bhv_desc_t *bdp)
1945{
1946 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1947
1948 while (atomic_read(&mp->m_active_trans) > 0)
1949 delay(100);
1950
1951 /* Push the superblock and write an unmount record */
1952 xfs_log_unmount_write(mp);
1953 xfs_unmountfs_writesb(mp);
1954}
1955
1956
1957vfsops_t xfs_vfsops = {
1958 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1959 .vfs_parseargs = xfs_parseargs,
1960 .vfs_showargs = xfs_showargs,
1961 .vfs_mount = xfs_mount,
1962 .vfs_unmount = xfs_unmount,
1963 .vfs_mntupdate = xfs_mntupdate,
1964 .vfs_root = xfs_root,
1965 .vfs_statvfs = xfs_statvfs,
1966 .vfs_sync = xfs_sync,
1967 .vfs_vget = xfs_vget,
1968 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1969 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1970 .vfs_init_vnode = xfs_initialize_vnode,
1971 .vfs_force_shutdown = xfs_do_force_shutdown,
1972 .vfs_freeze = xfs_freeze,
1973};