ffs_vfsops.c revision 1.196.6.10 1 /* $NetBSD: ffs_vfsops.c,v 1.196.6.10 2007/06/17 21:32:09 ad Exp $ */
2
3 /*
4 * Copyright (c) 1989, 1991, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95
32 */
33
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.196.6.10 2007/06/17 21:32:09 ad Exp $");
36
37 #if defined(_KERNEL_OPT)
38 #include "opt_ffs.h"
39 #include "opt_quota.h"
40 #include "opt_softdep.h"
41 #endif
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/namei.h>
46 #include <sys/proc.h>
47 #include <sys/kernel.h>
48 #include <sys/vnode.h>
49 #include <sys/socket.h>
50 #include <sys/mount.h>
51 #include <sys/buf.h>
52 #include <sys/device.h>
53 #include <sys/mbuf.h>
54 #include <sys/file.h>
55 #include <sys/disklabel.h>
56 #include <sys/ioctl.h>
57 #include <sys/errno.h>
58 #include <sys/malloc.h>
59 #include <sys/pool.h>
60 #include <sys/lock.h>
61 #include <sys/sysctl.h>
62 #include <sys/conf.h>
63 #include <sys/kauth.h>
64 #include <sys/fstrans.h>
65
66 #include <miscfs/specfs/specdev.h>
67
68 #include <ufs/ufs/quota.h>
69 #include <ufs/ufs/ufsmount.h>
70 #include <ufs/ufs/inode.h>
71 #include <ufs/ufs/dir.h>
72 #include <ufs/ufs/ufs_extern.h>
73 #include <ufs/ufs/ufs_bswap.h>
74
75 #include <ufs/ffs/fs.h>
76 #include <ufs/ffs/ffs_extern.h>
77
78 /* how many times ffs_init() was called */
79 int ffs_initcount = 0;
80
81 extern kmutex_t ufs_hashlock;
82
83 extern const struct vnodeopv_desc ffs_vnodeop_opv_desc;
84 extern const struct vnodeopv_desc ffs_specop_opv_desc;
85 extern const struct vnodeopv_desc ffs_fifoop_opv_desc;
86
87 const struct vnodeopv_desc * const ffs_vnodeopv_descs[] = {
88 &ffs_vnodeop_opv_desc,
89 &ffs_specop_opv_desc,
90 &ffs_fifoop_opv_desc,
91 NULL,
92 };
93
94 struct vfsops ffs_vfsops = {
95 MOUNT_FFS,
96 ffs_mount,
97 ufs_start,
98 ffs_unmount,
99 ufs_root,
100 ufs_quotactl,
101 ffs_statvfs,
102 ffs_sync,
103 ffs_vget,
104 ffs_fhtovp,
105 ffs_vptofh,
106 ffs_init,
107 ffs_reinit,
108 ffs_done,
109 ffs_mountroot,
110 ffs_snapshot,
111 ffs_extattrctl,
112 ffs_suspendctl,
113 ffs_vnodeopv_descs,
114 0,
115 { NULL, NULL },
116 };
117 VFS_ATTACH(ffs_vfsops);
118
119 static const struct genfs_ops ffs_genfsops = {
120 .gop_size = ffs_gop_size,
121 .gop_alloc = ufs_gop_alloc,
122 .gop_write = genfs_gop_write,
123 .gop_markupdate = ufs_gop_markupdate,
124 };
125
126 static const struct ufs_ops ffs_ufsops = {
127 .uo_itimes = ffs_itimes,
128 .uo_update = ffs_update,
129 .uo_truncate = ffs_truncate,
130 .uo_valloc = ffs_valloc,
131 .uo_vfree = ffs_vfree,
132 .uo_balloc = ffs_balloc,
133 };
134
135 POOL_INIT(ffs_inode_pool, sizeof(struct inode), 0, 0, 0, "ffsinopl",
136 &pool_allocator_nointr, IPL_NONE);
137 POOL_INIT(ffs_dinode1_pool, sizeof(struct ufs1_dinode), 0, 0, 0, "dino1pl",
138 &pool_allocator_nointr, IPL_NONE);
139 POOL_INIT(ffs_dinode2_pool, sizeof(struct ufs2_dinode), 0, 0, 0, "dino2pl",
140 &pool_allocator_nointr, IPL_NONE);
141
142 static void ffs_oldfscompat_read(struct fs *, struct ufsmount *, daddr_t);
143 static void ffs_oldfscompat_write(struct fs *, struct ufsmount *);
144
145 /*
146 * Called by main() when ffs is going to be mounted as root.
147 */
148
149 int
150 ffs_mountroot(void)
151 {
152 struct fs *fs;
153 struct mount *mp;
154 struct lwp *l = curlwp; /* XXX */
155 struct ufsmount *ump;
156 int error;
157
158 if (device_class(root_device) != DV_DISK)
159 return (ENODEV);
160
161 if ((error = vfs_rootmountalloc(MOUNT_FFS, "root_device", &mp))) {
162 vrele(rootvp);
163 return (error);
164 }
165 if ((error = ffs_mountfs(rootvp, mp, l)) != 0) {
166 mp->mnt_op->vfs_refcount--;
167 vfs_unbusy(mp);
168 free(mp, M_MOUNT);
169 return (error);
170 }
171 mutex_enter(&mountlist_lock);
172 CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
173 mutex_exit(&mountlist_lock);
174 ump = VFSTOUFS(mp);
175 fs = ump->um_fs;
176 memset(fs->fs_fsmnt, 0, sizeof(fs->fs_fsmnt));
177 (void)copystr(mp->mnt_stat.f_mntonname, fs->fs_fsmnt, MNAMELEN - 1, 0);
178 (void)ffs_statvfs(mp, &mp->mnt_stat, l);
179 vfs_unbusy(mp);
180 setrootfstime((time_t)fs->fs_time);
181 return (0);
182 }
183
184 /*
185 * VFS Operations.
186 *
187 * mount system call
188 */
189 int
190 ffs_mount(struct mount *mp, const char *path, void *data,
191 struct nameidata *ndp, struct lwp *l)
192 {
193 struct vnode *devvp = NULL;
194 struct ufs_args args;
195 struct ufsmount *ump = NULL;
196 struct fs *fs;
197 int error, flags, update;
198 mode_t accessmode;
199
200 if (mp->mnt_flag & MNT_GETARGS) {
201 ump = VFSTOUFS(mp);
202 if (ump == NULL)
203 return EIO;
204 args.fspec = NULL;
205 return copyout(&args, data, sizeof(args));
206 }
207 error = copyin(data, &args, sizeof (struct ufs_args));
208 if (error)
209 return (error);
210
211 #if !defined(SOFTDEP)
212 mp->mnt_flag &= ~MNT_SOFTDEP;
213 #endif
214
215 update = mp->mnt_flag & MNT_UPDATE;
216
217 /* Check arguments */
218 if (args.fspec != NULL) {
219 /*
220 * Look up the name and verify that it's sane.
221 */
222 NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, l);
223 if ((error = namei(ndp)) != 0)
224 return (error);
225 devvp = ndp->ni_vp;
226
227 if (!update) {
228 /*
229 * Be sure this is a valid block device
230 */
231 if (devvp->v_type != VBLK)
232 error = ENOTBLK;
233 else if (bdevsw_lookup(devvp->v_rdev) == NULL)
234 error = ENXIO;
235 } else {
236 /*
237 * Be sure we're still naming the same device
238 * used for our initial mount
239 */
240 ump = VFSTOUFS(mp);
241 if (devvp != ump->um_devvp) {
242 if (devvp->v_rdev != ump->um_devvp->v_rdev)
243 error = EINVAL;
244 else {
245 vrele(devvp);
246 devvp = ump->um_devvp;
247 vref(devvp);
248 }
249 }
250 }
251 } else {
252 if (!update) {
253 /* New mounts must have a filename for the device */
254 return (EINVAL);
255 } else {
256 /* Use the extant mount */
257 ump = VFSTOUFS(mp);
258 devvp = ump->um_devvp;
259 vref(devvp);
260 }
261 }
262
263 /*
264 * If mount by non-root, then verify that user has necessary
265 * permissions on the device.
266 */
267 if (error == 0 && kauth_authorize_generic(l->l_cred,
268 KAUTH_GENERIC_ISSUSER, NULL) != 0) {
269 accessmode = VREAD;
270 if (update ?
271 (mp->mnt_iflag & IMNT_WANTRDWR) != 0 :
272 (mp->mnt_flag & MNT_RDONLY) == 0)
273 accessmode |= VWRITE;
274 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
275 error = VOP_ACCESS(devvp, accessmode, l->l_cred, l);
276 VOP_UNLOCK(devvp, 0);
277 }
278
279 if (error) {
280 vrele(devvp);
281 return (error);
282 }
283
284 if (!update) {
285 int xflags;
286
287 /*
288 * Disallow multiple mounts of the same device.
289 * Disallow mounting of a device that is currently in use
290 * (except for root, which might share swap device for
291 * miniroot).
292 */
293 error = vfs_mountedon(devvp);
294 if (error)
295 goto fail;
296 if (vcount(devvp) > 1 && devvp != rootvp) {
297 error = EBUSY;
298 goto fail;
299 }
300 if (mp->mnt_flag & MNT_RDONLY)
301 xflags = FREAD;
302 else
303 xflags = FREAD|FWRITE;
304 error = VOP_OPEN(devvp, xflags, FSCRED, l);
305 if (error)
306 goto fail;
307 error = ffs_mountfs(devvp, mp, l);
308 if (error) {
309 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
310 (void)VOP_CLOSE(devvp, xflags, NOCRED, l);
311 VOP_UNLOCK(devvp, 0);
312 goto fail;
313 }
314
315 ump = VFSTOUFS(mp);
316 fs = ump->um_fs;
317 if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
318 (MNT_SOFTDEP | MNT_ASYNC)) {
319 printf("%s fs uses soft updates, "
320 "ignoring async mode\n",
321 fs->fs_fsmnt);
322 mp->mnt_flag &= ~MNT_ASYNC;
323 }
324 } else {
325 /*
326 * Update the mount.
327 */
328
329 /*
330 * The initial mount got a reference on this
331 * device, so drop the one obtained via
332 * namei(), above.
333 */
334 vrele(devvp);
335
336 ump = VFSTOUFS(mp);
337 fs = ump->um_fs;
338 if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
339 /*
340 * Changing from r/w to r/o
341 */
342 flags = WRITECLOSE;
343 if (mp->mnt_flag & MNT_FORCE)
344 flags |= FORCECLOSE;
345 if (mp->mnt_flag & MNT_SOFTDEP)
346 error = softdep_flushfiles(mp, flags, l);
347 else
348 error = ffs_flushfiles(mp, flags, l);
349 if (fs->fs_pendingblocks != 0 ||
350 fs->fs_pendinginodes != 0) {
351 printf("%s: update error: blocks %" PRId64
352 " files %d\n",
353 fs->fs_fsmnt, fs->fs_pendingblocks,
354 fs->fs_pendinginodes);
355 fs->fs_pendingblocks = 0;
356 fs->fs_pendinginodes = 0;
357 }
358 if (error == 0 &&
359 ffs_cgupdate(ump, MNT_WAIT) == 0 &&
360 fs->fs_clean & FS_WASCLEAN) {
361 if (mp->mnt_flag & MNT_SOFTDEP)
362 fs->fs_flags &= ~FS_DOSOFTDEP;
363 fs->fs_clean = FS_ISCLEAN;
364 (void) ffs_sbupdate(ump, MNT_WAIT);
365 }
366 if (error)
367 return (error);
368 fs->fs_ronly = 1;
369 fs->fs_fmod = 0;
370 }
371
372 /*
373 * Flush soft dependencies if disabling it via an update
374 * mount. This may leave some items to be processed,
375 * so don't do this yet XXX.
376 */
377 if ((fs->fs_flags & FS_DOSOFTDEP) &&
378 !(mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
379 #ifdef notyet
380 flags = WRITECLOSE;
381 if (mp->mnt_flag & MNT_FORCE)
382 flags |= FORCECLOSE;
383 error = softdep_flushfiles(mp, flags, l);
384 if (error == 0 && ffs_cgupdate(ump, MNT_WAIT) == 0)
385 fs->fs_flags &= ~FS_DOSOFTDEP;
386 (void) ffs_sbupdate(ump, MNT_WAIT);
387 #elif defined(SOFTDEP)
388 mp->mnt_flag |= MNT_SOFTDEP;
389 #endif
390 }
391
392 /*
393 * When upgrading to a softdep mount, we must first flush
394 * all vnodes. (not done yet -- see above)
395 */
396 if (!(fs->fs_flags & FS_DOSOFTDEP) &&
397 (mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
398 #ifdef notyet
399 flags = WRITECLOSE;
400 if (mp->mnt_flag & MNT_FORCE)
401 flags |= FORCECLOSE;
402 error = ffs_flushfiles(mp, flags, l);
403 #else
404 mp->mnt_flag &= ~MNT_SOFTDEP;
405 #endif
406 }
407
408 if (mp->mnt_flag & MNT_RELOAD) {
409 error = ffs_reload(mp, l->l_cred, l);
410 if (error)
411 return (error);
412 }
413
414 if (fs->fs_ronly && (mp->mnt_iflag & IMNT_WANTRDWR)) {
415 /*
416 * Changing from read-only to read/write
417 */
418 fs->fs_ronly = 0;
419 fs->fs_clean <<= 1;
420 fs->fs_fmod = 1;
421 if ((fs->fs_flags & FS_DOSOFTDEP)) {
422 error = softdep_mount(devvp, mp, fs,
423 l->l_cred);
424 if (error)
425 return (error);
426 }
427 if (fs->fs_snapinum[0] != 0)
428 ffs_snapshot_mount(mp);
429 }
430 if (args.fspec == NULL)
431 return EINVAL;
432 if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
433 (MNT_SOFTDEP | MNT_ASYNC)) {
434 printf("%s fs uses soft updates, ignoring async mode\n",
435 fs->fs_fsmnt);
436 mp->mnt_flag &= ~MNT_ASYNC;
437 }
438 }
439
440 error = set_statvfs_info(path, UIO_USERSPACE, args.fspec,
441 UIO_USERSPACE, mp, l);
442 if (error == 0)
443 (void)strncpy(fs->fs_fsmnt, mp->mnt_stat.f_mntonname,
444 sizeof(fs->fs_fsmnt));
445 if (mp->mnt_flag & MNT_SOFTDEP)
446 fs->fs_flags |= FS_DOSOFTDEP;
447 else
448 fs->fs_flags &= ~FS_DOSOFTDEP;
449 if (fs->fs_fmod != 0) { /* XXX */
450 fs->fs_fmod = 0;
451 if (fs->fs_clean & FS_WASCLEAN)
452 fs->fs_time = time_second;
453 else {
454 printf("%s: file system not clean (fs_clean=%x); please fsck(8)\n",
455 mp->mnt_stat.f_mntfromname, fs->fs_clean);
456 printf("%s: lost blocks %" PRId64 " files %d\n",
457 mp->mnt_stat.f_mntfromname, fs->fs_pendingblocks,
458 fs->fs_pendinginodes);
459 }
460 (void) ffs_cgupdate(ump, MNT_WAIT);
461 }
462 return (error);
463
464 fail:
465 vrele(devvp);
466 return (error);
467 }
468
469 /*
470 * Reload all incore data for a filesystem (used after running fsck on
471 * the root filesystem and finding things to fix). The filesystem must
472 * be mounted read-only.
473 *
474 * Things to do to update the mount:
475 * 1) invalidate all cached meta-data.
476 * 2) re-read superblock from disk.
477 * 3) re-read summary information from disk.
478 * 4) invalidate all inactive vnodes.
479 * 5) invalidate all cached file data.
480 * 6) re-read inode data for all active vnodes.
481 */
482 int
483 ffs_reload(struct mount *mp, kauth_cred_t cred, struct lwp *l)
484 {
485 struct vnode *vp, *nvp, *devvp;
486 struct inode *ip;
487 void *space;
488 struct buf *bp;
489 struct fs *fs, *newfs;
490 struct partinfo dpart;
491 int i, blks, size, error;
492 int32_t *lp;
493 struct ufsmount *ump;
494 daddr_t sblockloc;
495
496 if ((mp->mnt_flag & MNT_RDONLY) == 0)
497 return (EINVAL);
498
499 ump = VFSTOUFS(mp);
500 /*
501 * Step 1: invalidate all cached meta-data.
502 */
503 devvp = ump->um_devvp;
504 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
505 error = vinvalbuf(devvp, 0, cred, l, 0, 0);
506 VOP_UNLOCK(devvp, 0);
507 if (error)
508 panic("ffs_reload: dirty1");
509 /*
510 * Step 2: re-read superblock from disk.
511 */
512 fs = ump->um_fs;
513 if (VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, NOCRED, l) != 0)
514 size = DEV_BSIZE;
515 else
516 size = dpart.disklab->d_secsize;
517 /* XXX we don't handle possibility that superblock moved. */
518 error = bread(devvp, fs->fs_sblockloc / size, fs->fs_sbsize,
519 NOCRED, &bp);
520 if (error) {
521 brelse(bp, 0);
522 return (error);
523 }
524 newfs = malloc(fs->fs_sbsize, M_UFSMNT, M_WAITOK);
525 memcpy(newfs, bp->b_data, fs->fs_sbsize);
526 #ifdef FFS_EI
527 if (ump->um_flags & UFS_NEEDSWAP) {
528 ffs_sb_swap((struct fs*)bp->b_data, newfs);
529 fs->fs_flags |= FS_SWAPPED;
530 } else
531 #endif
532 fs->fs_flags &= ~FS_SWAPPED;
533 if ((newfs->fs_magic != FS_UFS1_MAGIC &&
534 newfs->fs_magic != FS_UFS2_MAGIC)||
535 newfs->fs_bsize > MAXBSIZE ||
536 newfs->fs_bsize < sizeof(struct fs)) {
537 brelse(bp, 0);
538 free(newfs, M_UFSMNT);
539 return (EIO); /* XXX needs translation */
540 }
541 /* Store off old fs_sblockloc for fs_oldfscompat_read. */
542 sblockloc = fs->fs_sblockloc;
543 /*
544 * Copy pointer fields back into superblock before copying in XXX
545 * new superblock. These should really be in the ufsmount. XXX
546 * Note that important parameters (eg fs_ncg) are unchanged.
547 */
548 newfs->fs_csp = fs->fs_csp;
549 newfs->fs_maxcluster = fs->fs_maxcluster;
550 newfs->fs_contigdirs = fs->fs_contigdirs;
551 newfs->fs_ronly = fs->fs_ronly;
552 newfs->fs_active = fs->fs_active;
553 memcpy(fs, newfs, (u_int)fs->fs_sbsize);
554 brelse(bp, 0);
555 free(newfs, M_UFSMNT);
556
557 /* Recheck for apple UFS filesystem */
558 ump->um_flags &= ~UFS_ISAPPLEUFS;
559 /* First check to see if this is tagged as an Apple UFS filesystem
560 * in the disklabel
561 */
562 if ((VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) == 0) &&
563 (dpart.part->p_fstype == FS_APPLEUFS)) {
564 ump->um_flags |= UFS_ISAPPLEUFS;
565 }
566 #ifdef APPLE_UFS
567 else {
568 /* Manually look for an apple ufs label, and if a valid one
569 * is found, then treat it like an Apple UFS filesystem anyway
570 */
571 error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / size),
572 APPLEUFS_LABEL_SIZE, cred, &bp);
573 if (error) {
574 brelse(bp, 0);
575 return (error);
576 }
577 error = ffs_appleufs_validate(fs->fs_fsmnt,
578 (struct appleufslabel *)bp->b_data,NULL);
579 if (error == 0)
580 ump->um_flags |= UFS_ISAPPLEUFS;
581 brelse(bp, 0);
582 bp = NULL;
583 }
584 #else
585 if (ump->um_flags & UFS_ISAPPLEUFS)
586 return (EIO);
587 #endif
588
589 if (UFS_MPISAPPLEUFS(ump)) {
590 /* see comment about NeXT below */
591 ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
592 ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
593 mp->mnt_iflag |= IMNT_DTYPE;
594 } else {
595 ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
596 ump->um_dirblksiz = DIRBLKSIZ;
597 if (ump->um_maxsymlinklen > 0)
598 mp->mnt_iflag |= IMNT_DTYPE;
599 else
600 mp->mnt_iflag &= ~IMNT_DTYPE;
601 }
602 ffs_oldfscompat_read(fs, ump, sblockloc);
603 mutex_enter(&ump->um_lock);
604 ump->um_maxfilesize = fs->fs_maxfilesize;
605 if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
606 fs->fs_pendingblocks = 0;
607 fs->fs_pendinginodes = 0;
608 }
609 mutex_exit(&ump->um_lock);
610
611 ffs_statvfs(mp, &mp->mnt_stat, l);
612 /*
613 * Step 3: re-read summary information from disk.
614 */
615 blks = howmany(fs->fs_cssize, fs->fs_fsize);
616 space = fs->fs_csp;
617 for (i = 0; i < blks; i += fs->fs_frag) {
618 size = fs->fs_bsize;
619 if (i + fs->fs_frag > blks)
620 size = (blks - i) * fs->fs_fsize;
621 error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
622 NOCRED, &bp);
623 if (error) {
624 brelse(bp, 0);
625 return (error);
626 }
627 #ifdef FFS_EI
628 if (UFS_FSNEEDSWAP(fs))
629 ffs_csum_swap((struct csum *)bp->b_data,
630 (struct csum *)space, size);
631 else
632 #endif
633 memcpy(space, bp->b_data, (size_t)size);
634 space = (char *)space + size;
635 brelse(bp, 0);
636 }
637 if ((fs->fs_flags & FS_DOSOFTDEP))
638 softdep_mount(devvp, mp, fs, cred);
639 if (fs->fs_snapinum[0] != 0)
640 ffs_snapshot_mount(mp);
641 /*
642 * We no longer know anything about clusters per cylinder group.
643 */
644 if (fs->fs_contigsumsize > 0) {
645 lp = fs->fs_maxcluster;
646 for (i = 0; i < fs->fs_ncg; i++)
647 *lp++ = fs->fs_contigsumsize;
648 }
649
650 loop:
651 /*
652 * NOTE: not using the TAILQ_FOREACH here since in this loop vgone()
653 * and vclean() can be called indirectly
654 */
655 mutex_enter(&mntvnode_lock);
656 for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
657 if (vp->v_mount != mp) {
658 mutex_exit(&mntvnode_lock);
659 goto loop;
660 }
661 /*
662 * Step 4: invalidate all inactive vnodes.
663 */
664 if (vrecycle(vp, &mntvnode_lock, l))
665 goto loop;
666 /*
667 * Step 5: invalidate all cached file data.
668 */
669 mutex_enter(&vp->v_interlock);
670 nvp = TAILQ_NEXT(vp, v_mntvnodes);
671 mutex_exit(&mntvnode_lock);
672 if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK))
673 goto loop;
674 if (vinvalbuf(vp, 0, cred, l, 0, 0))
675 panic("ffs_reload: dirty2");
676 /*
677 * Step 6: re-read inode data for all active vnodes.
678 */
679 ip = VTOI(vp);
680 error = bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
681 (int)fs->fs_bsize, NOCRED, &bp);
682 if (error) {
683 brelse(bp, 0);
684 vput(vp);
685 return (error);
686 }
687 ffs_load_inode(bp, ip, fs, ip->i_number);
688 ip->i_ffs_effnlink = ip->i_nlink;
689 brelse(bp, 0);
690 vput(vp);
691 mutex_enter(&mntvnode_lock);
692 }
693 mutex_exit(&mntvnode_lock);
694 return (0);
695 }
696
697 /*
698 * Possible superblock locations ordered from most to least likely.
699 */
700 static const int sblock_try[] = SBLOCKSEARCH;
701
702 /*
703 * Common code for mount and mountroot
704 */
705 int
706 ffs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l)
707 {
708 struct ufsmount *ump;
709 struct buf *bp;
710 struct fs *fs;
711 dev_t dev;
712 struct partinfo dpart;
713 void *space;
714 daddr_t sblockloc, fsblockloc;
715 int blks, fstype;
716 int error, i, size, ronly, bset = 0;
717 #ifdef FFS_EI
718 int needswap = 0; /* keep gcc happy */
719 #endif
720 int32_t *lp;
721 kauth_cred_t cred;
722 u_int32_t sbsize = 8192; /* keep gcc happy*/
723
724 dev = devvp->v_rdev;
725 cred = l ? l->l_cred : NOCRED;
726
727 /* Flush out any old buffers remaining from a previous use. */
728 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
729 error = vinvalbuf(devvp, V_SAVE, cred, l, 0, 0);
730 VOP_UNLOCK(devvp, 0);
731 if (error)
732 return (error);
733
734 ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
735 if (VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) != 0)
736 size = DEV_BSIZE;
737 else
738 size = dpart.disklab->d_secsize;
739
740 bp = NULL;
741 ump = NULL;
742 fs = NULL;
743 sblockloc = 0;
744 fstype = 0;
745
746 /*
747 * Try reading the superblock in each of its possible locations.
748 */
749 for (i = 0; ; i++) {
750 if (bp != NULL) {
751 brelse(bp, B_NOCACHE);
752 bp = NULL;
753 }
754 if (sblock_try[i] == -1) {
755 error = EINVAL;
756 fs = NULL;
757 goto out;
758 }
759 error = bread(devvp, sblock_try[i] / size, SBLOCKSIZE, cred,
760 &bp);
761 if (error) {
762 fs = NULL;
763 goto out;
764 }
765 fs = (struct fs*)bp->b_data;
766 fsblockloc = sblockloc = sblock_try[i];
767 if (fs->fs_magic == FS_UFS1_MAGIC) {
768 sbsize = fs->fs_sbsize;
769 fstype = UFS1;
770 #ifdef FFS_EI
771 needswap = 0;
772 } else if (fs->fs_magic == bswap32(FS_UFS1_MAGIC)) {
773 sbsize = bswap32(fs->fs_sbsize);
774 fstype = UFS1;
775 needswap = 1;
776 #endif
777 } else if (fs->fs_magic == FS_UFS2_MAGIC) {
778 sbsize = fs->fs_sbsize;
779 fstype = UFS2;
780 #ifdef FFS_EI
781 needswap = 0;
782 } else if (fs->fs_magic == bswap32(FS_UFS2_MAGIC)) {
783 sbsize = bswap32(fs->fs_sbsize);
784 fstype = UFS2;
785 needswap = 1;
786 #endif
787 } else
788 continue;
789
790
791 /* fs->fs_sblockloc isn't defined for old filesystems */
792 if (fstype == UFS1 && !(fs->fs_old_flags & FS_FLAGS_UPDATED)) {
793 if (sblockloc == SBLOCK_UFS2)
794 /*
795 * This is likely to be the first alternate
796 * in a filesystem with 64k blocks.
797 * Don't use it.
798 */
799 continue;
800 fsblockloc = sblockloc;
801 } else {
802 fsblockloc = fs->fs_sblockloc;
803 #ifdef FFS_EI
804 if (needswap)
805 fsblockloc = bswap64(fsblockloc);
806 #endif
807 }
808
809 /* Check we haven't found an alternate superblock */
810 if (fsblockloc != sblockloc)
811 continue;
812
813 /* Validate size of superblock */
814 if (sbsize > MAXBSIZE || sbsize < sizeof(struct fs))
815 continue;
816
817 /* Ok seems to be a good superblock */
818 break;
819 }
820
821 fs = malloc((u_long)sbsize, M_UFSMNT, M_WAITOK);
822 memcpy(fs, bp->b_data, sbsize);
823
824 ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
825 memset(ump, 0, sizeof *ump);
826 mutex_init(&ump->um_lock, MUTEX_DEFAULT, IPL_NONE);
827 TAILQ_INIT(&ump->um_snapshots);
828 ump->um_fs = fs;
829 ump->um_ops = &ffs_ufsops;
830
831 #ifdef FFS_EI
832 if (needswap) {
833 ffs_sb_swap((struct fs*)bp->b_data, fs);
834 fs->fs_flags |= FS_SWAPPED;
835 } else
836 #endif
837 fs->fs_flags &= ~FS_SWAPPED;
838
839 ffs_oldfscompat_read(fs, ump, sblockloc);
840 ump->um_maxfilesize = fs->fs_maxfilesize;
841
842 if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
843 fs->fs_pendingblocks = 0;
844 fs->fs_pendinginodes = 0;
845 }
846
847 ump->um_fstype = fstype;
848 if (fs->fs_sbsize < SBLOCKSIZE)
849 brelse(bp, B_INVAL);
850 else
851 brelse(bp, 0);
852 bp = NULL;
853
854 /* First check to see if this is tagged as an Apple UFS filesystem
855 * in the disklabel
856 */
857 if ((VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) == 0) &&
858 (dpart.part->p_fstype == FS_APPLEUFS)) {
859 ump->um_flags |= UFS_ISAPPLEUFS;
860 }
861 #ifdef APPLE_UFS
862 else {
863 /* Manually look for an apple ufs label, and if a valid one
864 * is found, then treat it like an Apple UFS filesystem anyway
865 */
866 error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / size),
867 APPLEUFS_LABEL_SIZE, cred, &bp);
868 if (error)
869 goto out;
870 error = ffs_appleufs_validate(fs->fs_fsmnt,
871 (struct appleufslabel *)bp->b_data,NULL);
872 if (error == 0) {
873 ump->um_flags |= UFS_ISAPPLEUFS;
874 }
875 brelse(bp, 0);
876 bp = NULL;
877 }
878 #else
879 if (ump->um_flags & UFS_ISAPPLEUFS) {
880 error = EINVAL;
881 goto out;
882 }
883 #endif
884
885 /*
886 * verify that we can access the last block in the fs
887 * if we're mounting read/write.
888 */
889
890 if (!ronly) {
891 error = bread(devvp, fsbtodb(fs, fs->fs_size - 1), fs->fs_fsize,
892 cred, &bp);
893 if (bp->b_bcount != fs->fs_fsize)
894 error = EINVAL;
895 if (error) {
896 bset = B_INVAL;
897 goto out;
898 }
899 brelse(bp, B_INVAL);
900 bp = NULL;
901 }
902
903 fs->fs_ronly = ronly;
904 if (ronly == 0) {
905 fs->fs_clean <<= 1;
906 fs->fs_fmod = 1;
907 }
908 size = fs->fs_cssize;
909 blks = howmany(size, fs->fs_fsize);
910 if (fs->fs_contigsumsize > 0)
911 size += fs->fs_ncg * sizeof(int32_t);
912 size += fs->fs_ncg * sizeof(*fs->fs_contigdirs);
913 space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
914 fs->fs_csp = space;
915 for (i = 0; i < blks; i += fs->fs_frag) {
916 size = fs->fs_bsize;
917 if (i + fs->fs_frag > blks)
918 size = (blks - i) * fs->fs_fsize;
919 error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
920 cred, &bp);
921 if (error) {
922 free(fs->fs_csp, M_UFSMNT);
923 goto out;
924 }
925 #ifdef FFS_EI
926 if (needswap)
927 ffs_csum_swap((struct csum *)bp->b_data,
928 (struct csum *)space, size);
929 else
930 #endif
931 memcpy(space, bp->b_data, (u_int)size);
932
933 space = (char *)space + size;
934 brelse(bp, 0);
935 bp = NULL;
936 }
937 if (fs->fs_contigsumsize > 0) {
938 fs->fs_maxcluster = lp = space;
939 for (i = 0; i < fs->fs_ncg; i++)
940 *lp++ = fs->fs_contigsumsize;
941 space = lp;
942 }
943 size = fs->fs_ncg * sizeof(*fs->fs_contigdirs);
944 fs->fs_contigdirs = space;
945 space = (char *)space + size;
946 memset(fs->fs_contigdirs, 0, size);
947 /* Compatibility for old filesystems - XXX */
948 if (fs->fs_avgfilesize <= 0)
949 fs->fs_avgfilesize = AVFILESIZ;
950 if (fs->fs_avgfpdir <= 0)
951 fs->fs_avgfpdir = AFPDIR;
952 fs->fs_active = NULL;
953 mp->mnt_data = ump;
954 mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
955 mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_FFS);
956 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
957 mp->mnt_stat.f_namemax = FFS_MAXNAMLEN;
958 if (UFS_MPISAPPLEUFS(ump)) {
959 /* NeXT used to keep short symlinks in the inode even
960 * when using FS_42INODEFMT. In that case fs->fs_maxsymlinklen
961 * is probably -1, but we still need to be able to identify
962 * short symlinks.
963 */
964 ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
965 ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
966 mp->mnt_iflag |= IMNT_DTYPE;
967 } else {
968 ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
969 ump->um_dirblksiz = DIRBLKSIZ;
970 if (ump->um_maxsymlinklen > 0)
971 mp->mnt_iflag |= IMNT_DTYPE;
972 else
973 mp->mnt_iflag &= ~IMNT_DTYPE;
974 }
975 mp->mnt_fs_bshift = fs->fs_bshift;
976 mp->mnt_dev_bshift = DEV_BSHIFT; /* XXX */
977 mp->mnt_flag |= MNT_LOCAL;
978 mp->mnt_iflag |= IMNT_HAS_TRANS;
979 #ifdef FFS_EI
980 if (needswap)
981 ump->um_flags |= UFS_NEEDSWAP;
982 #endif
983 ump->um_mountp = mp;
984 ump->um_dev = dev;
985 ump->um_devvp = devvp;
986 ump->um_nindir = fs->fs_nindir;
987 ump->um_lognindir = ffs(fs->fs_nindir) - 1;
988 ump->um_bptrtodb = fs->fs_fsbtodb;
989 ump->um_seqinc = fs->fs_frag;
990 for (i = 0; i < MAXQUOTAS; i++)
991 ump->um_quotas[i] = NULLVP;
992 devvp->v_specmountpoint = mp;
993 if (ronly == 0 && (fs->fs_flags & FS_DOSOFTDEP)) {
994 error = softdep_mount(devvp, mp, fs, cred);
995 if (error) {
996 free(fs->fs_csp, M_UFSMNT);
997 goto out;
998 }
999 }
1000 if (ronly == 0 && fs->fs_snapinum[0] != 0)
1001 ffs_snapshot_mount(mp);
1002 #ifdef UFS_EXTATTR
1003 /*
1004 * Initialize file-backed extended attributes on UFS1 file
1005 * systems.
1006 */
1007 if (ump->um_fstype == UFS1) {
1008 ufs_extattr_uepm_init(&ump->um_extattr);
1009 #ifdef UFS_EXTATTR_AUTOSTART
1010 /*
1011 * XXX Just ignore errors. Not clear that we should
1012 * XXX fail the mount in this case.
1013 */
1014 (void) ufs_extattr_autostart(mp, l);
1015 #endif
1016 }
1017 #endif /* UFS_EXTATTR */
1018 return (0);
1019 out:
1020 if (fs)
1021 free(fs, M_UFSMNT);
1022 devvp->v_specmountpoint = NULL;
1023 if (bp)
1024 brelse(bp, bset);
1025 if (ump) {
1026 if (ump->um_oldfscompat)
1027 free(ump->um_oldfscompat, M_UFSMNT);
1028 mutex_destroy(&ump->um_lock);
1029 free(ump, M_UFSMNT);
1030 mp->mnt_data = NULL;
1031 }
1032 return (error);
1033 }
1034
1035 /*
1036 * Sanity checks for loading old filesystem superblocks.
1037 * See ffs_oldfscompat_write below for unwound actions.
1038 *
1039 * XXX - Parts get retired eventually.
1040 * Unfortunately new bits get added.
1041 */
1042 static void
1043 ffs_oldfscompat_read(struct fs *fs, struct ufsmount *ump, daddr_t sblockloc)
1044 {
1045 off_t maxfilesize;
1046 int32_t *extrasave;
1047
1048 if ((fs->fs_magic != FS_UFS1_MAGIC) ||
1049 (fs->fs_old_flags & FS_FLAGS_UPDATED))
1050 return;
1051
1052 if (!ump->um_oldfscompat)
1053 ump->um_oldfscompat = malloc(512 + 3*sizeof(int32_t),
1054 M_UFSMNT, M_WAITOK);
1055
1056 memcpy(ump->um_oldfscompat, &fs->fs_old_postbl_start, 512);
1057 extrasave = ump->um_oldfscompat;
1058 extrasave += 512/sizeof(int32_t);
1059 extrasave[0] = fs->fs_old_npsect;
1060 extrasave[1] = fs->fs_old_interleave;
1061 extrasave[2] = fs->fs_old_trackskew;
1062
1063 /* These fields will be overwritten by their
1064 * original values in fs_oldfscompat_write, so it is harmless
1065 * to modify them here.
1066 */
1067 fs->fs_cstotal.cs_ndir = fs->fs_old_cstotal.cs_ndir;
1068 fs->fs_cstotal.cs_nbfree = fs->fs_old_cstotal.cs_nbfree;
1069 fs->fs_cstotal.cs_nifree = fs->fs_old_cstotal.cs_nifree;
1070 fs->fs_cstotal.cs_nffree = fs->fs_old_cstotal.cs_nffree;
1071
1072 fs->fs_maxbsize = fs->fs_bsize;
1073 fs->fs_time = fs->fs_old_time;
1074 fs->fs_size = fs->fs_old_size;
1075 fs->fs_dsize = fs->fs_old_dsize;
1076 fs->fs_csaddr = fs->fs_old_csaddr;
1077 fs->fs_sblockloc = sblockloc;
1078
1079 fs->fs_flags = fs->fs_old_flags | (fs->fs_flags & FS_INTERNAL);
1080
1081 if (fs->fs_old_postblformat == FS_42POSTBLFMT) {
1082 fs->fs_old_nrpos = 8;
1083 fs->fs_old_npsect = fs->fs_old_nsect;
1084 fs->fs_old_interleave = 1;
1085 fs->fs_old_trackskew = 0;
1086 }
1087
1088 if (fs->fs_old_inodefmt < FS_44INODEFMT) {
1089 fs->fs_maxfilesize = (u_quad_t) 1LL << 39;
1090 fs->fs_qbmask = ~fs->fs_bmask;
1091 fs->fs_qfmask = ~fs->fs_fmask;
1092 }
1093
1094 maxfilesize = (u_int64_t)0x80000000 * fs->fs_bsize - 1;
1095 if (fs->fs_maxfilesize > maxfilesize)
1096 fs->fs_maxfilesize = maxfilesize;
1097
1098 /* Compatibility for old filesystems */
1099 if (fs->fs_avgfilesize <= 0)
1100 fs->fs_avgfilesize = AVFILESIZ;
1101 if (fs->fs_avgfpdir <= 0)
1102 fs->fs_avgfpdir = AFPDIR;
1103
1104 #if 0
1105 if (bigcgs) {
1106 fs->fs_save_cgsize = fs->fs_cgsize;
1107 fs->fs_cgsize = fs->fs_bsize;
1108 }
1109 #endif
1110 }
1111
1112 /*
1113 * Unwinding superblock updates for old filesystems.
1114 * See ffs_oldfscompat_read above for details.
1115 *
1116 * XXX - Parts get retired eventually.
1117 * Unfortunately new bits get added.
1118 */
1119 static void
1120 ffs_oldfscompat_write(struct fs *fs, struct ufsmount *ump)
1121 {
1122 int32_t *extrasave;
1123
1124 if ((fs->fs_magic != FS_UFS1_MAGIC) ||
1125 (fs->fs_old_flags & FS_FLAGS_UPDATED))
1126 return;
1127
1128 fs->fs_old_time = fs->fs_time;
1129 fs->fs_old_cstotal.cs_ndir = fs->fs_cstotal.cs_ndir;
1130 fs->fs_old_cstotal.cs_nbfree = fs->fs_cstotal.cs_nbfree;
1131 fs->fs_old_cstotal.cs_nifree = fs->fs_cstotal.cs_nifree;
1132 fs->fs_old_cstotal.cs_nffree = fs->fs_cstotal.cs_nffree;
1133 fs->fs_old_flags = fs->fs_flags;
1134
1135 #if 0
1136 if (bigcgs) {
1137 fs->fs_cgsize = fs->fs_save_cgsize;
1138 }
1139 #endif
1140
1141 memcpy(&fs->fs_old_postbl_start, ump->um_oldfscompat, 512);
1142 extrasave = ump->um_oldfscompat;
1143 extrasave += 512/sizeof(int32_t);
1144 fs->fs_old_npsect = extrasave[0];
1145 fs->fs_old_interleave = extrasave[1];
1146 fs->fs_old_trackskew = extrasave[2];
1147
1148 }
1149
1150 /*
1151 * unmount system call
1152 */
1153 int
1154 ffs_unmount(struct mount *mp, int mntflags, struct lwp *l)
1155 {
1156 struct ufsmount *ump = VFSTOUFS(mp);
1157 struct fs *fs = ump->um_fs;
1158 int error, flags, penderr;
1159
1160 penderr = 0;
1161 flags = 0;
1162 if (mntflags & MNT_FORCE)
1163 flags |= FORCECLOSE;
1164 #ifdef UFS_EXTATTR
1165 if (ump->um_fstype == UFS1) {
1166 error = ufs_extattr_stop(mp, l);
1167 if (error) {
1168 if (error != EOPNOTSUPP)
1169 printf("%s: ufs_extattr_stop returned %d\n",
1170 fs->fs_fsmnt, error);
1171 } else
1172 ufs_extattr_uepm_destroy(&ump->um_extattr);
1173 }
1174 #endif /* UFS_EXTATTR */
1175 if (mp->mnt_flag & MNT_SOFTDEP) {
1176 if ((error = softdep_flushfiles(mp, flags, l)) != 0)
1177 return (error);
1178 } else {
1179 if ((error = ffs_flushfiles(mp, flags, l)) != 0)
1180 return (error);
1181 }
1182 if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
1183 printf("%s: unmount pending error: blocks %" PRId64
1184 " files %d\n",
1185 fs->fs_fsmnt, fs->fs_pendingblocks, fs->fs_pendinginodes);
1186 fs->fs_pendingblocks = 0;
1187 fs->fs_pendinginodes = 0;
1188 penderr = 1;
1189 }
1190 if (fs->fs_ronly == 0 &&
1191 ffs_cgupdate(ump, MNT_WAIT) == 0 &&
1192 fs->fs_clean & FS_WASCLEAN) {
1193 /*
1194 * XXXX don't mark fs clean in the case of softdep
1195 * pending block errors, until they are fixed.
1196 */
1197 if (penderr == 0) {
1198 if (mp->mnt_flag & MNT_SOFTDEP)
1199 fs->fs_flags &= ~FS_DOSOFTDEP;
1200 fs->fs_clean = FS_ISCLEAN;
1201 }
1202 fs->fs_fmod = 0;
1203 (void) ffs_sbupdate(ump, MNT_WAIT);
1204 }
1205 if (ump->um_devvp->v_type != VBAD)
1206 ump->um_devvp->v_specmountpoint = NULL;
1207 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1208 (void)VOP_CLOSE(ump->um_devvp, fs->fs_ronly ? FREAD : FREAD|FWRITE,
1209 NOCRED, l);
1210 vput(ump->um_devvp);
1211 free(fs->fs_csp, M_UFSMNT);
1212 free(fs, M_UFSMNT);
1213 if (ump->um_oldfscompat != NULL)
1214 free(ump->um_oldfscompat, M_UFSMNT);
1215 mutex_destroy(&ump->um_lock);
1216 free(ump, M_UFSMNT);
1217 mp->mnt_data = NULL;
1218 mp->mnt_flag &= ~MNT_LOCAL;
1219 return (0);
1220 }
1221
1222 /*
1223 * Flush out all the files in a filesystem.
1224 */
1225 int
1226 ffs_flushfiles(struct mount *mp, int flags, struct lwp *l)
1227 {
1228 extern int doforce;
1229 struct ufsmount *ump;
1230 int error;
1231
1232 if (!doforce)
1233 flags &= ~FORCECLOSE;
1234 ump = VFSTOUFS(mp);
1235 #ifdef QUOTA
1236 if (mp->mnt_flag & MNT_QUOTA) {
1237 int i;
1238 if ((error = vflush(mp, NULLVP, SKIPSYSTEM|flags)) != 0)
1239 return (error);
1240 for (i = 0; i < MAXQUOTAS; i++) {
1241 if (ump->um_quotas[i] == NULLVP)
1242 continue;
1243 quotaoff(l, mp, i);
1244 }
1245 /*
1246 * Here we fall through to vflush again to ensure
1247 * that we have gotten rid of all the system vnodes.
1248 */
1249 }
1250 #endif
1251 if ((error = vflush(mp, 0, SKIPSYSTEM | flags)) != 0)
1252 return (error);
1253 ffs_snapshot_unmount(mp);
1254 /*
1255 * Flush all the files.
1256 */
1257 error = vflush(mp, NULLVP, flags);
1258 if (error)
1259 return (error);
1260 /*
1261 * Flush filesystem metadata.
1262 */
1263 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1264 error = VOP_FSYNC(ump->um_devvp, l->l_cred, FSYNC_WAIT, 0, 0, l);
1265 VOP_UNLOCK(ump->um_devvp, 0);
1266 return (error);
1267 }
1268
1269 /*
1270 * Get file system statistics.
1271 */
1272 int
1273 ffs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *l)
1274 {
1275 struct ufsmount *ump;
1276 struct fs *fs;
1277
1278 ump = VFSTOUFS(mp);
1279 fs = ump->um_fs;
1280 sbp->f_bsize = fs->fs_bsize;
1281 sbp->f_frsize = fs->fs_fsize;
1282 sbp->f_iosize = fs->fs_bsize;
1283 sbp->f_blocks = fs->fs_dsize;
1284 sbp->f_bfree = blkstofrags(fs, fs->fs_cstotal.cs_nbfree) +
1285 fs->fs_cstotal.cs_nffree + dbtofsb(fs, fs->fs_pendingblocks);
1286 sbp->f_bresvd = ((u_int64_t) fs->fs_dsize * (u_int64_t)
1287 fs->fs_minfree) / (u_int64_t) 100;
1288 if (sbp->f_bfree > sbp->f_bresvd)
1289 sbp->f_bavail = sbp->f_bfree - sbp->f_bresvd;
1290 else
1291 sbp->f_bavail = 0;
1292 sbp->f_files = fs->fs_ncg * fs->fs_ipg - ROOTINO;
1293 sbp->f_ffree = fs->fs_cstotal.cs_nifree + fs->fs_pendinginodes;
1294 sbp->f_favail = sbp->f_ffree;
1295 sbp->f_fresvd = 0;
1296 copy_statvfs_info(sbp, mp);
1297 return (0);
1298 }
1299
1300 /*
1301 * Go through the disk queues to initiate sandbagged IO;
1302 * go through the inodes to write those that have been modified;
1303 * initiate the writing of the super block if it has been modified.
1304 *
1305 * Note: we are always called with the filesystem marked `MPBUSY'.
1306 */
1307 int
1308 ffs_sync(struct mount *mp, int waitfor, kauth_cred_t cred, struct lwp *l)
1309 {
1310 struct vnode *vp, *nvp;
1311 struct inode *ip;
1312 struct ufsmount *ump = VFSTOUFS(mp);
1313 struct fs *fs;
1314 int error, count, allerror = 0;
1315
1316 fs = ump->um_fs;
1317 if (fs->fs_fmod != 0 && fs->fs_ronly != 0) { /* XXX */
1318 printf("fs = %s\n", fs->fs_fsmnt);
1319 panic("update: rofs mod");
1320 }
1321 fstrans_start(mp, FSTRANS_SHARED);
1322 /*
1323 * Write back each (modified) inode.
1324 */
1325 mutex_enter(&mntvnode_lock);
1326 loop:
1327 /*
1328 * NOTE: not using the TAILQ_FOREACH here since in this loop vgone()
1329 * and vclean() can be called indirectly
1330 */
1331 for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
1332 /*
1333 * If the vnode that we are about to sync is no longer
1334 * associated with this mount point, start over.
1335 */
1336 if (vp->v_mount != mp)
1337 goto loop;
1338 mutex_enter(&vp->v_interlock);
1339 nvp = TAILQ_NEXT(vp, v_mntvnodes);
1340 ip = VTOI(vp);
1341 if (ip == NULL || (vp->v_iflag & VI_FREEING) != 0 ||
1342 vp->v_type == VNON || ((ip->i_flag &
1343 (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) == 0 &&
1344 LIST_EMPTY(&vp->v_dirtyblkhd) &&
1345 vp->v_uobj.uo_npages == 0))
1346 {
1347 mutex_exit(&vp->v_interlock);
1348 continue;
1349 }
1350 if (vp->v_type == VBLK &&
1351 fstrans_getstate(mp) == FSTRANS_SUSPENDING) {
1352 mutex_exit(&vp->v_interlock);
1353 continue;
1354 }
1355 mutex_exit(&mntvnode_lock);
1356 error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
1357 if (error) {
1358 mutex_enter(&mntvnode_lock);
1359 if (error == ENOENT)
1360 goto loop;
1361 continue;
1362 }
1363 if (vp->v_type == VREG && waitfor == MNT_LAZY)
1364 error = ffs_update(vp, NULL, NULL, 0);
1365 else
1366 error = VOP_FSYNC(vp, cred,
1367 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, l);
1368 if (error)
1369 allerror = error;
1370 vput(vp);
1371 mutex_enter(&mntvnode_lock);
1372 }
1373 mutex_exit(&mntvnode_lock);
1374 /*
1375 * Force stale file system control information to be flushed.
1376 */
1377 if (waitfor == MNT_WAIT && (ump->um_mountp->mnt_flag & MNT_SOFTDEP)) {
1378 if ((error = softdep_flushworklist(ump->um_mountp, &count, l)))
1379 allerror = error;
1380 /* Flushed work items may create new vnodes to clean */
1381 if (allerror == 0 && count) {
1382 mutex_enter(&mntvnode_lock);
1383 goto loop;
1384 }
1385 }
1386 if (waitfor != MNT_LAZY && (ump->um_devvp->v_numoutput > 0 ||
1387 !LIST_EMPTY(&ump->um_devvp->v_dirtyblkhd))) {
1388 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1389 if ((error = VOP_FSYNC(ump->um_devvp, cred,
1390 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, l)) != 0)
1391 allerror = error;
1392 VOP_UNLOCK(ump->um_devvp, 0);
1393 if (allerror == 0 && waitfor == MNT_WAIT) {
1394 mutex_enter(&mntvnode_lock);
1395 goto loop;
1396 }
1397 }
1398 #ifdef QUOTA
1399 qsync(mp);
1400 #endif
1401 /*
1402 * Write back modified superblock.
1403 */
1404 if (fs->fs_fmod != 0) {
1405 fs->fs_fmod = 0;
1406 fs->fs_time = time_second;
1407 if ((error = ffs_cgupdate(ump, waitfor)))
1408 allerror = error;
1409 }
1410 fstrans_done(mp);
1411 return (allerror);
1412 }
1413
1414 /*
1415 * Look up a FFS dinode number to find its incore vnode, otherwise read it
1416 * in from disk. If it is in core, wait for the lock bit to clear, then
1417 * return the inode locked. Detection and handling of mount points must be
1418 * done by the calling routine.
1419 */
1420 int
1421 ffs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1422 {
1423 struct fs *fs;
1424 struct inode *ip;
1425 struct ufsmount *ump;
1426 struct buf *bp;
1427 struct vnode *vp;
1428 dev_t dev;
1429 int error;
1430
1431 ump = VFSTOUFS(mp);
1432 dev = ump->um_dev;
1433
1434 retry:
1435 if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL)
1436 return (0);
1437
1438 /* Allocate a new vnode/inode. */
1439 if ((error = getnewvnode(VT_UFS, mp, ffs_vnodeop_p, &vp)) != 0) {
1440 *vpp = NULL;
1441 return (error);
1442 }
1443 ip = pool_get(&ffs_inode_pool, PR_WAITOK);
1444
1445 /*
1446 * If someone beat us to it, put back the freshly allocated
1447 * vnode/inode pair and retry.
1448 */
1449 mutex_enter(&ufs_hashlock);
1450 if (ufs_ihashget(dev, ino, 0) != NULL) {
1451 mutex_exit(&ufs_hashlock);
1452 ungetnewvnode(vp);
1453 pool_put(&ffs_inode_pool, ip);
1454 goto retry;
1455 }
1456
1457 vp->v_iflag |= VI_LOCKSWORK;
1458
1459 /*
1460 * XXX MFS ends up here, too, to allocate an inode. Should we
1461 * XXX create another pool for MFS inodes?
1462 */
1463
1464 memset(ip, 0, sizeof(struct inode));
1465 vp->v_data = ip;
1466 ip->i_vnode = vp;
1467 ip->i_ump = ump;
1468 ip->i_fs = fs = ump->um_fs;
1469 ip->i_dev = dev;
1470 ip->i_number = ino;
1471 LIST_INIT(&ip->i_pcbufhd);
1472 #ifdef QUOTA
1473 {
1474 int i;
1475
1476 for (i = 0; i < MAXQUOTAS; i++)
1477 ip->i_dquot[i] = NODQUOT;
1478 }
1479 #endif
1480
1481 /*
1482 * Put it onto its hash chain and lock it so that other requests for
1483 * this inode will block if they arrive while we are sleeping waiting
1484 * for old data structures to be purged or for the contents of the
1485 * disk portion of this inode to be read.
1486 */
1487
1488 ufs_ihashins(ip);
1489 mutex_exit(&ufs_hashlock);
1490
1491 /* Read in the disk contents for the inode, copy into the inode. */
1492 error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
1493 (int)fs->fs_bsize, NOCRED, &bp);
1494 if (error) {
1495
1496 /*
1497 * The inode does not contain anything useful, so it would
1498 * be misleading to leave it on its hash chain. With mode
1499 * still zero, it will be unlinked and returned to the free
1500 * list by vput().
1501 */
1502
1503 vput(vp);
1504 brelse(bp, 0);
1505 *vpp = NULL;
1506 return (error);
1507 }
1508 if (ip->i_ump->um_fstype == UFS1)
1509 ip->i_din.ffs1_din = pool_get(&ffs_dinode1_pool, PR_WAITOK);
1510 else
1511 ip->i_din.ffs2_din = pool_get(&ffs_dinode2_pool, PR_WAITOK);
1512 ffs_load_inode(bp, ip, fs, ino);
1513 if (DOINGSOFTDEP(vp))
1514 softdep_load_inodeblock(ip);
1515 else
1516 ip->i_ffs_effnlink = ip->i_nlink;
1517 brelse(bp, 0);
1518
1519 /*
1520 * Initialize the vnode from the inode, check for aliases.
1521 * Note that the underlying vnode may have changed.
1522 */
1523
1524 ufs_vinit(mp, ffs_specop_p, ffs_fifoop_p, &vp);
1525
1526 /*
1527 * Finish inode initialization now that aliasing has been resolved.
1528 */
1529
1530 genfs_node_init(vp, &ffs_genfsops);
1531 ip->i_devvp = ump->um_devvp;
1532 VREF(ip->i_devvp);
1533
1534 /*
1535 * Ensure that uid and gid are correct. This is a temporary
1536 * fix until fsck has been changed to do the update.
1537 */
1538
1539 if (fs->fs_old_inodefmt < FS_44INODEFMT) { /* XXX */
1540 ip->i_uid = ip->i_ffs1_ouid; /* XXX */
1541 ip->i_gid = ip->i_ffs1_ogid; /* XXX */
1542 } /* XXX */
1543 uvm_vnp_setsize(vp, ip->i_size);
1544 *vpp = vp;
1545 return (0);
1546 }
1547
1548 /*
1549 * File handle to vnode
1550 *
1551 * Have to be really careful about stale file handles:
1552 * - check that the inode number is valid
1553 * - call ffs_vget() to get the locked inode
1554 * - check for an unallocated inode (i_mode == 0)
1555 * - check that the given client host has export rights and return
1556 * those rights via. exflagsp and credanonp
1557 */
1558 int
1559 ffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1560 {
1561 struct ufid ufh;
1562 struct fs *fs;
1563
1564 if (fhp->fid_len != sizeof(struct ufid))
1565 return EINVAL;
1566
1567 memcpy(&ufh, fhp, sizeof(ufh));
1568 fs = VFSTOUFS(mp)->um_fs;
1569 if (ufh.ufid_ino < ROOTINO ||
1570 ufh.ufid_ino >= fs->fs_ncg * fs->fs_ipg)
1571 return (ESTALE);
1572 return (ufs_fhtovp(mp, &ufh, vpp));
1573 }
1574
1575 /*
1576 * Vnode pointer to File handle
1577 */
1578 /* ARGSUSED */
1579 int
1580 ffs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
1581 {
1582 struct inode *ip;
1583 struct ufid ufh;
1584
1585 if (*fh_size < sizeof(struct ufid)) {
1586 *fh_size = sizeof(struct ufid);
1587 return E2BIG;
1588 }
1589 ip = VTOI(vp);
1590 *fh_size = sizeof(struct ufid);
1591 memset(&ufh, 0, sizeof(ufh));
1592 ufh.ufid_len = sizeof(struct ufid);
1593 ufh.ufid_ino = ip->i_number;
1594 ufh.ufid_gen = ip->i_gen;
1595 memcpy(fhp, &ufh, sizeof(ufh));
1596 return (0);
1597 }
1598
1599 void
1600 ffs_init(void)
1601 {
1602 if (ffs_initcount++ > 0)
1603 return;
1604
1605 #ifdef _LKM
1606 pool_init(&ffs_inode_pool, sizeof(struct inode), 0, 0, 0,
1607 "ffsinopl", &pool_allocator_nointr, IPL_NONE);
1608 pool_init(&ffs_dinode1_pool, sizeof(struct ufs1_dinode), 0, 0, 0,
1609 "dino1pl", &pool_allocator_nointr, IPL_NONE);
1610 pool_init(&ffs_dinode2_pool, sizeof(struct ufs2_dinode), 0, 0, 0,
1611 "dino2pl", &pool_allocator_nointr, IPL_NONE);
1612 #endif
1613 softdep_initialize();
1614 ufs_init();
1615 }
1616
1617 void
1618 ffs_reinit(void)
1619 {
1620 softdep_reinitialize();
1621 ufs_reinit();
1622 }
1623
1624 void
1625 ffs_done(void)
1626 {
1627 if (--ffs_initcount > 0)
1628 return;
1629
1630 /* XXX softdep cleanup ? */
1631 ufs_done();
1632 #ifdef _LKM
1633 pool_destroy(&ffs_dinode2_pool);
1634 pool_destroy(&ffs_dinode1_pool);
1635 pool_destroy(&ffs_inode_pool);
1636 #endif
1637 }
1638
1639 SYSCTL_SETUP(sysctl_vfs_ffs_setup, "sysctl vfs.ffs subtree setup")
1640 {
1641 #if 0
1642 extern int doasyncfree;
1643 #endif
1644 extern int ffs_log_changeopt;
1645
1646 sysctl_createv(clog, 0, NULL, NULL,
1647 CTLFLAG_PERMANENT,
1648 CTLTYPE_NODE, "vfs", NULL,
1649 NULL, 0, NULL, 0,
1650 CTL_VFS, CTL_EOL);
1651 sysctl_createv(clog, 0, NULL, NULL,
1652 CTLFLAG_PERMANENT,
1653 CTLTYPE_NODE, "ffs",
1654 SYSCTL_DESCR("Berkeley Fast File System"),
1655 NULL, 0, NULL, 0,
1656 CTL_VFS, 1, CTL_EOL);
1657
1658 /*
1659 * @@@ should we even bother with these first three?
1660 */
1661 sysctl_createv(clog, 0, NULL, NULL,
1662 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1663 CTLTYPE_INT, "doclusterread", NULL,
1664 sysctl_notavail, 0, NULL, 0,
1665 CTL_VFS, 1, FFS_CLUSTERREAD, CTL_EOL);
1666 sysctl_createv(clog, 0, NULL, NULL,
1667 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1668 CTLTYPE_INT, "doclusterwrite", NULL,
1669 sysctl_notavail, 0, NULL, 0,
1670 CTL_VFS, 1, FFS_CLUSTERWRITE, CTL_EOL);
1671 sysctl_createv(clog, 0, NULL, NULL,
1672 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1673 CTLTYPE_INT, "doreallocblks", NULL,
1674 sysctl_notavail, 0, NULL, 0,
1675 CTL_VFS, 1, FFS_REALLOCBLKS, CTL_EOL);
1676 #if 0
1677 sysctl_createv(clog, 0, NULL, NULL,
1678 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1679 CTLTYPE_INT, "doasyncfree",
1680 SYSCTL_DESCR("Release dirty blocks asynchronously"),
1681 NULL, 0, &doasyncfree, 0,
1682 CTL_VFS, 1, FFS_ASYNCFREE, CTL_EOL);
1683 #endif
1684 sysctl_createv(clog, 0, NULL, NULL,
1685 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1686 CTLTYPE_INT, "log_changeopt",
1687 SYSCTL_DESCR("Log changes in optimization strategy"),
1688 NULL, 0, &ffs_log_changeopt, 0,
1689 CTL_VFS, 1, FFS_LOG_CHANGEOPT, CTL_EOL);
1690 }
1691
1692 /*
1693 * Write a superblock and associated information back to disk.
1694 */
1695 int
1696 ffs_sbupdate(struct ufsmount *mp, int waitfor)
1697 {
1698 struct fs *fs = mp->um_fs;
1699 struct buf *bp;
1700 int error = 0;
1701 u_int32_t saveflag;
1702
1703 bp = getblk(mp->um_devvp,
1704 fs->fs_sblockloc >> (fs->fs_fshift - fs->fs_fsbtodb),
1705 (int)fs->fs_sbsize, 0, 0);
1706 saveflag = fs->fs_flags & FS_INTERNAL;
1707 fs->fs_flags &= ~FS_INTERNAL;
1708
1709 memcpy(bp->b_data, fs, fs->fs_sbsize);
1710
1711 ffs_oldfscompat_write((struct fs *)bp->b_data, mp);
1712 #ifdef FFS_EI
1713 if (mp->um_flags & UFS_NEEDSWAP)
1714 ffs_sb_swap((struct fs *)bp->b_data, (struct fs *)bp->b_data);
1715 #endif
1716 fs->fs_flags |= saveflag;
1717
1718 if (waitfor == MNT_WAIT)
1719 error = bwrite(bp);
1720 else
1721 bawrite(bp);
1722 return (error);
1723 }
1724
1725 int
1726 ffs_cgupdate(struct ufsmount *mp, int waitfor)
1727 {
1728 struct fs *fs = mp->um_fs;
1729 struct buf *bp;
1730 int blks;
1731 void *space;
1732 int i, size, error = 0, allerror = 0;
1733
1734 allerror = ffs_sbupdate(mp, waitfor);
1735 blks = howmany(fs->fs_cssize, fs->fs_fsize);
1736 space = fs->fs_csp;
1737 for (i = 0; i < blks; i += fs->fs_frag) {
1738 size = fs->fs_bsize;
1739 if (i + fs->fs_frag > blks)
1740 size = (blks - i) * fs->fs_fsize;
1741 bp = getblk(mp->um_devvp, fsbtodb(fs, fs->fs_csaddr + i),
1742 size, 0, 0);
1743 #ifdef FFS_EI
1744 if (mp->um_flags & UFS_NEEDSWAP)
1745 ffs_csum_swap((struct csum*)space,
1746 (struct csum*)bp->b_data, size);
1747 else
1748 #endif
1749 memcpy(bp->b_data, space, (u_int)size);
1750 space = (char *)space + size;
1751 if (waitfor == MNT_WAIT)
1752 error = bwrite(bp);
1753 else
1754 bawrite(bp);
1755 }
1756 if (!allerror && error)
1757 allerror = error;
1758 return (allerror);
1759 }
1760
1761 int
1762 ffs_extattrctl(struct mount *mp, int cmd, struct vnode *vp,
1763 int attrnamespace, const char *attrname, struct lwp *l)
1764 {
1765 #ifdef UFS_EXTATTR
1766 /*
1767 * File-backed extended attributes are only supported on UFS1.
1768 * UFS2 has native extended attributes.
1769 */
1770 if (VFSTOUFS(mp)->um_fstype == UFS1)
1771 return (ufs_extattrctl(mp, cmd, vp, attrnamespace, attrname,
1772 l));
1773 #endif
1774 return (vfs_stdextattrctl(mp, cmd, vp, attrnamespace, attrname, l));
1775 }
1776
1777 int
1778 ffs_suspendctl(struct mount *mp, int cmd)
1779 {
1780 int error;
1781 struct lwp *l = curlwp;
1782
1783 switch (cmd) {
1784 case SUSPEND_SUSPEND:
1785 if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
1786 return error;
1787 error = ffs_sync(mp, MNT_WAIT, l->l_proc->p_cred, l);
1788 if (error == 0)
1789 error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
1790 if (error != 0) {
1791 (void) fstrans_setstate(mp, FSTRANS_NORMAL);
1792 return error;
1793 }
1794 return 0;
1795
1796 case SUSPEND_RESUME:
1797 return fstrans_setstate(mp, FSTRANS_NORMAL);
1798
1799 default:
1800 return EINVAL;
1801 }
1802 }
1803