xref: /freebsd/sys/kern/vfs_export.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *	@(#)vfs_subr.c	8.31 (Berkeley) 5/26/95
39  * $FreeBSD$
40  */
41 
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/kernel.h>
45 #include <sys/socket.h>
46 #include <sys/malloc.h>
47 #include <sys/mount.h>
48 #include <net/radix.h>
49 #include <sys/domain.h>
50 #include <sys/dirent.h>
51 #include <sys/vnode.h>
52 
53 static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
54 
55 static void	vfs_free_addrlist __P((struct netexport *nep));
56 static int	vfs_free_netcred __P((struct radix_node *rn, void *w));
57 static int	vfs_hang_addrlist __P((struct mount *mp, struct netexport *nep,
58 				       struct export_args *argp));
59 
60 /*
61  * Network address lookup element
62  */
63 struct netcred {
64 	struct	radix_node netc_rnodes[2];
65 	int	netc_exflags;
66 	struct	ucred netc_anon;
67 };
68 
69 /*
70  * Network export information
71  */
72 struct netexport {
73 	struct	netcred ne_defexported;		      /* Default export */
74 	struct	radix_node_head *ne_rtable[AF_MAX+1]; /* Individual exports */
75 };
76 
77 /*
78  * Build hash lists of net addresses and hang them off the mount point.
79  * Called by ufs_mount() to set up the lists of export addresses.
80  */
81 static int
82 vfs_hang_addrlist(mp, nep, argp)
83 	struct mount *mp;
84 	struct netexport *nep;
85 	struct export_args *argp;
86 {
87 	register struct netcred *np;
88 	register struct radix_node_head *rnh;
89 	register int i;
90 	struct radix_node *rn;
91 	struct sockaddr *saddr, *smask = 0;
92 	struct domain *dom;
93 	int error;
94 
95 	if (argp->ex_addrlen == 0) {
96 		if (mp->mnt_flag & MNT_DEFEXPORTED)
97 			return (EPERM);
98 		np = &nep->ne_defexported;
99 		np->netc_exflags = argp->ex_flags;
100 		bzero(&np->netc_anon, sizeof(np->netc_anon));
101 		np->netc_anon.cr_uid = argp->ex_anon.cr_uid;
102 		np->netc_anon.cr_ngroups = argp->ex_anon.cr_ngroups;
103 		bcopy(argp->ex_anon.cr_groups, np->netc_anon.cr_groups,
104 		    sizeof(np->netc_anon.cr_groups));
105 		np->netc_anon.cr_ref = 1;
106 		mp->mnt_flag |= MNT_DEFEXPORTED;
107 		return (0);
108 	}
109 	i = sizeof(struct netcred) + argp->ex_addrlen + argp->ex_masklen;
110 	np = (struct netcred *) malloc(i, M_NETADDR, M_WAITOK | M_ZERO);
111 	saddr = (struct sockaddr *) (np + 1);
112 	if ((error = copyin(argp->ex_addr, (caddr_t) saddr, argp->ex_addrlen)))
113 		goto out;
114 	if (saddr->sa_len > argp->ex_addrlen)
115 		saddr->sa_len = argp->ex_addrlen;
116 	if (argp->ex_masklen) {
117 		smask = (struct sockaddr *) ((caddr_t) saddr + argp->ex_addrlen);
118 		error = copyin(argp->ex_mask, (caddr_t) smask, argp->ex_masklen);
119 		if (error)
120 			goto out;
121 		if (smask->sa_len > argp->ex_masklen)
122 			smask->sa_len = argp->ex_masklen;
123 	}
124 	i = saddr->sa_family;
125 	if ((rnh = nep->ne_rtable[i]) == 0) {
126 		/*
127 		 * Seems silly to initialize every AF when most are not used,
128 		 * do so on demand here
129 		 */
130 		for (dom = domains; dom; dom = dom->dom_next)
131 			if (dom->dom_family == i && dom->dom_rtattach) {
132 				dom->dom_rtattach((void **) &nep->ne_rtable[i],
133 				    dom->dom_rtoffset);
134 				break;
135 			}
136 		if ((rnh = nep->ne_rtable[i]) == 0) {
137 			error = ENOBUFS;
138 			goto out;
139 		}
140 	}
141 	rn = (*rnh->rnh_addaddr) ((caddr_t) saddr, (caddr_t) smask, rnh,
142 	    np->netc_rnodes);
143 	if (rn == 0 || np != (struct netcred *) rn) {	/* already exists */
144 		error = EPERM;
145 		goto out;
146 	}
147 	np->netc_exflags = argp->ex_flags;
148 	bzero(&np->netc_anon, sizeof(np->netc_anon));
149 	np->netc_anon.cr_uid = argp->ex_anon.cr_uid;
150 	np->netc_anon.cr_ngroups = argp->ex_anon.cr_ngroups;
151 	bcopy(argp->ex_anon.cr_groups, np->netc_anon.cr_groups,
152 	    sizeof(np->netc_anon.cr_groups));
153 	np->netc_anon.cr_ref = 1;
154 	return (0);
155 out:
156 	free(np, M_NETADDR);
157 	return (error);
158 }
159 
160 /* Helper for vfs_free_addrlist. */
161 /* ARGSUSED */
162 static int
163 vfs_free_netcred(rn, w)
164 	struct radix_node *rn;
165 	void *w;
166 {
167 	register struct radix_node_head *rnh = (struct radix_node_head *) w;
168 
169 	(*rnh->rnh_deladdr) (rn->rn_key, rn->rn_mask, rnh);
170 	free((caddr_t) rn, M_NETADDR);
171 	return (0);
172 }
173 
174 /*
175  * Free the net address hash lists that are hanging off the mount points.
176  */
177 static void
178 vfs_free_addrlist(nep)
179 	struct netexport *nep;
180 {
181 	register int i;
182 	register struct radix_node_head *rnh;
183 
184 	for (i = 0; i <= AF_MAX; i++)
185 		if ((rnh = nep->ne_rtable[i])) {
186 			(*rnh->rnh_walktree) (rnh, vfs_free_netcred,
187 			    (caddr_t) rnh);
188 			free((caddr_t) rnh, M_RTABLE);
189 			nep->ne_rtable[i] = 0;
190 		}
191 }
192 
193 /*
194  * High level function to manipulate export options on a mount point
195  * and the passed in netexport.
196  * Struct export_args *argp is the variable used to twiddle options,
197  * the structure is described in sys/mount.h
198  */
199 int
200 vfs_export(mp, argp)
201 	struct mount *mp;
202 	struct export_args *argp;
203 {
204 	struct netexport *nep;
205 	int error;
206 
207 	nep = mp->mnt_export;
208 	if (argp->ex_flags & MNT_DELEXPORT) {
209 		if (nep == NULL)
210 			return (ENOENT);
211 		if (mp->mnt_flag & MNT_EXPUBLIC) {
212 			vfs_setpublicfs(NULL, NULL, NULL);
213 			mp->mnt_flag &= ~MNT_EXPUBLIC;
214 		}
215 		vfs_free_addrlist(nep);
216 		mp->mnt_export = NULL;
217 		free(nep, M_MOUNT);
218 		mp->mnt_flag &= ~(MNT_EXPORTED | MNT_DEFEXPORTED);
219 	}
220 	if (argp->ex_flags & MNT_EXPORTED) {
221 		if (nep == NULL) {
222 			nep = malloc(sizeof(struct netexport), M_MOUNT, M_WAITOK | M_ZERO);
223 			mp->mnt_export = nep;
224 		}
225 		if (argp->ex_flags & MNT_EXPUBLIC) {
226 			if ((error = vfs_setpublicfs(mp, nep, argp)) != 0)
227 				return (error);
228 			mp->mnt_flag |= MNT_EXPUBLIC;
229 		}
230 		if ((error = vfs_hang_addrlist(mp, nep, argp)))
231 			return (error);
232 		mp->mnt_flag |= MNT_EXPORTED;
233 	}
234 	return (0);
235 }
236 
237 /*
238  * Set the publicly exported filesystem (WebNFS). Currently, only
239  * one public filesystem is possible in the spec (RFC 2054 and 2055)
240  */
241 int
242 vfs_setpublicfs(mp, nep, argp)
243 	struct mount *mp;
244 	struct netexport *nep;
245 	struct export_args *argp;
246 {
247 	int error;
248 	struct vnode *rvp;
249 	char *cp;
250 
251 	/*
252 	 * mp == NULL -> invalidate the current info, the FS is
253 	 * no longer exported. May be called from either vfs_export
254 	 * or unmount, so check if it hasn't already been done.
255 	 */
256 	if (mp == NULL) {
257 		if (nfs_pub.np_valid) {
258 			nfs_pub.np_valid = 0;
259 			if (nfs_pub.np_index != NULL) {
260 				FREE(nfs_pub.np_index, M_TEMP);
261 				nfs_pub.np_index = NULL;
262 			}
263 		}
264 		return (0);
265 	}
266 
267 	/*
268 	 * Only one allowed at a time.
269 	 */
270 	if (nfs_pub.np_valid != 0 && mp != nfs_pub.np_mount)
271 		return (EBUSY);
272 
273 	/*
274 	 * Get real filehandle for root of exported FS.
275 	 */
276 	bzero((caddr_t)&nfs_pub.np_handle, sizeof(nfs_pub.np_handle));
277 	nfs_pub.np_handle.fh_fsid = mp->mnt_stat.f_fsid;
278 
279 	if ((error = VFS_ROOT(mp, &rvp)))
280 		return (error);
281 
282 	if ((error = VFS_VPTOFH(rvp, &nfs_pub.np_handle.fh_fid)))
283 		return (error);
284 
285 	vput(rvp);
286 
287 	/*
288 	 * If an indexfile was specified, pull it in.
289 	 */
290 	if (argp->ex_indexfile != NULL) {
291 		MALLOC(nfs_pub.np_index, char *, MAXNAMLEN + 1, M_TEMP,
292 		    M_WAITOK);
293 		error = copyinstr(argp->ex_indexfile, nfs_pub.np_index,
294 		    MAXNAMLEN, (size_t *)0);
295 		if (!error) {
296 			/*
297 			 * Check for illegal filenames.
298 			 */
299 			for (cp = nfs_pub.np_index; *cp; cp++) {
300 				if (*cp == '/') {
301 					error = EINVAL;
302 					break;
303 				}
304 			}
305 		}
306 		if (error) {
307 			FREE(nfs_pub.np_index, M_TEMP);
308 			return (error);
309 		}
310 	}
311 
312 	nfs_pub.np_mount = mp;
313 	nfs_pub.np_valid = 1;
314 	return (0);
315 }
316 
317 /*
318  * Used by the filesystems to determine if a given network address
319  * (passed in 'nam') is present in thier exports list, returns a pointer
320  * to struct netcred so that the filesystem can examine it for
321  * access rights (read/write/etc).
322  */
323 struct netcred *
324 vfs_export_lookup(mp, nam)
325 	register struct mount *mp;
326 	struct sockaddr *nam;
327 {
328 	struct netexport *nep;
329 	register struct netcred *np;
330 	register struct radix_node_head *rnh;
331 	struct sockaddr *saddr;
332 
333 	nep = mp->mnt_export;
334 	if (nep == NULL)
335 		return (NULL);
336 	np = NULL;
337 	if (mp->mnt_flag & MNT_EXPORTED) {
338 		/*
339 		 * Lookup in the export list first.
340 		 */
341 		if (nam != NULL) {
342 			saddr = nam;
343 			rnh = nep->ne_rtable[saddr->sa_family];
344 			if (rnh != NULL) {
345 				np = (struct netcred *)
346 					(*rnh->rnh_matchaddr)((caddr_t)saddr,
347 							      rnh);
348 				if (np && np->netc_rnodes->rn_flags & RNF_ROOT)
349 					np = NULL;
350 			}
351 		}
352 		/*
353 		 * If no address match, use the default if it exists.
354 		 */
355 		if (np == NULL && mp->mnt_flag & MNT_DEFEXPORTED)
356 			np = &nep->ne_defexported;
357 	}
358 	return (np);
359 }
360 
361 /*
362  * XXX: This comment comes from the deprecated ufs_check_export()
363  * XXX: and may not entirely apply, but lacking something better:
364  * This is the generic part of fhtovp called after the underlying
365  * filesystem has validated the file handle.
366  *
367  * Verify that a host should have access to a filesystem.
368  */
369 
370 int
371 vfs_stdcheckexp(mp, nam, extflagsp, credanonp)
372 	struct mount *mp;
373 	struct sockaddr *nam;
374 	int *extflagsp;
375 	struct ucred **credanonp;
376 {
377 	struct netcred *np;
378 
379 	np = vfs_export_lookup(mp, nam);
380 	if (np == NULL)
381 		return (EACCES);
382 	*extflagsp = np->netc_exflags;
383 	*credanonp = &np->netc_anon;
384 	return (0);
385 }
386 
387