2006-05-15 01:31:52 +04:00
|
|
|
/* $NetBSD: umap.h,v 1.15 2006/05/14 21:32:21 elad Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software donated to Berkeley by
|
|
|
|
* the UCLA Ficus project.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-06-08 15:33:09 +04:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* from: @(#)null_vnops.c 1.5 (Berkeley) 7/10/92
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)umap.h 8.4 (Berkeley) 8/20/94
|
1994-06-08 15:33:09 +04:00
|
|
|
*/
|
|
|
|
|
1999-07-08 05:18:59 +04:00
|
|
|
#include <miscfs/genfs/layer.h>
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
#define MAPFILEENTRIES 64
|
|
|
|
#define GMAPFILEENTRIES 16
|
|
|
|
#define NOBODY 32767
|
|
|
|
#define NULLGROUP 65534
|
|
|
|
|
|
|
|
struct umap_args {
|
1999-07-08 05:18:59 +04:00
|
|
|
struct layer_args la; /* generic layerfs args. Includes
|
|
|
|
* target and export info */
|
|
|
|
#define umap_target la.target
|
|
|
|
#define umap_export la.export
|
1994-06-08 15:33:09 +04:00
|
|
|
int nentries; /* # of entries in user map array */
|
|
|
|
int gnentries; /* # of entries in group map array */
|
1995-04-15 05:57:35 +04:00
|
|
|
u_long (*mapdata)[2]; /* pointer to array of user mappings */
|
|
|
|
u_long (*gmapdata)[2]; /* pointer to array of group mappings */
|
1994-06-08 15:33:09 +04:00
|
|
|
};
|
|
|
|
|
1999-07-08 05:18:59 +04:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
struct umap_mount {
|
2005-02-27 01:58:54 +03:00
|
|
|
struct layer_mount lm;
|
1994-06-08 15:33:09 +04:00
|
|
|
int info_nentries; /* number of uid mappings */
|
|
|
|
int info_gnentries; /* number of gid mappings */
|
2005-02-27 01:58:54 +03:00
|
|
|
u_long info_mapdata[MAPFILEENTRIES][2]; /* mapping data for
|
1994-06-08 15:33:09 +04:00
|
|
|
user mapping in ficus */
|
2005-02-27 01:58:54 +03:00
|
|
|
u_long info_gmapdata[GMAPFILEENTRIES][2]; /*mapping data for
|
1994-06-08 15:33:09 +04:00
|
|
|
group mapping in ficus */
|
|
|
|
};
|
1999-07-08 05:18:59 +04:00
|
|
|
#define umapm_vfs lm.layerm_vfs
|
|
|
|
#define umapm_rootvp lm.layerm_rootvp
|
|
|
|
#define umapm_export lm.layerm_export
|
|
|
|
#define umapm_flags lm.layerm_flags
|
|
|
|
#define umapm_size lm.layerm_size
|
|
|
|
#define umapm_tag lm.layerm_tag
|
|
|
|
#define umapm_bypass lm.layerm_bypass
|
|
|
|
#define umapm_alloc lm.layerm_alloc
|
|
|
|
#define umapm_vnodeop_p lm.layerm_vnodeop_p
|
|
|
|
#define umapm_node_hashtbl lm.layerm_node_hashtbl
|
|
|
|
#define umapm_node_hash lm.layerm_node_hash
|
|
|
|
#define umapm_hashlock lm.layerm_hashlock
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A cache of vnode references
|
|
|
|
*/
|
|
|
|
struct umap_node {
|
1999-07-08 05:18:59 +04:00
|
|
|
struct layer_node ln;
|
1994-06-08 15:33:09 +04:00
|
|
|
};
|
|
|
|
|
2005-08-31 00:08:01 +04:00
|
|
|
u_long umap_reverse_findid(u_long id, u_long map[][2], int nentries);
|
2006-05-15 01:31:52 +04:00
|
|
|
void umap_mapids(struct mount *v_mount, kauth_cred_t credp);
|
1999-07-08 05:18:59 +04:00
|
|
|
|
|
|
|
#define umap_hash ln.layer_hash
|
|
|
|
#define umap_lowervp ln.layer_lowervp
|
|
|
|
#define umap_vnode ln.layer_vnode
|
|
|
|
#define umap_flags ln.layer_flags
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
#define MOUNTTOUMAPMOUNT(mp) ((struct umap_mount *)((mp)->mnt_data))
|
|
|
|
#define VTOUMAP(vp) ((struct umap_node *)(vp)->v_data)
|
|
|
|
#define UMAPTOV(xp) ((xp)->umap_vnode)
|
|
|
|
#ifdef UMAPFS_DIAGNOSTIC
|
1999-07-08 05:18:59 +04:00
|
|
|
#define UMAPVPTOLOWERVP(vp) layer_checkvp((vp), __FILE__, __LINE__)
|
1994-06-08 15:33:09 +04:00
|
|
|
#else
|
|
|
|
#define UMAPVPTOLOWERVP(vp) (VTOUMAP(vp)->umap_lowervp)
|
|
|
|
#endif
|
|
|
|
|
2005-08-31 00:08:01 +04:00
|
|
|
extern int (**umap_vnodeop_p)(void *);
|
1997-10-06 13:32:31 +04:00
|
|
|
extern struct vfsops umapfs_vfsops;
|
1996-02-10 01:39:56 +03:00
|
|
|
|
2005-08-31 00:08:01 +04:00
|
|
|
int umap_bypass(void *);
|
1999-07-08 05:18:59 +04:00
|
|
|
|
|
|
|
#define NUMAPNODECACHE 16
|
1996-02-10 01:39:56 +03:00
|
|
|
|
2004-05-20 10:34:24 +04:00
|
|
|
#ifdef SYSCTL_SETUP_PROTO
|
|
|
|
SYSCTL_SETUP_PROTO(sysctl_vfs_umap_setup);
|
|
|
|
#endif /* SYSCTL_SETUP_PROTO */
|
1995-03-30 01:57:43 +04:00
|
|
|
#endif /* _KERNEL */
|