Fix one place where the superblock was being read (and written) at the
[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.37 2006/04/09 20:07:43 dillon Exp $
42  */
43
44 #include "opt_quota.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/nlookup.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 <vm/vm_zone.h>
60
61 #include <sys/buf2.h>
62 #include <sys/thread2.h>
63
64 #include "quota.h"
65 #include "dinode.h"
66 #include "inode.h"
67 #include "ext2mount.h"
68 #include "ext2_extern.h"
69
70 #include "fs.h"
71 #include "ext2_fs.h"
72 #include "ext2_fs_sb.h"
73
74 extern struct vnodeopv_entry_desc ext2_vnodeop_entries[];
75 extern struct vnodeopv_entry_desc ext2_specop_entries[];
76 extern struct vnodeopv_entry_desc ext2_fifoop_entries[];
77
78 static int ext2_fhtovp (struct mount *, struct fid *, struct vnode **);
79 static int ext2_flushfiles (struct mount *mp, int flags, struct thread *td);
80 static int ext2_mount (struct mount *, char *, caddr_t, struct thread *);
81 static int ext2_mountfs (struct vnode *, struct mount *, struct thread *);
82 static int ext2_root(struct mount *, struct vnode **);
83 static int ext2_reload (struct mount *mountp, struct ucred *cred,
84                         struct thread *p);
85 static int ext2_sbupdate (struct ext2mount *, int);
86 static int ext2_statfs (struct mount *, struct statfs *, struct thread *);
87 static int ext2_sync (struct mount *, int, struct thread *);
88 static int ext2_unmount (struct mount *, int, struct thread *);
89 static int ext2_vget (struct mount *, ino_t, struct vnode **);
90 static int ext2_init(struct vfsconf *);
91 static int ext2_vptofh (struct vnode *, struct fid *);
92
93 static MALLOC_DEFINE(M_EXT2NODE, "EXT2 node", "EXT2 vnode private part");
94 MALLOC_DEFINE(M_EXT2MNT, "EXT2 mount", "EXT2 mount structure");
95
96 static struct vfsops ext2fs_vfsops = {
97         .vfs_mount =            ext2_mount,
98         .vfs_unmount =          ext2_unmount,
99         .vfs_root =             ext2_root,      /* root inode via vget */
100         .vfs_quotactl =         ext2_quotactl,  /* quota operations */
101         .vfs_statfs =           ext2_statfs,
102         .vfs_sync =             ext2_sync,
103         .vfs_vget =             ext2_vget,
104         .vfs_fhtovp =           ext2_fhtovp,
105         .vfs_checkexp =         ext2_check_export,
106         .vfs_vptofh =           ext2_vptofh,
107         .vfs_init =             ext2_init,
108         .vfs_uninit =           ext2_uninit
109 };
110
111 VFS_SET(ext2fs_vfsops, ext2fs, 0);
112 #define bsd_malloc malloc
113 #define bsd_free free
114
115 static int ext2fs_inode_hash_lock;
116
117 static int      ext2_check_sb_compat (struct ext2_super_block *es,
118                                           dev_t dev, int ronly);
119 static int      compute_sb_data (struct vnode * devvp,
120                                      struct ext2_super_block * es,
121                                      struct ext2_sb_info * fs);
122
123 static int
124 ext2_root(struct mount *mp, struct vnode **vpp)
125 {
126         struct vnode *nvp;
127         int error;
128
129         error = VFS_VGET(mp, (ino_t)ROOTINO, &nvp);
130         if (error)
131                 return (error);
132         *vpp = nvp;
133         return (0);
134 }
135
136 /*
137  * Do operations associated with quotas
138  */
139 int
140 ext2_quotactl(struct mount *mp, int cmds, uid_t uid, caddr_t arg,
141              struct thread *td)
142 {
143 #ifndef QUOTA
144         return (EOPNOTSUPP);
145 #else
146         struct proc *p = td->td_proc;
147         int cmd, type, error;
148
149         if (p == NULL)
150                 return (EOPNOTSUPP);
151
152         type = cmds & SUBCMDMASK;
153         cmd = cmds >> SUBCMDSHIFT;
154
155         if (uid == -1) {
156                 switch(type) {
157                         case USRQUOTA:
158                                 uid = p->p_ucred->cr_ruid;
159                                 break;
160                         case GRPQUOTA:
161                                 uid = p->p_ucred->cr_rgid;
162                                 break;
163                         default:
164                                 return (EINVAL);
165                 }
166         }
167                                         
168         switch (cmd) {
169         case Q_SYNC:
170                 break;
171         case Q_GETQUOTA:
172                 if (uid == p->p_ucred->cr_ruid)
173                         break;
174                 /* fall through */
175         default:
176                 if ((error = suser_cred(p->p_ucred, PRISON_ROOT)) != 0)
177                         return (error);
178         }
179
180         type = cmds & SUBCMDMASK;
181         if ((uint)type >= MAXQUOTAS)
182                 return (EINVAL);
183         if (vfs_busy(mp, LK_NOWAIT, td))
184                 return (0);
185
186         switch (cmd) {
187
188         case Q_QUOTAON:
189                 error = ext2_quotaon(td, mp, type, arg);
190                 break;
191
192         case Q_QUOTAOFF:
193                 error = ext2_quotaoff(td, mp, type);
194                 break;
195
196         case Q_SETQUOTA:
197                 error = ext2_setquota(mp, uid, type, arg);
198                 break;
199
200         case Q_SETUSE:
201                 error = ext2_setuse(mp, uid, type, arg);
202                 break;
203
204         case Q_GETQUOTA:
205                 error = ext2_getquota(mp, uid, type, arg);
206                 break;
207
208         case Q_SYNC:
209                 error = ext2_qsync(mp);
210                 break;
211
212         default:
213                 error = EINVAL;
214                 break;
215         }
216         vfs_unbusy(mp, td);
217         return (error);
218 #endif
219 }
220
221 /*
222  * Initial UFS filesystems, done only once.
223  */
224 int
225 ext2_init(struct vfsconf *vfsp)
226 {
227         static int done;
228
229         if (done)
230                 return (0);
231         done = 1;
232         ext2_ihashinit();
233 #ifdef QUOTA
234         ext2_dqinit();
235 #endif
236         return (0);
237 }
238
239 /*
240  * VFS Operations.
241  *
242  * mount system call
243  *
244  * Parameters:
245  *      data:   this is actually a (struct ext2_args *)
246  */
247 static int
248 ext2_mount(struct mount *mp, char *path, caddr_t data,
249            struct thread *td)
250 {
251         struct vnode *devvp;
252         struct ext2_args args;
253         struct ext2mount *ump = 0;
254         struct ext2_sb_info *fs;
255         size_t size;
256         int error, flags;
257         mode_t accessmode;
258         struct ucred *cred;
259         struct nlookupdata nd;
260
261         if ((error = copyin(data, (caddr_t)&args, sizeof (struct ext2_args))) != 0)
262                 return (error);
263
264         cred = td->td_proc->p_ucred;
265         /*
266          * If updating, check whether changing from read-only to
267          * read/write; if there is no device name, that's all we do.
268          */
269         if (mp->mnt_flag & MNT_UPDATE) {
270                 ump = VFSTOEXT2(mp);
271                 fs = ump->um_e2fs;
272                 devvp = ump->um_devvp;
273                 error = 0;
274                 if (fs->s_rd_only == 0 && (mp->mnt_flag & MNT_RDONLY)) {
275                         flags = WRITECLOSE;
276                         if (mp->mnt_flag & MNT_FORCE)
277                                 flags |= FORCECLOSE;
278                         if (vfs_busy(mp, LK_NOWAIT, td))
279                                 return (EBUSY);
280                         error = ext2_flushfiles(mp, flags, td);
281                         vfs_unbusy(mp, td);
282                         if (!error && fs->s_wasvalid) {
283                                 fs->s_es->s_state |= EXT2_VALID_FS;
284                                 ext2_sbupdate(ump, MNT_WAIT);
285                         }
286                         fs->s_rd_only = 1;
287                         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
288                         VOP_OPEN(devvp, FREAD, FSCRED, NULL, td);
289                         VOP_CLOSE(devvp, FREAD|FWRITE, td);
290                         VOP_UNLOCK(devvp, 0, td);
291                 }
292                 if (!error && (mp->mnt_flag & MNT_RELOAD))
293                         error = ext2_reload(mp, proc0.p_ucred, td);
294                 if (error)
295                         return (error);
296                 if (ext2_check_sb_compat(fs->s_es, devvp->v_rdev,
297                     (mp->mnt_kern_flag & MNTK_WANTRDWR) == 0) != 0)
298                         return (EPERM);
299                 if (fs->s_rd_only && (mp->mnt_kern_flag & MNTK_WANTRDWR)) {
300                         /*
301                          * If upgrade to read-write by non-root, then verify
302                          * that user has necessary permissions on the device.
303                          */
304                         if (cred->cr_uid != 0) {
305                                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
306                                 if ((error = VOP_ACCESS(devvp, VREAD | VWRITE,
307                                     cred, td)) != 0) {
308                                         VOP_UNLOCK(devvp, 0, td);
309                                         return (error);
310                                 }
311                                 VOP_UNLOCK(devvp, 0, td);
312                         }
313
314                         if ((fs->s_es->s_state & EXT2_VALID_FS) == 0 ||
315                             (fs->s_es->s_state & EXT2_ERROR_FS)) {
316                                 if (mp->mnt_flag & MNT_FORCE) {
317                                         printf(
318 "WARNING: %s was not properly dismounted\n",
319                                             fs->fs_fsmnt);
320                                 } else {
321                                         printf(
322 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
323                                             fs->fs_fsmnt);
324                                         return (EPERM);
325                                 }
326                         }
327                         fs->s_es->s_state &= ~EXT2_VALID_FS;
328                         ext2_sbupdate(ump, MNT_WAIT);
329                         fs->s_rd_only = 0;
330                         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
331                         VOP_OPEN(devvp, FREAD|FWRITE, FSCRED, NULL, td);
332                         VOP_CLOSE(devvp, FREAD, td);
333                         VOP_UNLOCK(devvp, 0, td);
334                 }
335                 if (args.fspec == 0) {
336                         /*
337                          * Process export requests.
338                          */
339                         return (vfs_export(mp, &ump->um_export, &args.export));
340                 }
341         }
342         /*
343          * Not an update, or updating the name: look up the name
344          * and verify that it refers to a sensible block device.
345          */
346         devvp = NULL;
347         error = nlookup_init(&nd, args.fspec, UIO_USERSPACE, NLC_FOLLOW);
348         if (error == 0)
349                 error = nlookup(&nd);
350         if (error == 0)
351                 error = cache_vref(nd.nl_ncp, nd.nl_cred, &devvp);
352         nlookup_done(&nd);
353         if (error)
354                 return (error);
355
356         if (!vn_isdisk(devvp, &error)) {
357                 vrele(devvp);
358                 return (error);
359         }
360
361         /*
362          * If mount by non-root, then verify that user has necessary
363          * permissions on the device.
364          */
365         if (cred->cr_uid != 0) {
366                 accessmode = VREAD;
367                 if ((mp->mnt_flag & MNT_RDONLY) == 0)
368                         accessmode |= VWRITE;
369                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
370                 if ((error = VOP_ACCESS(devvp, accessmode, cred, td)) != 0) {
371                         vput(devvp);
372                         return (error);
373                 }
374                 VOP_UNLOCK(devvp, 0, td);
375         }
376
377         if ((mp->mnt_flag & MNT_UPDATE) == 0) {
378                 error = ext2_mountfs(devvp, mp, td);
379         } else {
380                 if (devvp != ump->um_devvp)
381                         error = EINVAL; /* needs translation */
382                 else
383                         vrele(devvp);
384         }
385         if (error) {
386                 vrele(devvp);
387                 return (error);
388         }
389         ump = VFSTOEXT2(mp);
390         fs = ump->um_e2fs;
391         copyinstr(path, fs->fs_fsmnt, sizeof(fs->fs_fsmnt) - 1, &size);
392         bzero(fs->fs_fsmnt + size, sizeof(fs->fs_fsmnt) - size);
393         copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1, &size);
394         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
395         ext2_statfs(mp, &mp->mnt_stat, td);
396         return (0);
397 }
398
399 /*
400  * checks that the data in the descriptor blocks make sense
401  * this is taken from ext2/super.c
402  */
403 static int
404 ext2_check_descriptors(struct ext2_sb_info *sb)
405 {
406         int i;
407         int desc_block = 0;
408         unsigned long block = sb->s_es->s_first_data_block;
409         struct ext2_group_desc * gdp = NULL;
410
411         /* ext2_debug ("Checking group descriptors"); */
412
413         for (i = 0; i < sb->s_groups_count; i++)
414         {
415                 /* examine next descriptor block */
416                 if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0)
417                         gdp = (struct ext2_group_desc *) 
418                                 sb->s_group_desc[desc_block++]->b_data;
419                 if (gdp->bg_block_bitmap < block ||
420                     gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
421                 {
422                         printf ("ext2_check_descriptors: "
423                                     "Block bitmap for group %d"
424                                     " not in group (block %lu)!\n",
425                                     i, (unsigned long) gdp->bg_block_bitmap);
426                         return 0;
427                 }
428                 if (gdp->bg_inode_bitmap < block ||
429                     gdp->bg_inode_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
430                 {
431                         printf ("ext2_check_descriptors: "
432                                     "Inode bitmap for group %d"
433                                     " not in group (block %lu)!\n",
434                                     i, (unsigned long) gdp->bg_inode_bitmap);
435                         return 0;
436                 }
437                 if (gdp->bg_inode_table < block ||
438                     gdp->bg_inode_table + sb->s_itb_per_group >=
439                     block + EXT2_BLOCKS_PER_GROUP(sb))
440                 {
441                         printf ("ext2_check_descriptors: "
442                                     "Inode table for group %d"
443                                     " not in group (block %lu)!\n",
444                                     i, (unsigned long) gdp->bg_inode_table);
445                         return 0;
446                 }
447                 block += EXT2_BLOCKS_PER_GROUP(sb);
448                 gdp++;
449         }
450         return 1;
451 }
452
453 static int
454 ext2_check_sb_compat(struct ext2_super_block *es, dev_t dev, int ronly)
455 {
456         if (es->s_magic != EXT2_SUPER_MAGIC) {
457                 printf("ext2fs: %s: wrong magic number %#x (expected %#x)\n",
458                     devtoname(dev), es->s_magic, EXT2_SUPER_MAGIC);
459                 return (1);
460         }
461         if (es->s_rev_level > EXT2_GOOD_OLD_REV) {
462                 if (es->s_feature_incompat & ~EXT2_FEATURE_INCOMPAT_SUPP) {
463                         printf(
464 "WARNING: mount of %s denied due to unsupported optional features\n",
465                             devtoname(dev));
466                         return (1);
467                 }
468                 if (!ronly &&
469                     (es->s_feature_ro_compat & ~EXT2_FEATURE_RO_COMPAT_SUPP)) {
470                         printf(
471 "WARNING: R/W mount of %s denied due to unsupported optional features\n",
472                             devtoname(dev));
473                         return (1);
474                 }
475         }
476         return (0);
477 }
478
479 /*
480  * this computes the fields of the  ext2_sb_info structure from the
481  * data in the ext2_super_block structure read in
482  */
483 static int
484 compute_sb_data(struct vnode *devvp, struct ext2_super_block *es,
485                 struct ext2_sb_info *fs)
486 {
487     int db_count, error;
488     int i, j;
489     int logic_sb_block = 1;     /* XXX for now */
490
491 #if 1
492 #define V(v)  
493 #else
494 #define V(v)  printf(#v"= %d\n", fs->v);
495 #endif
496
497     fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; 
498     V(s_blocksize)
499     fs->s_bshift = EXT2_MIN_BLOCK_LOG_SIZE + es->s_log_block_size;
500     V(s_bshift)
501     fs->s_fsbtodb = es->s_log_block_size + 1;
502     V(s_fsbtodb)
503     fs->s_qbmask = fs->s_blocksize - 1;
504     V(s_bmask)
505     fs->s_blocksize_bits = EXT2_BLOCK_SIZE_BITS(es);
506     V(s_blocksize_bits)
507     fs->s_frag_size = EXT2_MIN_FRAG_SIZE << es->s_log_frag_size;
508     V(s_frag_size)
509     if (fs->s_frag_size)
510         fs->s_frags_per_block = fs->s_blocksize / fs->s_frag_size;
511     V(s_frags_per_block)
512     fs->s_blocks_per_group = es->s_blocks_per_group;
513     V(s_blocks_per_group)
514     fs->s_frags_per_group = es->s_frags_per_group;
515     V(s_frags_per_group)
516     fs->s_inodes_per_group = es->s_inodes_per_group;
517     V(s_inodes_per_group)
518     fs->s_inodes_per_block = fs->s_blocksize / EXT2_INODE_SIZE;
519     V(s_inodes_per_block)
520     fs->s_itb_per_group = fs->s_inodes_per_group /fs->s_inodes_per_block;
521     V(s_itb_per_group)
522     fs->s_desc_per_block = fs->s_blocksize / sizeof (struct ext2_group_desc);
523     V(s_desc_per_block)
524     /* s_resuid / s_resgid ? */
525     fs->s_groups_count = (es->s_blocks_count -
526                           es->s_first_data_block +
527                           EXT2_BLOCKS_PER_GROUP(fs) - 1) /
528                          EXT2_BLOCKS_PER_GROUP(fs);
529     V(s_groups_count)
530     db_count = (fs->s_groups_count + EXT2_DESC_PER_BLOCK(fs) - 1) /
531         EXT2_DESC_PER_BLOCK(fs);
532     fs->s_db_per_group = db_count;
533     V(s_db_per_group)
534
535     fs->s_group_desc = bsd_malloc(db_count * sizeof (struct buf *),
536                 M_EXT2MNT, M_WAITOK);
537
538     /* adjust logic_sb_block */
539     if(fs->s_blocksize > SBSIZE) 
540         /* Godmar thinks: if the blocksize is greater than 1024, then
541            the superblock is logically part of block zero. 
542          */
543         logic_sb_block = 0;
544     
545     for (i = 0; i < db_count; i++) {
546         error = bread(devvp, fsbtodoff(fs, logic_sb_block + i + 1), 
547                       fs->s_blocksize, &fs->s_group_desc[i]);
548         if(error) {
549             for (j = 0; j < i; j++)
550                 brelse(fs->s_group_desc[j]);
551             bsd_free(fs->s_group_desc, M_EXT2MNT);
552             printf("EXT2-fs: unable to read group descriptors (%d)\n", error);
553             return EIO;
554         }
555         /* Set the B_LOCKED flag on the buffer, then brelse() it */
556         LCK_BUF(fs->s_group_desc[i])
557     }
558     if(!ext2_check_descriptors(fs)) {
559             for (j = 0; j < db_count; j++)
560                     ULCK_BUF(fs->s_group_desc[j])
561             bsd_free(fs->s_group_desc, M_EXT2MNT);
562             printf("EXT2-fs: (ext2_check_descriptors failure) "
563                    "unable to read group descriptors\n");
564             return EIO;
565     }
566
567     for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++) {
568             fs->s_inode_bitmap_number[i] = 0;
569             fs->s_inode_bitmap[i] = NULL;
570             fs->s_block_bitmap_number[i] = 0;
571             fs->s_block_bitmap[i] = NULL;
572     }
573     fs->s_loaded_inode_bitmaps = 0;
574     fs->s_loaded_block_bitmaps = 0;
575     return 0;
576 }
577
578 /*
579  * Reload all incore data for a filesystem (used after running fsck on
580  * the root filesystem and finding things to fix). The filesystem must
581  * be mounted read-only.
582  *
583  * Things to do to update the mount:
584  *      1) invalidate all cached meta-data.
585  *      2) re-read superblock from disk.
586  *      3) re-read summary information from disk.
587  *      4) invalidate all inactive vnodes.
588  *      5) invalidate all cached file data.
589  *      6) re-read inode data for all active vnodes.
590  */
591 static int ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *rescan);
592 static int ext2_reload_scan2(struct mount *mp, struct vnode *vp, void *rescan);
593
594 struct scaninfo {
595         int rescan;
596         int allerror;
597         int waitfor;
598         thread_t td;
599         struct vnode *devvp;
600         struct ext2_sb_info *fs;
601 };
602
603 static int
604 ext2_reload(struct mount *mountp, struct ucred *cred, struct thread *td)
605 {
606         struct vnode *devvp;
607         struct buf *bp;
608         struct ext2_super_block * es;
609         struct ext2_sb_info *fs;
610         int error;
611         struct scaninfo scaninfo;
612
613         if ((mountp->mnt_flag & MNT_RDONLY) == 0)
614                 return (EINVAL);
615         /*
616          * Step 1: invalidate all cached meta-data.
617          */
618         devvp = VFSTOEXT2(mountp)->um_devvp;
619         if (vinvalbuf(devvp, 0, td, 0, 0))
620                 panic("ext2_reload: dirty1");
621         /*
622          * Step 2: re-read superblock from disk.
623          * constants have been adjusted for ext2
624          */
625         if ((error = bread(devvp, SBOFF, SBSIZE, &bp)) != 0)
626                 return (error);
627         es = (struct ext2_super_block *)bp->b_data;
628         if (ext2_check_sb_compat(es, devvp->v_rdev, 0) != 0) {
629                 brelse(bp);
630                 return (EIO);           /* XXX needs translation */
631         }
632         fs = VFSTOEXT2(mountp)->um_e2fs;
633         bcopy(bp->b_data, fs->s_es, sizeof(struct ext2_super_block));
634
635         if((error = compute_sb_data(devvp, es, fs)) != 0) {
636                 brelse(bp);
637                 return error;
638         }
639 #ifdef UNKLAR
640         if (fs->fs_sbsize < SBSIZE)
641                 bp->b_flags |= B_INVAL;
642 #endif
643         brelse(bp);
644
645         scaninfo.rescan = 1;
646         scaninfo.td = td;
647         scaninfo.devvp = devvp;
648         scaninfo.fs = fs;
649         while (error == 0 && scaninfo.rescan) {
650             scaninfo.rescan = 0;
651             error = vmntvnodescan(mountp, VMSC_GETVX, ext2_reload_scan1, 
652                                 ext2_reload_scan2, &scaninfo);
653         }
654         return(error);
655 }
656
657 static int
658 ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *data)
659 {
660         /*struct scaninfo *info = data;*/
661
662         return(0);
663 }
664
665 static int
666 ext2_reload_scan2(struct mount *mp, struct vnode *vp, void *data)
667 {
668         struct scaninfo *info = data;
669         struct inode *ip;
670         struct buf *bp;
671         int error;
672
673         /*
674          * Try to recycle
675          */
676         if (vrecycle(vp, curthread))
677                 return(0);
678
679         /*
680          * Step 5: invalidate all cached file data.
681          */
682         if (vinvalbuf(vp, 0, info->td, 0, 0))
683                 panic("ext2_reload: dirty2");
684         /*
685          * Step 6: re-read inode data for all active vnodes.
686          */
687         ip = VTOI(vp);
688         error = bread(info->devvp, 
689                       fsbtodoff(info->fs, ino_to_fsba(info->fs, ip->i_number)),
690                       (int)info->fs->s_blocksize, &bp);
691         if (error)
692                 return (error);
693         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + 
694             EXT2_INODE_SIZE * ino_to_fsbo(info->fs, ip->i_number)), 
695             &ip->i_din);
696         brelse(bp);
697         return(0);
698 }
699
700 /*
701  * Common code for mount and mountroot
702  */
703 static int
704 ext2_mountfs(struct vnode *devvp, struct mount *mp, struct thread *td)
705 {
706         struct ext2mount *ump;
707         struct buf *bp;
708         struct ext2_sb_info *fs;
709         struct ext2_super_block * es;
710         dev_t dev;
711         struct partinfo dpart;
712         int havepart = 0;
713         int error, i, size;
714         int ronly;
715
716         /*
717          * Disallow multiple mounts of the same device.
718          * Disallow mounting of a device that is currently in use
719          * (except for root, which might share swap device for miniroot).
720          * Flush out any old buffers remaining from a previous use.
721          */
722         if ((error = vfs_mountedon(devvp)) != 0)
723                 return (error);
724         if (count_udev(devvp->v_udev) > 0)
725                 return (EBUSY);
726         if ((error = vinvalbuf(devvp, V_SAVE, td, 0, 0)) != 0)
727                 return (error);
728 #ifdef READONLY
729 /* turn on this to force it to be read-only */
730         mp->mnt_flag |= MNT_RDONLY;
731 #endif
732
733         ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
734         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
735         error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, NULL, td);
736         VOP_UNLOCK(devvp, 0, td);
737         if (error)
738                 return (error);
739         dev = devvp->v_rdev;
740         if (dev->si_iosize_max != 0)
741                 mp->mnt_iosize_max = dev->si_iosize_max;
742         if (mp->mnt_iosize_max > MAXPHYS)
743                 mp->mnt_iosize_max = MAXPHYS;
744         if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, td) != 0)
745                 size = DEV_BSIZE;
746         else {
747                 havepart = 1;
748                 size = dpart.disklab->d_secsize;
749         }
750
751         bp = NULL;
752         ump = NULL;
753         if ((error = bread(devvp, SBOFF, SBSIZE, &bp)) != 0)
754                 goto out;
755         es = (struct ext2_super_block *)bp->b_data;
756         if (ext2_check_sb_compat(es, dev, ronly) != 0) {
757                 error = EINVAL;         /* XXX needs translation */
758                 goto out;
759         }
760         if ((es->s_state & EXT2_VALID_FS) == 0 ||
761             (es->s_state & EXT2_ERROR_FS)) {
762                 if (ronly || (mp->mnt_flag & MNT_FORCE)) {
763                         printf(
764 "WARNING: Filesystem was not properly dismounted\n");
765                 } else {
766                         printf(
767 "WARNING: R/W mount denied.  Filesystem is not clean - run fsck\n");
768                         error = EPERM;
769                         goto out;
770                 }
771         }
772         ump = bsd_malloc(sizeof *ump, M_EXT2MNT, M_WAITOK);
773         bzero((caddr_t)ump, sizeof *ump);
774         ump->um_malloctype = M_EXT2NODE;
775         ump->um_blkatoff = ext2_blkatoff;
776         ump->um_truncate = ext2_truncate;
777         ump->um_update = ext2_update;
778         ump->um_valloc = ext2_valloc;
779         ump->um_vfree = ext2_vfree;
780         /* I don't know whether this is the right strategy. Note that
781            we dynamically allocate both a ext2_sb_info and a ext2_super_block
782            while Linux keeps the super block in a locked buffer
783          */
784         ump->um_e2fs = bsd_malloc(sizeof(struct ext2_sb_info), 
785                 M_EXT2MNT, M_WAITOK);
786         ump->um_e2fs->s_es = bsd_malloc(sizeof(struct ext2_super_block), 
787                 M_EXT2MNT, M_WAITOK);
788         bcopy(es, ump->um_e2fs->s_es, (u_int)sizeof(struct ext2_super_block));
789         if ((error = compute_sb_data(devvp, ump->um_e2fs->s_es, ump->um_e2fs)))
790                 goto out;
791         /*
792          * We don't free the group descriptors allocated by compute_sb_data()
793          * until ext2_unmount().  This is OK since the mount will succeed.
794          */
795         brelse(bp);
796         bp = NULL;
797         fs = ump->um_e2fs;
798         fs->s_rd_only = ronly;  /* ronly is set according to mnt_flags */
799         /* if the fs is not mounted read-only, make sure the super block is 
800            always written back on a sync()
801          */
802         fs->s_wasvalid = fs->s_es->s_state & EXT2_VALID_FS ? 1 : 0;
803         if (ronly == 0) {
804                 fs->s_dirt = 1;         /* mark it modified */
805                 fs->s_es->s_state &= ~EXT2_VALID_FS;    /* set fs invalid */
806         }
807         mp->mnt_data = (qaddr_t)ump;
808         mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
809         mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
810         mp->mnt_maxsymlinklen = EXT2_MAXSYMLINKLEN;
811         mp->mnt_flag |= MNT_LOCAL;
812         ump->um_mountp = mp;
813         ump->um_dev = dev;
814         ump->um_devvp = devvp;
815         /* setting those two parameters allows us to use 
816            ext2_bmap w/o changse !
817         */
818         ump->um_nindir = EXT2_ADDR_PER_BLOCK(fs);
819         ump->um_bptrtodb = fs->s_es->s_log_block_size + 1;
820         ump->um_seqinc = EXT2_FRAGS_PER_BLOCK(fs);
821         for (i = 0; i < MAXQUOTAS; i++)
822                 ump->um_quotas[i] = NULLVP; 
823         dev->si_mountpoint = mp;
824
825         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, 
826                          ext2_vnodeop_entries, 0);
827         vfs_add_vnodeops(mp, &mp->mnt_vn_spec_ops,
828                          ext2_specop_entries, 0);
829         vfs_add_vnodeops(mp, &mp->mnt_vn_fifo_ops,
830                          ext2_fifoop_entries, 0);
831
832         if (ronly == 0) 
833                 ext2_sbupdate(ump, MNT_WAIT);
834         return (0);
835 out:
836         if (bp)
837                 brelse(bp);
838         VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, td);
839         if (ump) {
840                 bsd_free(ump->um_e2fs->s_es, M_EXT2MNT);
841                 bsd_free(ump->um_e2fs, M_EXT2MNT);
842                 bsd_free(ump, M_EXT2MNT);
843                 mp->mnt_data = (qaddr_t)0;
844         }
845         return (error);
846 }
847
848 /*
849  * unmount system call
850  */
851 static int
852 ext2_unmount(struct mount *mp, int mntflags, struct thread *td)
853 {
854         struct ext2mount *ump;
855         struct ext2_sb_info *fs;
856         int error, flags, ronly, i;
857
858         flags = 0;
859         if (mntflags & MNT_FORCE) {
860                 if (mp->mnt_flag & MNT_ROOTFS)
861                         return (EINVAL);
862                 flags |= FORCECLOSE;
863         }
864         if ((error = ext2_flushfiles(mp, flags, td)) != 0)
865                 return (error);
866         ump = VFSTOEXT2(mp);
867         fs = ump->um_e2fs;
868         ronly = fs->s_rd_only;
869         if (ronly == 0) {
870                 if (fs->s_wasvalid)
871                         fs->s_es->s_state |= EXT2_VALID_FS;
872                 ext2_sbupdate(ump, MNT_WAIT);
873         }
874
875         /* release buffers containing group descriptors */
876         for(i = 0; i < fs->s_db_per_group; i++) 
877                 ULCK_BUF(fs->s_group_desc[i])
878         bsd_free(fs->s_group_desc, M_EXT2MNT);
879
880         /* release cached inode/block bitmaps */
881         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
882                 if (fs->s_inode_bitmap[i])
883                         ULCK_BUF(fs->s_inode_bitmap[i])
884
885         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
886                 if (fs->s_block_bitmap[i])
887                         ULCK_BUF(fs->s_block_bitmap[i])
888
889         ump->um_devvp->v_rdev->si_mountpoint = NULL;
890         error = VOP_CLOSE(ump->um_devvp, ronly ? FREAD : FREAD|FWRITE, td);
891         vrele(ump->um_devvp);
892         bsd_free(fs->s_es, M_EXT2MNT);
893         bsd_free(fs, M_EXT2MNT);
894         bsd_free(ump, M_EXT2MNT);
895         mp->mnt_data = (qaddr_t)0;
896         mp->mnt_flag &= ~MNT_LOCAL;
897         return (error);
898 }
899
900 /*
901  * Flush out all the files in a filesystem.
902  */
903 static int
904 ext2_flushfiles(struct mount *mp, int flags, struct thread *td)
905 {
906         struct ext2mount *ump;
907         int error;
908 #if QUOTA
909         int i;
910 #endif
911
912         ump = VFSTOEXT2(mp);
913 #if QUOTA
914         if (mp->mnt_flag & MNT_QUOTA) {
915                 if ((error = vflush(mp, 0, SKIPSYSTEM|flags)) != 0)
916                         return (error);
917                 for (i = 0; i < MAXQUOTAS; i++) {
918                         if (ump->um_quotas[i] == NULLVP)
919                                 continue;
920                         ext2_quotaoff(td, mp, i);
921                 }
922                 /*
923                  * Here we fall through to vflush again to ensure
924                  * that we have gotten rid of all the system vnodes.
925                  */
926         }
927 #endif
928         error = vflush(mp, 0, flags);
929         return (error);
930 }
931
932 /*
933  * Get file system statistics.
934  * taken from ext2/super.c ext2_statfs
935  */
936 static int
937 ext2_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
938 {
939         unsigned long overhead;
940         struct ext2mount *ump;
941         struct ext2_sb_info *fs;
942         struct ext2_super_block *es;
943         int i, nsb;
944
945         ump = VFSTOEXT2(mp);
946         fs = ump->um_e2fs;
947         es = fs->s_es;
948
949         if (es->s_magic != EXT2_SUPER_MAGIC)
950                 panic("ext2_statfs - magic number spoiled");
951
952         /*
953          * Compute the overhead (FS structures)
954          */
955         if (es->s_feature_ro_compat & EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) {
956                 nsb = 0;
957                 for (i = 0 ; i < fs->s_groups_count; i++)
958                         if (ext2_group_sparse(i))
959                                 nsb++;
960         } else
961                 nsb = fs->s_groups_count;
962         overhead = es->s_first_data_block + 
963             /* Superblocks and block group descriptors: */
964             nsb * (1 + fs->s_db_per_group) +
965             /* Inode bitmap, block bitmap, and inode table: */
966             fs->s_groups_count * (1 + 1 + fs->s_itb_per_group);
967
968         sbp->f_bsize = EXT2_FRAG_SIZE(fs);      
969         sbp->f_iosize = EXT2_BLOCK_SIZE(fs);
970         sbp->f_blocks = es->s_blocks_count - overhead;
971         sbp->f_bfree = es->s_free_blocks_count; 
972         sbp->f_bavail = sbp->f_bfree - es->s_r_blocks_count; 
973         sbp->f_files = es->s_inodes_count; 
974         sbp->f_ffree = es->s_free_inodes_count; 
975         if (sbp != &mp->mnt_stat) {
976                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
977                 bcopy((caddr_t)mp->mnt_stat.f_mntfromname,
978                         (caddr_t)&sbp->f_mntfromname[0], MNAMELEN);
979         }
980         return (0);
981 }
982
983 /*
984  * Go through the disk queues to initiate sandbagged IO;
985  * go through the inodes to write those that have been modified;
986  * initiate the writing of the super block if it has been modified.
987  *
988  * Note: we are always called with the filesystem marked `MPBUSY'.
989  */
990
991 static int ext2_sync_scan(struct mount *mp, struct vnode *vp, void *data);
992
993 static int
994 ext2_sync(struct mount *mp, int waitfor, struct thread *td)
995 {
996         struct ext2mount *ump = VFSTOEXT2(mp);
997         struct ext2_sb_info *fs;
998         struct scaninfo scaninfo;
999         int error;
1000
1001         fs = ump->um_e2fs;
1002         if (fs->s_dirt != 0 && fs->s_rd_only != 0) {            /* XXX */
1003                 printf("fs = %s\n", fs->fs_fsmnt);
1004                 panic("ext2_sync: rofs mod");
1005         }
1006
1007         /*
1008          * Write back each (modified) inode.
1009          */
1010         scaninfo.allerror = 0;
1011         scaninfo.rescan = 1;
1012         scaninfo.waitfor = waitfor;
1013         scaninfo.td = td;
1014         while (scaninfo.rescan) {
1015                 scaninfo.rescan = 0;
1016                 vmntvnodescan(mp, VMSC_GETVP|VMSC_NOWAIT, 
1017                                 NULL, ext2_sync_scan, &scaninfo);
1018         }
1019
1020         /*
1021          * Force stale file system control information to be flushed.
1022          */
1023         if (waitfor != MNT_LAZY) {
1024                 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY, td);
1025                 if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0)
1026                         scaninfo.allerror = error;
1027                 VOP_UNLOCK(ump->um_devvp, 0, td);
1028         }
1029 #if QUOTA
1030         ext2_qsync(mp);
1031 #endif
1032         /*
1033          * Write back modified superblock.
1034          */
1035         if (fs->s_dirt != 0) {
1036                 fs->s_dirt = 0;
1037                 fs->s_es->s_wtime = time_second;
1038                 if ((error = ext2_sbupdate(ump, waitfor)) != 0)
1039                         scaninfo.allerror = error;
1040         }
1041         return (scaninfo.allerror);
1042 }
1043
1044 static int
1045 ext2_sync_scan(struct mount *mp, struct vnode *vp, void *data)
1046 {
1047         struct scaninfo *info = data;
1048         struct inode *ip;
1049         int error;
1050
1051         ip = VTOI(vp);
1052         if (vp->v_type == VNON ||
1053             ((ip->i_flag &
1054             (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
1055             (RB_EMPTY(&vp->v_rbdirty_tree) || info->waitfor == MNT_LAZY))) {
1056                 return(0);
1057         }
1058         if ((error = VOP_FSYNC(vp, info->waitfor, info->td)) != 0)
1059                 info->allerror = error;
1060         return(0);
1061 }
1062
1063 /*
1064  * Look up a EXT2FS dinode number to find its incore vnode, otherwise read it
1065  * in from disk.  If it is in core, wait for the lock bit to clear, then
1066  * return the inode locked.  Detection and handling of mount points must be
1067  * done by the calling routine.
1068  */
1069 static int
1070 ext2_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1071 {
1072         struct ext2_sb_info *fs;
1073         struct inode *ip;
1074         struct ext2mount *ump;
1075         struct buf *bp;
1076         struct vnode *vp;
1077         dev_t dev;
1078         int i, error;
1079         int used_blocks;
1080
1081         ump = VFSTOEXT2(mp);
1082         dev = ump->um_dev;
1083 restart:
1084         if ((*vpp = ext2_ihashget(dev, ino)) != NULL)
1085                 return (0);
1086
1087         /*
1088          * Lock out the creation of new entries in the FFS hash table in
1089          * case getnewvnode() or MALLOC() blocks, otherwise a duplicate
1090          * may occur!
1091          */
1092         if (ext2fs_inode_hash_lock) {
1093                 while (ext2fs_inode_hash_lock) {
1094                         ext2fs_inode_hash_lock = -1;
1095                         tsleep(&ext2fs_inode_hash_lock, 0, "e2vget", 0);
1096                 }
1097                 goto restart;
1098         }
1099         ext2fs_inode_hash_lock = 1;
1100
1101         /*
1102          * If this MALLOC() is performed after the getnewvnode()
1103          * it might block, leaving a vnode with a NULL v_data to be
1104          * found by ext2_sync() if a sync happens to fire right then,
1105          * which will cause a panic because ext2_sync() blindly
1106          * dereferences vp->v_data (as well it should).
1107          */
1108         MALLOC(ip, struct inode *, sizeof(struct inode), M_EXT2NODE, M_WAITOK);
1109
1110         /* Allocate a new vnode/inode. */
1111         if ((error = getnewvnode(VT_EXT2FS, mp, &vp, 0, LK_CANRECURSE)) != 0) {
1112                 if (ext2fs_inode_hash_lock < 0)
1113                         wakeup(&ext2fs_inode_hash_lock);
1114                 ext2fs_inode_hash_lock = 0;
1115                 *vpp = NULL;
1116                 FREE(ip, M_EXT2NODE);
1117                 return (error);
1118         }
1119         bzero((caddr_t)ip, sizeof(struct inode));
1120         vp->v_data = ip;
1121         ip->i_vnode = vp;
1122         ip->i_e2fs = fs = ump->um_e2fs;
1123         ip->i_dev = dev;
1124         ip->i_number = ino;
1125 #if QUOTA
1126         for (i = 0; i < MAXQUOTAS; i++)
1127                 ip->i_dquot[i] = NODQUOT;
1128 #endif
1129         /*
1130          * Put it onto its hash chain.  Since our vnode is locked, other
1131          * requests for this inode will block if they arrive while we are
1132          * sleeping waiting for old data structures to be purged or for the
1133          * contents of the disk portion of this inode to be read.
1134          */
1135         ext2_ihashins(ip);
1136
1137         if (ext2fs_inode_hash_lock < 0)
1138                 wakeup(&ext2fs_inode_hash_lock);
1139         ext2fs_inode_hash_lock = 0;
1140
1141         /* Read in the disk contents for the inode, copy into the inode. */
1142 #if 0
1143 printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino)));
1144 #endif
1145         printf("BREAD MP %p FS %p INODE %d INO_TO_FSBA %d DOFF %lld\n",
1146                 mp, fs,
1147                 (int)ino, (int)ino_to_fsba(fs, ino),
1148                  fsbtodoff(fs, ino_to_fsba(fs, ino)));
1149
1150         error = bread(ump->um_devvp, fsbtodoff(fs, ino_to_fsba(fs, ino)),
1151                       (int)fs->s_blocksize, &bp);
1152         if (error) {
1153                 /*
1154                  * The inode does not contain anything useful, so it would
1155                  * be misleading to leave it on its hash chain. With mode
1156                  * still zero, it will be unlinked and returned to the free
1157                  * list by vput().
1158                  */
1159                 vx_put(vp);
1160                 brelse(bp);
1161                 *vpp = NULL;
1162                 return (error);
1163         }
1164         /* convert ext2 inode to dinode */
1165         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE *
1166                         ino_to_fsbo(fs, ino)), &ip->i_din);
1167         ip->i_block_group = ino_to_cg(fs, ino);
1168         ip->i_next_alloc_block = 0;
1169         ip->i_next_alloc_goal = 0;
1170         ip->i_prealloc_count = 0;
1171         ip->i_prealloc_block = 0;
1172         /* now we want to make sure that block pointers for unused
1173            blocks are zeroed out - ext2_balloc depends on this 
1174            although for regular files and directories only
1175         */
1176         if(S_ISDIR(ip->i_mode) || S_ISREG(ip->i_mode)) {
1177                 used_blocks = (ip->i_size+fs->s_blocksize-1) / fs->s_blocksize;
1178                 for(i = used_blocks; i < EXT2_NDIR_BLOCKS; i++)
1179                         ip->i_db[i] = 0;
1180         }
1181         ext2_print_inode(ip);
1182         brelse(bp);
1183
1184         /*
1185          * Initialize the vnode from the inode, check for aliases.
1186          * Note that the underlying vnode may have changed.
1187          */
1188         if ((error = ext2_vinit(mp, &vp)) != 0) {
1189                 vx_put(vp);
1190                 *vpp = NULL;
1191                 return (error);
1192         }
1193
1194         /*
1195          * Finish inode initialization now that aliasing has been resolved.
1196          */
1197         ip->i_devvp = ump->um_devvp;
1198         vref(ip->i_devvp);
1199         /*
1200          * Set up a generation number for this inode if it does not
1201          * already have one. This should only happen on old filesystems.
1202          */
1203         if (ip->i_gen == 0) {
1204                 ip->i_gen = random() / 2 + 1;
1205                 if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
1206                         ip->i_flag |= IN_MODIFIED;
1207         }
1208         /*
1209          * Return the locked and refd vnode.
1210          */
1211         *vpp = vp;
1212         return (0);
1213 }
1214
1215 /*
1216  * File handle to vnode
1217  *
1218  * Have to be really careful about stale file handles:
1219  * - check that the inode number is valid
1220  * - call ext2_vget() to get the locked inode
1221  * - check for an unallocated inode (i_mode == 0)
1222  * - check that the given client host has export rights and return
1223  *   those rights via. exflagsp and credanonp
1224  */
1225 static int
1226 ext2_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1227 {
1228         struct ufid *ufhp;
1229         struct ext2_sb_info *fs;
1230         struct inode *ip;
1231         struct vnode *nvp;
1232         int error;
1233
1234         ufhp = (struct ufid *)fhp;
1235         fs = VFSTOEXT2(mp)->um_e2fs;
1236         if (ufhp->ufid_ino < ROOTINO ||
1237             ufhp->ufid_ino > fs->s_groups_count * fs->s_es->s_inodes_per_group)
1238                 return (ESTALE);
1239
1240         error = VFS_VGET(mp, ufhp->ufid_ino, &nvp);
1241         if (error) {
1242                 *vpp = NULLVP;
1243                 return (error);
1244         }
1245         ip = VTOI(nvp);
1246         if (ip->i_mode == 0 ||
1247             ip->i_gen != ufhp->ufid_gen ||
1248             (VFSTOEXT2(mp)->um_i_effnlink_valid ? ip->i_effnlink :
1249             ip->i_nlink) <= 0) {
1250                 vput(nvp);
1251                 *vpp = NULLVP;
1252                 return (ESTALE);
1253         }
1254         *vpp = nvp;
1255         return (0);
1256 }
1257
1258 /*
1259  * Vnode pointer to File handle
1260  */
1261 /* ARGSUSED */
1262 static int
1263 ext2_vptofh(struct vnode *vp, struct fid *fhp)
1264 {
1265         struct inode *ip;
1266         struct ufid *ufhp;
1267
1268         ip = VTOI(vp);
1269         ufhp = (struct ufid *)fhp;
1270         ufhp->ufid_len = sizeof(struct ufid);
1271         ufhp->ufid_ino = ip->i_number;
1272         ufhp->ufid_gen = ip->i_gen;
1273         return (0);
1274 }
1275
1276 /*
1277  * This is the generic part of fhtovp called after the underlying
1278  * filesystem has validated the file handle.
1279  *
1280  * Verify that a host should have access to a filesystem.
1281  */
1282 int
1283 ext2_check_export(struct mount *mp, struct sockaddr *nam, int *exflagsp,
1284                  struct ucred **credanonp)
1285 {
1286         struct netcred *np;
1287         struct ext2mount *ump;;
1288          
1289         ump = VFSTOEXT2(mp);
1290         /*
1291          * Get the export permission structure for this <mp, client> tuple.
1292          */
1293         np = vfs_export_lookup(mp, &ump->um_export, nam);
1294         if (np == NULL)
1295                 return (EACCES);
1296
1297         *exflagsp = np->netc_exflags;
1298         *credanonp = &np->netc_anon;
1299         return (0);
1300 }
1301
1302 /*
1303  * Write a superblock and associated information back to disk.
1304  */
1305 static int
1306 ext2_sbupdate(struct ext2mount *mp, int waitfor)
1307 {
1308         struct ext2_sb_info *fs = mp->um_e2fs;
1309         struct ext2_super_block *es = fs->s_es;
1310         struct buf *bp;
1311         int error = 0;
1312 /*
1313 printf("\nupdating superblock, waitfor=%s\n", waitfor == MNT_WAIT ? "yes":"no");
1314 */
1315         bp = getblk(mp->um_devvp, SBOFF, SBSIZE, 0, 0);
1316         bcopy((caddr_t)es, bp->b_data, (u_int)sizeof(struct ext2_super_block));
1317         if (waitfor == MNT_WAIT)
1318                 error = bwrite(bp);
1319         else
1320                 bawrite(bp);
1321
1322         /*
1323          * The buffers for group descriptors, inode bitmaps and block bitmaps
1324          * are not busy at this point and are (hopefully) written by the
1325          * usual sync mechanism. No need to write them here
1326          */
1327
1328         return (error);
1329 }