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