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