Home | History | Annotate | Line # | Download | only in umapfs
umap_subr.c revision 1.10.10.1
      1  1.10.10.1   thorpej /*	$NetBSD: umap_subr.c,v 1.10.10.1 1997/09/16 03:51:15 thorpej Exp $	*/
      2        1.2       cgd 
      3        1.1   mycroft /*
      4        1.1   mycroft  * Copyright (c) 1992, 1993
      5        1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
      6        1.1   mycroft  *
      7        1.1   mycroft  * This code is derived from software donated to Berkeley by
      8        1.1   mycroft  * Jan-Simon Pendry.
      9        1.1   mycroft  *
     10        1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     11        1.1   mycroft  * modification, are permitted provided that the following conditions
     12        1.1   mycroft  * are met:
     13        1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     14        1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     15        1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17        1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     18        1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     19        1.1   mycroft  *    must display the following acknowledgement:
     20        1.1   mycroft  *	This product includes software developed by the University of
     21        1.1   mycroft  *	California, Berkeley and its contributors.
     22        1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     23        1.1   mycroft  *    may be used to endorse or promote products derived from this software
     24        1.1   mycroft  *    without specific prior written permission.
     25        1.1   mycroft  *
     26        1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27        1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28        1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29        1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30        1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31        1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32        1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33        1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34        1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35        1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36        1.1   mycroft  * SUCH DAMAGE.
     37        1.1   mycroft  *
     38        1.1   mycroft  *	from: Id: lofs_subr.c, v 1.11 1992/05/30 10:05:43 jsp Exp
     39        1.2       cgd  *	@(#)umap_subr.c	8.6 (Berkeley) 1/26/94
     40        1.1   mycroft  */
     41        1.1   mycroft 
     42        1.1   mycroft #include <sys/param.h>
     43        1.1   mycroft #include <sys/systm.h>
     44        1.1   mycroft #include <sys/time.h>
     45        1.1   mycroft #include <sys/types.h>
     46        1.1   mycroft #include <sys/vnode.h>
     47        1.1   mycroft #include <sys/mount.h>
     48        1.1   mycroft #include <sys/namei.h>
     49        1.1   mycroft #include <sys/malloc.h>
     50        1.4       cgd #include <miscfs/specfs/specdev.h>
     51        1.1   mycroft #include <miscfs/umapfs/umap.h>
     52        1.1   mycroft 
     53        1.1   mycroft #define LOG2_SIZEVNODE 7		/* log2(sizeof struct vnode) */
     54        1.1   mycroft #define	NUMAPNODECACHE 16
     55        1.1   mycroft 
     56        1.1   mycroft /*
     57        1.1   mycroft  * Null layer cache:
     58        1.1   mycroft  * Each cache entry holds a reference to the target vnode
     59        1.1   mycroft  * along with a pointer to the alias vnode.  When an
     60        1.1   mycroft  * entry is added the target vnode is VREF'd.  When the
     61        1.1   mycroft  * alias is removed the target vnode is vrele'd.
     62        1.1   mycroft  */
     63        1.1   mycroft 
     64        1.3   mycroft #define	UMAP_NHASH(vp) \
     65        1.3   mycroft 	(&umap_node_hashtbl[(((u_long)vp)>>LOG2_SIZEVNODE) & umap_node_hash])
     66        1.3   mycroft LIST_HEAD(umap_node_hashhead, umap_node) *umap_node_hashtbl;
     67        1.3   mycroft u_long umap_node_hash;
     68        1.1   mycroft 
     69        1.7  christos static u_long umap_findid __P((u_long, u_long [][2], int));
     70        1.7  christos static struct vnode *umap_node_find __P((struct mount *, struct vnode *));
     71        1.7  christos static int umap_node_alloc __P((struct mount *, struct vnode *,
     72        1.7  christos 				struct vnode **));
     73        1.7  christos 
     74        1.1   mycroft /*
     75        1.1   mycroft  * Initialise cache headers
     76        1.1   mycroft  */
     77        1.7  christos void
     78        1.1   mycroft umapfs_init()
     79        1.1   mycroft {
     80        1.3   mycroft 
     81        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
     82       1.10  christos 	printf("umapfs_init\n");		/* printed during system boot */
     83        1.1   mycroft #endif
     84        1.3   mycroft 	umap_node_hashtbl = hashinit(NUMAPNODECACHE, M_CACHE, &umap_node_hash);
     85        1.1   mycroft }
     86        1.1   mycroft 
     87        1.1   mycroft /*
     88        1.1   mycroft  * umap_findid is called by various routines in umap_vnodeops.c to
     89        1.1   mycroft  * find a user or group id in a map.
     90        1.1   mycroft  */
     91        1.1   mycroft static u_long
     92        1.1   mycroft umap_findid(id, map, nentries)
     93        1.1   mycroft 	u_long id;
     94        1.1   mycroft 	u_long map[][2];
     95        1.1   mycroft 	int nentries;
     96        1.1   mycroft {
     97        1.1   mycroft 	int i;
     98        1.1   mycroft 
     99        1.1   mycroft 	/* Find uid entry in map */
    100        1.1   mycroft 	i = 0;
    101        1.1   mycroft 	while ((i<nentries) && ((map[i][0]) != id))
    102        1.1   mycroft 		i++;
    103        1.1   mycroft 
    104        1.1   mycroft 	if (i < nentries)
    105        1.1   mycroft 		return (map[i][1]);
    106        1.1   mycroft 	else
    107        1.1   mycroft 		return (-1);
    108        1.1   mycroft 
    109        1.1   mycroft }
    110        1.1   mycroft 
    111        1.1   mycroft /*
    112        1.1   mycroft  * umap_reverse_findid is called by umap_getattr() in umap_vnodeops.c to
    113        1.1   mycroft  * find a user or group id in a map, in reverse.
    114        1.1   mycroft  */
    115        1.1   mycroft u_long
    116        1.1   mycroft umap_reverse_findid(id, map, nentries)
    117        1.1   mycroft 	u_long id;
    118        1.1   mycroft 	u_long map[][2];
    119        1.1   mycroft 	int nentries;
    120        1.1   mycroft {
    121        1.1   mycroft 	int i;
    122        1.1   mycroft 
    123        1.1   mycroft 	/* Find uid entry in map */
    124        1.1   mycroft 	i = 0;
    125        1.1   mycroft 	while ((i<nentries) && ((map[i][1]) != id))
    126        1.1   mycroft 		i++;
    127        1.1   mycroft 
    128        1.1   mycroft 	if (i < nentries)
    129        1.1   mycroft 		return (map[i][0]);
    130        1.1   mycroft 	else
    131        1.1   mycroft 		return (-1);
    132        1.1   mycroft 
    133        1.1   mycroft }
    134        1.1   mycroft 
    135        1.1   mycroft /*
    136        1.1   mycroft  * Return alias for target vnode if already exists, else 0.
    137        1.1   mycroft  */
    138        1.1   mycroft static struct vnode *
    139        1.1   mycroft umap_node_find(mp, targetvp)
    140        1.1   mycroft 	struct mount *mp;
    141        1.1   mycroft 	struct vnode *targetvp;
    142        1.1   mycroft {
    143        1.3   mycroft 	struct umap_node_hashhead *hd;
    144        1.1   mycroft 	struct umap_node *a;
    145        1.1   mycroft 	struct vnode *vp;
    146        1.1   mycroft 
    147        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    148  1.10.10.1   thorpej 	printf("umap_node_find(mp = %p, target = %p)\n", mp, targetvp);
    149        1.1   mycroft #endif
    150        1.1   mycroft 
    151        1.1   mycroft 	/*
    152        1.1   mycroft 	 * Find hash base, and then search the (two-way) linked
    153        1.1   mycroft 	 * list looking for a umap_node structure which is referencing
    154        1.1   mycroft 	 * the target vnode.  If found, the increment the umap_node
    155        1.1   mycroft 	 * reference count (but NOT the target vnode's VREF counter).
    156        1.1   mycroft 	 */
    157        1.3   mycroft 	hd = UMAP_NHASH(targetvp);
    158        1.3   mycroft loop:
    159        1.3   mycroft 	for (a = hd->lh_first; a != 0; a = a->umap_hash.le_next) {
    160        1.1   mycroft 		if (a->umap_lowervp == targetvp &&
    161        1.1   mycroft 		    a->umap_vnode->v_mount == mp) {
    162        1.1   mycroft 			vp = UMAPTOV(a);
    163        1.1   mycroft 			/*
    164        1.1   mycroft 			 * We need vget for the VXLOCK
    165        1.1   mycroft 			 * stuff, but we don't want to lock
    166        1.1   mycroft 			 * the lower node.
    167        1.1   mycroft 			 */
    168        1.1   mycroft 			if (vget(vp, 0)) {
    169        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    170       1.10  christos 				printf ("umap_node_find: vget failed.\n");
    171        1.1   mycroft #endif
    172        1.1   mycroft 				goto loop;
    173        1.1   mycroft 			}
    174        1.1   mycroft 			return (vp);
    175        1.1   mycroft 		}
    176        1.1   mycroft 	}
    177        1.1   mycroft 
    178        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    179  1.10.10.1   thorpej 	printf("umap_node_find(%p, %p): NOT found\n", mp, targetvp);
    180        1.1   mycroft #endif
    181        1.1   mycroft 
    182        1.1   mycroft 	return (0);
    183        1.1   mycroft }
    184        1.1   mycroft 
    185        1.1   mycroft /*
    186        1.1   mycroft  * Make a new umap_node node.
    187        1.4       cgd  * Vp is the alias vnode, lowervp is the target vnode.
    188        1.4       cgd  * Maintain a reference to lowervp.
    189        1.1   mycroft  */
    190        1.1   mycroft static int
    191        1.1   mycroft umap_node_alloc(mp, lowervp, vpp)
    192        1.1   mycroft 	struct mount *mp;
    193        1.1   mycroft 	struct vnode *lowervp;
    194        1.1   mycroft 	struct vnode **vpp;
    195        1.1   mycroft {
    196        1.3   mycroft 	struct umap_node_hashhead *hd;
    197        1.1   mycroft 	struct umap_node *xp;
    198        1.4       cgd 	struct vnode *vp, *nvp;
    199        1.1   mycroft 	int error;
    200        1.7  christos 	extern int (**dead_vnodeop_p) __P((void *));
    201        1.1   mycroft 
    202        1.7  christos 	if ((error = getnewvnode(VT_UMAP, mp, umap_vnodeop_p, &vp)) != 0)
    203        1.1   mycroft 		return (error);
    204        1.4       cgd 	vp->v_type = lowervp->v_type;
    205        1.4       cgd 
    206        1.4       cgd 	MALLOC(xp, struct umap_node *, sizeof(struct umap_node), M_TEMP,
    207        1.4       cgd 	    M_WAITOK);
    208        1.4       cgd 	if (vp->v_type == VBLK || vp->v_type == VCHR) {
    209        1.4       cgd 		MALLOC(vp->v_specinfo, struct specinfo *,
    210        1.4       cgd 		    sizeof(struct specinfo), M_VNODE, M_WAITOK);
    211        1.4       cgd 		vp->v_rdev = lowervp->v_rdev;
    212        1.4       cgd 	}
    213        1.1   mycroft 
    214        1.4       cgd 	vp->v_data = xp;
    215        1.1   mycroft 	xp->umap_vnode = vp;
    216        1.1   mycroft 	xp->umap_lowervp = lowervp;
    217        1.1   mycroft 	/*
    218        1.1   mycroft 	 * Before we insert our new node onto the hash chains,
    219        1.1   mycroft 	 * check to see if someone else has beaten us to it.
    220        1.1   mycroft 	 * (We could have slept in MALLOC.)
    221        1.1   mycroft 	 */
    222        1.7  christos 	if ((nvp = umap_node_find(mp, lowervp)) != NULL) {
    223        1.4       cgd 		*vpp = nvp;
    224        1.4       cgd 
    225        1.4       cgd 		/* free the substructures we've allocated. */
    226        1.1   mycroft 		FREE(xp, M_TEMP);
    227        1.4       cgd 		if (vp->v_type == VBLK || vp->v_type == VCHR)
    228        1.4       cgd 			FREE(vp->v_specinfo, M_VNODE);
    229        1.4       cgd 
    230        1.4       cgd 		vp->v_type = VBAD;		/* node is discarded */
    231        1.4       cgd 		vp->v_op = dead_vnodeop_p;	/* so ops will still work */
    232        1.4       cgd 		vrele(vp);			/* get rid of it. */
    233        1.1   mycroft 		return (0);
    234        1.1   mycroft 	}
    235        1.4       cgd 
    236        1.4       cgd 	/*
    237        1.4       cgd 	 * XXX if it's a device node, it needs to be checkalias()ed.
    238        1.4       cgd 	 * however, for locking reasons, that's just not possible.
    239        1.4       cgd 	 * so we have to do most of the dirty work inline.  Note that
    240        1.4       cgd 	 * this is a limited case; we know that there's going to be
    241        1.4       cgd 	 * an alias, and we know that that alias will be a "real"
    242        1.4       cgd 	 * device node, i.e. not tagged VT_NON.
    243        1.4       cgd 	 */
    244        1.4       cgd 	if (vp->v_type == VBLK || vp->v_type == VCHR) {
    245        1.4       cgd 		struct vnode *cvp, **cvpp;
    246        1.4       cgd 
    247        1.4       cgd 		cvpp = &speclisth[SPECHASH(vp->v_rdev)];
    248        1.4       cgd loop:
    249        1.4       cgd 		for (cvp = *cvpp; cvp; cvp = cvp->v_specnext) {
    250        1.4       cgd 			if (vp->v_rdev != cvp->v_rdev ||
    251        1.4       cgd 			    vp->v_type != cvp->v_type)
    252        1.4       cgd 				continue;
    253        1.4       cgd 
    254        1.4       cgd 			/*
    255        1.4       cgd 			 * Alias, but not in use, so flush it out.
    256        1.4       cgd 			 */
    257        1.4       cgd 			if (cvp->v_usecount == 0) {
    258        1.4       cgd 				vgone(cvp);
    259        1.4       cgd 				goto loop;
    260        1.4       cgd 			}
    261        1.4       cgd 			if (vget(cvp, 0))	/* can't lock; will die! */
    262        1.4       cgd 				goto loop;
    263        1.4       cgd 			break;
    264        1.4       cgd 		}
    265        1.4       cgd 
    266        1.4       cgd 		vp->v_hashchain = cvpp;
    267        1.4       cgd 		vp->v_specnext = *cvpp;
    268        1.4       cgd 		vp->v_specflags = 0;
    269        1.4       cgd 		*cvpp = vp;
    270        1.4       cgd #ifdef DIAGNOSTIC
    271        1.4       cgd 		if (cvp == NULLVP)
    272        1.4       cgd 			panic("umap_node_alloc: no alias for device");
    273        1.4       cgd #endif
    274        1.4       cgd 		vp->v_flag |= VALIASED;
    275        1.4       cgd 		cvp->v_flag |= VALIASED;
    276        1.4       cgd 		vrele(cvp);
    277        1.4       cgd 	}
    278        1.4       cgd 	/* XXX end of transmogrified checkalias() */
    279        1.4       cgd 
    280        1.4       cgd 	*vpp = vp;
    281        1.4       cgd 	VREF(lowervp);	/* Extra VREF will be vrele'd in umap_node_create */
    282        1.3   mycroft 	hd = UMAP_NHASH(lowervp);
    283        1.3   mycroft 	LIST_INSERT_HEAD(hd, xp, umap_hash);
    284        1.1   mycroft 	return (0);
    285        1.1   mycroft }
    286        1.1   mycroft 
    287        1.1   mycroft 
    288        1.1   mycroft /*
    289        1.1   mycroft  * Try to find an existing umap_node vnode refering
    290        1.1   mycroft  * to it, otherwise make a new umap_node vnode which
    291        1.1   mycroft  * contains a reference to the target vnode.
    292        1.1   mycroft  */
    293        1.1   mycroft int
    294        1.1   mycroft umap_node_create(mp, targetvp, newvpp)
    295        1.1   mycroft 	struct mount *mp;
    296        1.1   mycroft 	struct vnode *targetvp;
    297        1.1   mycroft 	struct vnode **newvpp;
    298        1.1   mycroft {
    299        1.1   mycroft 	struct vnode *aliasvp;
    300        1.1   mycroft 
    301        1.7  christos 	if ((aliasvp = umap_node_find(mp, targetvp)) != NULL) {
    302        1.1   mycroft 		/*
    303        1.1   mycroft 		 * Take another reference to the alias vnode
    304        1.1   mycroft 		 */
    305        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    306  1.10.10.1   thorpej 		vprint("umap_node_create: exists", aliasvp);
    307        1.1   mycroft #endif
    308        1.1   mycroft 		/* VREF(aliasvp); */
    309        1.1   mycroft 	} else {
    310        1.1   mycroft 		int error;
    311        1.1   mycroft 
    312        1.1   mycroft 		/*
    313        1.1   mycroft 		 * Get new vnode.
    314        1.1   mycroft 		 */
    315        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    316       1.10  christos 		printf("umap_node_create: create new alias vnode\n");
    317        1.1   mycroft #endif
    318        1.1   mycroft 		/*
    319        1.1   mycroft 		 * Make new vnode reference the umap_node.
    320        1.1   mycroft 		 */
    321        1.7  christos 		if ((error = umap_node_alloc(mp, targetvp, &aliasvp)) != 0)
    322        1.1   mycroft 			return (error);
    323        1.1   mycroft 
    324        1.1   mycroft 		/*
    325        1.1   mycroft 		 * aliasvp is already VREF'd by getnewvnode()
    326        1.1   mycroft 		 */
    327        1.1   mycroft 	}
    328        1.1   mycroft 
    329        1.1   mycroft 	vrele(targetvp);
    330        1.1   mycroft 
    331        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    332        1.1   mycroft 	vprint("umap_node_create: alias", aliasvp);
    333        1.1   mycroft 	vprint("umap_node_create: target", targetvp);
    334        1.1   mycroft #endif
    335        1.1   mycroft 
    336        1.1   mycroft 	*newvpp = aliasvp;
    337        1.1   mycroft 	return (0);
    338        1.1   mycroft }
    339        1.1   mycroft 
    340        1.1   mycroft #ifdef UMAPFS_DIAGNOSTIC
    341        1.1   mycroft int umap_checkvp_barrier = 1;
    342        1.1   mycroft struct vnode *
    343        1.1   mycroft umap_checkvp(vp, fil, lno)
    344        1.1   mycroft 	struct vnode *vp;
    345        1.1   mycroft 	char *fil;
    346        1.1   mycroft 	int lno;
    347        1.1   mycroft {
    348        1.1   mycroft 	struct umap_node *a = VTOUMAP(vp);
    349        1.1   mycroft #if 0
    350        1.1   mycroft 	/*
    351        1.1   mycroft 	 * Can't do this check because vop_reclaim runs
    352        1.1   mycroft 	 * with funny vop vector.
    353        1.1   mycroft 	 */
    354        1.1   mycroft 	if (vp->v_op != umap_vnodeop_p) {
    355       1.10  christos 		printf("umap_checkvp: on non-umap-node\n");
    356        1.1   mycroft 		while (umap_checkvp_barrier) /*WAIT*/ ;
    357        1.1   mycroft 		panic("umap_checkvp");
    358        1.1   mycroft 	}
    359        1.1   mycroft #endif
    360        1.1   mycroft 	if (a->umap_lowervp == NULL) {
    361        1.1   mycroft 		/* Should never happen */
    362        1.1   mycroft 		int i; u_long *p;
    363  1.10.10.1   thorpej 		printf("vp = %p, ZERO ptr\n", vp);
    364        1.1   mycroft 		for (p = (u_long *) a, i = 0; i < 8; i++)
    365  1.10.10.1   thorpej 			printf(" %lx", p[i]);
    366       1.10  christos 		printf("\n");
    367        1.1   mycroft 		/* wait for debugger */
    368        1.1   mycroft 		while (umap_checkvp_barrier) /*WAIT*/ ;
    369        1.1   mycroft 		panic("umap_checkvp");
    370        1.1   mycroft 	}
    371        1.1   mycroft 	if (a->umap_lowervp->v_usecount < 1) {
    372        1.1   mycroft 		int i; u_long *p;
    373  1.10.10.1   thorpej 		printf("vp = %p, unref'ed lowervp\n", vp);
    374        1.1   mycroft 		for (p = (u_long *) a, i = 0; i < 8; i++)
    375  1.10.10.1   thorpej 			printf(" %lx", p[i]);
    376       1.10  christos 		printf("\n");
    377        1.1   mycroft 		/* wait for debugger */
    378        1.1   mycroft 		while (umap_checkvp_barrier) /*WAIT*/ ;
    379        1.1   mycroft 		panic ("umap with unref'ed lowervp");
    380        1.1   mycroft 	}
    381        1.1   mycroft #if 0
    382  1.10.10.1   thorpej 	printf("umap %p/%d -> %p/%d [%s, %d]\n",
    383        1.1   mycroft 	        a->umap_vnode, a->umap_vnode->v_usecount,
    384        1.1   mycroft 		a->umap_lowervp, a->umap_lowervp->v_usecount,
    385        1.1   mycroft 		fil, lno);
    386        1.1   mycroft #endif
    387        1.1   mycroft 	return (a->umap_lowervp);
    388        1.1   mycroft }
    389        1.1   mycroft #endif
    390        1.1   mycroft 
    391        1.1   mycroft /* umap_mapids maps all of the ids in a credential, both user and group. */
    392        1.1   mycroft 
    393        1.1   mycroft void
    394        1.1   mycroft umap_mapids(v_mount, credp)
    395        1.1   mycroft 	struct mount *v_mount;
    396        1.1   mycroft 	struct ucred *credp;
    397        1.1   mycroft {
    398        1.1   mycroft 	int i, unentries, gnentries;
    399        1.5       cgd 	uid_t uid;
    400        1.5       cgd 	gid_t gid;
    401        1.7  christos 	u_long (*usermap)[2], (*groupmap)[2];
    402        1.8   thorpej 
    403        1.8   thorpej 	if (credp == NOCRED)
    404        1.8   thorpej 		return;
    405        1.1   mycroft 
    406        1.1   mycroft 	unentries =  MOUNTTOUMAPMOUNT(v_mount)->info_nentries;
    407        1.7  christos 	usermap =  MOUNTTOUMAPMOUNT(v_mount)->info_mapdata;
    408        1.1   mycroft 	gnentries =  MOUNTTOUMAPMOUNT(v_mount)->info_gnentries;
    409        1.7  christos 	groupmap =  MOUNTTOUMAPMOUNT(v_mount)->info_gmapdata;
    410        1.1   mycroft 
    411        1.1   mycroft 	/* Find uid entry in map */
    412        1.1   mycroft 
    413        1.1   mycroft 	uid = (uid_t) umap_findid(credp->cr_uid, usermap, unentries);
    414        1.1   mycroft 
    415        1.1   mycroft 	if (uid != -1)
    416        1.1   mycroft 		credp->cr_uid = uid;
    417        1.1   mycroft 	else
    418        1.1   mycroft 		credp->cr_uid = (uid_t) NOBODY;
    419        1.1   mycroft 
    420        1.6       jtc #if 1
    421        1.6       jtc 	/* cr_gid is the same as cr_groups[0] in 4BSD, but not in NetBSD */
    422        1.1   mycroft 
    423        1.1   mycroft 	/* Find gid entry in map */
    424        1.1   mycroft 
    425        1.1   mycroft 	gid = (gid_t) umap_findid(credp->cr_gid, groupmap, gnentries);
    426        1.1   mycroft 
    427        1.1   mycroft 	if (gid != -1)
    428        1.1   mycroft 		credp->cr_gid = gid;
    429        1.1   mycroft 	else
    430        1.1   mycroft 		credp->cr_gid = NULLGROUP;
    431        1.1   mycroft #endif
    432        1.1   mycroft 
    433        1.1   mycroft 	/* Now we must map each of the set of groups in the cr_groups
    434        1.1   mycroft 		structure. */
    435        1.1   mycroft 
    436        1.1   mycroft 	i = 0;
    437        1.1   mycroft 	while (credp->cr_groups[i] != 0) {
    438        1.1   mycroft 		gid = (gid_t) umap_findid(credp->cr_groups[i],
    439        1.7  christos 					  groupmap, gnentries);
    440        1.1   mycroft 
    441        1.1   mycroft 		if (gid != -1)
    442        1.1   mycroft 			credp->cr_groups[i++] = gid;
    443        1.1   mycroft 		else
    444        1.1   mycroft 			credp->cr_groups[i++] = NULLGROUP;
    445        1.1   mycroft 	}
    446        1.1   mycroft }
    447