Merge from vendor branch TCPDUMP:
[dragonfly.git] / sys / vfs / gnu / ext2fs / ext2_vfsops.c
1 /*
2  *  modified for EXT2FS support in Lites 1.1
3  *
4  *  Aug 1995, Godmar Back (gback@cs.utah.edu)
5  *  University of Utah, Department of Computer Science
6  */
7 /*      
8  * Copyright (c) 1989, 1991, 1993, 1994 
9  *      The Regents of the University of California.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *      @(#)ffs_vfsops.c        8.8 (Berkeley) 4/18/94
40  *      $FreeBSD: src/sys/gnu/ext2fs/ext2_vfsops.c,v 1.63.2.7 2002/07/01 00:18:51 iedowse Exp $
41  *      $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_vfsops.c,v 1.14 2004/04/24 04:32:03 drhodus Exp $
42  */
43
44 #include "opt_quota.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/namei.h>
49 #include <sys/proc.h>
50 #include <sys/kernel.h>
51 #include <sys/vnode.h>
52 #include <sys/mount.h>
53 #include <sys/buf.h>
54 #include <sys/conf.h>
55 #include <sys/fcntl.h>
56 #include <sys/disklabel.h>
57 #include <sys/malloc.h>
58 #include <sys/stat.h>
59 #include <sys/buf2.h>
60
61 #include <vfs/ufs/quota.h>
62 #include <vfs/ufs/ufsmount.h>
63 #include <vfs/ufs/inode.h>
64 #include <vfs/ufs/ufs_extern.h>
65
66 #include <vm/vm_zone.h>
67
68 #include "fs.h"
69 #include "ext2_extern.h"
70 #include "ext2_fs.h"
71 #include "ext2_fs_sb.h"
72
73 static int ext2_fhtovp (struct mount *, struct fid *, struct vnode **);
74 static int ext2_flushfiles (struct mount *mp, int flags, struct thread *td);
75 static int ext2_mount (struct mount *,
76             char *, caddr_t, struct nameidata *, struct thread *);
77 static int ext2_mountfs (struct vnode *, struct mount *, struct thread *);
78 static int ext2_reload (struct mount *mountp, struct ucred *cred,
79                         struct thread *p);
80 static int ext2_sbupdate (struct ufsmount *, int);
81 static int ext2_statfs (struct mount *, struct statfs *, struct thread *);
82 static int ext2_sync (struct mount *, int, struct thread *);
83 static int ext2_unmount (struct mount *, int, struct thread *);
84 static int ext2_vget (struct mount *, ino_t, struct vnode **);
85 static int ext2_vptofh (struct vnode *, struct fid *);
86
87 static MALLOC_DEFINE(M_EXT2NODE, "EXT2 node", "EXT2 vnode private part");
88
89 static struct vfsops ext2fs_vfsops = {
90         ext2_mount,
91         ufs_start,              /* empty function */
92         ext2_unmount,
93         ufs_root,               /* root inode via vget */
94         ufs_quotactl,           /* does operations associated with quotas */
95         ext2_statfs,
96         ext2_sync,
97         ext2_vget,
98         ext2_fhtovp,
99         ufs_check_export,
100         ext2_vptofh,
101         ext2_init,
102         vfs_stduninit,
103         vfs_stdextattrctl,
104 };
105
106 VFS_SET(ext2fs_vfsops, ext2fs, 0);
107 #define bsd_malloc malloc
108 #define bsd_free free
109
110 static int ext2fs_inode_hash_lock;
111
112 static int      ext2_check_sb_compat (struct ext2_super_block *es,
113                                           dev_t dev, int ronly);
114 static int      compute_sb_data (struct vnode * devvp,
115                                      struct ext2_super_block * es,
116                                      struct ext2_sb_info * fs);
117
118 #ifdef notyet
119 static int ext2_mountroot (void);
120
121 /*
122  * Called by main() when ext2fs is going to be mounted as root.
123  *
124  * Name is updated by mount(8) after booting.
125  */
126 #define ROOTNAME        "root_device"
127
128 static int
129 ext2_mountroot(void)
130 {
131         struct ext2_sb_info *fs;
132         struct mount *mp;
133         struct thread *td = curthread;
134         struct ufsmount *ump;
135         u_int size;
136         int error;
137         
138         if ((error = bdevvp(rootdev, &rootvp))) {
139                 printf("ext2_mountroot: can't find rootvp\n");
140                 return (error);
141         }
142         mp = bsd_malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK);
143         bzero((char *)mp, (u_long)sizeof(struct mount));
144         TAILQ_INIT(&mp->mnt_nvnodelist);
145         TAILQ_INIT(&mp->mnt_reservedvnlist);
146         mp->mnt_op = &ext2fs_vfsops;
147         mp->mnt_flag = MNT_RDONLY;
148         if (error = ext2_mountfs(rootvp, mp, td)) {
149                 bsd_free(mp, M_MOUNT);
150                 return (error);
151         }
152         if (error = vfs_lock(mp)) {
153                 (void)ext2_unmount(mp, 0, td);
154                 bsd_free(mp, M_MOUNT);
155                 return (error);
156         }
157         TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list);
158         mp->mnt_flag |= MNT_ROOTFS;
159         mp->mnt_vnodecovered = NULLVP;
160         ump = VFSTOUFS(mp);
161         fs = ump->um_e2fs;
162         bzero(fs->fs_fsmnt, sizeof(fs->fs_fsmnt));
163         fs->fs_fsmnt[0] = '/';
164         bcopy((caddr_t)fs->fs_fsmnt, (caddr_t)mp->mnt_stat.f_mntonname,
165             MNAMELEN);
166         (void) copystr(ROOTNAME, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
167             &size);
168         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
169         (void)ext2_statfs(mp, &mp->mnt_stat, td);
170         vfs_unlock(mp);
171         inittodr(fs->s_es->s_wtime);            /* this helps to set the time */
172         return (0);
173 }
174 #endif
175
176 /*
177  * VFS Operations.
178  *
179  * mount system call
180  */
181 static int
182 ext2_mount(struct mount *mp, char *path,
183            caddr_t data,        /* this is actually a (struct ufs_args *) */
184            struct nameidata *ndp, struct thread *td)
185 {
186         struct vnode *devvp;
187         struct ufs_args args;
188         struct ufsmount *ump = 0;
189         struct ext2_sb_info *fs;
190         size_t size;
191         int error, flags;
192         mode_t accessmode;
193         struct ucred *cred;
194
195         if ((error = copyin(data, (caddr_t)&args, sizeof (struct ufs_args))) != 0)
196                 return (error);
197
198         cred = td->td_proc->p_ucred;
199         /*
200          * If updating, check whether changing from read-only to
201          * read/write; if there is no device name, that's all we do.
202          */
203         if (mp->mnt_flag & MNT_UPDATE) {
204                 ump = VFSTOUFS(mp);
205                 fs = ump->um_e2fs;
206                 error = 0;
207                 if (fs->s_rd_only == 0 && (mp->mnt_flag & MNT_RDONLY)) {
208                         flags = WRITECLOSE;
209                         if (mp->mnt_flag & MNT_FORCE)
210                                 flags |= FORCECLOSE;
211                         if (vfs_busy(mp, LK_NOWAIT, NULL, td))
212                                 return (EBUSY);
213                         error = ext2_flushfiles(mp, flags, td);
214                         vfs_unbusy(mp, td);
215                         if (!error && fs->s_wasvalid) {
216                                 fs->s_es->s_state |= EXT2_VALID_FS;
217                                 ext2_sbupdate(ump, MNT_WAIT);
218                         }
219                         fs->s_rd_only = 1;
220                 }
221                 if (!error && (mp->mnt_flag & MNT_RELOAD))
222                         error = ext2_reload(mp, ndp->ni_cnd.cn_cred, td);
223                 if (error)
224                         return (error);
225                 devvp = ump->um_devvp;
226                 if (ext2_check_sb_compat(fs->s_es, devvp->v_rdev,
227                     (mp->mnt_kern_flag & MNTK_WANTRDWR) == 0) != 0)
228                         return (EPERM);
229                 if (fs->s_rd_only && (mp->mnt_kern_flag & MNTK_WANTRDWR)) {
230                         /*
231                          * If upgrade to read-write by non-root, then verify
232                          * that user has necessary permissions on the device.
233                          */
234                         if (cred->cr_uid != 0) {
235                                 vn_lock(devvp, NULL, LK_EXCLUSIVE | LK_RETRY, td);
236                                 if ((error = VOP_ACCESS(devvp, VREAD | VWRITE,
237                                     cred, td)) != 0) {
238                                         VOP_UNLOCK(devvp, NULL, 0, td);
239                                         return (error);
240                                 }
241                                 VOP_UNLOCK(devvp, NULL, 0, td);
242                         }
243
244                         if ((fs->s_es->s_state & EXT2_VALID_FS) == 0 ||
245                             (fs->s_es->s_state & EXT2_ERROR_FS)) {
246                                 if (mp->mnt_flag & MNT_FORCE) {
247                                         printf(
248 "WARNING: %s was not properly dismounted\n",
249                                             fs->fs_fsmnt);
250                                 } else {
251                                         printf(
252 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
253                                             fs->fs_fsmnt);
254                                         return (EPERM);
255                                 }
256                         }
257                         fs->s_es->s_state &= ~EXT2_VALID_FS;
258                         ext2_sbupdate(ump, MNT_WAIT);
259                         fs->s_rd_only = 0;
260                 }
261                 if (args.fspec == 0) {
262                         /*
263                          * Process export requests.
264                          */
265                         return (vfs_export(mp, &ump->um_export, &args.export));
266                 }
267         }
268         /*
269          * Not an update, or updating the name: look up the name
270          * and verify that it refers to a sensible block device.
271          */
272         NDINIT(ndp, NAMEI_LOOKUP, CNP_FOLLOW, UIO_USERSPACE, args.fspec, td);
273         if ((error = namei(ndp)) != 0)
274                 return (error);
275         NDFREE(ndp, NDF_ONLY_PNBUF);
276         devvp = ndp->ni_vp;
277
278         if (!vn_isdisk(devvp, &error)) {
279                 vrele(devvp);
280                 return (error);
281         }
282
283         /*
284          * If mount by non-root, then verify that user has necessary
285          * permissions on the device.
286          */
287         if (cred->cr_uid != 0) {
288                 accessmode = VREAD;
289                 if ((mp->mnt_flag & MNT_RDONLY) == 0)
290                         accessmode |= VWRITE;
291                 vn_lock(devvp, NULL, LK_EXCLUSIVE | LK_RETRY, td);
292                 if ((error = VOP_ACCESS(devvp, accessmode, cred, td)) != 0) {
293                         vput(devvp);
294                         return (error);
295                 }
296                 VOP_UNLOCK(devvp, NULL, 0, td);
297         }
298
299         if ((mp->mnt_flag & MNT_UPDATE) == 0) {
300                 error = ext2_mountfs(devvp, mp, td);
301         } else {
302                 if (devvp != ump->um_devvp)
303                         error = EINVAL; /* needs translation */
304                 else
305                         vrele(devvp);
306         }
307         if (error) {
308                 vrele(devvp);
309                 return (error);
310         }
311         ump = VFSTOUFS(mp);
312         fs = ump->um_e2fs;
313         (void) copyinstr(path, fs->fs_fsmnt, sizeof(fs->fs_fsmnt) - 1, &size);
314         bzero(fs->fs_fsmnt + size, sizeof(fs->fs_fsmnt) - size);
315         bcopy((caddr_t)fs->fs_fsmnt, (caddr_t)mp->mnt_stat.f_mntonname,
316             MNAMELEN);
317         (void) copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1, 
318             &size);
319         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
320         (void)ext2_statfs(mp, &mp->mnt_stat, td);
321         return (0);
322 }
323
324 /*
325  * checks that the data in the descriptor blocks make sense
326  * this is taken from ext2/super.c
327  */
328 static int ext2_check_descriptors(struct ext2_sb_info *sb)
329 {
330         int i;
331         int desc_block = 0;
332         unsigned long block = sb->s_es->s_first_data_block;
333         struct ext2_group_desc * gdp = NULL;
334
335         /* ext2_debug ("Checking group descriptors"); */
336
337         for (i = 0; i < sb->s_groups_count; i++)
338         {
339                 /* examine next descriptor block */
340                 if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0)
341                         gdp = (struct ext2_group_desc *) 
342                                 sb->s_group_desc[desc_block++]->b_data;
343                 if (gdp->bg_block_bitmap < block ||
344                     gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
345                 {
346                         printf ("ext2_check_descriptors: "
347                                     "Block bitmap for group %d"
348                                     " not in group (block %lu)!\n",
349                                     i, (unsigned long) gdp->bg_block_bitmap);
350                         return 0;
351                 }
352                 if (gdp->bg_inode_bitmap < block ||
353                     gdp->bg_inode_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
354                 {
355                         printf ("ext2_check_descriptors: "
356                                     "Inode bitmap for group %d"
357                                     " not in group (block %lu)!\n",
358                                     i, (unsigned long) gdp->bg_inode_bitmap);
359                         return 0;
360                 }
361                 if (gdp->bg_inode_table < block ||
362                     gdp->bg_inode_table + sb->s_itb_per_group >=
363                     block + EXT2_BLOCKS_PER_GROUP(sb))
364                 {
365                         printf ("ext2_check_descriptors: "
366                                     "Inode table for group %d"
367                                     " not in group (block %lu)!\n",
368                                     i, (unsigned long) gdp->bg_inode_table);
369                         return 0;
370                 }
371                 block += EXT2_BLOCKS_PER_GROUP(sb);
372                 gdp++;
373         }
374         return 1;
375 }
376
377 static int
378 ext2_check_sb_compat(struct ext2_super_block *es, dev_t dev, int ronly)
379 {
380         if (es->s_magic != EXT2_SUPER_MAGIC) {
381                 printf("ext2fs: %s: wrong magic number %#x (expected %#x)\n",
382                     devtoname(dev), es->s_magic, EXT2_SUPER_MAGIC);
383                 return (1);
384         }
385         if (es->s_rev_level > EXT2_GOOD_OLD_REV) {
386                 if (es->s_feature_incompat & ~EXT2_FEATURE_INCOMPAT_SUPP) {
387                         printf(
388 "WARNING: mount of %s denied due to unsupported optional features\n",
389                             devtoname(dev));
390                         return (1);
391                 }
392                 if (!ronly &&
393                     (es->s_feature_ro_compat & ~EXT2_FEATURE_RO_COMPAT_SUPP)) {
394                         printf(
395 "WARNING: R/W mount of %s denied due to unsupported optional features\n",
396                             devtoname(dev));
397                         return (1);
398                 }
399         }
400         return (0);
401 }
402
403 /*
404  * this computes the fields of the  ext2_sb_info structure from the
405  * data in the ext2_super_block structure read in
406  */
407 static int
408 compute_sb_data(struct vnode *devvp, struct ext2_super_block *es,
409                 struct ext2_sb_info *fs)
410 {
411     int db_count, error;
412     int i, j;
413     int logic_sb_block = 1;     /* XXX for now */
414
415 #if 1
416 #define V(v)  
417 #else
418 #define V(v)  printf(#v"= %d\n", fs->v);
419 #endif
420
421     fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; 
422     V(s_blocksize)
423     fs->s_bshift = EXT2_MIN_BLOCK_LOG_SIZE + es->s_log_block_size;
424     V(s_bshift)
425     fs->s_fsbtodb = es->s_log_block_size + 1;
426     V(s_fsbtodb)
427     fs->s_qbmask = fs->s_blocksize - 1;
428     V(s_bmask)
429     fs->s_blocksize_bits = EXT2_BLOCK_SIZE_BITS(es);
430     V(s_blocksize_bits)
431     fs->s_frag_size = EXT2_MIN_FRAG_SIZE << es->s_log_frag_size;
432     V(s_frag_size)
433     if (fs->s_frag_size)
434         fs->s_frags_per_block = fs->s_blocksize / fs->s_frag_size;
435     V(s_frags_per_block)
436     fs->s_blocks_per_group = es->s_blocks_per_group;
437     V(s_blocks_per_group)
438     fs->s_frags_per_group = es->s_frags_per_group;
439     V(s_frags_per_group)
440     fs->s_inodes_per_group = es->s_inodes_per_group;
441     V(s_inodes_per_group)
442     fs->s_inodes_per_block = fs->s_blocksize / EXT2_INODE_SIZE;
443     V(s_inodes_per_block)
444     fs->s_itb_per_group = fs->s_inodes_per_group /fs->s_inodes_per_block;
445     V(s_itb_per_group)
446     fs->s_desc_per_block = fs->s_blocksize / sizeof (struct ext2_group_desc);
447     V(s_desc_per_block)
448     /* s_resuid / s_resgid ? */
449     fs->s_groups_count = (es->s_blocks_count -
450                           es->s_first_data_block +
451                           EXT2_BLOCKS_PER_GROUP(fs) - 1) /
452                          EXT2_BLOCKS_PER_GROUP(fs);
453     V(s_groups_count)
454     db_count = (fs->s_groups_count + EXT2_DESC_PER_BLOCK(fs) - 1) /
455         EXT2_DESC_PER_BLOCK(fs);
456     fs->s_db_per_group = db_count;
457     V(s_db_per_group)
458
459     fs->s_group_desc = bsd_malloc(db_count * sizeof (struct buf *),
460                 M_UFSMNT, M_WAITOK);
461
462     /* adjust logic_sb_block */
463     if(fs->s_blocksize > SBSIZE) 
464         /* Godmar thinks: if the blocksize is greater than 1024, then
465            the superblock is logically part of block zero. 
466          */
467         logic_sb_block = 0;
468     
469     for (i = 0; i < db_count; i++) {
470         error = bread(devvp , fsbtodb(fs, logic_sb_block + i + 1), 
471                 fs->s_blocksize, &fs->s_group_desc[i]);
472         if(error) {
473             for (j = 0; j < i; j++)
474                 brelse(fs->s_group_desc[j]);
475             bsd_free(fs->s_group_desc, M_UFSMNT);
476             printf("EXT2-fs: unable to read group descriptors (%d)\n", error);
477             return EIO;
478         }
479         /* Set the B_LOCKED flag on the buffer, then brelse() it */
480         LCK_BUF(fs->s_group_desc[i])
481     }
482     if(!ext2_check_descriptors(fs)) {
483             for (j = 0; j < db_count; j++)
484                     ULCK_BUF(fs->s_group_desc[j])
485             bsd_free(fs->s_group_desc, M_UFSMNT);
486             printf("EXT2-fs: (ext2_check_descriptors failure) "
487                    "unable to read group descriptors\n");
488             return EIO;
489     }
490
491     for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++) {
492             fs->s_inode_bitmap_number[i] = 0;
493             fs->s_inode_bitmap[i] = NULL;
494             fs->s_block_bitmap_number[i] = 0;
495             fs->s_block_bitmap[i] = NULL;
496     }
497     fs->s_loaded_inode_bitmaps = 0;
498     fs->s_loaded_block_bitmaps = 0;
499     return 0;
500 }
501
502 /*
503  * Reload all incore data for a filesystem (used after running fsck on
504  * the root filesystem and finding things to fix). The filesystem must
505  * be mounted read-only.
506  *
507  * Things to do to update the mount:
508  *      1) invalidate all cached meta-data.
509  *      2) re-read superblock from disk.
510  *      3) re-read summary information from disk.
511  *      4) invalidate all inactive vnodes.
512  *      5) invalidate all cached file data.
513  *      6) re-read inode data for all active vnodes.
514  */
515 static int ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *rescan);
516 static int ext2_reload_scan2(struct mount *mp, struct vnode *vp, 
517                                 lwkt_tokref_t vlock, void *rescan);
518
519 struct scaninfo {
520         int rescan;
521         int allerror;
522         int waitfor;
523         thread_t td;
524         struct vnode *devvp;
525         struct ext2_sb_info *fs;
526 };
527
528 static int
529 ext2_reload(struct mount *mountp, struct ucred *cred, struct thread *td)
530 {
531         struct vnode *devvp;
532         struct buf *bp;
533         struct ext2_super_block * es;
534         struct ext2_sb_info *fs;
535         int error;
536         struct scaninfo scaninfo;
537
538         if ((mountp->mnt_flag & MNT_RDONLY) == 0)
539                 return (EINVAL);
540         /*
541          * Step 1: invalidate all cached meta-data.
542          */
543         devvp = VFSTOUFS(mountp)->um_devvp;
544         if (vinvalbuf(devvp, 0, td, 0, 0))
545                 panic("ext2_reload: dirty1");
546         /*
547          * Step 2: re-read superblock from disk.
548          * constants have been adjusted for ext2
549          */
550         if ((error = bread(devvp, SBLOCK, SBSIZE, &bp)) != 0)
551                 return (error);
552         es = (struct ext2_super_block *)bp->b_data;
553         if (ext2_check_sb_compat(es, devvp->v_rdev, 0) != 0) {
554                 brelse(bp);
555                 return (EIO);           /* XXX needs translation */
556         }
557         fs = VFSTOUFS(mountp)->um_e2fs;
558         bcopy(bp->b_data, fs->s_es, sizeof(struct ext2_super_block));
559
560         if((error = compute_sb_data(devvp, es, fs)) != 0) {
561                 brelse(bp);
562                 return error;
563         }
564 #ifdef UNKLAR
565         if (fs->fs_sbsize < SBSIZE)
566                 bp->b_flags |= B_INVAL;
567 #endif
568         brelse(bp);
569
570         scaninfo.rescan = 1;
571         scaninfo.td = td;
572         scaninfo.devvp = devvp;
573         scaninfo.fs = fs;
574         while (error == 0 && scaninfo.rescan) {
575             scaninfo.rescan = 0;
576             error = vmntvnodescan(mountp, ext2_reload_scan1, 
577                                 ext2_reload_scan2, &scaninfo);
578         }
579         return(error);
580 }
581
582 static int
583 ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *data)
584 {
585         struct scaninfo *info = data;
586
587         /*
588          * Step 4: invalidate all inactive vnodes.
589          */
590         if (vrecycle(vp, NULL, curthread)) {
591                 info->rescan = 1;
592                 return(-1);     /* continue loop, do not call scan2 */
593         }
594         return(0);
595 }
596
597 static int
598 ext2_reload_scan2(struct mount *mp, struct vnode *vp, lwkt_tokref_t vlock, void *data)
599 {
600         struct scaninfo *info = data;
601         struct inode *ip;
602         struct buf *bp;
603         int error;
604
605         /*
606          * Step 5: invalidate all cached file data.
607          */
608         if (vget(vp, vlock, LK_EXCLUSIVE | LK_INTERLOCK, info->td)) {
609                 info->rescan = 1;
610                 return(0);
611         }
612         if (vinvalbuf(vp, 0, info->td, 0, 0))
613                 panic("ext2_reload: dirty2");
614         /*
615          * Step 6: re-read inode data for all active vnodes.
616          */
617         ip = VTOI(vp);
618         error = bread(info->devvp, fsbtodb(info->fs, ino_to_fsba(info->fs, ip->i_number)),
619                     (int)info->fs->s_blocksize, &bp);
620         if (error) {
621                 vput(vp);
622                 return (error);
623         }
624         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + 
625             EXT2_INODE_SIZE * ino_to_fsbo(info->fs, ip->i_number)), 
626             &ip->i_din);
627         brelse(bp);
628         vput(vp);
629         return(0);
630 }
631
632 /*
633  * Common code for mount and mountroot
634  */
635 static int
636 ext2_mountfs(struct vnode *devvp, struct mount *mp, struct thread *td)
637 {
638         struct ufsmount *ump;
639         struct buf *bp;
640         struct ext2_sb_info *fs;
641         struct ext2_super_block * es;
642         dev_t dev = devvp->v_rdev;
643         struct partinfo dpart;
644         int havepart = 0;
645         int error, i, size;
646         int ronly;
647
648         /*
649          * Disallow multiple mounts of the same device.
650          * Disallow mounting of a device that is currently in use
651          * (except for root, which might share swap device for miniroot).
652          * Flush out any old buffers remaining from a previous use.
653          */
654         if ((error = vfs_mountedon(devvp)) != 0)
655                 return (error);
656         if (vcount(devvp) > 1 && devvp != rootvp)
657                 return (EBUSY);
658         if ((error = vinvalbuf(devvp, V_SAVE, td, 0, 0)) != 0)
659                 return (error);
660 #ifdef READONLY
661 /* turn on this to force it to be read-only */
662         mp->mnt_flag |= MNT_RDONLY;
663 #endif
664
665         ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
666         vn_lock(devvp, NULL, LK_EXCLUSIVE | LK_RETRY, td);
667         error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, td);
668         VOP_UNLOCK(devvp, NULL, 0, td);
669         if (error)
670                 return (error);
671         if (devvp->v_rdev->si_iosize_max != 0)
672                 mp->mnt_iosize_max = devvp->v_rdev->si_iosize_max;
673         if (mp->mnt_iosize_max > MAXPHYS)
674                 mp->mnt_iosize_max = MAXPHYS;
675         if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, td) != 0)
676                 size = DEV_BSIZE;
677         else {
678                 havepart = 1;
679                 size = dpart.disklab->d_secsize;
680         }
681
682         bp = NULL;
683         ump = NULL;
684         if ((error = bread(devvp, SBLOCK, SBSIZE, &bp)) != 0)
685                 goto out;
686         es = (struct ext2_super_block *)bp->b_data;
687         if (ext2_check_sb_compat(es, dev, ronly) != 0) {
688                 error = EINVAL;         /* XXX needs translation */
689                 goto out;
690         }
691         if ((es->s_state & EXT2_VALID_FS) == 0 ||
692             (es->s_state & EXT2_ERROR_FS)) {
693                 if (ronly || (mp->mnt_flag & MNT_FORCE)) {
694                         printf(
695 "WARNING: Filesystem was not properly dismounted\n");
696                 } else {
697                         printf(
698 "WARNING: R/W mount denied.  Filesystem is not clean - run fsck\n");
699                         error = EPERM;
700                         goto out;
701                 }
702         }
703         ump = bsd_malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
704         bzero((caddr_t)ump, sizeof *ump);
705         ump->um_malloctype = M_EXT2NODE;
706         ump->um_blkatoff = ext2_blkatoff;
707         ump->um_truncate = ext2_truncate;
708         ump->um_update = ext2_update;
709         ump->um_valloc = ext2_valloc;
710         ump->um_vfree = ext2_vfree;
711         /* I don't know whether this is the right strategy. Note that
712            we dynamically allocate both a ext2_sb_info and a ext2_super_block
713            while Linux keeps the super block in a locked buffer
714          */
715         ump->um_e2fs = bsd_malloc(sizeof(struct ext2_sb_info), 
716                 M_UFSMNT, M_WAITOK);
717         ump->um_e2fs->s_es = bsd_malloc(sizeof(struct ext2_super_block), 
718                 M_UFSMNT, M_WAITOK);
719         bcopy(es, ump->um_e2fs->s_es, (u_int)sizeof(struct ext2_super_block));
720         if ((error = compute_sb_data(devvp, ump->um_e2fs->s_es, ump->um_e2fs)))
721                 goto out;
722         /*
723          * We don't free the group descriptors allocated by compute_sb_data()
724          * until ext2_unmount().  This is OK since the mount will succeed.
725          */
726         brelse(bp);
727         bp = NULL;
728         fs = ump->um_e2fs;
729         fs->s_rd_only = ronly;  /* ronly is set according to mnt_flags */
730         /* if the fs is not mounted read-only, make sure the super block is 
731            always written back on a sync()
732          */
733         fs->s_wasvalid = fs->s_es->s_state & EXT2_VALID_FS ? 1 : 0;
734         if (ronly == 0) {
735                 fs->s_dirt = 1;         /* mark it modified */
736                 fs->s_es->s_state &= ~EXT2_VALID_FS;    /* set fs invalid */
737         }
738         mp->mnt_data = (qaddr_t)ump;
739         mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
740         mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
741         mp->mnt_maxsymlinklen = EXT2_MAXSYMLINKLEN;
742         mp->mnt_flag |= MNT_LOCAL;
743         ump->um_mountp = mp;
744         ump->um_dev = dev;
745         ump->um_devvp = devvp;
746         /* setting those two parameters allows us to use 
747            ufs_bmap w/o changse !
748         */
749         ump->um_nindir = EXT2_ADDR_PER_BLOCK(fs);
750         ump->um_bptrtodb = fs->s_es->s_log_block_size + 1;
751         ump->um_seqinc = EXT2_FRAGS_PER_BLOCK(fs);
752         for (i = 0; i < MAXQUOTAS; i++)
753                 ump->um_quotas[i] = NULLVP; 
754         devvp->v_specmountpoint = mp;
755         if (ronly == 0) 
756                 ext2_sbupdate(ump, MNT_WAIT);
757         return (0);
758 out:
759         if (bp)
760                 brelse(bp);
761         (void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, td);
762         if (ump) {
763                 bsd_free(ump->um_e2fs->s_es, M_UFSMNT);
764                 bsd_free(ump->um_e2fs, M_UFSMNT);
765                 bsd_free(ump, M_UFSMNT);
766                 mp->mnt_data = (qaddr_t)0;
767         }
768         return (error);
769 }
770
771 /*
772  * unmount system call
773  */
774 static int
775 ext2_unmount(struct mount *mp, int mntflags, struct thread *td)
776 {
777         struct ufsmount *ump;
778         struct ext2_sb_info *fs;
779         int error, flags, ronly, i;
780
781         flags = 0;
782         if (mntflags & MNT_FORCE) {
783                 if (mp->mnt_flag & MNT_ROOTFS)
784                         return (EINVAL);
785                 flags |= FORCECLOSE;
786         }
787         if ((error = ext2_flushfiles(mp, flags, td)) != 0)
788                 return (error);
789         ump = VFSTOUFS(mp);
790         fs = ump->um_e2fs;
791         ronly = fs->s_rd_only;
792         if (ronly == 0) {
793                 if (fs->s_wasvalid)
794                         fs->s_es->s_state |= EXT2_VALID_FS;
795                 ext2_sbupdate(ump, MNT_WAIT);
796         }
797
798         /* release buffers containing group descriptors */
799         for(i = 0; i < fs->s_db_per_group; i++) 
800                 ULCK_BUF(fs->s_group_desc[i])
801         bsd_free(fs->s_group_desc, M_UFSMNT);
802
803         /* release cached inode/block bitmaps */
804         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
805                 if (fs->s_inode_bitmap[i])
806                         ULCK_BUF(fs->s_inode_bitmap[i])
807
808         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
809                 if (fs->s_block_bitmap[i])
810                         ULCK_BUF(fs->s_block_bitmap[i])
811
812         ump->um_devvp->v_specmountpoint = NULL;
813         error = VOP_CLOSE(ump->um_devvp, ronly ? FREAD : FREAD|FWRITE, td);
814         vrele(ump->um_devvp);
815         bsd_free(fs->s_es, M_UFSMNT);
816         bsd_free(fs, M_UFSMNT);
817         bsd_free(ump, M_UFSMNT);
818         mp->mnt_data = (qaddr_t)0;
819         mp->mnt_flag &= ~MNT_LOCAL;
820         return (error);
821 }
822
823 /*
824  * Flush out all the files in a filesystem.
825  */
826 static int
827 ext2_flushfiles(struct mount *mp, int flags, struct thread *td)
828 {
829         struct ufsmount *ump;
830         int error;
831 #if QUOTA
832         int i;
833 #endif
834
835         ump = VFSTOUFS(mp);
836 #if QUOTA
837         if (mp->mnt_flag & MNT_QUOTA) {
838                 if ((error = vflush(mp, 0, SKIPSYSTEM|flags)) != 0)
839                         return (error);
840                 for (i = 0; i < MAXQUOTAS; i++) {
841                         if (ump->um_quotas[i] == NULLVP)
842                                 continue;
843                         quotaoff(td, mp, i);
844                 }
845                 /*
846                  * Here we fall through to vflush again to ensure
847                  * that we have gotten rid of all the system vnodes.
848                  */
849         }
850 #endif
851         error = vflush(mp, 0, flags);
852         return (error);
853 }
854
855 /*
856  * Get file system statistics.
857  * taken from ext2/super.c ext2_statfs
858  */
859 static int
860 ext2_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
861 {
862         unsigned long overhead;
863         struct ufsmount *ump;
864         struct ext2_sb_info *fs;
865         struct ext2_super_block *es;
866         int i, nsb;
867
868         ump = VFSTOUFS(mp);
869         fs = ump->um_e2fs;
870         es = fs->s_es;
871
872         if (es->s_magic != EXT2_SUPER_MAGIC)
873                 panic("ext2_statfs - magic number spoiled");
874
875         /*
876          * Compute the overhead (FS structures)
877          */
878         if (es->s_feature_ro_compat & EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) {
879                 nsb = 0;
880                 for (i = 0 ; i < fs->s_groups_count; i++)
881                         if (ext2_group_sparse(i))
882                                 nsb++;
883         } else
884                 nsb = fs->s_groups_count;
885         overhead = es->s_first_data_block + 
886             /* Superblocks and block group descriptors: */
887             nsb * (1 + fs->s_db_per_group) +
888             /* Inode bitmap, block bitmap, and inode table: */
889             fs->s_groups_count * (1 + 1 + fs->s_itb_per_group);
890
891         sbp->f_bsize = EXT2_FRAG_SIZE(fs);      
892         sbp->f_iosize = EXT2_BLOCK_SIZE(fs);
893         sbp->f_blocks = es->s_blocks_count - overhead;
894         sbp->f_bfree = es->s_free_blocks_count; 
895         sbp->f_bavail = sbp->f_bfree - es->s_r_blocks_count; 
896         sbp->f_files = es->s_inodes_count; 
897         sbp->f_ffree = es->s_free_inodes_count; 
898         if (sbp != &mp->mnt_stat) {
899                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
900                 bcopy((caddr_t)mp->mnt_stat.f_mntonname,
901                         (caddr_t)&sbp->f_mntonname[0], MNAMELEN);
902                 bcopy((caddr_t)mp->mnt_stat.f_mntfromname,
903                         (caddr_t)&sbp->f_mntfromname[0], MNAMELEN);
904         }
905         return (0);
906 }
907
908 /*
909  * Go through the disk queues to initiate sandbagged IO;
910  * go through the inodes to write those that have been modified;
911  * initiate the writing of the super block if it has been modified.
912  *
913  * Note: we are always called with the filesystem marked `MPBUSY'.
914  */
915
916 static int ext2_sync_scan(struct mount *mp, struct vnode *vp, 
917                 lwkt_tokref_t vlock, void *data);
918
919 static int
920 ext2_sync(struct mount *mp, int waitfor, struct thread *td)
921 {
922         struct ufsmount *ump = VFSTOUFS(mp);
923         struct ext2_sb_info *fs;
924         struct scaninfo scaninfo;
925         int error;
926
927         fs = ump->um_e2fs;
928         if (fs->s_dirt != 0 && fs->s_rd_only != 0) {            /* XXX */
929                 printf("fs = %s\n", fs->fs_fsmnt);
930                 panic("ext2_sync: rofs mod");
931         }
932
933         /*
934          * Write back each (modified) inode.
935          */
936         scaninfo.allerror = 0;
937         scaninfo.rescan = 1;
938         scaninfo.waitfor = waitfor;
939         scaninfo.td = td;
940         while (scaninfo.rescan) {
941                 scaninfo.rescan = 0;
942                 vmntvnodescan(mp, NULL, ext2_sync_scan, &scaninfo);
943         }
944
945         /*
946          * Force stale file system control information to be flushed.
947          */
948         if (waitfor != MNT_LAZY) {
949                 vn_lock(ump->um_devvp, NULL, LK_EXCLUSIVE | LK_RETRY, td);
950                 if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0)
951                         scaninfo.allerror = error;
952                 VOP_UNLOCK(ump->um_devvp, NULL, 0, td);
953         }
954 #if QUOTA
955         qsync(mp);
956 #endif
957         /*
958          * Write back modified superblock.
959          */
960         if (fs->s_dirt != 0) {
961                 fs->s_dirt = 0;
962                 fs->s_es->s_wtime = time_second;
963                 if ((error = ext2_sbupdate(ump, waitfor)) != 0)
964                         scaninfo.allerror = error;
965         }
966         return (scaninfo.allerror);
967 }
968
969 static int
970 ext2_sync_scan(struct mount *mp, struct vnode *vp, 
971                lwkt_tokref_t vlock, void *data)
972 {
973         struct scaninfo *info = data;
974         struct inode *ip;
975         int error;
976
977         ip = VTOI(vp);
978         if (vp->v_type == VNON ||
979             ((ip->i_flag &
980             (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
981             (TAILQ_EMPTY(&vp->v_dirtyblkhd) || info->waitfor == MNT_LAZY))) {
982                 lwkt_reltoken(vlock);
983                 return(0);
984         }
985         error = vget(vp, vlock, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK, info->td);
986         if (error) {
987                 if (error == ENOENT)
988                         info->rescan = 1;
989                 return(0);
990         }
991         if ((error = VOP_FSYNC(vp, info->waitfor, info->td)) != 0)
992                 info->allerror = error;
993         VOP_UNLOCK(vp, NULL, 0, info->td);
994         vrele(vp);
995         return(0);
996 }
997
998 /*
999  * Look up a EXT2FS dinode number to find its incore vnode, otherwise read it
1000  * in from disk.  If it is in core, wait for the lock bit to clear, then
1001  * return the inode locked.  Detection and handling of mount points must be
1002  * done by the calling routine.
1003  */
1004 static int
1005 ext2_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1006 {
1007         struct ext2_sb_info *fs;
1008         struct inode *ip;
1009         struct ufsmount *ump;
1010         struct buf *bp;
1011         struct vnode *vp;
1012         dev_t dev;
1013         int i, error;
1014         int used_blocks;
1015
1016         ump = VFSTOUFS(mp);
1017         dev = ump->um_dev;
1018 restart:
1019         if ((*vpp = ufs_ihashget(dev, ino)) != NULL)
1020                 return (0);
1021
1022         /*
1023          * Lock out the creation of new entries in the FFS hash table in
1024          * case getnewvnode() or MALLOC() blocks, otherwise a duplicate
1025          * may occur!
1026          */
1027         if (ext2fs_inode_hash_lock) {
1028                 while (ext2fs_inode_hash_lock) {
1029                         ext2fs_inode_hash_lock = -1;
1030                         tsleep(&ext2fs_inode_hash_lock, 0, "e2vget", 0);
1031                 }
1032                 goto restart;
1033         }
1034         ext2fs_inode_hash_lock = 1;
1035
1036         /*
1037          * If this MALLOC() is performed after the getnewvnode()
1038          * it might block, leaving a vnode with a NULL v_data to be
1039          * found by ext2_sync() if a sync happens to fire right then,
1040          * which will cause a panic because ext2_sync() blindly
1041          * dereferences vp->v_data (as well it should).
1042          */
1043         MALLOC(ip, struct inode *, sizeof(struct inode), M_EXT2NODE, M_WAITOK);
1044
1045         /* Allocate a new vnode/inode. */
1046         if ((error = getnewvnode(VT_UFS, mp, ext2_vnodeop_p, &vp)) != 0) {
1047                 if (ext2fs_inode_hash_lock < 0)
1048                         wakeup(&ext2fs_inode_hash_lock);
1049                 ext2fs_inode_hash_lock = 0;
1050                 *vpp = NULL;
1051                 FREE(ip, M_EXT2NODE);
1052                 return (error);
1053         }
1054         bzero((caddr_t)ip, sizeof(struct inode));
1055         lockinit(&ip->i_lock, 0, "ext2in", 0, 0);
1056         vp->v_data = ip;
1057         ip->i_vnode = vp;
1058         ip->i_e2fs = fs = ump->um_e2fs;
1059         ip->i_dev = dev;
1060         ip->i_number = ino;
1061 #if QUOTA
1062         for (i = 0; i < MAXQUOTAS; i++)
1063                 ip->i_dquot[i] = NODQUOT;
1064 #endif
1065         /*
1066          * Put it onto its hash chain and lock it so that other requests for
1067          * this inode will block if they arrive while we are sleeping waiting
1068          * for old data structures to be purged or for the contents of the
1069          * disk portion of this inode to be read.
1070          */
1071         ufs_ihashins(ip);
1072
1073         if (ext2fs_inode_hash_lock < 0)
1074                 wakeup(&ext2fs_inode_hash_lock);
1075         ext2fs_inode_hash_lock = 0;
1076
1077         /* Read in the disk contents for the inode, copy into the inode. */
1078 #if 0
1079 printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino)));
1080 #endif
1081         if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
1082             (int)fs->s_blocksize, &bp)) != 0) {
1083                 /*
1084                  * The inode does not contain anything useful, so it would
1085                  * be misleading to leave it on its hash chain. With mode
1086                  * still zero, it will be unlinked and returned to the free
1087                  * list by vput().
1088                  */
1089                 vput(vp);
1090                 brelse(bp);
1091                 *vpp = NULL;
1092                 return (error);
1093         }
1094         /* convert ext2 inode to dinode */
1095         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE *
1096                         ino_to_fsbo(fs, ino)), &ip->i_din);
1097         ip->i_block_group = ino_to_cg(fs, ino);
1098         ip->i_next_alloc_block = 0;
1099         ip->i_next_alloc_goal = 0;
1100         ip->i_prealloc_count = 0;
1101         ip->i_prealloc_block = 0;
1102         /* now we want to make sure that block pointers for unused
1103            blocks are zeroed out - ext2_balloc depends on this 
1104            although for regular files and directories only
1105         */
1106         if(S_ISDIR(ip->i_mode) || S_ISREG(ip->i_mode)) {
1107                 used_blocks = (ip->i_size+fs->s_blocksize-1) / fs->s_blocksize;
1108                 for(i = used_blocks; i < EXT2_NDIR_BLOCKS; i++)
1109                         ip->i_db[i] = 0;
1110         }
1111 /*
1112         ext2_print_inode(ip);
1113 */
1114         brelse(bp);
1115
1116         /*
1117          * Initialize the vnode from the inode, check for aliases.
1118          * Note that the underlying vnode may have changed.
1119          */
1120         if ((error = ufs_vinit(mp, ext2_specop_p, ext2_fifoop_p, &vp)) != 0) {
1121                 vput(vp);
1122                 *vpp = NULL;
1123                 return (error);
1124         }
1125         /*
1126          * Finish inode initialization now that aliasing has been resolved.
1127          */
1128         ip->i_devvp = ump->um_devvp;
1129         vref(ip->i_devvp);
1130         /*
1131          * Set up a generation number for this inode if it does not
1132          * already have one. This should only happen on old filesystems.
1133          */
1134         if (ip->i_gen == 0) {
1135                 ip->i_gen = random() / 2 + 1;
1136                 if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
1137                         ip->i_flag |= IN_MODIFIED;
1138         }
1139         *vpp = vp;
1140         return (0);
1141 }
1142
1143 /*
1144  * File handle to vnode
1145  *
1146  * Have to be really careful about stale file handles:
1147  * - check that the inode number is valid
1148  * - call ext2_vget() to get the locked inode
1149  * - check for an unallocated inode (i_mode == 0)
1150  * - check that the given client host has export rights and return
1151  *   those rights via. exflagsp and credanonp
1152  */
1153 static int
1154 ext2_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1155 {
1156         struct ufid *ufhp;
1157         struct ext2_sb_info *fs;
1158
1159         ufhp = (struct ufid *)fhp;
1160         fs = VFSTOUFS(mp)->um_e2fs;
1161         if (ufhp->ufid_ino < ROOTINO ||
1162             ufhp->ufid_ino > fs->s_groups_count * fs->s_es->s_inodes_per_group)
1163                 return (ESTALE);
1164         return (ufs_fhtovp(mp, ufhp, vpp));
1165 }
1166
1167 /*
1168  * Vnode pointer to File handle
1169  */
1170 /* ARGSUSED */
1171 static int
1172 ext2_vptofh(struct vnode *vp, struct fid *fhp)
1173 {
1174         struct inode *ip;
1175         struct ufid *ufhp;
1176
1177         ip = VTOI(vp);
1178         ufhp = (struct ufid *)fhp;
1179         ufhp->ufid_len = sizeof(struct ufid);
1180         ufhp->ufid_ino = ip->i_number;
1181         ufhp->ufid_gen = ip->i_gen;
1182         return (0);
1183 }
1184
1185 /*
1186  * Write a superblock and associated information back to disk.
1187  */
1188 static int
1189 ext2_sbupdate(struct ufsmount *mp, int waitfor)
1190 {
1191         struct ext2_sb_info *fs = mp->um_e2fs;
1192         struct ext2_super_block *es = fs->s_es;
1193         struct buf *bp;
1194         int error = 0;
1195 /*
1196 printf("\nupdating superblock, waitfor=%s\n", waitfor == MNT_WAIT ? "yes":"no");
1197 */
1198         bp = getblk(mp->um_devvp, SBLOCK, SBSIZE, 0, 0);
1199         bcopy((caddr_t)es, bp->b_data, (u_int)sizeof(struct ext2_super_block));
1200         if (waitfor == MNT_WAIT)
1201                 error = bwrite(bp);
1202         else
1203                 bawrite(bp);
1204
1205         /*
1206          * The buffers for group descriptors, inode bitmaps and block bitmaps
1207          * are not busy at this point and are (hopefully) written by the
1208          * usual sync mechanism. No need to write them here
1209          */
1210
1211         return (error);
1212 }