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