xref: /freebsd/sys/kern/vfs_export.c (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
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/mbuf.h>
48 #include <sys/mount.h>
49 #include <net/radix.h>
50 #include <sys/domain.h>
51 #include <sys/dirent.h>
52 #include <sys/vnode.h>
53 
54 static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
55 
56 static void	vfs_free_addrlist(struct netexport *nep);
57 static int	vfs_free_netcred(struct radix_node *rn, void *w);
58 static int	vfs_hang_addrlist(struct mount *mp, struct netexport *nep,
59 		    struct export_args *argp);
60 
61 /*
62  * Network address lookup element
63  */
64 struct netcred {
65 	struct	radix_node netc_rnodes[2];
66 	int	netc_exflags;
67 	struct	ucred netc_anon;
68 };
69 
70 /*
71  * Network export information
72  */
73 struct netexport {
74 	struct	netcred ne_defexported;		      /* Default export */
75 	struct	radix_node_head *ne_rtable[AF_MAX+1]; /* Individual exports */
76 };
77 
78 /*
79  * Build hash lists of net addresses and hang them off the mount point.
80  * Called by ufs_mount() to set up the lists of export addresses.
81  */
82 static int
83 vfs_hang_addrlist(mp, nep, argp)
84 	struct mount *mp;
85 	struct netexport *nep;
86 	struct export_args *argp;
87 {
88 	register struct netcred *np;
89 	register struct radix_node_head *rnh;
90 	register int i;
91 	struct radix_node *rn;
92 	struct sockaddr *saddr, *smask = 0;
93 	struct domain *dom;
94 	int error;
95 
96 	/*
97 	 * XXX: This routine converts from a `struct xucred'
98 	 * (argp->ex_anon) to a `struct ucred' (np->netc_anon).  This
99 	 * operation is questionable; for example, what should be done
100 	 * with fields like cr_uidinfo and cr_prison?  Currently, this
101 	 * routine does not touch them (leaves them as NULL).
102 	 */
103 	if (argp->ex_anon.cr_version != XUCRED_VERSION)
104 		return (EINVAL);
105 
106 	if (argp->ex_addrlen == 0) {
107 		if (mp->mnt_flag & MNT_DEFEXPORTED)
108 			return (EPERM);
109 		np = &nep->ne_defexported;
110 		np->netc_exflags = argp->ex_flags;
111 		bzero(&np->netc_anon, sizeof(np->netc_anon));
112 		np->netc_anon.cr_uid = argp->ex_anon.cr_uid;
113 		np->netc_anon.cr_ngroups = argp->ex_anon.cr_ngroups;
114 		bcopy(argp->ex_anon.cr_groups, np->netc_anon.cr_groups,
115 		    sizeof(np->netc_anon.cr_groups));
116 		np->netc_anon.cr_ref = 1;
117 		mp->mnt_flag |= MNT_DEFEXPORTED;
118 		return (0);
119 	}
120 
121 	if (argp->ex_addrlen > MLEN)
122 		return (EINVAL);
123 
124 	i = sizeof(struct netcred) + argp->ex_addrlen + argp->ex_masklen;
125 	np = (struct netcred *) malloc(i, M_NETADDR, M_WAITOK | M_ZERO);
126 	saddr = (struct sockaddr *) (np + 1);
127 	if ((error = copyin(argp->ex_addr, (caddr_t) saddr, argp->ex_addrlen)))
128 		goto out;
129 	if (saddr->sa_len > argp->ex_addrlen)
130 		saddr->sa_len = argp->ex_addrlen;
131 	if (argp->ex_masklen) {
132 		smask = (struct sockaddr *) ((caddr_t) saddr + argp->ex_addrlen);
133 		error = copyin(argp->ex_mask, (caddr_t) smask, argp->ex_masklen);
134 		if (error)
135 			goto out;
136 		if (smask->sa_len > argp->ex_masklen)
137 			smask->sa_len = argp->ex_masklen;
138 	}
139 	i = saddr->sa_family;
140 	if ((rnh = nep->ne_rtable[i]) == 0) {
141 		/*
142 		 * Seems silly to initialize every AF when most are not used,
143 		 * do so on demand here
144 		 */
145 		for (dom = domains; dom; dom = dom->dom_next)
146 			if (dom->dom_family == i && dom->dom_rtattach) {
147 				dom->dom_rtattach((void **) &nep->ne_rtable[i],
148 				    dom->dom_rtoffset);
149 				break;
150 			}
151 		if ((rnh = nep->ne_rtable[i]) == 0) {
152 			error = ENOBUFS;
153 			goto out;
154 		}
155 	}
156 	rn = (*rnh->rnh_addaddr) ((caddr_t) saddr, (caddr_t) smask, rnh,
157 	    np->netc_rnodes);
158 	if (rn == 0 || np != (struct netcred *) rn) {	/* already exists */
159 		error = EPERM;
160 		goto out;
161 	}
162 	np->netc_exflags = argp->ex_flags;
163 	bzero(&np->netc_anon, sizeof(np->netc_anon));
164 	np->netc_anon.cr_uid = argp->ex_anon.cr_uid;
165 	np->netc_anon.cr_ngroups = argp->ex_anon.cr_ngroups;
166 	bcopy(argp->ex_anon.cr_groups, np->netc_anon.cr_groups,
167 	    sizeof(np->netc_anon.cr_groups));
168 	np->netc_anon.cr_ref = 1;
169 	return (0);
170 out:
171 	free(np, M_NETADDR);
172 	return (error);
173 }
174 
175 /* Helper for vfs_free_addrlist. */
176 /* ARGSUSED */
177 static int
178 vfs_free_netcred(rn, w)
179 	struct radix_node *rn;
180 	void *w;
181 {
182 	register struct radix_node_head *rnh = (struct radix_node_head *) w;
183 
184 	(*rnh->rnh_deladdr) (rn->rn_key, rn->rn_mask, rnh);
185 	free((caddr_t) rn, M_NETADDR);
186 	return (0);
187 }
188 
189 /*
190  * Free the net address hash lists that are hanging off the mount points.
191  */
192 static void
193 vfs_free_addrlist(nep)
194 	struct netexport *nep;
195 {
196 	register int i;
197 	register struct radix_node_head *rnh;
198 
199 	for (i = 0; i <= AF_MAX; i++)
200 		if ((rnh = nep->ne_rtable[i])) {
201 			(*rnh->rnh_walktree) (rnh, vfs_free_netcred,
202 			    (caddr_t) rnh);
203 			free((caddr_t) rnh, M_RTABLE);
204 			nep->ne_rtable[i] = 0;
205 		}
206 }
207 
208 /*
209  * High level function to manipulate export options on a mount point
210  * and the passed in netexport.
211  * Struct export_args *argp is the variable used to twiddle options,
212  * the structure is described in sys/mount.h
213  */
214 int
215 vfs_export(mp, argp)
216 	struct mount *mp;
217 	struct export_args *argp;
218 {
219 	struct netexport *nep;
220 	int error;
221 
222 	nep = mp->mnt_export;
223 	if (argp->ex_flags & MNT_DELEXPORT) {
224 		if (nep == NULL)
225 			return (ENOENT);
226 		if (mp->mnt_flag & MNT_EXPUBLIC) {
227 			vfs_setpublicfs(NULL, NULL, NULL);
228 			mp->mnt_flag &= ~MNT_EXPUBLIC;
229 		}
230 		vfs_free_addrlist(nep);
231 		mp->mnt_export = NULL;
232 		free(nep, M_MOUNT);
233 		mp->mnt_flag &= ~(MNT_EXPORTED | MNT_DEFEXPORTED);
234 	}
235 	if (argp->ex_flags & MNT_EXPORTED) {
236 		if (nep == NULL) {
237 			nep = malloc(sizeof(struct netexport), M_MOUNT, M_WAITOK | M_ZERO);
238 			mp->mnt_export = nep;
239 		}
240 		if (argp->ex_flags & MNT_EXPUBLIC) {
241 			if ((error = vfs_setpublicfs(mp, nep, argp)) != 0)
242 				return (error);
243 			mp->mnt_flag |= MNT_EXPUBLIC;
244 		}
245 		if ((error = vfs_hang_addrlist(mp, nep, argp)))
246 			return (error);
247 		mp->mnt_flag |= MNT_EXPORTED;
248 	}
249 	return (0);
250 }
251 
252 /*
253  * Set the publicly exported filesystem (WebNFS). Currently, only
254  * one public filesystem is possible in the spec (RFC 2054 and 2055)
255  */
256 int
257 vfs_setpublicfs(mp, nep, argp)
258 	struct mount *mp;
259 	struct netexport *nep;
260 	struct export_args *argp;
261 {
262 	int error;
263 	struct vnode *rvp;
264 	char *cp;
265 
266 	/*
267 	 * mp == NULL -> invalidate the current info, the FS is
268 	 * no longer exported. May be called from either vfs_export
269 	 * or unmount, so check if it hasn't already been done.
270 	 */
271 	if (mp == NULL) {
272 		if (nfs_pub.np_valid) {
273 			nfs_pub.np_valid = 0;
274 			if (nfs_pub.np_index != NULL) {
275 				FREE(nfs_pub.np_index, M_TEMP);
276 				nfs_pub.np_index = NULL;
277 			}
278 		}
279 		return (0);
280 	}
281 
282 	/*
283 	 * Only one allowed at a time.
284 	 */
285 	if (nfs_pub.np_valid != 0 && mp != nfs_pub.np_mount)
286 		return (EBUSY);
287 
288 	/*
289 	 * Get real filehandle for root of exported FS.
290 	 */
291 	bzero((caddr_t)&nfs_pub.np_handle, sizeof(nfs_pub.np_handle));
292 	nfs_pub.np_handle.fh_fsid = mp->mnt_stat.f_fsid;
293 
294 	if ((error = VFS_ROOT(mp, &rvp)))
295 		return (error);
296 
297 	if ((error = VFS_VPTOFH(rvp, &nfs_pub.np_handle.fh_fid)))
298 		return (error);
299 
300 	vput(rvp);
301 
302 	/*
303 	 * If an indexfile was specified, pull it in.
304 	 */
305 	if (argp->ex_indexfile != NULL) {
306 		MALLOC(nfs_pub.np_index, char *, MAXNAMLEN + 1, M_TEMP,
307 		    M_WAITOK);
308 		error = copyinstr(argp->ex_indexfile, nfs_pub.np_index,
309 		    MAXNAMLEN, (size_t *)0);
310 		if (!error) {
311 			/*
312 			 * Check for illegal filenames.
313 			 */
314 			for (cp = nfs_pub.np_index; *cp; cp++) {
315 				if (*cp == '/') {
316 					error = EINVAL;
317 					break;
318 				}
319 			}
320 		}
321 		if (error) {
322 			FREE(nfs_pub.np_index, M_TEMP);
323 			return (error);
324 		}
325 	}
326 
327 	nfs_pub.np_mount = mp;
328 	nfs_pub.np_valid = 1;
329 	return (0);
330 }
331 
332 /*
333  * Used by the filesystems to determine if a given network address
334  * (passed in 'nam') is present in thier exports list, returns a pointer
335  * to struct netcred so that the filesystem can examine it for
336  * access rights (read/write/etc).
337  */
338 struct netcred *
339 vfs_export_lookup(mp, nam)
340 	register struct mount *mp;
341 	struct sockaddr *nam;
342 {
343 	struct netexport *nep;
344 	register struct netcred *np;
345 	register struct radix_node_head *rnh;
346 	struct sockaddr *saddr;
347 
348 	nep = mp->mnt_export;
349 	if (nep == NULL)
350 		return (NULL);
351 	np = NULL;
352 	if (mp->mnt_flag & MNT_EXPORTED) {
353 		/*
354 		 * Lookup in the export list first.
355 		 */
356 		if (nam != NULL) {
357 			saddr = nam;
358 			rnh = nep->ne_rtable[saddr->sa_family];
359 			if (rnh != NULL) {
360 				np = (struct netcred *)
361 					(*rnh->rnh_matchaddr)((caddr_t)saddr,
362 							      rnh);
363 				if (np && np->netc_rnodes->rn_flags & RNF_ROOT)
364 					np = NULL;
365 			}
366 		}
367 		/*
368 		 * If no address match, use the default if it exists.
369 		 */
370 		if (np == NULL && mp->mnt_flag & MNT_DEFEXPORTED)
371 			np = &nep->ne_defexported;
372 	}
373 	return (np);
374 }
375 
376 /*
377  * XXX: This comment comes from the deprecated ufs_check_export()
378  * XXX: and may not entirely apply, but lacking something better:
379  * This is the generic part of fhtovp called after the underlying
380  * filesystem has validated the file handle.
381  *
382  * Verify that a host should have access to a filesystem.
383  */
384 
385 int
386 vfs_stdcheckexp(mp, nam, extflagsp, credanonp)
387 	struct mount *mp;
388 	struct sockaddr *nam;
389 	int *extflagsp;
390 	struct ucred **credanonp;
391 {
392 	struct netcred *np;
393 
394 	np = vfs_export_lookup(mp, nam);
395 	if (np == NULL)
396 		return (EACCES);
397 	*extflagsp = np->netc_exflags;
398 	*credanonp = &np->netc_anon;
399 	return (0);
400 }
401 
402