Major BUF/BIO work commit. Make I/O BIO-centric and specify the disk or
[dragonfly.git] / sys / vfs / ufs / ffs_vfsops.c
1 /*
2  * Copyright (c) 1989, 1991, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)ffs_vfsops.c        8.31 (Berkeley) 5/20/95
34  * $FreeBSD: src/sys/ufs/ffs/ffs_vfsops.c,v 1.117.2.10 2002/06/23 22:34:52 iedowse Exp $
35  * $DragonFly: src/sys/vfs/ufs/ffs_vfsops.c,v 1.36 2006/03/24 18:35:34 dillon Exp $
36  */
37
38 #include "opt_quota.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/proc.h>
43 #include <sys/nlookup.h>
44 #include <sys/kernel.h>
45 #include <sys/vnode.h>
46 #include <sys/mount.h>
47 #include <sys/buf.h>
48 #include <sys/conf.h>
49 #include <sys/fcntl.h>
50 #include <sys/disklabel.h>
51 #include <sys/malloc.h>
52
53 #include "quota.h"
54 #include "ufsmount.h"
55 #include "inode.h"
56 #include "ufs_extern.h"
57
58 #include "fs.h"
59 #include "ffs_extern.h"
60
61 #include <vm/vm.h>
62 #include <vm/vm_page.h>
63 #include <vm/vm_zone.h>
64
65 static MALLOC_DEFINE(M_FFSNODE, "FFS node", "FFS vnode private part");
66
67 static int      ffs_sbupdate (struct ufsmount *, int);
68 static int      ffs_reload (struct mount *,struct ucred *,struct thread *);
69 static int      ffs_oldfscompat (struct fs *);
70 static int      ffs_mount (struct mount *, char *, caddr_t, struct thread *);
71 static int      ffs_init (struct vfsconf *);
72
73 static struct vfsops ufs_vfsops = {
74         .vfs_mount =            ffs_mount,
75         .vfs_unmount =          ffs_unmount,
76         .vfs_root =             ufs_root,
77         .vfs_quotactl =         ufs_quotactl,
78         .vfs_statfs =           ffs_statfs,
79         .vfs_sync =             ffs_sync,
80         .vfs_vget =             ffs_vget,
81         .vfs_fhtovp =           ffs_fhtovp,
82         .vfs_checkexp =         ufs_check_export,
83         .vfs_vptofh =           ffs_vptofh,
84         .vfs_init =             ffs_init,
85         .vfs_uninit =           ufs_uninit
86 };
87
88 VFS_SET(ufs_vfsops, ufs, 0);
89
90 extern struct vnodeopv_entry_desc ffs_vnodeop_entries[];
91 extern struct vnodeopv_entry_desc ffs_specop_entries[];
92 extern struct vnodeopv_entry_desc ffs_fifoop_entries[];
93
94
95 /*
96  * ffs_mount
97  *
98  * Called when mounting local physical media
99  *
100  * PARAMETERS:
101  *              mountroot
102  *                      mp      mount point structure
103  *                      path    NULL (flag for root mount!!!)
104  *                      data    <unused>
105  *                      p       process (user credentials check [statfs])
106  *
107  *              mount
108  *                      mp      mount point structure
109  *                      path    path to mount point
110  *                      data    pointer to argument struct in user space
111  *                      p       process (user credentials check)
112  *
113  * RETURNS:     0       Success
114  *              !0      error number (errno.h)
115  *
116  * LOCK STATE:
117  *
118  *              ENTRY
119  *                      mount point is locked
120  *              EXIT
121  *                      mount point is locked
122  *
123  * NOTES:
124  *              A NULL path can be used for a flag since the mount
125  *              system call will fail with EFAULT in copyinstr in
126  *              nlookup() if it is a genuine NULL from the user.
127  */
128 static int
129 ffs_mount(struct mount *mp,             /* mount struct pointer */
130           char *path,                   /* path to mount point */
131           caddr_t data,                 /* arguments to FS specific mount */
132           struct thread *td)            /* process requesting mount */
133 {
134         size_t          size;
135         int             error;
136         struct vnode    *devvp;
137
138         struct ufs_args args;
139         struct ufsmount *ump = 0;
140         struct fs *fs;
141         int flags, ronly = 0;
142         mode_t accessmode;
143         struct ucred *cred;
144         struct nlookupdata nd;
145         struct vnode *rootvp;
146
147         KKASSERT(td->td_proc);
148         cred = td->td_proc->p_ucred;
149         error = 0;
150
151         /*
152          * Use NULL path to flag a root mount
153          */
154         if (path == NULL) {
155                 /*
156                  ***
157                  * Mounting root filesystem
158                  ***
159                  */
160         
161                 if ((error = bdevvp(rootdev, &rootvp))) {
162                         printf("ffs_mountroot: can't find rootvp\n");
163                         return (error);
164                 }
165
166                 if( ( error = ffs_mountfs(rootvp, mp, td, M_FFSNODE)) != 0) {
167                         /* fs specific cleanup (if any)*/
168                         goto error_1;
169                 }
170
171                 goto dostatfs;          /* success*/
172
173         }
174
175         /*
176          ***
177          * Mounting non-root filesystem or updating a filesystem
178          ***
179          */
180
181         /* copy in user arguments*/
182         error = copyin(data, (caddr_t)&args, sizeof (struct ufs_args));
183         if (error)
184                 goto error_1;           /* can't get arguments*/
185
186         /*
187          * If updating, check whether changing from read-only to
188          * read/write; if there is no device name, that's all we do.
189          */
190         if (mp->mnt_flag & MNT_UPDATE) {
191                 ump = VFSTOUFS(mp);
192                 fs = ump->um_fs;
193                 devvp = ump->um_devvp;
194                 error = 0;
195                 ronly = fs->fs_ronly;   /* MNT_RELOAD might change this */
196                 if (ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
197                         /*
198                          * Flush any dirty data.
199                          */
200                         VFS_SYNC(mp, MNT_WAIT, td);
201                         /*
202                          * Check for and optionally get rid of files open
203                          * for writing.
204                          */
205                         flags = WRITECLOSE;
206                         if (mp->mnt_flag & MNT_FORCE)
207                                 flags |= FORCECLOSE;
208                         if (mp->mnt_flag & MNT_SOFTDEP) {
209                                 error = softdep_flushfiles(mp, flags, td);
210                         } else {
211                                 error = ffs_flushfiles(mp, flags, td);
212                         }
213                         ronly = 1;
214                 }
215                 if (!error && (mp->mnt_flag & MNT_RELOAD))
216                         error = ffs_reload(mp, NULL, td);
217                 if (error) {
218                         goto error_1;
219                 }
220                 if (ronly && (mp->mnt_kern_flag & MNTK_WANTRDWR)) {
221                         /*
222                          * If upgrade to read-write by non-root, then verify
223                          * that user has necessary permissions on the device.
224                          */
225                         if (cred->cr_uid != 0) {
226                                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
227                                 if ((error = VOP_ACCESS(devvp, VREAD | VWRITE,
228                                     cred, td)) != 0) {
229                                         VOP_UNLOCK(devvp, 0, td);
230                                         return (error);
231                                 }
232                                 VOP_UNLOCK(devvp, 0, td);
233                         }
234
235                         fs->fs_flags &= ~FS_UNCLEAN;
236                         if (fs->fs_clean == 0) {
237                                 fs->fs_flags |= FS_UNCLEAN;
238                                 if (mp->mnt_flag & MNT_FORCE) {
239                                         printf(
240 "WARNING: %s was not properly dismounted\n",
241                                             fs->fs_fsmnt);
242                                 } else {
243                                         printf(
244 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
245                                             fs->fs_fsmnt);
246                                         error = EPERM;
247                                         goto error_1;
248                                 }
249                         }
250
251                         /* check to see if we need to start softdep */
252                         if (fs->fs_flags & FS_DOSOFTDEP) {
253                                 error = softdep_mount(devvp, mp, fs);
254                                 if (error)
255                                         goto error_1;
256                         }
257
258                         ronly = 0;
259                 }
260                 /*
261                  * Soft updates is incompatible with "async",
262                  * so if we are doing softupdates stop the user
263                  * from setting the async flag in an update.
264                  * Softdep_mount() clears it in an initial mount 
265                  * or ro->rw remount.
266                  */
267                 if (mp->mnt_flag & MNT_SOFTDEP) {
268                         mp->mnt_flag &= ~MNT_ASYNC;
269                 }
270                 /* if not updating name...*/
271                 if (args.fspec == 0) {
272                         /*
273                          * Process export requests.  Jumping to "success"
274                          * will return the vfs_export() error code.
275                          */
276                         error = vfs_export(mp, &ump->um_export, &args.export);
277                         goto success;
278                 }
279         }
280
281         /*
282          * Not an update, or updating the name: look up the name
283          * and verify that it refers to a sensible block device.
284          */
285         devvp = NULL;
286         error = nlookup_init(&nd, args.fspec, UIO_USERSPACE, NLC_FOLLOW);
287         if (error == 0)
288                 error = nlookup(&nd);
289         if (error == 0)
290                 error = cache_vref(nd.nl_ncp, nd.nl_cred, &devvp);
291         nlookup_done(&nd);
292         if (error)
293                 goto error_1;
294
295         if (!vn_isdisk(devvp, &error))
296                 goto error_2;
297
298         /*
299          * If mount by non-root, then verify that user has necessary
300          * permissions on the device.
301          */
302         if (cred->cr_uid != 0) {
303                 accessmode = VREAD;
304                 if ((mp->mnt_flag & MNT_RDONLY) == 0)
305                         accessmode |= VWRITE;
306                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
307                 if ((error = VOP_ACCESS(devvp, accessmode, cred, td)) != 0) {
308                         vput(devvp);
309                         return (error);
310                 }
311                 VOP_UNLOCK(devvp, 0, td);
312         }
313
314         if (mp->mnt_flag & MNT_UPDATE) {
315                 /*
316                  ********************
317                  * UPDATE
318                  * If it's not the same vnode, or at least the same device
319                  * then it's not correct.  NOTE: devvp->v_rdev may be NULL
320                  * since we haven't opened it, so we compare udev instead.
321                  ********************
322                  */
323                 if (devvp != ump->um_devvp) {
324                         if (devvp->v_udev == ump->um_devvp->v_udev) {
325                                 vrele(devvp);
326                         } else {
327                                 printf("cannot update mount, udev does"
328                                         " not match %08x vs %08x\n",
329                                         devvp->v_udev, ump->um_devvp->v_udev);
330                                 error = EINVAL; /* needs translation */
331                         }
332                 } else {
333                         vrele(devvp);
334                 }
335                 /*
336                  * Update device name only on success
337                  */
338                 if (!error) {
339                         /* Save "mounted from" info for mount point (NULL pad)*/
340                         copyinstr(      args.fspec,
341                                         mp->mnt_stat.f_mntfromname,
342                                         MNAMELEN - 1,
343                                         &size);
344                         bzero( mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
345                 }
346         } else {
347                 /*
348                  ********************
349                  * NEW MOUNT
350                  ********************
351                  */
352
353                 /* Save "mounted from" info for mount point (NULL pad)*/
354                 copyinstr(      args.fspec,                     /* device name*/
355                                 mp->mnt_stat.f_mntfromname,     /* save area*/
356                                 MNAMELEN - 1,                   /* max size*/
357                                 &size);                         /* real size*/
358                 bzero( mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
359
360                 error = ffs_mountfs(devvp, mp, td, M_FFSNODE);
361         }
362         if (error) {
363                 goto error_2;
364         }
365
366 dostatfs:
367         /*
368          * Initialize FS stat information in mount struct; uses
369          * mp->mnt_stat.f_mntfromname.
370          *
371          * This code is common to root and non-root mounts
372          */
373         (void)VFS_STATFS(mp, &mp->mnt_stat, td);
374
375         goto success;
376
377
378 error_2:        /* error with devvp held*/
379
380         /* release devvp before failing*/
381         vrele(devvp);
382
383 error_1:        /* no state to back out*/
384
385 success:
386         if (!error && path && (mp->mnt_flag & MNT_UPDATE)) {
387                 /* Update clean flag after changing read-onlyness. */
388                 fs = ump->um_fs;
389                 if (ronly != fs->fs_ronly) {
390                         fs->fs_ronly = ronly;
391                         fs->fs_clean = ronly &&
392                             (fs->fs_flags & FS_UNCLEAN) == 0 ? 1 : 0;
393                         ffs_sbupdate(ump, MNT_WAIT);
394                 }
395         }
396         return (error);
397 }
398
399 /*
400  * Reload all incore data for a filesystem (used after running fsck on
401  * the root filesystem and finding things to fix). The filesystem must
402  * be mounted read-only.
403  *
404  * Things to do to update the mount:
405  *      1) invalidate all cached meta-data.
406  *      2) re-read superblock from disk.
407  *      3) re-read summary information from disk.
408  *      4) invalidate all inactive vnodes.
409  *      5) invalidate all cached file data.
410  *      6) re-read inode data for all active vnodes.
411  */
412
413 static int ffs_reload_scan2(struct mount *mp, struct vnode *vp, void *data);
414
415 struct scaninfo {
416         int rescan;
417         struct fs *fs;
418         struct vnode *devvp;
419         thread_t td;
420         int waitfor;
421         int allerror;
422 };
423
424 static int
425 ffs_reload(struct mount *mp, struct ucred *cred, struct thread *td)
426 {
427         struct vnode *devvp;
428         void *space;
429         struct buf *bp;
430         struct fs *fs, *newfs;
431         struct partinfo dpart;
432         dev_t dev;
433         int i, blks, size, error;
434         struct scaninfo scaninfo;
435         int32_t *lp;
436
437         if ((mp->mnt_flag & MNT_RDONLY) == 0)
438                 return (EINVAL);
439         /*
440          * Step 1: invalidate all cached meta-data.
441          */
442         devvp = VFSTOUFS(mp)->um_devvp;
443         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
444         error = vinvalbuf(devvp, 0, td, 0, 0);
445         VOP_UNLOCK(devvp, 0, td);
446         if (error)
447                 panic("ffs_reload: dirty1");
448
449         dev = devvp->v_rdev;
450         /*
451          * Only VMIO the backing device if the backing device is a real
452          * block device.  See ffs_mountmfs() for more details.
453          */
454         if (devvp->v_tag != VT_MFS && vn_isdisk(devvp, NULL)) {
455                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
456                 vfs_object_create(devvp, td);
457                 VOP_UNLOCK(devvp, 0, td);
458         }
459
460         /*
461          * Step 2: re-read superblock from disk.
462          */
463         if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, td) != 0)
464                 size = DEV_BSIZE;
465         else
466                 size = dpart.disklab->d_secsize;
467         if ((error = bread(devvp, SBOFF, SBSIZE, &bp)) != 0) {
468                 brelse(bp);
469                 return (error);
470         }
471         newfs = (struct fs *)bp->b_data;
472         if (newfs->fs_magic != FS_MAGIC || newfs->fs_bsize > MAXBSIZE ||
473                 newfs->fs_bsize < sizeof(struct fs)) {
474                         brelse(bp);
475                         return (EIO);           /* XXX needs translation */
476         }
477         fs = VFSTOUFS(mp)->um_fs;
478         /*
479          * Copy pointer fields back into superblock before copying in   XXX
480          * new superblock. These should really be in the ufsmount.      XXX
481          * Note that important parameters (eg fs_ncg) are unchanged.
482          */
483         newfs->fs_csp = fs->fs_csp;
484         newfs->fs_maxcluster = fs->fs_maxcluster;
485         newfs->fs_contigdirs = fs->fs_contigdirs;
486         /* The filesystem is still read-only. */
487         newfs->fs_ronly = 1;
488         bcopy(newfs, fs, (uint)fs->fs_sbsize);
489         if (fs->fs_sbsize < SBSIZE)
490                 bp->b_flags |= B_INVAL;
491         brelse(bp);
492         mp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
493         ffs_oldfscompat(fs);
494         /* An old fsck may have zeroed these fields, so recheck them. */
495         if (fs->fs_avgfilesize <= 0)            /* XXX */
496                 fs->fs_avgfilesize = AVFILESIZ; /* XXX */
497         if (fs->fs_avgfpdir <= 0)               /* XXX */
498                 fs->fs_avgfpdir = AFPDIR;       /* XXX */
499
500         /*
501          * Step 3: re-read summary information from disk.
502          */
503         blks = howmany(fs->fs_cssize, fs->fs_fsize);
504         space = fs->fs_csp;
505         for (i = 0; i < blks; i += fs->fs_frag) {
506                 size = fs->fs_bsize;
507                 if (i + fs->fs_frag > blks)
508                         size = (blks - i) * fs->fs_fsize;
509                 error = bread(devvp, fsbtodoff(fs, fs->fs_csaddr + i), size, &bp);
510                 if (error) {
511                         brelse(bp);
512                         return (error);
513                 }
514                 bcopy(bp->b_data, space, (uint)size);
515                 space = (char *)space + size;
516                 brelse(bp);
517         }
518         /*
519          * We no longer know anything about clusters per cylinder group.
520          */
521         if (fs->fs_contigsumsize > 0) {
522                 lp = fs->fs_maxcluster;
523                 for (i = 0; i < fs->fs_ncg; i++)
524                         *lp++ = fs->fs_contigsumsize;
525         }
526
527         scaninfo.rescan = 0;
528         scaninfo.fs = fs;
529         scaninfo.devvp = devvp;
530         scaninfo.td = td;
531         while (error == 0 && scaninfo.rescan) {
532                 scaninfo.rescan = 0;
533                 error = vmntvnodescan(mp, VMSC_GETVX, 
534                                         NULL, ffs_reload_scan2, &scaninfo);
535         }
536         return(error);
537 }
538
539 static int
540 ffs_reload_scan2(struct mount *mp, struct vnode *vp, void *data)
541 {
542         struct scaninfo *info = data;
543         struct inode *ip;
544         struct buf *bp;
545         int error;
546
547         /*
548          * Try to recycle
549          */
550         if (vrecycle(vp, info->td))
551                 return(0);
552
553         if (vinvalbuf(vp, 0, info->td, 0, 0))
554                 panic("ffs_reload: dirty2");
555         /*
556          * Step 6: re-read inode data for all active vnodes.
557          */
558         ip = VTOI(vp);
559         error = bread(info->devvp,
560                     fsbtodoff(info->fs, ino_to_fsba(info->fs, ip->i_number)),
561                     (int)info->fs->fs_bsize, &bp);
562         if (error) {
563                 brelse(bp);
564                 return (error);
565         }
566         ip->i_din = *((struct dinode *)bp->b_data +
567             ino_to_fsbo(info->fs, ip->i_number));
568         ip->i_effnlink = ip->i_nlink;
569         brelse(bp);
570         return(0);
571 }
572
573 /*
574  * Common code for mount and mountroot
575  */
576 int
577 ffs_mountfs(struct vnode *devvp, struct mount *mp, struct thread *td,
578             struct malloc_type *malloctype)
579 {
580         struct ufsmount *ump;
581         struct buf *bp;
582         struct fs *fs;
583         dev_t dev;
584         struct partinfo dpart;
585         void *space;
586         int error, i, blks, size, ronly;
587         int32_t *lp;
588         uint64_t maxfilesize;                                   /* XXX */
589
590         /*
591          * Disallow multiple mounts of the same device.
592          * Disallow mounting of a device that is currently in use
593          * Flush out any old buffers remaining from a previous use.
594          */
595         error = vfs_mountedon(devvp);
596         if (error)
597                 return (error);
598         if (count_udev(devvp->v_udev) > 0)
599                 return (EBUSY);
600         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
601         error = vinvalbuf(devvp, V_SAVE, td, 0, 0);
602         VOP_UNLOCK(devvp, 0, td);
603         if (error)
604                 return (error);
605
606         ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
607         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
608         error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, NULL, td);
609         VOP_UNLOCK(devvp, 0, td);
610         if (error)
611                 return (error);
612         dev = devvp->v_rdev;
613         if (dev->si_iosize_max != 0)
614                 mp->mnt_iosize_max = dev->si_iosize_max;
615         if (mp->mnt_iosize_max > MAXPHYS)
616                 mp->mnt_iosize_max = MAXPHYS;
617
618         /*
619          * Only VMIO the backing device if the backing device is a real
620          * block device.  This excludes the original MFS implementation.
621          * Note that it is optional that the backing device be VMIOed.  This
622          * increases the opportunity for metadata caching.
623          *
624          * This call must be made after the VOP_OPEN.
625          */
626         if (devvp->v_tag != VT_MFS && vn_isdisk(devvp, NULL)) {
627                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
628                 vfs_object_create(devvp, td);
629                 VOP_UNLOCK(devvp, 0, td);
630         }
631
632         if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, proc0.p_ucred, td) != 0)
633                 size = DEV_BSIZE;
634         else
635                 size = dpart.disklab->d_secsize;
636
637         bp = NULL;
638         ump = NULL;
639         if ((error = bread(devvp, SBOFF, SBSIZE, &bp)) != 0)
640                 goto out;
641         fs = (struct fs *)bp->b_data;
642         if (fs->fs_magic != FS_MAGIC || fs->fs_bsize > MAXBSIZE ||
643             fs->fs_bsize < sizeof(struct fs)) {
644                 error = EINVAL;         /* XXX needs translation */
645                 goto out;
646         }
647         fs->fs_fmod = 0;
648         fs->fs_flags &= ~FS_UNCLEAN;
649         if (fs->fs_clean == 0) {
650                 fs->fs_flags |= FS_UNCLEAN;
651                 if (ronly || (mp->mnt_flag & MNT_FORCE)) {
652                         printf(
653 "WARNING: %s was not properly dismounted\n",
654                             fs->fs_fsmnt);
655                 } else {
656                         printf(
657 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
658                             fs->fs_fsmnt);
659                         error = EPERM;
660                         goto out;
661                 }
662         }
663         /* XXX updating 4.2 FFS superblocks trashes rotational layout tables */
664         if (fs->fs_postblformat == FS_42POSTBLFMT && !ronly) {
665                 error = EROFS;          /* needs translation */
666                 goto out;
667         }
668         ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
669         bzero((caddr_t)ump, sizeof *ump);
670         ump->um_malloctype = malloctype;
671         ump->um_i_effnlink_valid = 1;
672         ump->um_fs = malloc((u_long)fs->fs_sbsize, M_UFSMNT,
673             M_WAITOK);
674         ump->um_blkatoff = ffs_blkatoff;
675         ump->um_truncate = ffs_truncate;
676         ump->um_update = ffs_update;
677         ump->um_valloc = ffs_valloc;
678         ump->um_vfree = ffs_vfree;
679         bcopy(bp->b_data, ump->um_fs, (uint)fs->fs_sbsize);
680         if (fs->fs_sbsize < SBSIZE)
681                 bp->b_flags |= B_INVAL;
682         brelse(bp);
683         bp = NULL;
684         fs = ump->um_fs;
685         fs->fs_ronly = ronly;
686         size = fs->fs_cssize;
687         blks = howmany(size, fs->fs_fsize);
688         if (fs->fs_contigsumsize > 0)
689                 size += fs->fs_ncg * sizeof(int32_t);
690         size += fs->fs_ncg * sizeof(uint8_t);
691         space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
692         fs->fs_csp = space;
693         for (i = 0; i < blks; i += fs->fs_frag) {
694                 size = fs->fs_bsize;
695                 if (i + fs->fs_frag > blks)
696                         size = (blks - i) * fs->fs_fsize;
697                 if ((error = bread(devvp, fsbtodoff(fs, fs->fs_csaddr + i),
698                                    size, &bp)) != 0) {
699                         free(fs->fs_csp, M_UFSMNT);
700                         goto out;
701                 }
702                 bcopy(bp->b_data, space, (uint)size);
703                 space = (char *)space + size;
704                 brelse(bp);
705                 bp = NULL;
706         }
707         if (fs->fs_contigsumsize > 0) {
708                 fs->fs_maxcluster = lp = space;
709                 for (i = 0; i < fs->fs_ncg; i++)
710                         *lp++ = fs->fs_contigsumsize;
711                 space = lp;
712         }
713         size = fs->fs_ncg * sizeof(uint8_t);
714         fs->fs_contigdirs = (uint8_t *)space;
715         bzero(fs->fs_contigdirs, size);
716         /* Compatibility for old filesystems       XXX */
717         if (fs->fs_avgfilesize <= 0)            /* XXX */
718                 fs->fs_avgfilesize = AVFILESIZ; /* XXX */
719         if (fs->fs_avgfpdir <= 0)               /* XXX */
720                 fs->fs_avgfpdir = AFPDIR;       /* XXX */
721         mp->mnt_data = (qaddr_t)ump;
722         mp->mnt_stat.f_fsid.val[0] = fs->fs_id[0];
723         mp->mnt_stat.f_fsid.val[1] = fs->fs_id[1];
724         if (fs->fs_id[0] == 0 || fs->fs_id[1] == 0 || 
725             vfs_getvfs(&mp->mnt_stat.f_fsid)) 
726                 vfs_getnewfsid(mp);
727         mp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
728         mp->mnt_flag |= MNT_LOCAL;
729         ump->um_mountp = mp;
730         ump->um_dev = dev;
731         ump->um_devvp = devvp;
732         ump->um_nindir = fs->fs_nindir;
733         ump->um_bptrtodb = fs->fs_fsbtodb;
734         ump->um_seqinc = fs->fs_frag;
735         for (i = 0; i < MAXQUOTAS; i++)
736                 ump->um_quotas[i] = NULLVP;
737         dev->si_mountpoint = mp;
738         ffs_oldfscompat(fs);
739
740         if( mp->mnt_flag & MNT_ROOTFS) {
741                 /*
742                  * Root mount; update timestamp in mount structure.
743                  * this will be used by the common root mount code
744                  * to update the system clock.
745                  */
746                 mp->mnt_time = fs->fs_time;
747         }
748
749         ump->um_savedmaxfilesize = fs->fs_maxfilesize;          /* XXX */
750         maxfilesize = (uint64_t)0x40000000 * fs->fs_bsize - 1;  /* XXX */
751         /* Enforce limit caused by vm object backing (32 bits vm_pindex_t). */
752         if (maxfilesize > (uint64_t)0x80000000u * PAGE_SIZE - 1)
753                 maxfilesize = (uint64_t)0x80000000u * PAGE_SIZE - 1;
754         if (fs->fs_maxfilesize > maxfilesize)                   /* XXX */
755                 fs->fs_maxfilesize = maxfilesize;               /* XXX */
756         if (ronly == 0) {
757                 if ((fs->fs_flags & FS_DOSOFTDEP) &&
758                     (error = softdep_mount(devvp, mp, fs)) != 0) {
759                         free(fs->fs_csp, M_UFSMNT);
760                         goto out;
761                 }
762                 fs->fs_fmod = 1;
763                 fs->fs_clean = 0;
764                 (void) ffs_sbupdate(ump, MNT_WAIT);
765         }
766         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, ffs_vnodeop_entries, VVF_SUPPORTS_FSMID);
767         vfs_add_vnodeops(mp, &mp->mnt_vn_spec_ops, ffs_specop_entries, VVF_SUPPORTS_FSMID);
768         vfs_add_vnodeops(mp, &mp->mnt_vn_fifo_ops, ffs_fifoop_entries, VVF_SUPPORTS_FSMID); 
769
770         return (0);
771 out:
772         dev->si_mountpoint = NULL;
773         if (bp)
774                 brelse(bp);
775         VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, td);
776         if (ump) {
777                 free(ump->um_fs, M_UFSMNT);
778                 free(ump, M_UFSMNT);
779                 mp->mnt_data = (qaddr_t)0;
780         }
781         return (error);
782 }
783
784 /*
785  * Sanity checks for old filesystems.
786  *
787  * XXX - goes away some day.
788  */
789 static int
790 ffs_oldfscompat(struct fs *fs)
791 {
792         fs->fs_npsect = max(fs->fs_npsect, fs->fs_nsect);       /* XXX */
793         fs->fs_interleave = max(fs->fs_interleave, 1);          /* XXX */
794         if (fs->fs_postblformat == FS_42POSTBLFMT)              /* XXX */
795                 fs->fs_nrpos = 8;                               /* XXX */
796         if (fs->fs_inodefmt < FS_44INODEFMT) {                  /* XXX */
797 #if 0
798                 int i;                                          /* XXX */
799                 uint64_t sizepb = fs->fs_bsize;         /* XXX */
800                                                                 /* XXX */
801                 fs->fs_maxfilesize = fs->fs_bsize * NDADDR - 1; /* XXX */
802                 for (i = 0; i < NIADDR; i++) {                  /* XXX */
803                         sizepb *= NINDIR(fs);                   /* XXX */
804                         fs->fs_maxfilesize += sizepb;           /* XXX */
805                 }                                               /* XXX */
806 #endif
807                 fs->fs_maxfilesize = (u_quad_t) 1LL << 39;
808                 fs->fs_qbmask = ~fs->fs_bmask;                  /* XXX */
809                 fs->fs_qfmask = ~fs->fs_fmask;                  /* XXX */
810         }                                                       /* XXX */
811         return (0);
812 }
813
814 /*
815  * unmount system call
816  */
817 int
818 ffs_unmount(struct mount *mp, int mntflags, struct thread *td)
819 {
820         struct ufsmount *ump;
821         struct fs *fs;
822         int error, flags;
823
824         flags = 0;
825         if (mntflags & MNT_FORCE) {
826                 flags |= FORCECLOSE;
827         }
828         if (mp->mnt_flag & MNT_SOFTDEP) {
829                 if ((error = softdep_flushfiles(mp, flags, td)) != 0)
830                         return (error);
831         } else {
832                 if ((error = ffs_flushfiles(mp, flags, td)) != 0)
833                         return (error);
834         }
835         ump = VFSTOUFS(mp);
836         fs = ump->um_fs;
837         if (fs->fs_ronly == 0) {
838                 fs->fs_clean = fs->fs_flags & FS_UNCLEAN ? 0 : 1;
839                 error = ffs_sbupdate(ump, MNT_WAIT);
840                 if (error) {
841                         fs->fs_clean = 0;
842                         return (error);
843                 }
844         }
845         ump->um_devvp->v_rdev->si_mountpoint = NULL;
846
847         vinvalbuf(ump->um_devvp, V_SAVE, td, 0, 0);
848         error = VOP_CLOSE(ump->um_devvp, fs->fs_ronly ? FREAD : FREAD|FWRITE, td);
849
850         vrele(ump->um_devvp);
851
852         free(fs->fs_csp, M_UFSMNT);
853         free(fs, M_UFSMNT);
854         free(ump, M_UFSMNT);
855         mp->mnt_data = (qaddr_t)0;
856         mp->mnt_flag &= ~MNT_LOCAL;
857         return (error);
858 }
859
860 /*
861  * Flush out all the files in a filesystem.
862  */
863 int
864 ffs_flushfiles(struct mount *mp, int flags, struct thread *td)
865 {
866         struct ufsmount *ump;
867         int error;
868
869         ump = VFSTOUFS(mp);
870 #ifdef QUOTA
871         if (mp->mnt_flag & MNT_QUOTA) {
872                 int i;
873                 error = vflush(mp, 0, SKIPSYSTEM|flags);
874                 if (error)
875                         return (error);
876                 /* Find out how many quota files  we have open. */
877                 for (i = 0; i < MAXQUOTAS; i++) {
878                         if (ump->um_quotas[i] == NULLVP)
879                                 continue;
880                         quotaoff(td, mp, i);
881                 }
882                 /*
883                  * Here we fall through to vflush again to ensure
884                  * that we have gotten rid of all the system vnodes.
885                  */
886         }
887 #endif
888         /*
889          * Flush all the files.
890          */
891         if ((error = vflush(mp, 0, flags)) != 0)
892                 return (error);
893         /*
894          * Flush filesystem metadata.
895          */
896         vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY, td);
897         error = VOP_FSYNC(ump->um_devvp, MNT_WAIT, td);
898         VOP_UNLOCK(ump->um_devvp, 0, td);
899         return (error);
900 }
901
902 /*
903  * Get filesystem statistics.
904  */
905 int
906 ffs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
907 {
908         struct ufsmount *ump;
909         struct fs *fs;
910
911         ump = VFSTOUFS(mp);
912         fs = ump->um_fs;
913         if (fs->fs_magic != FS_MAGIC)
914                 panic("ffs_statfs");
915         sbp->f_bsize = fs->fs_fsize;
916         sbp->f_iosize = fs->fs_bsize;
917         sbp->f_blocks = fs->fs_dsize;
918         sbp->f_bfree = fs->fs_cstotal.cs_nbfree * fs->fs_frag +
919                 fs->fs_cstotal.cs_nffree;
920         sbp->f_bavail = freespace(fs, fs->fs_minfree);
921         sbp->f_files =  fs->fs_ncg * fs->fs_ipg - ROOTINO;
922         sbp->f_ffree = fs->fs_cstotal.cs_nifree;
923         if (sbp != &mp->mnt_stat) {
924                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
925                 bcopy((caddr_t)mp->mnt_stat.f_mntfromname,
926                         (caddr_t)&sbp->f_mntfromname[0], MNAMELEN);
927         }
928         return (0);
929 }
930
931 /*
932  * Go through the disk queues to initiate sandbagged IO;
933  * go through the inodes to write those that have been modified;
934  * initiate the writing of the super block if it has been modified.
935  *
936  * Note: we are always called with the filesystem marked `MPBUSY'.
937  */
938
939
940 static int ffs_sync_scan1(struct mount *mp, struct vnode *vp, void *data);
941 static int ffs_sync_scan2(struct mount *mp, struct vnode *vp, void *data);
942
943 int
944 ffs_sync(struct mount *mp, int waitfor, struct thread *td)
945 {
946         struct ufsmount *ump = VFSTOUFS(mp);
947         struct fs *fs;
948         int error;
949         struct scaninfo scaninfo;
950
951         fs = ump->um_fs;
952         if (fs->fs_fmod != 0 && fs->fs_ronly != 0) {            /* XXX */
953                 printf("fs = %s\n", fs->fs_fsmnt);
954                 panic("ffs_sync: rofs mod");
955         }
956
957         /*
958          * Write back each (modified) inode.
959          */
960         scaninfo.allerror = 0;
961         scaninfo.rescan = 1;
962         scaninfo.waitfor = waitfor;
963         while (scaninfo.rescan) {
964                 scaninfo.rescan = 0;
965                 vmntvnodescan(mp, VMSC_GETVP|VMSC_NOWAIT,
966                                 ffs_sync_scan1, ffs_sync_scan2, &scaninfo);
967         }
968
969         /*
970          * Force stale filesystem control information to be flushed.
971          */
972         if (waitfor != MNT_LAZY) {
973                 if (ump->um_mountp->mnt_flag & MNT_SOFTDEP)
974                         waitfor = MNT_NOWAIT;
975                 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY, td);
976                 if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0)
977                         scaninfo.allerror = error;
978                 VOP_UNLOCK(ump->um_devvp, 0, td);
979         }
980 #ifdef QUOTA
981         qsync(mp);
982 #endif
983         /*
984          * Write back modified superblock.
985          */
986         if (fs->fs_fmod != 0 && (error = ffs_sbupdate(ump, waitfor)) != 0)
987                 scaninfo.allerror = error;
988         return (scaninfo.allerror);
989 }
990
991 static int
992 ffs_sync_scan1(struct mount *mp, struct vnode *vp, void *data)
993 {
994         struct inode *ip;
995
996         /*
997          * Depend on the mount list's vnode lock to keep things stable 
998          * enough for a quick test.  Since there might be hundreds of 
999          * thousands of vnodes, we cannot afford even a subroutine
1000          * call unless there's a good chance that we have work to do.
1001          */
1002         ip = VTOI(vp);
1003         /* Restart out whole search if this guy is locked
1004          * or is being reclaimed.
1005          */
1006         if (vp->v_type == VNON || ((ip->i_flag &
1007              (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
1008              RB_EMPTY(&vp->v_rbdirty_tree))) {
1009                 return(-1);
1010         }
1011         return(0);
1012 }
1013
1014 static int 
1015 ffs_sync_scan2(struct mount *mp, struct vnode *vp, void *data)
1016 {
1017         struct scaninfo *info = data;
1018         thread_t td = curthread;        /* XXX */
1019         struct inode *ip;
1020         int error;
1021
1022         /*
1023          * We have to recheck after having obtained the vnode interlock.
1024          */
1025         ip = VTOI(vp);
1026         if (vp->v_type == VNON || ((ip->i_flag &
1027              (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
1028              RB_EMPTY(&vp->v_rbdirty_tree))) {
1029                 return(0);
1030         }
1031         if (vp->v_type != VCHR) {
1032                 if ((error = VOP_FSYNC(vp, info->waitfor, td)) != 0)
1033                         info->allerror = error;
1034         } else {
1035                 /*
1036                  * We must reference the vp to prevent it from
1037                  * getting ripped out from under UFS_UPDATE, since
1038                  * we are not holding a vnode lock.
1039                  */
1040                 /* UFS_UPDATE(vp, waitfor == MNT_WAIT); */
1041                 UFS_UPDATE(vp, 0);
1042         }
1043         return(0);
1044 }
1045
1046 /*
1047  * Look up a FFS dinode number to find its incore vnode, otherwise read it
1048  * in from disk.  If it is in core, wait for the lock bit to clear, then
1049  * return the inode locked.  Detection and handling of mount points must be
1050  * done by the calling routine.
1051  */
1052
1053 int
1054 ffs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1055 {
1056         struct fs *fs;
1057         struct inode *ip;
1058         struct ufsmount *ump;
1059         struct buf *bp;
1060         struct vnode *vp;
1061         dev_t dev;
1062         int error;
1063
1064         ump = VFSTOUFS(mp);
1065         dev = ump->um_dev;
1066 restart:
1067         if ((*vpp = ufs_ihashget(dev, ino)) != NULL) {
1068                 return (0);
1069         }
1070
1071         /*
1072          * If this MALLOC() is performed after the getnewvnode()
1073          * it might block, leaving a vnode with a NULL v_data to be
1074          * found by ffs_sync() if a sync happens to fire right then,
1075          * which will cause a panic because ffs_sync() blindly
1076          * dereferences vp->v_data (as well it should).
1077          *
1078          * XXX this may no longer be true since getnewvnode returns a
1079          * VX locked vnode now.
1080          */
1081         MALLOC(ip, struct inode *, sizeof(struct inode), 
1082             ump->um_malloctype, M_WAITOK);
1083
1084         /* Allocate a new vnode/inode. */
1085         error = getnewvnode(VT_UFS, mp, &vp, VLKTIMEOUT, LK_CANRECURSE);
1086         if (error) {
1087                 *vpp = NULL;
1088                 free(ip, ump->um_malloctype);
1089                 return (error);
1090         }
1091         bzero((caddr_t)ip, sizeof(struct inode));
1092         ip->i_vnode = vp;
1093         ip->i_fs = fs = ump->um_fs;
1094         ip->i_dev = dev;
1095         ip->i_number = ino;
1096 #ifdef QUOTA
1097         {
1098                 int i;
1099                 for (i = 0; i < MAXQUOTAS; i++)
1100                         ip->i_dquot[i] = NODQUOT;
1101         }
1102 #endif
1103
1104         /*
1105          * Insert it into the inode hash table and check for a collision.
1106          * If a collision occurs, throw away the vnode and try again.
1107          */
1108         if (ufs_ihashins(ip) != 0) {
1109                 printf("debug: ufs ihashins collision, retrying inode %ld\n",
1110                     (long)ip->i_number);
1111                 vx_put(vp);
1112                 free(ip, ump->um_malloctype);
1113                 goto restart;
1114         }
1115         vp->v_data = ip;
1116
1117         /* Read in the disk contents for the inode, copy into the inode. */
1118         error = bread(ump->um_devvp, fsbtodoff(fs, ino_to_fsba(fs, ino)),
1119             (int)fs->fs_bsize, &bp);
1120         if (error) {
1121                 /*
1122                  * The inode does not contain anything useful, so it would
1123                  * be misleading to leave it on its hash chain. With mode
1124                  * still zero, it will be unlinked and returned to the free
1125                  * list by vput().
1126                  */
1127                 brelse(bp);
1128                 vx_put(vp);
1129                 *vpp = NULL;
1130                 return (error);
1131         }
1132         ip->i_din = *((struct dinode *)bp->b_data + ino_to_fsbo(fs, ino));
1133         if (DOINGSOFTDEP(vp))
1134                 softdep_load_inodeblock(ip);
1135         else
1136                 ip->i_effnlink = ip->i_nlink;
1137         bqrelse(bp);
1138
1139         /*
1140          * Initialize the vnode from the inode, check for aliases.
1141          * Note that the underlying vnode may have changed.
1142          */
1143         error = ufs_vinit(mp, &vp);
1144         if (error) {
1145                 vx_put(vp);
1146                 *vpp = NULL;
1147                 return (error);
1148         }
1149         /*
1150          * Finish inode initialization now that aliasing has been resolved.
1151          */
1152         ip->i_devvp = ump->um_devvp;
1153         vref(ip->i_devvp);
1154         /*
1155          * Set up a generation number for this inode if it does not
1156          * already have one. This should only happen on old filesystems.
1157          */
1158         if (ip->i_gen == 0) {
1159                 ip->i_gen = random() / 2 + 1;
1160                 if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
1161                         ip->i_flag |= IN_MODIFIED;
1162         }
1163         /*
1164          * Ensure that uid and gid are correct. This is a temporary
1165          * fix until fsck has been changed to do the update.
1166          */
1167         if (fs->fs_inodefmt < FS_44INODEFMT) {          /* XXX */
1168                 ip->i_uid = ip->i_din.di_ouid;          /* XXX */
1169                 ip->i_gid = ip->i_din.di_ogid;          /* XXX */
1170         }                                               /* XXX */
1171
1172         /* 
1173          * return a VX locked and refd vnode (VX == same as normal vget()
1174          * vnode so we are ok)
1175          */
1176         *vpp = vp;
1177         return (0);
1178 }
1179
1180 /*
1181  * File handle to vnode
1182  *
1183  * Have to be really careful about stale file handles:
1184  * - check that the inode number is valid
1185  * - call ffs_vget() to get the locked inode
1186  * - check for an unallocated inode (i_mode == 0)
1187  * - check that the given client host has export rights and return
1188  *   those rights via. exflagsp and credanonp
1189  */
1190 int
1191 ffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1192 {
1193         struct ufid *ufhp;
1194         struct fs *fs;
1195
1196         ufhp = (struct ufid *)fhp;
1197         fs = VFSTOUFS(mp)->um_fs;
1198         if (ufhp->ufid_ino < ROOTINO ||
1199             ufhp->ufid_ino >= fs->fs_ncg * fs->fs_ipg)
1200                 return (ESTALE);
1201         return (ufs_fhtovp(mp, ufhp, vpp));
1202 }
1203
1204 /*
1205  * Vnode pointer to File handle
1206  */
1207 /* ARGSUSED */
1208 int
1209 ffs_vptofh(struct vnode *vp, struct fid *fhp)
1210 {
1211         struct inode *ip;
1212         struct ufid *ufhp;
1213
1214         ip = VTOI(vp);
1215         ufhp = (struct ufid *)fhp;
1216         ufhp->ufid_len = sizeof(struct ufid);
1217         ufhp->ufid_ino = ip->i_number;
1218         ufhp->ufid_gen = ip->i_gen;
1219         return (0);
1220 }
1221
1222 /*
1223  * Initialize the filesystem; just use ufs_init.
1224  */
1225 static int
1226 ffs_init(struct vfsconf *vfsp)
1227 {
1228         softdep_initialize();
1229         return (ufs_init(vfsp));
1230 }
1231
1232 /*
1233  * Write a superblock and associated information back to disk.
1234  */
1235 static int
1236 ffs_sbupdate(struct ufsmount *mp, int waitfor)
1237 {
1238         struct fs *dfs, *fs = mp->um_fs;
1239         struct buf *bp;
1240         int blks;
1241         void *space;
1242         int i, size, error, allerror = 0;
1243
1244         /*
1245          * First write back the summary information.
1246          *
1247          * NOTE: the getblk is relative to the device vnode so bio1
1248          * contains the device block number.
1249          */
1250         blks = howmany(fs->fs_cssize, fs->fs_fsize);
1251         space = fs->fs_csp;
1252         for (i = 0; i < blks; i += fs->fs_frag) {
1253                 size = fs->fs_bsize;
1254                 if (i + fs->fs_frag > blks)
1255                         size = (blks - i) * fs->fs_fsize;
1256                 bp = getblk(mp->um_devvp, fsbtodoff(fs, fs->fs_csaddr + i),
1257                             size, 0, 0);
1258                 bcopy(space, bp->b_data, (uint)size);
1259                 space = (char *)space + size;
1260                 if (waitfor != MNT_WAIT)
1261                         bawrite(bp);
1262                 else if ((error = bwrite(bp)) != 0)
1263                         allerror = error;
1264         }
1265         /*
1266          * Now write back the superblock itself. If any errors occurred
1267          * up to this point, then fail so that the superblock avoids
1268          * being written out as clean.
1269          */
1270         if (allerror)
1271                 return (allerror);
1272         bp = getblk(mp->um_devvp, SBOFF, (int)fs->fs_sbsize, 0, 0);
1273         fs->fs_fmod = 0;
1274         fs->fs_time = time_second;
1275         bcopy((caddr_t)fs, bp->b_data, (uint)fs->fs_sbsize);
1276         /* Restore compatibility to old filesystems.               XXX */
1277         dfs = (struct fs *)bp->b_data;                          /* XXX */
1278         if (fs->fs_postblformat == FS_42POSTBLFMT)              /* XXX */
1279                 dfs->fs_nrpos = -1;                             /* XXX */
1280         if (fs->fs_inodefmt < FS_44INODEFMT) {                  /* XXX */
1281                 int32_t *lp, tmp;                               /* XXX */
1282                                                                 /* XXX */
1283                 lp = (int32_t *)&dfs->fs_qbmask;                /* XXX */
1284                 tmp = lp[4];                                    /* XXX */
1285                 for (i = 4; i > 0; i--)                         /* XXX */
1286                         lp[i] = lp[i-1];                        /* XXX */
1287                 lp[0] = tmp;                                    /* XXX */
1288         }                                                       /* XXX */
1289         dfs->fs_maxfilesize = mp->um_savedmaxfilesize;          /* XXX */
1290         if (waitfor != MNT_WAIT)
1291                 bawrite(bp);
1292         else if ((error = bwrite(bp)) != 0)
1293                 allerror = error;
1294         return (allerror);
1295 }