2006-09-02 15:10:24 +04:00
|
|
|
/* $NetBSD: mountd.c,v 1.111 2006/09/02 11:10:24 yamt Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
2000-02-16 07:08:40 +03:00
|
|
|
* Copyright (c) 1989, 1993
|
1994-06-08 23:27:32 +04:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
1994-06-08 23:27:32 +04:00
|
|
|
* Herb Hasler and Rick Macklem at The University of Guelph.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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 15:25:11 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03: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.
|
|
|
|
*/
|
|
|
|
|
1997-03-23 23:58:14 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX The ISO support can't possibly work..
|
|
|
|
*/
|
|
|
|
|
1997-08-28 12:09:53 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-08-28 12:09:53 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1998-10-29 15:57:02 +03:00
|
|
|
#endif /* not lint */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-18 17:54:19 +03:00
|
|
|
#if 0
|
1998-10-29 15:57:02 +03:00
|
|
|
static char sccsid[] = "@(#)mountd.c 8.15 (Berkeley) 5/1/95";
|
1995-03-18 17:54:19 +03:00
|
|
|
#else
|
2006-09-02 15:10:24 +04:00
|
|
|
__RCSID("$NetBSD: mountd.c,v 1.111 2006/09/02 11:10:24 yamt Exp $");
|
1995-03-18 17:54:19 +03:00
|
|
|
#endif
|
1998-10-29 15:57:02 +03:00
|
|
|
#endif /* not lint */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/file.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <sys/ioctl.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/socket.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <sys/stat.h>
|
1995-05-28 09:31:01 +04:00
|
|
|
#include <syslog.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <sys/ucred.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpc/pmap_clnt.h>
|
|
|
|
#include <rpc/pmap_prot.h>
|
1998-10-07 18:50:35 +04:00
|
|
|
#include <rpcsvc/mount.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#ifdef ISO
|
|
|
|
#include <netiso/iso.h>
|
|
|
|
#endif
|
|
|
|
#include <nfs/rpcv2.h>
|
1996-02-18 14:57:50 +03:00
|
|
|
#include <nfs/nfsproto.h>
|
1998-03-01 05:20:01 +03:00
|
|
|
#include <nfs/nfs.h>
|
|
|
|
#include <nfs/nfsmount.h>
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <pwd.h>
|
1997-08-28 12:09:53 +04:00
|
|
|
#include <netgroup.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1998-10-29 15:57:02 +03:00
|
|
|
#include <netgroup.h>
|
2002-09-22 00:35:00 +04:00
|
|
|
#include <err.h>
|
1998-10-29 15:57:02 +03:00
|
|
|
#include <util.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "pathnames.h"
|
|
|
|
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
#include <netinet6/ipsec.h>
|
|
|
|
#ifndef IPSEC_POLICY_IPSEC /* no ipsec support on old ipsec */
|
|
|
|
#undef IPSEC
|
|
|
|
#endif
|
|
|
|
#include "ipsec.h"
|
|
|
|
#endif
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Structures for keeping the mount list and export list
|
|
|
|
*/
|
|
|
|
struct mountlist {
|
|
|
|
struct mountlist *ml_next;
|
1998-10-29 15:57:02 +03:00
|
|
|
char ml_host[RPCMNT_NAMELEN + 1];
|
|
|
|
char ml_dirp[RPCMNT_PATHLEN + 1];
|
|
|
|
int ml_flag;/* XXX more flags (same as dp_flag) */
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist {
|
1998-10-29 15:57:02 +03:00
|
|
|
struct dirlist *dp_left;
|
|
|
|
struct dirlist *dp_right;
|
|
|
|
int dp_flag;
|
|
|
|
struct hostlist *dp_hosts; /* List of hosts this dir exported to */
|
|
|
|
char dp_dirp[1]; /* Actually malloc'd to size of dir */
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
|
|
|
/* dp_flag bits */
|
|
|
|
#define DP_DEFSET 0x1
|
1996-02-18 14:57:50 +03:00
|
|
|
#define DP_HOSTSET 0x2
|
|
|
|
#define DP_KERB 0x4
|
1997-03-31 00:53:31 +04:00
|
|
|
#define DP_NORESMNT 0x8
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
struct exportlist {
|
|
|
|
struct exportlist *ex_next;
|
1998-10-29 15:57:02 +03:00
|
|
|
struct dirlist *ex_dirl;
|
|
|
|
struct dirlist *ex_defdir;
|
|
|
|
int ex_flag;
|
|
|
|
fsid_t ex_fs;
|
|
|
|
char *ex_fsdir;
|
|
|
|
char *ex_indexfile;
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
|
|
|
/* ex_flag bits */
|
|
|
|
#define EX_LINKED 0x1
|
|
|
|
|
|
|
|
struct netmsk {
|
2000-06-09 04:03:31 +04:00
|
|
|
struct sockaddr_storage nt_net;
|
|
|
|
int nt_len;
|
1998-10-29 15:57:02 +03:00
|
|
|
char *nt_name;
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
union grouptypes {
|
2000-06-09 04:03:31 +04:00
|
|
|
struct addrinfo *gt_addrinfo;
|
1998-10-29 15:57:02 +03:00
|
|
|
struct netmsk gt_net;
|
1994-06-08 23:27:32 +04:00
|
|
|
#ifdef ISO
|
|
|
|
struct sockaddr_iso *gt_isoaddr;
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct grouplist {
|
1998-10-29 15:57:02 +03:00
|
|
|
int gr_type;
|
1994-06-08 23:27:32 +04:00
|
|
|
union grouptypes gr_ptr;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct grouplist *gr_next;
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
|
|
|
/* Group types */
|
|
|
|
#define GT_NULL 0x0
|
|
|
|
#define GT_HOST 0x1
|
|
|
|
#define GT_NET 0x2
|
|
|
|
#define GT_ISO 0x4
|
|
|
|
|
|
|
|
struct hostlist {
|
1998-10-29 15:57:02 +03:00
|
|
|
int ht_flag;/* Uses DP_xx bits */
|
1994-06-08 23:27:32 +04:00
|
|
|
struct grouplist *ht_grp;
|
1998-10-29 15:57:02 +03:00
|
|
|
struct hostlist *ht_next;
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1996-02-18 14:57:50 +03:00
|
|
|
struct fhreturn {
|
1998-10-29 15:57:02 +03:00
|
|
|
int fhr_flag;
|
|
|
|
int fhr_vers;
|
2006-09-02 15:10:24 +04:00
|
|
|
size_t fhr_fhsize;
|
|
|
|
union {
|
|
|
|
uint8_t v2[NFSX_V2FH];
|
|
|
|
uint8_t v3[NFSX_V3FHMAX];
|
|
|
|
} fhr_fh;
|
1996-02-18 14:57:50 +03:00
|
|
|
};
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* Global defs */
|
1998-10-29 15:57:02 +03:00
|
|
|
static char *add_expdir __P((struct dirlist **, char *, int));
|
|
|
|
static void add_dlist __P((struct dirlist **, struct dirlist *,
|
|
|
|
struct grouplist *, int));
|
|
|
|
static void add_mlist __P((char *, char *, int));
|
1999-01-12 18:11:53 +03:00
|
|
|
static int check_dirpath __P((const char *, size_t, char *));
|
|
|
|
static int check_options __P((const char *, size_t, struct dirlist *));
|
2000-06-09 04:03:31 +04:00
|
|
|
static int chk_host __P((struct dirlist *, struct sockaddr *, int *, int *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static int del_mlist __P((char *, char *, struct sockaddr *));
|
|
|
|
static struct dirlist *dirp_search __P((struct dirlist *, char *));
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
static int do_nfssvc __P((const char *, size_t, struct exportlist *,
|
2004-04-21 05:05:31 +04:00
|
|
|
struct grouplist *, int, struct uucred *, char *, int, struct statvfs *));
|
1999-01-12 18:11:53 +03:00
|
|
|
static int do_opt __P((const char *, size_t, char **, char **,
|
2001-11-30 00:23:38 +03:00
|
|
|
struct exportlist *, struct grouplist *, int *, int *, struct uucred *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct exportlist *ex_search __P((fsid_t *));
|
1998-11-01 21:30:26 +03:00
|
|
|
static int parse_directory __P((const char *, size_t, struct grouplist *,
|
2004-04-21 05:05:31 +04:00
|
|
|
int, char *, struct exportlist **, struct statvfs *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static int parse_host_netgroup __P((const char *, size_t, struct exportlist *,
|
|
|
|
struct grouplist *, char *, int *, struct grouplist **));
|
1998-11-01 21:30:26 +03:00
|
|
|
static struct exportlist *get_exp __P((void));
|
1998-10-29 15:57:02 +03:00
|
|
|
static void free_dir __P((struct dirlist *));
|
|
|
|
static void free_exp __P((struct exportlist *));
|
|
|
|
static void free_grp __P((struct grouplist *));
|
|
|
|
static void free_host __P((struct hostlist *));
|
|
|
|
static void get_exportlist __P((int));
|
1999-01-12 18:11:53 +03:00
|
|
|
static int get_host __P((const char *, size_t, const char *,
|
|
|
|
struct grouplist *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct hostlist *get_ht __P((void));
|
|
|
|
static void get_mountlist __P((void));
|
|
|
|
static int get_net __P((char *, struct netmsk *, int));
|
1999-01-12 18:11:53 +03:00
|
|
|
static void free_exp_grp __P((struct exportlist *, struct grouplist *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct grouplist *get_grp __P((void));
|
|
|
|
static void hang_dirp __P((struct dirlist *, struct grouplist *,
|
|
|
|
struct exportlist *, int));
|
|
|
|
static void mntsrv __P((struct svc_req *, SVCXPRT *));
|
|
|
|
static void nextfield __P((char **, char **));
|
2001-11-30 00:23:38 +03:00
|
|
|
static void parsecred __P((char *, struct uucred *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static int put_exlist __P((struct dirlist *, XDR *, struct dirlist *, int *));
|
2000-06-09 04:03:31 +04:00
|
|
|
static int scan_tree __P((struct dirlist *, struct sockaddr *));
|
1998-10-29 15:57:02 +03:00
|
|
|
static void send_umntall __P((int));
|
|
|
|
static int umntall_each __P((caddr_t, struct sockaddr_in *));
|
|
|
|
static int xdr_dir __P((XDR *, char *));
|
|
|
|
static int xdr_explist __P((XDR *, caddr_t));
|
|
|
|
static int xdr_fhs __P((XDR *, caddr_t));
|
|
|
|
static int xdr_mlist __P((XDR *, caddr_t));
|
2000-06-09 04:03:31 +04:00
|
|
|
static int bitcmp __P((void *, void *, int));
|
|
|
|
static int netpartcmp __P((struct sockaddr *, struct sockaddr *, int));
|
|
|
|
static int sacmp __P((struct sockaddr *, struct sockaddr *));
|
|
|
|
static int allones __P((struct sockaddr_storage *, int));
|
|
|
|
static int countones __P((struct sockaddr *));
|
1999-01-12 18:11:53 +03:00
|
|
|
#ifdef ISO
|
|
|
|
static int get_isoaddr __P((const char *, size_t, char *, struct grouplist *));
|
|
|
|
#endif
|
2005-09-19 04:59:56 +04:00
|
|
|
static void bind_resv_port __P((int, sa_family_t, in_port_t));
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct exportlist *exphead;
|
|
|
|
static struct mountlist *mlhead;
|
|
|
|
static struct grouplist *grphead;
|
|
|
|
static char *exname;
|
2001-11-30 00:23:38 +03:00
|
|
|
static struct uucred def_anon = {
|
1994-06-08 23:27:32 +04:00
|
|
|
1,
|
2001-11-30 00:23:38 +03:00
|
|
|
(uid_t) -2,
|
|
|
|
(gid_t) -2,
|
1995-06-07 21:14:21 +04:00
|
|
|
0,
|
1998-10-29 15:57:02 +03:00
|
|
|
{}
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
2000-06-09 04:03:31 +04:00
|
|
|
|
|
|
|
static int opt_flags;
|
2000-06-20 03:44:16 +04:00
|
|
|
static int have_v6 = 1;
|
2000-07-16 18:07:39 +04:00
|
|
|
static const int ninumeric = NI_NUMERICHOST;
|
2000-06-09 04:03:31 +04:00
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
/* Bits for above */
|
1997-03-31 00:53:31 +04:00
|
|
|
#define OP_MAPROOT 0x001
|
|
|
|
#define OP_MAPALL 0x002
|
|
|
|
#define OP_KERB 0x004
|
|
|
|
#define OP_MASK 0x008
|
|
|
|
#define OP_NET 0x010
|
|
|
|
#define OP_ISO 0x020
|
|
|
|
#define OP_ALLDIRS 0x040
|
|
|
|
#define OP_NORESPORT 0x080
|
|
|
|
#define OP_NORESMNT 0x100
|
2000-06-09 04:03:31 +04:00
|
|
|
#define OP_MASKLEN 0x200
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static int debug = 0;
|
|
|
|
#if 0
|
|
|
|
static void SYSLOG __P((int, const char *,...));
|
|
|
|
#endif
|
|
|
|
int main __P((int, char *[]));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-01-14 19:12:46 +03:00
|
|
|
/*
|
|
|
|
* If this is non-zero, -noresvport and -noresvmnt are implied for
|
|
|
|
* each export.
|
|
|
|
*/
|
|
|
|
static int noprivports;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Mountd server for NFS mount protocol as described in:
|
|
|
|
* NFS: Network File System Protocol Specification, RFC1094, Appendix A
|
|
|
|
* The optional arguments are the exports file name
|
|
|
|
* default: _PATH_EXPORTS
|
1995-11-06 10:00:07 +03:00
|
|
|
* "-d" to enable debugging
|
1993-03-21 12:45:37 +03:00
|
|
|
* and "-n" to allow nonroot mount.
|
|
|
|
*/
|
1994-06-08 23:27:32 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
2000-06-09 04:03:31 +04:00
|
|
|
SVCXPRT *udptransp, *tcptransp, *udp6transp, *tcp6transp;
|
|
|
|
struct netconfig *udpconf, *tcpconf, *udp6conf, *tcp6conf;
|
|
|
|
int udpsock, tcpsock, udp6sock, tcp6sock;
|
2000-06-20 03:44:16 +04:00
|
|
|
int xcreated = 0, s;
|
2000-06-09 04:03:31 +04:00
|
|
|
int c, one = 1;
|
2002-11-08 03:14:50 +03:00
|
|
|
int maxrec = RPC_MAXDATASIZE;
|
2005-09-19 04:59:56 +04:00
|
|
|
in_port_t forcedport = 0;
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
char *policy = NULL;
|
|
|
|
#define ADDOPTS "P:"
|
|
|
|
#else
|
|
|
|
#define ADDOPTS
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-09-19 04:59:56 +04:00
|
|
|
while ((c = getopt(argc, argv, "dNnrp:" ADDOPTS)) != -1)
|
1993-03-21 12:45:37 +03:00
|
|
|
switch (c) {
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
case 'P':
|
|
|
|
if (ipsecsetup_test(policy = optarg))
|
|
|
|
errx(1, "Invalid ipsec policy `%s'", policy);
|
|
|
|
break;
|
|
|
|
#endif
|
2005-09-19 04:59:56 +04:00
|
|
|
case 'p':
|
|
|
|
/* A forced port "0" will dynamically allocate a port */
|
|
|
|
forcedport = atoi(optarg);
|
|
|
|
break;
|
1995-11-06 10:00:07 +03:00
|
|
|
case 'd':
|
|
|
|
debug = 1;
|
|
|
|
break;
|
2005-01-14 19:12:46 +03:00
|
|
|
case 'N':
|
|
|
|
noprivports = 1;
|
|
|
|
break;
|
1998-07-13 18:24:24 +04:00
|
|
|
/* Compatibility */
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'n':
|
1996-02-18 14:57:50 +03:00
|
|
|
case 'r':
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
2005-01-17 18:20:35 +03:00
|
|
|
fprintf(stderr, "usage: %s [-dNn]"
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
2005-09-20 02:43:21 +04:00
|
|
|
" [-P policy]"
|
2002-09-22 00:35:00 +04:00
|
|
|
#endif
|
2005-09-20 02:43:21 +04:00
|
|
|
" [-p port] [exportsfile]\n", getprogname());
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
};
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
1998-10-29 15:57:02 +03:00
|
|
|
grphead = NULL;
|
|
|
|
exphead = NULL;
|
|
|
|
mlhead = NULL;
|
1998-07-13 18:24:24 +04:00
|
|
|
if (argc == 1)
|
|
|
|
exname = *argv;
|
|
|
|
else
|
|
|
|
exname = _PATH_EXPORTS;
|
2005-03-15 07:54:59 +03:00
|
|
|
openlog("mountd", LOG_PID | (debug ? LOG_PERROR : 0), LOG_DAEMON);
|
2000-06-20 03:44:16 +04:00
|
|
|
|
|
|
|
s = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
if (s < 0)
|
|
|
|
have_v6 = 0;
|
|
|
|
else
|
|
|
|
close(s);
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr, "Getting export list.\n");
|
1998-10-07 18:50:35 +04:00
|
|
|
get_exportlist(0);
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr, "Getting mount list.\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
get_mountlist();
|
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr, "Here we go.\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
daemon(0, 0);
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)signal(SIGINT, SIG_IGN);
|
|
|
|
(void)signal(SIGQUIT, SIG_IGN);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1998-10-07 18:50:35 +04:00
|
|
|
(void)signal(SIGHUP, get_exportlist);
|
|
|
|
(void)signal(SIGTERM, send_umntall);
|
1999-06-06 05:50:23 +04:00
|
|
|
pidfile(NULL);
|
2000-06-09 04:03:31 +04:00
|
|
|
|
|
|
|
rpcb_unset(RPCPROG_MNT, RPCMNT_VER1, NULL);
|
|
|
|
rpcb_unset(RPCPROG_MNT, RPCMNT_VER3, NULL);
|
|
|
|
|
|
|
|
udpsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
tcpsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
|
|
udp6sock = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
tcp6sock = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We're doing host-based access checks here, so don't allow
|
|
|
|
* v4-in-v6 to confuse things. The kernel will disable it
|
|
|
|
* by default on NFS sockets too.
|
|
|
|
*/
|
|
|
|
if (udp6sock != -1 && setsockopt(udp6sock, IPPROTO_IPV6,
|
2001-10-16 05:51:26 +04:00
|
|
|
IPV6_V6ONLY, &one, sizeof one) < 0){
|
2000-06-09 04:03:31 +04:00
|
|
|
syslog(LOG_ERR, "can't disable v4-in-v6 on UDP socket");
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
if (tcp6sock != -1 && setsockopt(tcp6sock, IPPROTO_IPV6,
|
2001-10-16 05:51:26 +04:00
|
|
|
IPV6_V6ONLY, &one, sizeof one) < 0){
|
2000-06-09 04:03:31 +04:00
|
|
|
syslog(LOG_ERR, "can't disable v4-in-v6 on UDP socket");
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
|
|
|
|
udpconf = getnetconfigent("udp");
|
|
|
|
tcpconf = getnetconfigent("tcp");
|
|
|
|
udp6conf = getnetconfigent("udp6");
|
|
|
|
tcp6conf = getnetconfigent("tcp6");
|
|
|
|
|
2002-11-08 03:14:50 +03:00
|
|
|
rpc_control(RPC_SVC_CONNMAXREC_SET, &maxrec);
|
|
|
|
|
2000-06-09 04:03:31 +04:00
|
|
|
if (udpsock != -1 && udpconf != NULL) {
|
2005-09-19 04:59:56 +04:00
|
|
|
bind_resv_port(udpsock, AF_INET, forcedport);
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
if (policy)
|
|
|
|
ipsecsetup(AF_INET, udpsock, policy);
|
|
|
|
#endif
|
2000-06-09 04:03:31 +04:00
|
|
|
udptransp = svc_dg_create(udpsock, 0, 0);
|
|
|
|
if (udptransp != NULL) {
|
|
|
|
if (!svc_reg(udptransp, RPCPROG_MNT, RPCMNT_VER1,
|
|
|
|
mntsrv, udpconf) ||
|
|
|
|
!svc_reg(udptransp, RPCPROG_MNT, RPCMNT_VER3,
|
|
|
|
mntsrv, udpconf))
|
|
|
|
syslog(LOG_WARNING, "can't register UDP service");
|
|
|
|
else
|
|
|
|
xcreated++;
|
|
|
|
} else
|
|
|
|
syslog(LOG_WARNING, "can't create UDP service");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tcpsock != -1 && tcpconf != NULL) {
|
2005-09-19 04:59:56 +04:00
|
|
|
bind_resv_port(tcpsock, AF_INET, forcedport);
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
if (policy)
|
|
|
|
ipsecsetup(AF_INET, tcpsock, policy);
|
|
|
|
#endif
|
2000-06-09 04:03:31 +04:00
|
|
|
listen(tcpsock, SOMAXCONN);
|
2002-11-08 03:14:50 +03:00
|
|
|
tcptransp = svc_vc_create(tcpsock, RPC_MAXDATASIZE,
|
|
|
|
RPC_MAXDATASIZE);
|
2000-06-09 04:03:31 +04:00
|
|
|
if (tcptransp != NULL) {
|
|
|
|
if (!svc_reg(tcptransp, RPCPROG_MNT, RPCMNT_VER1,
|
|
|
|
mntsrv, tcpconf) ||
|
2000-06-16 15:34:55 +04:00
|
|
|
!svc_reg(tcptransp, RPCPROG_MNT, RPCMNT_VER3,
|
2000-06-09 04:03:31 +04:00
|
|
|
mntsrv, tcpconf))
|
|
|
|
syslog(LOG_WARNING, "can't register TCP service");
|
|
|
|
else
|
|
|
|
xcreated++;
|
|
|
|
} else
|
|
|
|
syslog(LOG_WARNING, "can't create TCP service");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (udp6sock != -1 && udp6conf != NULL) {
|
2005-09-19 04:59:56 +04:00
|
|
|
bind_resv_port(udp6sock, AF_INET6, forcedport);
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
if (policy)
|
|
|
|
ipsecsetup(AF_INET6, tcpsock, policy);
|
|
|
|
#endif
|
2000-06-09 04:03:31 +04:00
|
|
|
udp6transp = svc_dg_create(udp6sock, 0, 0);
|
|
|
|
if (udp6transp != NULL) {
|
|
|
|
if (!svc_reg(udp6transp, RPCPROG_MNT, RPCMNT_VER1,
|
|
|
|
mntsrv, udp6conf) ||
|
|
|
|
!svc_reg(udp6transp, RPCPROG_MNT, RPCMNT_VER3,
|
|
|
|
mntsrv, udp6conf))
|
|
|
|
syslog(LOG_WARNING, "can't register UDP6 service");
|
|
|
|
else
|
|
|
|
xcreated++;
|
|
|
|
} else
|
|
|
|
syslog(LOG_WARNING, "can't create UDP6 service");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tcp6sock != -1 && tcp6conf != NULL) {
|
2005-09-19 04:59:56 +04:00
|
|
|
bind_resv_port(tcp6sock, AF_INET6, forcedport);
|
2002-09-22 00:35:00 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
if (policy)
|
|
|
|
ipsecsetup(AF_INET6, tcpsock, policy);
|
|
|
|
#endif
|
2000-07-16 12:11:34 +04:00
|
|
|
listen(tcp6sock, SOMAXCONN);
|
2002-11-08 03:14:50 +03:00
|
|
|
tcp6transp = svc_vc_create(tcp6sock, RPC_MAXDATASIZE,
|
|
|
|
RPC_MAXDATASIZE);
|
2000-06-09 04:03:31 +04:00
|
|
|
if (tcp6transp != NULL) {
|
|
|
|
if (!svc_reg(tcp6transp, RPCPROG_MNT, RPCMNT_VER1,
|
|
|
|
mntsrv, tcp6conf) ||
|
|
|
|
!svc_reg(tcp6transp, RPCPROG_MNT, RPCMNT_VER3,
|
|
|
|
mntsrv, tcp6conf))
|
|
|
|
syslog(LOG_WARNING, "can't register TCP6 service");
|
|
|
|
else
|
|
|
|
xcreated++;
|
|
|
|
} else
|
|
|
|
syslog(LOG_WARNING, "can't create TCP6 service");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xcreated == 0) {
|
|
|
|
syslog(LOG_ERR, "could not create any services");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
svc_run();
|
|
|
|
syslog(LOG_ERR, "Mountd died");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The mount rpc service
|
|
|
|
*/
|
1993-08-25 06:37:36 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
mntsrv(rqstp, transp)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct svc_req *rqstp;
|
|
|
|
SVCXPRT *transp;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct exportlist *ep;
|
|
|
|
struct dirlist *dp;
|
1996-02-18 14:57:50 +03:00
|
|
|
struct fhreturn fhr;
|
1998-10-29 15:57:02 +03:00
|
|
|
struct stat stb;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct statvfs fsb;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct addrinfo *ai;
|
|
|
|
char host[NI_MAXHOST], numerichost[NI_MAXHOST];
|
|
|
|
int lookup_failed = 1;
|
|
|
|
struct sockaddr *saddr;
|
1998-10-29 15:57:02 +03:00
|
|
|
u_short sport;
|
|
|
|
char rpcpath[RPCMNT_PATHLEN + 1], dirpath[MAXPATHLEN];
|
|
|
|
long bad = EACCES;
|
|
|
|
int defset, hostset, ret;
|
|
|
|
sigset_t sighup_mask;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct sockaddr_in6 *sin6;
|
|
|
|
struct sockaddr_in *sin;
|
2006-07-13 16:00:24 +04:00
|
|
|
size_t fh_size;
|
1998-10-29 15:57:02 +03:00
|
|
|
|
|
|
|
(void)sigemptyset(&sighup_mask);
|
|
|
|
(void)sigaddset(&sighup_mask, SIGHUP);
|
2000-06-09 04:03:31 +04:00
|
|
|
saddr = svc_getrpccaller(transp)->buf;
|
|
|
|
switch (saddr->sa_family) {
|
|
|
|
case AF_INET6:
|
|
|
|
sin6 = (struct sockaddr_in6 *)saddr;
|
|
|
|
sport = ntohs(sin6->sin6_port);
|
|
|
|
break;
|
|
|
|
case AF_INET:
|
|
|
|
sin = (struct sockaddr_in *)saddr;
|
|
|
|
sport = ntohs(sin->sin_port);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
syslog(LOG_ERR, "request from unknown address family");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lookup_failed = getnameinfo(saddr, saddr->sa_len, host, sizeof host,
|
|
|
|
NULL, 0, 0);
|
2000-07-16 18:07:39 +04:00
|
|
|
if (getnameinfo(saddr, saddr->sa_len, numerichost,
|
|
|
|
sizeof numerichost, NULL, 0, ninumeric) != 0)
|
|
|
|
strlcpy(numerichost, "?", sizeof(numerichost));
|
2000-06-09 04:03:31 +04:00
|
|
|
ai = NULL;
|
1997-08-28 12:09:53 +04:00
|
|
|
ret = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
switch (rqstp->rq_proc) {
|
|
|
|
case NULLPROC:
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_void, NULL))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
case MOUNTPROC_MNT:
|
2000-06-28 00:32:28 +04:00
|
|
|
if (debug)
|
|
|
|
fprintf(stderr,
|
|
|
|
"got mount request from %s\n", numerichost);
|
1994-06-08 23:27:32 +04:00
|
|
|
if (!svc_getargs(transp, xdr_dir, rpcpath)) {
|
2000-06-28 00:32:28 +04:00
|
|
|
if (debug)
|
|
|
|
fprintf(stderr, "-> garbage args\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
svcerr_decode(transp);
|
|
|
|
return;
|
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
if (debug)
|
|
|
|
fprintf(stderr,
|
2000-06-28 00:32:28 +04:00
|
|
|
"-> rpcpath: %s\n", rpcpath);
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
1994-08-12 08:19:50 +04:00
|
|
|
* Get the real pathname and make sure it is a file or
|
|
|
|
* directory that exists.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
|
|
|
if (realpath(rpcpath, dirpath) == 0 ||
|
|
|
|
stat(dirpath, &stb) < 0 ||
|
|
|
|
(!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) ||
|
2004-04-21 05:05:31 +04:00
|
|
|
statvfs(dirpath, &fsb) < 0) {
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)chdir("/"); /* Just in case realpath doesn't */
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug)
|
2000-06-28 00:32:28 +04:00
|
|
|
(void)fprintf(stderr, "-> stat failed on %s\n",
|
1998-10-29 15:57:02 +03:00
|
|
|
dirpath);
|
|
|
|
if (!svc_sendreply(transp, xdr_long, (caddr_t) &bad))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
return;
|
|
|
|
}
|
2000-06-28 00:32:28 +04:00
|
|
|
if (debug)
|
|
|
|
fprintf(stderr,
|
|
|
|
"-> dirpath: %s\n", dirpath);
|
1993-03-21 12:45:37 +03:00
|
|
|
/* Check in the exports list */
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)sigprocmask(SIG_BLOCK, &sighup_mask, NULL);
|
2004-04-21 05:05:31 +04:00
|
|
|
ep = ex_search(&fsb.f_fsidx);
|
1996-02-18 14:57:50 +03:00
|
|
|
hostset = defset = 0;
|
2000-06-09 04:03:31 +04:00
|
|
|
if (ep && (chk_host(ep->ex_defdir, saddr, &defset,
|
1998-10-29 15:57:02 +03:00
|
|
|
&hostset) || ((dp = dirp_search(ep->ex_dirl, dirpath)) &&
|
2000-06-09 04:03:31 +04:00
|
|
|
chk_host(dp, saddr, &defset, &hostset)) ||
|
|
|
|
(defset && scan_tree(ep->ex_defdir, saddr) == 0 &&
|
|
|
|
scan_tree(ep->ex_dirl, saddr) == 0))) {
|
2005-11-18 16:19:48 +03:00
|
|
|
if ((hostset & DP_HOSTSET) == 0) {
|
|
|
|
hostset = defset;
|
|
|
|
}
|
1997-03-23 23:58:14 +03:00
|
|
|
if (sport >= IPPORT_RESERVED &&
|
1997-03-31 00:53:31 +04:00
|
|
|
!(hostset & DP_NORESMNT)) {
|
1997-03-23 23:58:14 +03:00
|
|
|
syslog(LOG_NOTICE,
|
1998-10-29 15:57:02 +03:00
|
|
|
"Refused mount RPC from host %s port %d",
|
2000-06-09 04:03:31 +04:00
|
|
|
numerichost, sport);
|
1997-03-23 23:58:14 +03:00
|
|
|
svcerr_weakauth(transp);
|
1998-07-13 18:24:24 +04:00
|
|
|
goto out;
|
1997-03-23 23:58:14 +03:00
|
|
|
}
|
2005-11-18 16:19:48 +03:00
|
|
|
fhr.fhr_flag = hostset;
|
1996-02-18 14:57:50 +03:00
|
|
|
fhr.fhr_vers = rqstp->rq_vers;
|
1994-06-08 23:27:32 +04:00
|
|
|
/* Get the file handle */
|
2006-09-02 15:10:24 +04:00
|
|
|
memset(&fhr.fhr_fh, 0, sizeof(fhr.fhr_fh)); /* for v2 */
|
|
|
|
fh_size = sizeof(fhr.fhr_fh);
|
2006-07-31 20:34:42 +04:00
|
|
|
if (getfh(dirpath, &fhr.fhr_fh, &fh_size) < 0) {
|
1994-06-08 23:27:32 +04:00
|
|
|
bad = errno;
|
|
|
|
syslog(LOG_ERR, "Can't get fh for %s", dirpath);
|
|
|
|
if (!svc_sendreply(transp, xdr_long,
|
1998-10-29 15:57:02 +03:00
|
|
|
(char *)&bad))
|
1994-06-08 23:27:32 +04:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
1998-07-13 18:24:24 +04:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2006-09-02 15:10:24 +04:00
|
|
|
if ((fhr.fhr_vers == 1 && fh_size > NFSX_V2FH) ||
|
|
|
|
fh_size > NFSX_V3FHMAX) {
|
|
|
|
bad = EINVAL; /* XXX */
|
|
|
|
if (!svc_sendreply(transp, xdr_long,
|
|
|
|
(char *)&bad))
|
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
fhr.fhr_fhsize = fh_size;
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_fhs, (char *) &fhr))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
2000-06-09 04:03:31 +04:00
|
|
|
if (!lookup_failed)
|
|
|
|
add_mlist(host, dirpath, hostset);
|
1994-06-08 23:27:32 +04:00
|
|
|
else
|
2000-06-09 04:03:31 +04:00
|
|
|
add_mlist(numerichost, dirpath, hostset);
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr, "Mount successful.\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
} else {
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_long, (caddr_t) &bad))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
}
|
1998-07-13 18:24:24 +04:00
|
|
|
out:
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
case MOUNTPROC_DUMP:
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_mlist, NULL))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
case MOUNTPROC_UMNT:
|
1993-03-21 12:45:37 +03:00
|
|
|
if (!svc_getargs(transp, xdr_dir, dirpath)) {
|
|
|
|
svcerr_decode(transp);
|
|
|
|
return;
|
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
if (!lookup_failed)
|
|
|
|
ret = del_mlist(host, dirpath, saddr);
|
|
|
|
ret |= del_mlist(numerichost, dirpath, saddr);
|
1997-03-23 23:58:14 +03:00
|
|
|
if (ret) {
|
1993-03-21 12:45:37 +03:00
|
|
|
svcerr_weakauth(transp);
|
|
|
|
return;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_void, NULL))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
1997-03-23 23:58:14 +03:00
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
case MOUNTPROC_UMNTALL:
|
2000-06-09 04:03:31 +04:00
|
|
|
if (!lookup_failed)
|
|
|
|
ret = del_mlist(host, NULL, saddr);
|
|
|
|
ret |= del_mlist(numerichost, NULL, saddr);
|
1997-03-23 23:58:14 +03:00
|
|
|
if (ret) {
|
|
|
|
svcerr_weakauth(transp);
|
|
|
|
return;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_void, NULL))
|
1997-03-23 23:58:14 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
case MOUNTPROC_EXPORT:
|
|
|
|
case MOUNTPROC_EXPORTALL:
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!svc_sendreply(transp, xdr_explist, NULL))
|
1993-03-21 12:45:37 +03:00
|
|
|
syslog(LOG_ERR, "Can't send reply");
|
|
|
|
return;
|
1998-10-07 18:50:35 +04:00
|
|
|
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
|
|
|
svcerr_noproc(transp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Xdr conversion for a dirpath string
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1993-03-21 12:45:37 +03:00
|
|
|
xdr_dir(xdrsp, dirp)
|
|
|
|
XDR *xdrsp;
|
|
|
|
char *dirp;
|
|
|
|
{
|
1998-07-13 18:24:24 +04:00
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
return (xdr_string(xdrsp, &dirp, RPCMNT_PATHLEN));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1996-02-18 14:57:50 +03:00
|
|
|
* Xdr routine to generate file handle reply
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1996-02-18 14:57:50 +03:00
|
|
|
xdr_fhs(xdrsp, cp)
|
1993-03-21 12:45:37 +03:00
|
|
|
XDR *xdrsp;
|
1996-02-18 14:57:50 +03:00
|
|
|
caddr_t cp;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1998-10-29 15:57:02 +03:00
|
|
|
struct fhreturn *fhrp = (struct fhreturn *) cp;
|
1996-02-18 14:57:50 +03:00
|
|
|
long ok = 0, len, auth;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (!xdr_long(xdrsp, &ok))
|
|
|
|
return (0);
|
1996-02-18 14:57:50 +03:00
|
|
|
switch (fhrp->fhr_vers) {
|
|
|
|
case 1:
|
|
|
|
return (xdr_opaque(xdrsp, (caddr_t)&fhrp->fhr_fh, NFSX_V2FH));
|
|
|
|
case 3:
|
2006-09-02 15:10:24 +04:00
|
|
|
len = fhrp->fhr_fhsize;
|
1996-02-18 14:57:50 +03:00
|
|
|
if (!xdr_long(xdrsp, &len))
|
|
|
|
return (0);
|
|
|
|
if (!xdr_opaque(xdrsp, (caddr_t)&fhrp->fhr_fh, len))
|
|
|
|
return (0);
|
|
|
|
if (fhrp->fhr_flag & DP_KERB)
|
|
|
|
auth = RPCAUTH_KERB4;
|
|
|
|
else
|
|
|
|
auth = RPCAUTH_UNIX;
|
|
|
|
len = 1;
|
|
|
|
if (!xdr_long(xdrsp, &len))
|
|
|
|
return (0);
|
|
|
|
return (xdr_long(xdrsp, &auth));
|
|
|
|
};
|
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
xdr_mlist(xdrsp, cp)
|
|
|
|
XDR *xdrsp;
|
|
|
|
caddr_t cp;
|
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct mountlist *mlp;
|
1993-03-21 12:45:37 +03:00
|
|
|
int true = 1;
|
|
|
|
int false = 0;
|
|
|
|
char *strp;
|
|
|
|
|
|
|
|
mlp = mlhead;
|
|
|
|
while (mlp) {
|
|
|
|
if (!xdr_bool(xdrsp, &true))
|
|
|
|
return (0);
|
|
|
|
strp = &mlp->ml_host[0];
|
1994-06-08 23:27:32 +04:00
|
|
|
if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
strp = &mlp->ml_dirp[0];
|
1994-06-08 23:27:32 +04:00
|
|
|
if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
mlp = mlp->ml_next;
|
|
|
|
}
|
|
|
|
if (!xdr_bool(xdrsp, &false))
|
|
|
|
return (0);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Xdr conversion for export list
|
|
|
|
*/
|
1994-06-08 23:27:32 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
xdr_explist(xdrsp, cp)
|
|
|
|
XDR *xdrsp;
|
|
|
|
caddr_t cp;
|
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct exportlist *ep;
|
1993-03-21 12:45:37 +03:00
|
|
|
int false = 0;
|
1995-03-21 21:48:41 +03:00
|
|
|
int putdef;
|
1996-02-18 14:57:50 +03:00
|
|
|
sigset_t sighup_mask;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)sigemptyset(&sighup_mask);
|
|
|
|
(void)sigaddset(&sighup_mask, SIGHUP);
|
|
|
|
(void)sigprocmask(SIG_BLOCK, &sighup_mask, NULL);
|
1994-06-08 23:27:32 +04:00
|
|
|
ep = exphead;
|
|
|
|
while (ep) {
|
|
|
|
putdef = 0;
|
|
|
|
if (put_exlist(ep->ex_dirl, xdrsp, ep->ex_defdir, &putdef))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto errout;
|
1994-06-08 23:27:32 +04:00
|
|
|
if (ep->ex_defdir && putdef == 0 &&
|
1998-10-29 15:57:02 +03:00
|
|
|
put_exlist(ep->ex_defdir, xdrsp, NULL, &putdef))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto errout;
|
|
|
|
ep = ep->ex_next;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (!xdr_bool(xdrsp, &false))
|
|
|
|
return (0);
|
|
|
|
return (1);
|
|
|
|
errout:
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Called from xdr_explist() to traverse the tree and export the
|
1998-07-13 18:24:24 +04:00
|
|
|
* directory paths. Assumes SIGHUP has already been masked.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
put_exlist(dp, xdrsp, adp, putdefp)
|
|
|
|
struct dirlist *dp;
|
|
|
|
XDR *xdrsp;
|
|
|
|
struct dirlist *adp;
|
|
|
|
int *putdefp;
|
|
|
|
{
|
|
|
|
struct grouplist *grp;
|
|
|
|
struct hostlist *hp;
|
|
|
|
int true = 1;
|
|
|
|
int false = 0;
|
|
|
|
int gotalldir = 0;
|
|
|
|
char *strp;
|
|
|
|
|
|
|
|
if (dp) {
|
|
|
|
if (put_exlist(dp->dp_left, xdrsp, adp, putdefp))
|
|
|
|
return (1);
|
|
|
|
if (!xdr_bool(xdrsp, &true))
|
|
|
|
return (1);
|
|
|
|
strp = dp->dp_dirp;
|
|
|
|
if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN))
|
|
|
|
return (1);
|
|
|
|
if (adp && !strcmp(dp->dp_dirp, adp->dp_dirp)) {
|
|
|
|
gotalldir = 1;
|
|
|
|
*putdefp = 1;
|
|
|
|
}
|
|
|
|
if ((dp->dp_flag & DP_DEFSET) == 0 &&
|
|
|
|
(gotalldir == 0 || (adp->dp_flag & DP_DEFSET) == 0)) {
|
|
|
|
hp = dp->dp_hosts;
|
|
|
|
while (hp) {
|
|
|
|
grp = hp->ht_grp;
|
|
|
|
if (grp->gr_type == GT_HOST) {
|
|
|
|
if (!xdr_bool(xdrsp, &true))
|
|
|
|
return (1);
|
2000-06-09 04:03:31 +04:00
|
|
|
strp =
|
|
|
|
grp->gr_ptr.gt_addrinfo->ai_canonname;
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!xdr_string(xdrsp, &strp,
|
|
|
|
RPCMNT_NAMELEN))
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
} else if (grp->gr_type == GT_NET) {
|
|
|
|
if (!xdr_bool(xdrsp, &true))
|
|
|
|
return (1);
|
|
|
|
strp = grp->gr_ptr.gt_net.nt_name;
|
1998-10-29 15:57:02 +03:00
|
|
|
if (!xdr_string(xdrsp, &strp,
|
|
|
|
RPCMNT_NAMELEN))
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
hp = hp->ht_next;
|
1998-10-29 15:57:02 +03:00
|
|
|
if (gotalldir && hp == NULL) {
|
1994-06-08 23:27:32 +04:00
|
|
|
hp = adp->dp_hosts;
|
|
|
|
gotalldir = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!xdr_bool(xdrsp, &false))
|
|
|
|
return (1);
|
|
|
|
if (put_exlist(dp->dp_right, xdrsp, adp, putdefp))
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
|
|
|
parse_host_netgroup(line, lineno, ep, tgrp, cp, has_host, grp)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
|
|
|
struct exportlist *ep;
|
|
|
|
struct grouplist *tgrp;
|
|
|
|
char *cp;
|
|
|
|
int *has_host;
|
|
|
|
struct grouplist **grp;
|
1998-10-29 03:12:11 +03:00
|
|
|
{
|
1998-10-29 15:57:02 +03:00
|
|
|
const char *hst, *usr, *dom;
|
|
|
|
int netgrp;
|
|
|
|
|
|
|
|
if (ep == NULL) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: No current export",
|
|
|
|
line, (unsigned long)lineno);
|
|
|
|
return 0;
|
1998-10-29 15:57:02 +03:00
|
|
|
}
|
|
|
|
setnetgrent(cp);
|
|
|
|
netgrp = getnetgrent(&hst, &usr, &dom);
|
|
|
|
do {
|
|
|
|
if (*has_host) {
|
|
|
|
(*grp)->gr_next = get_grp();
|
|
|
|
*grp = (*grp)->gr_next;
|
|
|
|
}
|
|
|
|
if (netgrp) {
|
1999-01-12 18:11:53 +03:00
|
|
|
if (hst == NULL) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: No host in netgroup %s",
|
|
|
|
line, (unsigned long)lineno, cp);
|
|
|
|
goto bad;
|
1998-10-29 15:57:02 +03:00
|
|
|
}
|
1999-01-12 18:11:53 +03:00
|
|
|
if (get_host(line, lineno, hst, *grp))
|
|
|
|
goto bad;
|
|
|
|
} else if (get_host(line, lineno, cp, *grp))
|
|
|
|
goto bad;
|
1998-10-29 15:57:02 +03:00
|
|
|
*has_host = TRUE;
|
|
|
|
} while (netgrp && getnetgrent(&hst, &usr, &dom));
|
|
|
|
|
|
|
|
endnetgrent();
|
|
|
|
return 1;
|
1999-01-12 18:11:53 +03:00
|
|
|
bad:
|
|
|
|
endnetgrent();
|
|
|
|
return 0;
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-11-01 21:30:26 +03:00
|
|
|
parse_directory(line, lineno, tgrp, got_nondir, cp, ep, fsp)
|
1998-10-29 15:57:02 +03:00
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
|
|
|
struct grouplist *tgrp;
|
|
|
|
int got_nondir;
|
|
|
|
char *cp;
|
|
|
|
struct exportlist **ep;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct statvfs *fsp;
|
1998-10-29 15:57:02 +03:00
|
|
|
{
|
1999-01-12 18:11:53 +03:00
|
|
|
if (!check_dirpath(line, lineno, cp))
|
|
|
|
return 0;
|
|
|
|
|
2004-04-21 05:05:31 +04:00
|
|
|
if (statvfs(cp, fsp) == -1) {
|
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: statvfs for `%s' failed: %m",
|
1999-01-12 18:11:53 +03:00
|
|
|
line, (unsigned long)lineno, cp);
|
1998-10-29 15:57:02 +03:00
|
|
|
return 0;
|
|
|
|
}
|
1999-01-12 18:11:53 +03:00
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
if (got_nondir) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Directories must precede files",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (*ep) {
|
2004-04-21 05:05:31 +04:00
|
|
|
if ((*ep)->ex_fs.__fsid_val[0] != fsp->f_fsidx.__fsid_val[0] ||
|
|
|
|
(*ep)->ex_fs.__fsid_val[1] != fsp->f_fsidx.__fsid_val[1]) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: filesystem ids disagree",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* See if this directory is already
|
|
|
|
* in the list.
|
|
|
|
*/
|
2004-04-21 05:05:31 +04:00
|
|
|
*ep = ex_search(&fsp->f_fsidx);
|
1998-10-29 15:57:02 +03:00
|
|
|
if (*ep == NULL) {
|
|
|
|
*ep = get_exp();
|
2004-04-21 05:05:31 +04:00
|
|
|
(*ep)->ex_fs = fsp->f_fsidx;
|
1998-11-01 21:30:26 +03:00
|
|
|
(*ep)->ex_fsdir = estrdup(fsp->f_mntonname);
|
1998-10-29 15:57:02 +03:00
|
|
|
if (debug)
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"Making new ep fs=0x%x,0x%x\n",
|
2004-04-21 05:05:31 +04:00
|
|
|
fsp->f_fsidx.__fsid_val[0], fsp->f_fsidx.__fsid_val[1]);
|
1998-10-29 15:57:02 +03:00
|
|
|
} else {
|
|
|
|
if (debug)
|
|
|
|
(void)fprintf(stderr,
|
1998-11-01 21:30:26 +03:00
|
|
|
"Found ep fs=0x%x,0x%x\n",
|
2004-04-21 05:05:31 +04:00
|
|
|
fsp->f_fsidx.__fsid_val[0], fsp->f_fsidx.__fsid_val[1]);
|
1998-10-29 15:57:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
1998-10-29 03:12:11 +03:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the export list
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
/* ARGSUSED */
|
1993-03-21 12:45:37 +03:00
|
|
|
void
|
1998-10-07 18:50:35 +04:00
|
|
|
get_exportlist(n)
|
|
|
|
int n;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct exportlist *ep, *ep2;
|
|
|
|
struct grouplist *grp, *tgrp;
|
|
|
|
struct exportlist **epp;
|
|
|
|
struct dirlist *dirhead;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct statvfs fsb, *fsp;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct addrinfo *ai;
|
2001-11-30 00:23:38 +03:00
|
|
|
struct uucred anon;
|
1997-08-28 12:09:53 +04:00
|
|
|
char *cp, *endcp, *dirp, savedc;
|
1998-10-29 15:57:02 +03:00
|
|
|
int has_host, exflags, got_nondir, dirplen, num, i;
|
|
|
|
FILE *exp_file;
|
|
|
|
char *line;
|
1998-10-29 17:13:27 +03:00
|
|
|
size_t lineno = 0, len;
|
1998-10-29 15:57:02 +03:00
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* First, get rid of the old list
|
|
|
|
*/
|
1994-06-08 23:27:32 +04:00
|
|
|
ep = exphead;
|
|
|
|
while (ep) {
|
1993-03-21 12:45:37 +03:00
|
|
|
ep2 = ep;
|
|
|
|
ep = ep->ex_next;
|
|
|
|
free_exp(ep2);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
exphead = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1997-08-28 12:09:53 +04:00
|
|
|
dirp = NULL;
|
|
|
|
dirplen = 0;
|
1994-06-08 23:27:32 +04:00
|
|
|
grp = grphead;
|
|
|
|
while (grp) {
|
|
|
|
tgrp = grp;
|
|
|
|
grp = grp->gr_next;
|
|
|
|
free_grp(tgrp);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
grphead = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
/*
|
2000-02-16 07:08:40 +03:00
|
|
|
* And delete exports that are in the kernel for all local
|
|
|
|
* file systems.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
|
|
|
num = getmntinfo(&fsp, MNT_NOWAIT);
|
2000-02-16 07:08:40 +03:00
|
|
|
for (i = 0; i < num; i++) {
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
struct mountd_exports_list mel;
|
|
|
|
|
|
|
|
/* Delete all entries from the export list. */
|
|
|
|
mel.mel_path = fsp->f_mntonname;
|
|
|
|
mel.mel_nexports = 0;
|
2005-12-04 21:01:53 +03:00
|
|
|
if (nfssvc(NFSSVC_SETEXPORTSLIST, &mel) == -1 &&
|
|
|
|
errno != EOPNOTSUPP)
|
|
|
|
syslog(LOG_ERR, "Can't delete exports for %s (%m)",
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
fsp->f_mntonname);
|
|
|
|
|
2000-02-16 07:08:40 +03:00
|
|
|
fsp++;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read in the exports file and build the list, calling
|
1994-06-08 23:27:32 +04:00
|
|
|
* mount() as we go along to push the export rules into the kernel.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-06-08 23:27:32 +04:00
|
|
|
if ((exp_file = fopen(exname, "r")) == NULL) {
|
2005-01-14 19:16:28 +03:00
|
|
|
/*
|
|
|
|
* Don't exit here; we can still reload the config
|
|
|
|
* after a SIGHUP.
|
|
|
|
*/
|
|
|
|
if (debug)
|
|
|
|
(void)fprintf(stderr, "Can't open %s: %s\n", exname,
|
|
|
|
strerror(errno));
|
|
|
|
return;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
dirhead = NULL;
|
|
|
|
while ((line = fparseln(exp_file, &len, &lineno, NULL, 0)) != NULL) {
|
1994-06-08 23:27:32 +04:00
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr, "Got line %s\n", line);
|
1993-03-21 12:45:37 +03:00
|
|
|
cp = line;
|
|
|
|
nextfield(&cp, &endcp);
|
1998-11-07 21:31:36 +03:00
|
|
|
if (cp == endcp)
|
2000-07-19 12:41:13 +04:00
|
|
|
goto nextline; /* skip empty line */
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-06-08 23:27:32 +04:00
|
|
|
* Set defaults.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-06-08 23:27:32 +04:00
|
|
|
has_host = FALSE;
|
|
|
|
anon = def_anon;
|
|
|
|
exflags = MNT_EXPORTED;
|
|
|
|
got_nondir = 0;
|
|
|
|
opt_flags = 0;
|
1998-10-29 15:57:02 +03:00
|
|
|
ep = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-01-14 19:12:46 +03:00
|
|
|
if (noprivports) {
|
|
|
|
opt_flags |= OP_NORESMNT | OP_NORESPORT;
|
|
|
|
exflags |= MNT_EXNORESPORT;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Create new exports list entry
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
len = endcp - cp;
|
1994-06-08 23:27:32 +04:00
|
|
|
tgrp = grp = get_grp();
|
1993-03-21 12:45:37 +03:00
|
|
|
while (len > 0) {
|
1994-06-08 23:27:32 +04:00
|
|
|
if (len > RPCMNT_NAMELEN) {
|
1999-01-12 18:11:53 +03:00
|
|
|
*endcp = '\0';
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: name `%s' is too long",
|
|
|
|
line, (unsigned long)lineno, cp);
|
|
|
|
goto badline;
|
1998-10-29 15:57:02 +03:00
|
|
|
}
|
|
|
|
switch (*cp) {
|
|
|
|
case '-':
|
|
|
|
/*
|
|
|
|
* Option
|
|
|
|
*/
|
|
|
|
if (ep == NULL) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: No current export list",
|
|
|
|
line, (unsigned long)lineno);
|
|
|
|
goto badline;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
if (debug)
|
|
|
|
(void)fprintf(stderr, "doing opt %s\n",
|
|
|
|
cp);
|
|
|
|
got_nondir = 1;
|
1999-01-12 18:11:53 +03:00
|
|
|
if (do_opt(line, lineno, &cp, &endcp, ep, grp,
|
|
|
|
&has_host, &exflags, &anon))
|
|
|
|
goto badline;
|
1998-10-29 15:57:02 +03:00
|
|
|
break;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
case '/':
|
|
|
|
/*
|
|
|
|
* Directory
|
|
|
|
*/
|
|
|
|
savedc = *endcp;
|
|
|
|
*endcp = '\0';
|
|
|
|
|
|
|
|
if (!parse_directory(line, lineno, tgrp,
|
1998-11-01 21:30:26 +03:00
|
|
|
got_nondir, cp, &ep, &fsb))
|
1999-01-12 18:11:53 +03:00
|
|
|
goto badline;
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Add dirpath to export mount point.
|
|
|
|
*/
|
|
|
|
dirp = add_expdir(&dirhead, cp, len);
|
|
|
|
dirplen = len;
|
1998-10-29 15:57:02 +03:00
|
|
|
|
|
|
|
*endcp = savedc;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* Host or netgroup.
|
|
|
|
*/
|
|
|
|
savedc = *endcp;
|
|
|
|
*endcp = '\0';
|
|
|
|
|
|
|
|
if (!parse_host_netgroup(line, lineno, ep,
|
|
|
|
tgrp, cp, &has_host, &grp))
|
1999-01-12 18:11:53 +03:00
|
|
|
goto badline;
|
1998-10-29 15:57:02 +03:00
|
|
|
|
|
|
|
got_nondir = 1;
|
|
|
|
|
|
|
|
*endcp = savedc;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
cp = endcp;
|
|
|
|
nextfield(&cp, &endcp);
|
|
|
|
len = endcp - cp;
|
|
|
|
}
|
1999-01-12 18:11:53 +03:00
|
|
|
if (check_options(line, lineno, dirhead))
|
|
|
|
goto badline;
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
if (!has_host) {
|
|
|
|
grp->gr_type = GT_HOST;
|
|
|
|
if (debug)
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(stderr,
|
|
|
|
"Adding a default entry\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
/* add a default group and make the grp list NULL */
|
2000-06-09 04:03:31 +04:00
|
|
|
ai = emalloc(sizeof(struct addrinfo));
|
|
|
|
ai->ai_flags = 0;
|
|
|
|
ai->ai_family = AF_INET; /* XXXX */
|
|
|
|
ai->ai_socktype = SOCK_DGRAM;
|
|
|
|
/* setting the length to 0 will match anything */
|
|
|
|
ai->ai_addrlen = 0;
|
|
|
|
ai->ai_flags = AI_CANONNAME;
|
|
|
|
ai->ai_canonname = estrdup("Default");
|
|
|
|
ai->ai_addr = NULL;
|
|
|
|
ai->ai_next = NULL;
|
|
|
|
grp->gr_ptr.gt_addrinfo = ai;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
} else if ((opt_flags & OP_NET) && tgrp->gr_next) {
|
1998-10-29 15:57:02 +03:00
|
|
|
/*
|
|
|
|
* Don't allow a network export coincide with a list of
|
|
|
|
* host(s) on the same line.
|
|
|
|
*/
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Mixed exporting of networks and hosts is disallowed",
|
|
|
|
line, (unsigned long)lineno);
|
|
|
|
goto badline;
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Loop through hosts, pushing the exports into the kernel.
|
|
|
|
* After loop, tgrp points to the start of the list and
|
|
|
|
* grp points to the last entry in the list.
|
|
|
|
*/
|
|
|
|
grp = tgrp;
|
|
|
|
do {
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
if (do_nfssvc(line, lineno, ep, grp, exflags, &anon,
|
1999-01-12 18:11:53 +03:00
|
|
|
dirp, dirplen, &fsb))
|
|
|
|
goto badline;
|
1994-06-08 23:27:32 +04:00
|
|
|
} while (grp->gr_next && (grp = grp->gr_next));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Success. Update the data structures.
|
|
|
|
*/
|
|
|
|
if (has_host) {
|
1996-02-18 14:57:50 +03:00
|
|
|
hang_dirp(dirhead, tgrp, ep, opt_flags);
|
1994-06-08 23:27:32 +04:00
|
|
|
grp->gr_next = grphead;
|
|
|
|
grphead = tgrp;
|
|
|
|
} else {
|
1998-10-29 15:57:02 +03:00
|
|
|
hang_dirp(dirhead, NULL, ep, opt_flags);
|
2006-05-25 04:33:24 +04:00
|
|
|
free_grp(tgrp);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
2006-05-25 04:33:24 +04:00
|
|
|
tgrp = NULL;
|
1998-10-29 15:57:02 +03:00
|
|
|
dirhead = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
if ((ep->ex_flag & EX_LINKED) == 0) {
|
|
|
|
ep2 = exphead;
|
|
|
|
epp = &exphead;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert in the list in alphabetical order.
|
|
|
|
*/
|
|
|
|
while (ep2 && strcmp(ep2->ex_fsdir, ep->ex_fsdir) < 0) {
|
|
|
|
epp = &ep2->ex_next;
|
|
|
|
ep2 = ep2->ex_next;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
if (ep2)
|
|
|
|
ep->ex_next = ep2;
|
|
|
|
*epp = ep;
|
|
|
|
ep->ex_flag |= EX_LINKED;
|
|
|
|
}
|
1999-01-12 18:11:53 +03:00
|
|
|
goto nextline;
|
|
|
|
badline:
|
|
|
|
free_exp_grp(ep, grp);
|
1994-06-08 23:27:32 +04:00
|
|
|
nextline:
|
|
|
|
if (dirhead) {
|
|
|
|
free_dir(dirhead);
|
1998-10-29 15:57:02 +03:00
|
|
|
dirhead = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
1998-11-02 18:38:26 +03:00
|
|
|
free(line);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fclose(exp_file);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate an export list element
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct exportlist *
|
1994-06-08 23:27:32 +04:00
|
|
|
get_exp()
|
|
|
|
{
|
|
|
|
struct exportlist *ep;
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
ep = emalloc(sizeof(struct exportlist));
|
|
|
|
(void)memset(ep, 0, sizeof(struct exportlist));
|
1994-06-08 23:27:32 +04:00
|
|
|
return (ep);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a group list element
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct grouplist *
|
1994-06-08 23:27:32 +04:00
|
|
|
get_grp()
|
|
|
|
{
|
|
|
|
struct grouplist *gp;
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
gp = emalloc(sizeof(struct grouplist));
|
|
|
|
(void)memset(gp, 0, sizeof(struct grouplist));
|
1994-06-08 23:27:32 +04:00
|
|
|
return (gp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clean up upon an error in get_exportlist().
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1999-01-12 18:11:53 +03:00
|
|
|
free_exp_grp(ep, grp)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct exportlist *ep;
|
|
|
|
struct grouplist *grp;
|
|
|
|
{
|
|
|
|
struct grouplist *tgrp;
|
|
|
|
|
|
|
|
if (ep && (ep->ex_flag & EX_LINKED) == 0)
|
|
|
|
free_exp(ep);
|
|
|
|
while (grp) {
|
|
|
|
tgrp = grp;
|
|
|
|
grp = grp->gr_next;
|
|
|
|
free_grp(tgrp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search the export list for a matching fs.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct exportlist *
|
1994-06-08 23:27:32 +04:00
|
|
|
ex_search(fsid)
|
|
|
|
fsid_t *fsid;
|
|
|
|
{
|
|
|
|
struct exportlist *ep;
|
|
|
|
|
|
|
|
ep = exphead;
|
|
|
|
while (ep) {
|
2004-04-21 05:05:31 +04:00
|
|
|
if (ep->ex_fs.__fsid_val[0] == fsid->__fsid_val[0] &&
|
|
|
|
ep->ex_fs.__fsid_val[1] == fsid->__fsid_val[1])
|
1994-06-08 23:27:32 +04:00
|
|
|
return (ep);
|
|
|
|
ep = ep->ex_next;
|
|
|
|
}
|
|
|
|
return (ep);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a directory path to the list.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static char *
|
1994-06-08 23:27:32 +04:00
|
|
|
add_expdir(dpp, cp, len)
|
|
|
|
struct dirlist **dpp;
|
|
|
|
char *cp;
|
|
|
|
int len;
|
|
|
|
{
|
|
|
|
struct dirlist *dp;
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
dp = emalloc(sizeof(struct dirlist) + len);
|
1994-06-08 23:27:32 +04:00
|
|
|
dp->dp_left = *dpp;
|
1998-10-29 15:57:02 +03:00
|
|
|
dp->dp_right = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
dp->dp_flag = 0;
|
1998-10-29 15:57:02 +03:00
|
|
|
dp->dp_hosts = NULL;
|
|
|
|
(void)strcpy(dp->dp_dirp, cp);
|
1994-06-08 23:27:32 +04:00
|
|
|
*dpp = dp;
|
|
|
|
return (dp->dp_dirp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hang the dir list element off the dirpath binary tree as required
|
|
|
|
* and update the entry for host.
|
|
|
|
*/
|
|
|
|
void
|
1996-02-18 14:57:50 +03:00
|
|
|
hang_dirp(dp, grp, ep, flags)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist *dp;
|
|
|
|
struct grouplist *grp;
|
|
|
|
struct exportlist *ep;
|
1996-02-18 14:57:50 +03:00
|
|
|
int flags;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
struct hostlist *hp;
|
|
|
|
struct dirlist *dp2;
|
|
|
|
|
1996-02-18 14:57:50 +03:00
|
|
|
if (flags & OP_ALLDIRS) {
|
1994-06-08 23:27:32 +04:00
|
|
|
if (ep->ex_defdir)
|
1998-10-29 15:57:02 +03:00
|
|
|
free(dp);
|
1994-06-08 23:27:32 +04:00
|
|
|
else
|
|
|
|
ep->ex_defdir = dp;
|
1998-10-29 15:57:02 +03:00
|
|
|
if (grp == NULL) {
|
1994-06-08 23:27:32 +04:00
|
|
|
ep->ex_defdir->dp_flag |= DP_DEFSET;
|
1996-02-18 14:57:50 +03:00
|
|
|
if (flags & OP_KERB)
|
|
|
|
ep->ex_defdir->dp_flag |= DP_KERB;
|
1997-03-31 00:53:31 +04:00
|
|
|
if (flags & OP_NORESMNT)
|
|
|
|
ep->ex_defdir->dp_flag |= DP_NORESMNT;
|
1998-10-29 15:57:02 +03:00
|
|
|
} else
|
|
|
|
while (grp) {
|
|
|
|
hp = get_ht();
|
|
|
|
if (flags & OP_KERB)
|
|
|
|
hp->ht_flag |= DP_KERB;
|
|
|
|
if (flags & OP_NORESMNT)
|
|
|
|
hp->ht_flag |= DP_NORESMNT;
|
|
|
|
hp->ht_grp = grp;
|
|
|
|
hp->ht_next = ep->ex_defdir->dp_hosts;
|
|
|
|
ep->ex_defdir->dp_hosts = hp;
|
|
|
|
grp = grp->gr_next;
|
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
/*
|
2003-01-06 15:29:48 +03:00
|
|
|
* Loop through the directories adding them to the tree.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
|
|
|
while (dp) {
|
|
|
|
dp2 = dp->dp_left;
|
1996-02-18 14:57:50 +03:00
|
|
|
add_dlist(&ep->ex_dirl, dp, grp, flags);
|
1994-06-08 23:27:32 +04:00
|
|
|
dp = dp2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Traverse the binary tree either updating a node that is already there
|
|
|
|
* for the new directory or adding the new node.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1996-02-18 14:57:50 +03:00
|
|
|
add_dlist(dpp, newdp, grp, flags)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist **dpp;
|
|
|
|
struct dirlist *newdp;
|
|
|
|
struct grouplist *grp;
|
1996-02-18 14:57:50 +03:00
|
|
|
int flags;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
struct dirlist *dp;
|
|
|
|
struct hostlist *hp;
|
|
|
|
int cmp;
|
|
|
|
|
|
|
|
dp = *dpp;
|
|
|
|
if (dp) {
|
|
|
|
cmp = strcmp(dp->dp_dirp, newdp->dp_dirp);
|
|
|
|
if (cmp > 0) {
|
1996-02-18 14:57:50 +03:00
|
|
|
add_dlist(&dp->dp_left, newdp, grp, flags);
|
1994-06-08 23:27:32 +04:00
|
|
|
return;
|
|
|
|
} else if (cmp < 0) {
|
1996-02-18 14:57:50 +03:00
|
|
|
add_dlist(&dp->dp_right, newdp, grp, flags);
|
1994-06-08 23:27:32 +04:00
|
|
|
return;
|
|
|
|
} else
|
1998-10-29 15:57:02 +03:00
|
|
|
free(newdp);
|
1994-06-08 23:27:32 +04:00
|
|
|
} else {
|
|
|
|
dp = newdp;
|
1998-10-29 15:57:02 +03:00
|
|
|
dp->dp_left = NULL;
|
1994-06-08 23:27:32 +04:00
|
|
|
*dpp = dp;
|
|
|
|
}
|
|
|
|
if (grp) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hang all of the host(s) off of the directory point.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
hp = get_ht();
|
1996-02-18 14:57:50 +03:00
|
|
|
if (flags & OP_KERB)
|
|
|
|
hp->ht_flag |= DP_KERB;
|
1997-03-31 00:53:31 +04:00
|
|
|
if (flags & OP_NORESMNT)
|
|
|
|
hp->ht_flag |= DP_NORESMNT;
|
1994-06-08 23:27:32 +04:00
|
|
|
hp->ht_grp = grp;
|
|
|
|
hp->ht_next = dp->dp_hosts;
|
|
|
|
dp->dp_hosts = hp;
|
|
|
|
grp = grp->gr_next;
|
|
|
|
} while (grp);
|
1996-02-18 14:57:50 +03:00
|
|
|
} else {
|
1994-06-08 23:27:32 +04:00
|
|
|
dp->dp_flag |= DP_DEFSET;
|
1996-02-18 14:57:50 +03:00
|
|
|
if (flags & OP_KERB)
|
|
|
|
dp->dp_flag |= DP_KERB;
|
1997-03-31 00:53:31 +04:00
|
|
|
if (flags & OP_NORESMNT)
|
|
|
|
dp->dp_flag |= DP_NORESMNT;
|
1996-02-18 14:57:50 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search for a dirpath on the export point.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct dirlist *
|
1998-10-07 18:50:35 +04:00
|
|
|
dirp_search(dp, dirp)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist *dp;
|
1998-10-07 18:50:35 +04:00
|
|
|
char *dirp;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
int cmp;
|
|
|
|
|
|
|
|
if (dp) {
|
1998-10-07 18:50:35 +04:00
|
|
|
cmp = strcmp(dp->dp_dirp, dirp);
|
1994-06-08 23:27:32 +04:00
|
|
|
if (cmp > 0)
|
1998-10-07 18:50:35 +04:00
|
|
|
return (dirp_search(dp->dp_left, dirp));
|
1994-06-08 23:27:32 +04:00
|
|
|
else if (cmp < 0)
|
1998-10-07 18:50:35 +04:00
|
|
|
return (dirp_search(dp->dp_right, dirp));
|
1994-06-08 23:27:32 +04:00
|
|
|
else
|
|
|
|
return (dp);
|
|
|
|
}
|
|
|
|
return (dp);
|
|
|
|
}
|
|
|
|
|
2000-06-09 04:03:31 +04:00
|
|
|
/*
|
|
|
|
* Some helper functions for netmasks. They all assume masks in network
|
|
|
|
* order (big endian).
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
bitcmp(void *dst, void *src, int bitlen)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u_int8_t *p1 = dst, *p2 = src;
|
|
|
|
u_int8_t bitmask;
|
|
|
|
int bytelen, bitsleft;
|
|
|
|
|
|
|
|
bytelen = bitlen / 8;
|
|
|
|
bitsleft = bitlen % 8;
|
|
|
|
|
|
|
|
if (debug) {
|
|
|
|
printf("comparing:\n");
|
|
|
|
for (i = 0; i < (bitsleft ? bytelen + 1 : bytelen); i++)
|
|
|
|
printf("%02x", p1[i]);
|
|
|
|
printf("\n");
|
|
|
|
for (i = 0; i < (bitsleft ? bytelen + 1 : bytelen); i++)
|
|
|
|
printf("%02x", p2[i]);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < bytelen; i++) {
|
|
|
|
if (*p1 != *p2)
|
|
|
|
return 1;
|
|
|
|
p1++;
|
|
|
|
p2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < bitsleft; i++) {
|
|
|
|
bitmask = 1 << (7 - i);
|
|
|
|
if ((*p1 & bitmask) != (*p2 & bitmask))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
netpartcmp(struct sockaddr *s1, struct sockaddr *s2, int bitlen)
|
|
|
|
{
|
|
|
|
void *src, *dst;
|
|
|
|
|
|
|
|
if (s1->sa_family != s2->sa_family)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
switch (s1->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
src = &((struct sockaddr_in *)s1)->sin_addr;
|
|
|
|
dst = &((struct sockaddr_in *)s2)->sin_addr;
|
2000-06-10 11:04:13 +04:00
|
|
|
if (bitlen > sizeof(((struct sockaddr_in *)s1)->sin_addr) * 8)
|
|
|
|
return 1;
|
2000-06-09 04:03:31 +04:00
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
src = &((struct sockaddr_in6 *)s1)->sin6_addr;
|
|
|
|
dst = &((struct sockaddr_in6 *)s2)->sin6_addr;
|
2000-06-10 12:01:07 +04:00
|
|
|
if (((struct sockaddr_in6 *)s1)->sin6_scope_id !=
|
|
|
|
((struct sockaddr_in6 *)s2)->sin6_scope_id)
|
|
|
|
return 1;
|
2000-06-10 11:04:13 +04:00
|
|
|
if (bitlen > sizeof(((struct sockaddr_in6 *)s1)->sin6_addr) * 8)
|
|
|
|
return 1;
|
2000-06-09 04:03:31 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitcmp(src, dst, bitlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
allones(struct sockaddr_storage *ssp, int bitlen)
|
|
|
|
{
|
|
|
|
u_int8_t *p;
|
|
|
|
int bytelen, bitsleft, i;
|
|
|
|
int zerolen;
|
|
|
|
|
|
|
|
switch (ssp->ss_family) {
|
|
|
|
case AF_INET:
|
|
|
|
p = (u_int8_t *)&((struct sockaddr_in *)ssp)->sin_addr;
|
|
|
|
zerolen = sizeof (((struct sockaddr_in *)ssp)->sin_addr);
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
p = (u_int8_t *)&((struct sockaddr_in6 *)ssp)->sin6_addr;
|
|
|
|
zerolen = sizeof (((struct sockaddr_in6 *)ssp)->sin6_addr);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(p, 0, zerolen);
|
|
|
|
|
|
|
|
bytelen = bitlen / 8;
|
|
|
|
bitsleft = bitlen % 8;
|
|
|
|
|
2000-06-10 08:40:17 +04:00
|
|
|
if (bytelen > zerolen)
|
|
|
|
return -1;
|
|
|
|
|
2000-06-09 04:03:31 +04:00
|
|
|
for (i = 0; i < bytelen; i++)
|
|
|
|
*p++ = 0xff;
|
|
|
|
|
|
|
|
for (i = 0; i < bitsleft; i++)
|
|
|
|
*p |= 1 << (7 - i);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
countones(struct sockaddr *sa)
|
|
|
|
{
|
|
|
|
void *mask;
|
|
|
|
int i, bits = 0, bytelen;
|
|
|
|
u_int8_t *p;
|
|
|
|
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
mask = (u_int8_t *)&((struct sockaddr_in *)sa)->sin_addr;
|
|
|
|
bytelen = 4;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
mask = (u_int8_t *)&((struct sockaddr_in6 *)sa)->sin6_addr;
|
|
|
|
bytelen = 16;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = mask;
|
|
|
|
|
|
|
|
for (i = 0; i < bytelen; i++, p++) {
|
|
|
|
if (*p != 0xff) {
|
|
|
|
for (bits = 0; bits < 8; bits++) {
|
|
|
|
if (!(*p & (1 << (7 - bits))))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (i * 8 + bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sacmp(struct sockaddr *sa1, struct sockaddr *sa2)
|
|
|
|
{
|
|
|
|
void *p1, *p2;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (sa1->sa_family != sa2->sa_family)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
switch (sa1->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
p1 = &((struct sockaddr_in *)sa1)->sin_addr;
|
|
|
|
p2 = &((struct sockaddr_in *)sa2)->sin_addr;
|
|
|
|
len = 4;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
p1 = &((struct sockaddr_in6 *)sa1)->sin6_addr;
|
|
|
|
p2 = &((struct sockaddr_in6 *)sa2)->sin6_addr;
|
|
|
|
len = 16;
|
2000-06-10 12:01:07 +04:00
|
|
|
if (((struct sockaddr_in6 *)sa1)->sin6_scope_id !=
|
|
|
|
((struct sockaddr_in6 *)sa2)->sin6_scope_id)
|
|
|
|
return 1;
|
2000-06-09 04:03:31 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return memcmp(p1, p2, len);
|
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Scan for a host match in a directory tree.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1996-02-18 14:57:50 +03:00
|
|
|
chk_host(dp, saddr, defsetp, hostsetp)
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist *dp;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct sockaddr *saddr;
|
1994-06-08 23:27:32 +04:00
|
|
|
int *defsetp;
|
1996-02-18 14:57:50 +03:00
|
|
|
int *hostsetp;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
struct hostlist *hp;
|
|
|
|
struct grouplist *grp;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct addrinfo *ai;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
if (dp) {
|
|
|
|
if (dp->dp_flag & DP_DEFSET)
|
1996-02-18 14:57:50 +03:00
|
|
|
*defsetp = dp->dp_flag;
|
1994-06-08 23:27:32 +04:00
|
|
|
hp = dp->dp_hosts;
|
|
|
|
while (hp) {
|
|
|
|
grp = hp->ht_grp;
|
|
|
|
switch (grp->gr_type) {
|
|
|
|
case GT_HOST:
|
2000-06-09 04:03:31 +04:00
|
|
|
ai = grp->gr_ptr.gt_addrinfo;
|
|
|
|
for (; ai; ai = ai->ai_next) {
|
|
|
|
if (!sacmp(ai->ai_addr, saddr)) {
|
|
|
|
*hostsetp =
|
|
|
|
(hp->ht_flag | DP_HOSTSET);
|
|
|
|
return (1);
|
|
|
|
}
|
1996-02-18 14:57:50 +03:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
break;
|
1994-06-08 23:27:32 +04:00
|
|
|
case GT_NET:
|
2000-06-09 04:03:31 +04:00
|
|
|
if (!netpartcmp(saddr,
|
|
|
|
(struct sockaddr *)
|
|
|
|
&grp->gr_ptr.gt_net.nt_net,
|
|
|
|
grp->gr_ptr.gt_net.nt_len)) {
|
1998-10-29 15:57:02 +03:00
|
|
|
*hostsetp = (hp->ht_flag | DP_HOSTSET);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
break;
|
1994-06-08 23:27:32 +04:00
|
|
|
};
|
|
|
|
hp = hp->ht_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan tree for a host that matches the address.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1994-06-08 23:27:32 +04:00
|
|
|
scan_tree(dp, saddr)
|
|
|
|
struct dirlist *dp;
|
2000-06-09 04:03:31 +04:00
|
|
|
struct sockaddr *saddr;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
1996-02-18 14:57:50 +03:00
|
|
|
int defset, hostset;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
if (dp) {
|
|
|
|
if (scan_tree(dp->dp_left, saddr))
|
|
|
|
return (1);
|
1996-02-18 14:57:50 +03:00
|
|
|
if (chk_host(dp, saddr, &defset, &hostset))
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
if (scan_tree(dp->dp_right, saddr))
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Traverse the dirlist tree and free it up.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
free_dir(dp)
|
|
|
|
struct dirlist *dp;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (dp) {
|
|
|
|
free_dir(dp->dp_left);
|
|
|
|
free_dir(dp->dp_right);
|
|
|
|
free_host(dp->dp_hosts);
|
1998-10-29 15:57:02 +03:00
|
|
|
free(dp);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the option string and update fields.
|
|
|
|
* Option arguments may either be -<option>=<value> or
|
|
|
|
* -<option> <value>
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1999-01-12 18:11:53 +03:00
|
|
|
do_opt(line, lineno, cpp, endcpp, ep, grp, has_hostp, exflagsp, cr)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1994-06-08 23:27:32 +04:00
|
|
|
char **cpp, **endcpp;
|
|
|
|
struct exportlist *ep;
|
|
|
|
struct grouplist *grp;
|
|
|
|
int *has_hostp;
|
|
|
|
int *exflagsp;
|
2001-11-30 00:23:38 +03:00
|
|
|
struct uucred *cr;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
char *cpoptarg, *cpoptend;
|
2006-05-14 05:26:34 +04:00
|
|
|
char *cp, *cpopt, savedc, savedc2;
|
|
|
|
char *endcp = NULL; /* XXX: GCC */
|
1994-06-08 23:27:32 +04:00
|
|
|
int allflag, usedarg;
|
|
|
|
|
|
|
|
cpopt = *cpp;
|
|
|
|
cpopt++;
|
|
|
|
cp = *endcpp;
|
|
|
|
savedc = *cp;
|
|
|
|
*cp = '\0';
|
|
|
|
while (cpopt && *cpopt) {
|
|
|
|
allflag = 1;
|
|
|
|
usedarg = -2;
|
1997-08-28 12:09:53 +04:00
|
|
|
savedc2 = '\0';
|
|
|
|
if ((cpoptend = strchr(cpopt, ',')) != NULL) {
|
1994-06-08 23:27:32 +04:00
|
|
|
*cpoptend++ = '\0';
|
1997-08-28 12:09:53 +04:00
|
|
|
if ((cpoptarg = strchr(cpopt, '=')) != NULL)
|
1994-06-08 23:27:32 +04:00
|
|
|
*cpoptarg++ = '\0';
|
|
|
|
} else {
|
1997-08-28 12:09:53 +04:00
|
|
|
if ((cpoptarg = strchr(cpopt, '=')) != NULL)
|
1994-06-08 23:27:32 +04:00
|
|
|
*cpoptarg++ = '\0';
|
|
|
|
else {
|
1993-03-21 12:45:37 +03:00
|
|
|
*cp = savedc;
|
1994-06-08 23:27:32 +04:00
|
|
|
nextfield(&cp, &endcp);
|
|
|
|
**endcpp = '\0';
|
|
|
|
if (endcp > cp && *cp != '-') {
|
|
|
|
cpoptarg = cp;
|
|
|
|
savedc2 = *endcp;
|
|
|
|
*endcp = '\0';
|
|
|
|
usedarg = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(cpopt, "ro") || !strcmp(cpopt, "o")) {
|
|
|
|
*exflagsp |= MNT_EXRDONLY;
|
|
|
|
} else if (cpoptarg && (!strcmp(cpopt, "maproot") ||
|
|
|
|
!(allflag = strcmp(cpopt, "mapall")) ||
|
|
|
|
!strcmp(cpopt, "root") || !strcmp(cpopt, "r"))) {
|
|
|
|
usedarg++;
|
|
|
|
parsecred(cpoptarg, cr);
|
|
|
|
if (allflag == 0) {
|
|
|
|
*exflagsp |= MNT_EXPORTANON;
|
|
|
|
opt_flags |= OP_MAPALL;
|
|
|
|
} else
|
|
|
|
opt_flags |= OP_MAPROOT;
|
|
|
|
} else if (!strcmp(cpopt, "kerb") || !strcmp(cpopt, "k")) {
|
|
|
|
*exflagsp |= MNT_EXKERB;
|
|
|
|
opt_flags |= OP_KERB;
|
|
|
|
} else if (cpoptarg && (!strcmp(cpopt, "mask") ||
|
1998-10-29 15:57:02 +03:00
|
|
|
!strcmp(cpopt, "m"))) {
|
1994-06-08 23:27:32 +04:00
|
|
|
if (get_net(cpoptarg, &grp->gr_ptr.gt_net, 1)) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad mask: %s",
|
|
|
|
line, (unsigned long)lineno, cpoptarg);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
usedarg++;
|
|
|
|
opt_flags |= OP_MASK;
|
|
|
|
} else if (cpoptarg && (!strcmp(cpopt, "network") ||
|
1998-10-29 15:57:02 +03:00
|
|
|
!strcmp(cpopt, "n"))) {
|
2000-06-09 04:03:31 +04:00
|
|
|
if (strchr(cpoptarg, '/') != NULL) {
|
|
|
|
if (debug)
|
|
|
|
fprintf(stderr, "setting OP_MASKLEN\n");
|
|
|
|
opt_flags |= OP_MASKLEN;
|
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
if (grp->gr_type != GT_NULL) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Network/host conflict",
|
|
|
|
line, (unsigned long)lineno);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
} else if (get_net(cpoptarg, &grp->gr_ptr.gt_net, 0)) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad net: %s",
|
|
|
|
line, (unsigned long)lineno, cpoptarg);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
grp->gr_type = GT_NET;
|
|
|
|
*has_hostp = 1;
|
|
|
|
usedarg++;
|
|
|
|
opt_flags |= OP_NET;
|
|
|
|
} else if (!strcmp(cpopt, "alldirs")) {
|
|
|
|
opt_flags |= OP_ALLDIRS;
|
1997-03-31 00:53:31 +04:00
|
|
|
} else if (!strcmp(cpopt, "noresvmnt")) {
|
|
|
|
opt_flags |= OP_NORESMNT;
|
|
|
|
} else if (!strcmp(cpopt, "noresvport")) {
|
1997-03-23 23:58:14 +03:00
|
|
|
opt_flags |= OP_NORESPORT;
|
|
|
|
*exflagsp |= MNT_EXNORESPORT;
|
1997-06-25 03:50:57 +04:00
|
|
|
} else if (!strcmp(cpopt, "public")) {
|
1998-10-29 15:57:02 +03:00
|
|
|
*exflagsp |= (MNT_EXNORESPORT | MNT_EXPUBLIC);
|
1997-06-25 03:50:57 +04:00
|
|
|
opt_flags |= OP_NORESPORT;
|
|
|
|
} else if (!strcmp(cpopt, "webnfs")) {
|
1998-10-29 15:57:02 +03:00
|
|
|
*exflagsp |= (MNT_EXNORESPORT | MNT_EXPUBLIC |
|
|
|
|
MNT_EXRDONLY | MNT_EXPORTANON);
|
|
|
|
opt_flags |= (OP_MAPALL | OP_NORESPORT);
|
1997-06-25 03:50:57 +04:00
|
|
|
} else if (cpoptarg && !strcmp(cpopt, "index")) {
|
|
|
|
ep->ex_indexfile = strdup(cpoptarg);
|
1994-06-08 23:27:32 +04:00
|
|
|
#ifdef ISO
|
|
|
|
} else if (cpoptarg && !strcmp(cpopt, "iso")) {
|
1999-01-12 18:11:53 +03:00
|
|
|
if (get_isoaddr(line, lineno, cpoptarg, grp))
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
*has_hostp = 1;
|
|
|
|
usedarg++;
|
|
|
|
opt_flags |= OP_ISO;
|
|
|
|
#endif /* ISO */
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad opt %s",
|
|
|
|
line, (unsigned long)lineno, cpopt);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
if (usedarg >= 0) {
|
|
|
|
*endcp = savedc2;
|
|
|
|
**endcpp = savedc;
|
|
|
|
if (usedarg > 0) {
|
|
|
|
*cpp = cp;
|
|
|
|
*endcpp = endcp;
|
1993-09-09 20:34:33 +04:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
cpopt = cpoptend;
|
|
|
|
}
|
|
|
|
**endcpp = savedc;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Translate a character string to the corresponding list of network
|
|
|
|
* addresses for a hostname.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1999-01-12 18:11:53 +03:00
|
|
|
get_host(line, lineno, cp, grp)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1997-08-28 12:09:53 +04:00
|
|
|
const char *cp;
|
1994-06-08 23:27:32 +04:00
|
|
|
struct grouplist *grp;
|
|
|
|
{
|
2000-06-09 04:03:31 +04:00
|
|
|
struct addrinfo *ai, hints;
|
|
|
|
int ecode;
|
|
|
|
char host[NI_MAXHOST];
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1999-01-12 18:11:53 +03:00
|
|
|
if (grp->gr_type != GT_NULL) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad netgroup type for ip host %s",
|
|
|
|
line, (unsigned long)lineno, cp);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
1999-01-12 18:11:53 +03:00
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
memset(&hints, 0, sizeof hints);
|
|
|
|
hints.ai_flags = AI_CANONNAME;
|
|
|
|
hints.ai_protocol = IPPROTO_UDP;
|
|
|
|
ecode = getaddrinfo(cp, NULL, &hints, &ai);
|
|
|
|
if (ecode != 0) {
|
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: can't get address info for "
|
|
|
|
"host %s",
|
|
|
|
line, (long)lineno, cp);
|
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
grp->gr_type = GT_HOST;
|
2000-06-09 04:03:31 +04:00
|
|
|
grp->gr_ptr.gt_addrinfo = ai;
|
|
|
|
while (ai != NULL) {
|
|
|
|
if (ai->ai_canonname == NULL) {
|
2000-07-16 18:07:39 +04:00
|
|
|
if (getnameinfo(ai->ai_addr, ai->ai_addrlen, host,
|
|
|
|
sizeof host, NULL, 0, ninumeric) != 0)
|
|
|
|
strlcpy(host, "?", sizeof(host));
|
2000-06-09 04:03:31 +04:00
|
|
|
ai->ai_canonname = estrdup(host);
|
|
|
|
ai->ai_flags |= AI_CANONNAME;
|
|
|
|
} else
|
|
|
|
ai->ai_flags &= ~AI_CANONNAME;
|
|
|
|
if (debug)
|
|
|
|
(void)fprintf(stderr, "got host %s\n", ai->ai_canonname);
|
|
|
|
ai = ai->ai_next;
|
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free up an exports list component
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
free_exp(ep)
|
|
|
|
struct exportlist *ep;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ep->ex_defdir) {
|
|
|
|
free_host(ep->ex_defdir->dp_hosts);
|
1998-10-29 15:57:02 +03:00
|
|
|
free(ep->ex_defdir);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
if (ep->ex_fsdir)
|
|
|
|
free(ep->ex_fsdir);
|
1997-06-25 03:50:57 +04:00
|
|
|
if (ep->ex_indexfile)
|
|
|
|
free(ep->ex_indexfile);
|
1994-06-08 23:27:32 +04:00
|
|
|
free_dir(ep->ex_dirl);
|
1998-10-29 15:57:02 +03:00
|
|
|
free(ep);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free hosts.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
free_host(hp)
|
|
|
|
struct hostlist *hp;
|
|
|
|
{
|
|
|
|
struct hostlist *hp2;
|
|
|
|
|
|
|
|
while (hp) {
|
|
|
|
hp2 = hp;
|
|
|
|
hp = hp->ht_next;
|
1998-10-29 15:57:02 +03:00
|
|
|
free(hp2);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static struct hostlist *
|
1994-06-08 23:27:32 +04:00
|
|
|
get_ht()
|
|
|
|
{
|
|
|
|
struct hostlist *hp;
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
hp = emalloc(sizeof(struct hostlist));
|
|
|
|
hp->ht_next = NULL;
|
1996-02-18 14:57:50 +03:00
|
|
|
hp->ht_flag = 0;
|
1994-06-08 23:27:32 +04:00
|
|
|
return (hp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ISO
|
|
|
|
/*
|
|
|
|
* Translate an iso address.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1999-01-12 18:11:53 +03:00
|
|
|
get_isoaddr(line, lineno, cp, grp)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1994-06-08 23:27:32 +04:00
|
|
|
char *cp;
|
|
|
|
struct grouplist *grp;
|
|
|
|
{
|
|
|
|
struct iso_addr *isop;
|
|
|
|
struct sockaddr_iso *isoaddr;
|
|
|
|
|
1999-01-12 18:11:53 +03:00
|
|
|
if (grp->gr_type != GT_NULL) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad netgroup type for iso addr %s",
|
|
|
|
line, (unsigned long)lineno, cp);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
1999-01-12 18:11:53 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
if ((isop = iso_addr(cp)) == NULL) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad iso addr %s",
|
|
|
|
line, (unsigned long)lineno, cp);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
isoaddr = emalloc(sizeof(struct sockaddr_iso));
|
|
|
|
(void)memset(isoaddr, 0, sizeof(struct sockaddr_iso));
|
|
|
|
(void)memcpy(&isoaddr->siso_addr, isop, sizeof(struct iso_addr));
|
1994-09-23 18:26:58 +04:00
|
|
|
isoaddr->siso_len = sizeof(struct sockaddr_iso);
|
1994-06-08 23:27:32 +04:00
|
|
|
isoaddr->siso_family = AF_ISO;
|
|
|
|
grp->gr_type = GT_ISO;
|
|
|
|
grp->gr_ptr.gt_isoaddr = isoaddr;
|
|
|
|
return (0);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
#endif /* ISO */
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
/*
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
* Do the nfssvc syscall to push the export info into the kernel.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
do_nfssvc(line, lineno, ep, grp, exflags, anoncrp, dirp, dirplen, fsb)
|
1999-01-12 18:11:53 +03:00
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1994-06-08 23:27:32 +04:00
|
|
|
struct exportlist *ep;
|
|
|
|
struct grouplist *grp;
|
|
|
|
int exflags;
|
2001-11-30 00:23:38 +03:00
|
|
|
struct uucred *anoncrp;
|
1994-06-08 23:27:32 +04:00
|
|
|
char *dirp;
|
|
|
|
int dirplen;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct statvfs *fsb;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
2000-06-09 04:03:31 +04:00
|
|
|
struct sockaddr *addrp;
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
struct addrinfo *ai;
|
|
|
|
int addrlen;
|
2000-02-16 07:08:40 +03:00
|
|
|
int done;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
struct export_args export;
|
|
|
|
|
|
|
|
export.ex_flags = exflags;
|
|
|
|
export.ex_anon = *anoncrp;
|
|
|
|
export.ex_indexfile = ep->ex_indexfile;
|
2000-06-09 04:03:31 +04:00
|
|
|
if (grp->gr_type == GT_HOST) {
|
|
|
|
ai = grp->gr_ptr.gt_addrinfo;
|
|
|
|
addrp = ai->ai_addr;
|
|
|
|
addrlen = ai->ai_addrlen;
|
2005-06-02 09:58:24 +04:00
|
|
|
} else {
|
1998-10-29 15:57:02 +03:00
|
|
|
addrp = NULL;
|
2005-06-02 09:58:24 +04:00
|
|
|
ai = NULL; /* XXXGCC -Wuninitialized */
|
|
|
|
addrlen = 0; /* XXXGCC -Wuninitialized */
|
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
done = FALSE;
|
|
|
|
while (!done) {
|
2006-01-05 13:38:29 +03:00
|
|
|
struct mountd_exports_list mel;
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
switch (grp->gr_type) {
|
|
|
|
case GT_HOST:
|
2000-06-21 06:48:31 +04:00
|
|
|
if (addrp != NULL && addrp->sa_family == AF_INET6 &&
|
|
|
|
have_v6 == 0)
|
2000-06-20 03:44:16 +04:00
|
|
|
goto skip;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_addr = addrp;
|
|
|
|
export.ex_addrlen = addrlen;
|
|
|
|
export.ex_masklen = 0;
|
1994-06-08 23:27:32 +04:00
|
|
|
break;
|
|
|
|
case GT_NET:
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_addr = (struct sockaddr *)
|
2000-06-09 04:03:31 +04:00
|
|
|
&grp->gr_ptr.gt_net.nt_net;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
if (export.ex_addr->sa_family == AF_INET6 &&
|
2000-06-20 03:44:16 +04:00
|
|
|
have_v6 == 0)
|
|
|
|
goto skip;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_addrlen = export.ex_addr->sa_len;
|
2000-06-09 04:03:31 +04:00
|
|
|
memset(&ss, 0, sizeof ss);
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
ss.ss_family = export.ex_addr->sa_family;
|
|
|
|
ss.ss_len = export.ex_addr->sa_len;
|
2000-06-10 08:40:17 +04:00
|
|
|
if (allones(&ss, grp->gr_ptr.gt_net.nt_len) != 0) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Bad network flag",
|
|
|
|
line, (unsigned long)lineno);
|
|
|
|
return (1);
|
|
|
|
}
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_mask = (struct sockaddr *)&ss;
|
|
|
|
export.ex_masklen = ss.ss_len;
|
1994-06-08 23:27:32 +04:00
|
|
|
break;
|
|
|
|
#ifdef ISO
|
|
|
|
case GT_ISO:
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_addr =
|
1998-10-29 15:57:02 +03:00
|
|
|
(struct sockaddr *) grp->gr_ptr.gt_isoaddr;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_addrlen =
|
1998-10-29 15:57:02 +03:00
|
|
|
sizeof(struct sockaddr_iso);
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
export.ex_masklen = 0;
|
1994-06-08 23:27:32 +04:00
|
|
|
break;
|
1998-10-29 15:57:02 +03:00
|
|
|
#endif /* ISO */
|
1994-06-08 23:27:32 +04:00
|
|
|
default:
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: Bad netgroup type",
|
|
|
|
line, (unsigned long)lineno);
|
1994-06-08 23:27:32 +04:00
|
|
|
return (1);
|
|
|
|
};
|
|
|
|
|
2000-02-16 07:08:40 +03:00
|
|
|
/*
|
|
|
|
* XXX:
|
2006-01-05 13:38:29 +03:00
|
|
|
* Maybe I should just use the fsb->f_mntonname path?
|
2000-02-16 07:08:40 +03:00
|
|
|
*/
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
|
2006-01-05 13:38:29 +03:00
|
|
|
mel.mel_path = dirp;
|
|
|
|
mel.mel_nexports = 1;
|
|
|
|
mel.mel_exports = &export;
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
|
2006-01-05 13:38:29 +03:00
|
|
|
if (nfssvc(NFSSVC_SETEXPORTSLIST, &mel) != 0) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: Can't change attributes for %s to %s: %m",
|
|
|
|
line, (unsigned long)lineno,
|
|
|
|
dirp, (grp->gr_type == GT_HOST) ?
|
|
|
|
grp->gr_ptr.gt_addrinfo->ai_canonname :
|
|
|
|
(grp->gr_type == GT_NET) ?
|
|
|
|
grp->gr_ptr.gt_net.nt_name :
|
|
|
|
"Unknown");
|
|
|
|
return (1);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
2000-06-20 03:44:16 +04:00
|
|
|
skip:
|
1994-06-08 23:27:32 +04:00
|
|
|
if (addrp) {
|
2000-06-09 04:03:31 +04:00
|
|
|
ai = ai->ai_next;
|
|
|
|
if (ai == NULL)
|
1994-06-08 23:27:32 +04:00
|
|
|
done = TRUE;
|
2000-06-09 04:03:31 +04:00
|
|
|
else {
|
|
|
|
addrp = ai->ai_addr;
|
|
|
|
addrlen = ai->ai_addrlen;
|
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
} else
|
|
|
|
done = TRUE;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Translate a net address.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1994-06-08 23:27:32 +04:00
|
|
|
get_net(cp, net, maskflg)
|
|
|
|
char *cp;
|
|
|
|
struct netmsk *net;
|
|
|
|
int maskflg;
|
|
|
|
{
|
|
|
|
struct netent *np;
|
2000-06-09 04:03:31 +04:00
|
|
|
char *name, *p, *prefp;
|
|
|
|
struct sockaddr_in sin, *sinp;
|
|
|
|
struct sockaddr *sa;
|
|
|
|
struct addrinfo hints, *ai = NULL;
|
|
|
|
char netname[NI_MAXHOST];
|
|
|
|
long preflen;
|
|
|
|
int ecode;
|
|
|
|
|
2003-05-16 18:03:31 +04:00
|
|
|
(void)memset(&sin, 0, sizeof(sin));
|
2000-06-09 04:03:31 +04:00
|
|
|
if ((opt_flags & OP_MASKLEN) && !maskflg) {
|
|
|
|
p = strchr(cp, '/');
|
|
|
|
*p = '\0';
|
|
|
|
prefp = p + 1;
|
2005-06-02 09:58:24 +04:00
|
|
|
} else {
|
|
|
|
p = NULL; /* XXXGCC -Wuninitialized */
|
|
|
|
prefp = NULL; /* XXXGCC -Wuninitialized */
|
2000-06-09 04:03:31 +04:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
|
2000-06-09 04:03:31 +04:00
|
|
|
if ((np = getnetbyname(cp)) != NULL) {
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_len = sizeof sin;
|
|
|
|
sin.sin_addr = inet_makeaddr(np->n_net, 0);
|
|
|
|
sa = (struct sockaddr *)&sin;
|
2004-10-30 12:46:12 +04:00
|
|
|
} else if (isdigit((unsigned char)*cp)) {
|
2000-06-09 04:03:31 +04:00
|
|
|
memset(&hints, 0, sizeof hints);
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_flags = AI_NUMERICHOST;
|
|
|
|
if (getaddrinfo(cp, NULL, &hints, &ai) != 0) {
|
|
|
|
/*
|
|
|
|
* If getaddrinfo() failed, try the inet4 network
|
|
|
|
* notation with less than 3 dots.
|
|
|
|
*/
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_len = sizeof sin;
|
|
|
|
sin.sin_addr = inet_makeaddr(inet_network(cp),0);
|
|
|
|
if (debug)
|
|
|
|
fprintf(stderr, "get_net: v4 addr %x\n",
|
|
|
|
sin.sin_addr.s_addr);
|
|
|
|
sa = (struct sockaddr *)&sin;
|
|
|
|
} else
|
|
|
|
sa = ai->ai_addr;
|
2004-10-30 12:46:12 +04:00
|
|
|
} else if (isxdigit((unsigned char)*cp) || *cp == ':') {
|
2000-06-10 11:04:13 +04:00
|
|
|
memset(&hints, 0, sizeof hints);
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_flags = AI_NUMERICHOST;
|
|
|
|
if (getaddrinfo(cp, NULL, &hints, &ai) == 0)
|
|
|
|
sa = ai->ai_addr;
|
|
|
|
else
|
2000-06-13 05:08:43 +04:00
|
|
|
goto fail;
|
1994-06-08 23:27:32 +04:00
|
|
|
} else
|
2000-06-13 05:08:43 +04:00
|
|
|
goto fail;
|
2000-06-09 04:03:31 +04:00
|
|
|
|
2001-04-24 19:04:27 +04:00
|
|
|
/*
|
|
|
|
* Only allow /pref notation for v6 addresses.
|
|
|
|
*/
|
|
|
|
if (sa->sa_family == AF_INET6 && (!(opt_flags & OP_MASKLEN) || maskflg))
|
|
|
|
return 1;
|
|
|
|
|
2000-06-09 04:03:31 +04:00
|
|
|
ecode = getnameinfo(sa, sa->sa_len, netname, sizeof netname,
|
2000-07-16 18:07:39 +04:00
|
|
|
NULL, 0, ninumeric);
|
2000-06-09 04:03:31 +04:00
|
|
|
if (ecode != 0)
|
2000-06-13 05:08:43 +04:00
|
|
|
goto fail;
|
2000-06-09 04:03:31 +04:00
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
if (maskflg)
|
2000-06-09 04:03:31 +04:00
|
|
|
net->nt_len = countones(sa);
|
1994-06-08 23:27:32 +04:00
|
|
|
else {
|
2000-06-09 04:03:31 +04:00
|
|
|
if (opt_flags & OP_MASKLEN) {
|
2003-04-17 06:41:21 +04:00
|
|
|
errno = 0;
|
2000-06-09 04:03:31 +04:00
|
|
|
preflen = strtol(prefp, NULL, 10);
|
|
|
|
if (preflen == LONG_MIN && errno == ERANGE)
|
2000-06-13 05:08:43 +04:00
|
|
|
goto fail;
|
2000-06-09 04:03:31 +04:00
|
|
|
net->nt_len = (int)preflen;
|
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
if (np)
|
|
|
|
name = np->n_name;
|
2000-06-09 04:03:31 +04:00
|
|
|
else {
|
2000-07-16 18:07:39 +04:00
|
|
|
if (getnameinfo(sa, sa->sa_len, netname, sizeof netname,
|
|
|
|
NULL, 0, ninumeric) != 0)
|
|
|
|
strlcpy(netname, "?", sizeof(netname));
|
2000-06-09 04:03:31 +04:00
|
|
|
name = netname;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
net->nt_name = estrdup(name);
|
2000-06-09 04:03:31 +04:00
|
|
|
memcpy(&net->nt_net, sa, sa->sa_len);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
|
|
|
|
if (!maskflg && sa->sa_family == AF_INET &&
|
|
|
|
!(opt_flags & (OP_MASK|OP_MASKLEN))) {
|
|
|
|
sinp = (struct sockaddr_in *)sa;
|
|
|
|
if (IN_CLASSA(sinp->sin_addr.s_addr))
|
|
|
|
net->nt_len = 8;
|
|
|
|
else if (IN_CLASSB(sinp->sin_addr.s_addr))
|
|
|
|
net->nt_len = 16;
|
|
|
|
else if (IN_CLASSC(sinp->sin_addr.s_addr))
|
|
|
|
net->nt_len = 24;
|
|
|
|
else if (IN_CLASSD(sinp->sin_addr.s_addr))
|
|
|
|
net->nt_len = 28;
|
|
|
|
else
|
|
|
|
net->nt_len = 32; /* XXX */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ai)
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
return 0;
|
2000-06-13 05:08:43 +04:00
|
|
|
|
|
|
|
fail:
|
|
|
|
if (ai)
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
return 1;
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Parse out the next white space separated field
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1993-03-21 12:45:37 +03:00
|
|
|
nextfield(cp, endcp)
|
|
|
|
char **cp;
|
|
|
|
char **endcp;
|
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
p = *cp;
|
|
|
|
while (*p == ' ' || *p == '\t')
|
|
|
|
p++;
|
1994-06-08 23:27:32 +04:00
|
|
|
if (*p == '\n' || *p == '\0')
|
1993-03-21 12:45:37 +03:00
|
|
|
*cp = *endcp = p;
|
1994-06-08 23:27:32 +04:00
|
|
|
else {
|
|
|
|
*cp = p++;
|
|
|
|
while (*p != ' ' && *p != '\t' && *p != '\n' && *p != '\0')
|
|
|
|
p++;
|
|
|
|
*endcp = p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Parse a description of a credential.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
parsecred(namelist, cr)
|
|
|
|
char *namelist;
|
2001-11-30 00:23:38 +03:00
|
|
|
struct uucred *cr;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
int cnt;
|
|
|
|
char *names;
|
|
|
|
struct passwd *pw;
|
|
|
|
struct group *gr;
|
2006-05-11 11:11:08 +04:00
|
|
|
int ngroups;
|
|
|
|
gid_t groups[NGROUPS + 1];
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
/*
|
1999-08-16 06:59:22 +04:00
|
|
|
* Set up the unprivileged user.
|
1994-06-08 23:27:32 +04:00
|
|
|
*/
|
2001-11-30 00:23:38 +03:00
|
|
|
*cr = def_anon;
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Get the user's password table entry.
|
|
|
|
*/
|
|
|
|
names = strsep(&namelist, " \t\n");
|
|
|
|
name = strsep(&names, ":");
|
2004-10-30 12:46:12 +04:00
|
|
|
if (isdigit((unsigned char)*name) || *name == '-')
|
1994-06-08 23:27:32 +04:00
|
|
|
pw = getpwuid(atoi(name));
|
|
|
|
else
|
|
|
|
pw = getpwnam(name);
|
|
|
|
/*
|
|
|
|
* Credentials specified as those of a user.
|
|
|
|
*/
|
|
|
|
if (names == NULL) {
|
|
|
|
if (pw == NULL) {
|
|
|
|
syslog(LOG_ERR, "Unknown user: %s", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cr->cr_uid = pw->pw_uid;
|
|
|
|
ngroups = NGROUPS + 1;
|
|
|
|
if (getgrouplist(pw->pw_name, pw->pw_gid, groups, &ngroups))
|
|
|
|
syslog(LOG_ERR, "Too many groups");
|
|
|
|
/*
|
|
|
|
* Convert from int's to gid_t's and compress out duplicate
|
|
|
|
*/
|
|
|
|
cr->cr_ngroups = ngroups - 1;
|
1995-06-03 01:04:24 +04:00
|
|
|
cr->cr_gid = groups[0];
|
|
|
|
for (cnt = 1; cnt < ngroups; cnt++)
|
1994-06-08 23:27:32 +04:00
|
|
|
cr->cr_groups[cnt - 1] = groups[cnt];
|
|
|
|
return;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
/*
|
|
|
|
* Explicit credential specified as a colon separated list:
|
|
|
|
* uid:gid:gid:...
|
|
|
|
*/
|
|
|
|
if (pw != NULL)
|
|
|
|
cr->cr_uid = pw->pw_uid;
|
2004-10-30 12:46:12 +04:00
|
|
|
else if (isdigit((unsigned char)*name) || *name == '-')
|
1994-06-08 23:27:32 +04:00
|
|
|
cr->cr_uid = atoi(name);
|
|
|
|
else {
|
|
|
|
syslog(LOG_ERR, "Unknown user: %s", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cr->cr_ngroups = 0;
|
|
|
|
while (names != NULL && *names != '\0' && cr->cr_ngroups < NGROUPS) {
|
|
|
|
name = strsep(&names, ":");
|
2004-10-30 12:46:12 +04:00
|
|
|
if (isdigit((unsigned char)*name) || *name == '-') {
|
1994-06-08 23:27:32 +04:00
|
|
|
cr->cr_groups[cr->cr_ngroups++] = atoi(name);
|
|
|
|
} else {
|
|
|
|
if ((gr = getgrnam(name)) == NULL) {
|
|
|
|
syslog(LOG_ERR, "Unknown group: %s", name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cr->cr_groups[cr->cr_ngroups++] = gr->gr_gid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (names != NULL && *names != '\0' && cr->cr_ngroups == NGROUPS)
|
|
|
|
syslog(LOG_ERR, "Too many groups");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
#define STRSIZ (RPCMNT_NAMELEN+RPCMNT_PATHLEN+50)
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Routines that maintain the remote mounttab
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
get_mountlist()
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct mountlist *mlp, **mlpp;
|
1994-09-23 18:26:58 +04:00
|
|
|
char *host, *dirp, *cp;
|
1993-03-21 12:45:37 +03:00
|
|
|
char str[STRSIZ];
|
|
|
|
FILE *mlfile;
|
|
|
|
|
1994-01-07 01:48:51 +03:00
|
|
|
if ((mlfile = fopen(_PATH_RMOUNTLIST, "r")) == NULL) {
|
1996-05-22 07:50:06 +04:00
|
|
|
syslog(LOG_ERR, "Can't open %s: %m", _PATH_RMOUNTLIST);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
mlpp = &mlhead;
|
|
|
|
while (fgets(str, STRSIZ, mlfile) != NULL) {
|
1994-09-23 18:26:58 +04:00
|
|
|
cp = str;
|
|
|
|
host = strsep(&cp, " \t\n");
|
|
|
|
dirp = strsep(&cp, " \t\n");
|
|
|
|
if (host == NULL || dirp == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
1998-10-29 15:57:02 +03:00
|
|
|
mlp = emalloc(sizeof(*mlp));
|
|
|
|
(void)strncpy(mlp->ml_host, host, RPCMNT_NAMELEN);
|
1994-09-23 18:26:58 +04:00
|
|
|
mlp->ml_host[RPCMNT_NAMELEN] = '\0';
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)strncpy(mlp->ml_dirp, dirp, RPCMNT_PATHLEN);
|
1994-09-23 18:26:58 +04:00
|
|
|
mlp->ml_dirp[RPCMNT_PATHLEN] = '\0';
|
1998-10-29 15:57:02 +03:00
|
|
|
mlp->ml_next = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
*mlpp = mlp;
|
|
|
|
mlpp = &mlp->ml_next;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fclose(mlfile);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1997-03-23 23:58:14 +03:00
|
|
|
del_mlist(hostp, dirp, saddr)
|
1994-06-08 23:27:32 +04:00
|
|
|
char *hostp, *dirp;
|
1997-03-23 23:58:14 +03:00
|
|
|
struct sockaddr *saddr;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct mountlist *mlp, **mlpp;
|
|
|
|
struct mountlist *mlp2;
|
2000-07-16 18:07:39 +04:00
|
|
|
u_short sport;
|
1993-03-21 12:45:37 +03:00
|
|
|
FILE *mlfile;
|
1997-03-23 23:58:14 +03:00
|
|
|
int fnd = 0, ret = 0;
|
2000-07-16 18:07:39 +04:00
|
|
|
char host[NI_MAXHOST];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-07-16 18:07:39 +04:00
|
|
|
switch (saddr->sa_family) {
|
|
|
|
case AF_INET6:
|
|
|
|
sport = ntohs(((struct sockaddr_in6 *)saddr)->sin6_port);
|
|
|
|
break;
|
|
|
|
case AF_INET:
|
|
|
|
sport = ntohs(((struct sockaddr_in *)saddr)->sin_port);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
mlpp = &mlhead;
|
|
|
|
mlp = mlhead;
|
|
|
|
while (mlp) {
|
|
|
|
if (!strcmp(mlp->ml_host, hostp) &&
|
|
|
|
(!dirp || !strcmp(mlp->ml_dirp, dirp))) {
|
1997-03-31 00:53:31 +04:00
|
|
|
if (!(mlp->ml_flag & DP_NORESMNT) &&
|
2000-07-16 18:07:39 +04:00
|
|
|
sport >= IPPORT_RESERVED) {
|
|
|
|
if (getnameinfo(saddr, saddr->sa_len, host,
|
|
|
|
sizeof host, NULL, 0, ninumeric) != 0)
|
|
|
|
strlcpy(host, "?", sizeof(host));
|
1997-03-23 23:58:14 +03:00
|
|
|
syslog(LOG_NOTICE,
|
1998-10-29 15:57:02 +03:00
|
|
|
"Umount request for %s:%s from %s refused\n",
|
2000-07-16 18:07:39 +04:00
|
|
|
mlp->ml_host, mlp->ml_dirp, host);
|
1997-03-23 23:58:14 +03:00
|
|
|
ret = -1;
|
1998-02-22 02:32:19 +03:00
|
|
|
goto cont;
|
1997-03-23 23:58:14 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
fnd = 1;
|
1994-06-08 23:27:32 +04:00
|
|
|
mlp2 = mlp;
|
|
|
|
*mlpp = mlp = mlp->ml_next;
|
1998-10-29 15:57:02 +03:00
|
|
|
free(mlp2);
|
1994-06-08 23:27:32 +04:00
|
|
|
} else {
|
1998-02-22 02:32:19 +03:00
|
|
|
cont:
|
1994-06-08 23:27:32 +04:00
|
|
|
mlpp = &mlp->ml_next;
|
|
|
|
mlp = mlp->ml_next;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fnd) {
|
|
|
|
if ((mlfile = fopen(_PATH_RMOUNTLIST, "w")) == NULL) {
|
1998-10-29 15:57:02 +03:00
|
|
|
syslog(LOG_ERR, "Can't update %s: %m",
|
|
|
|
_PATH_RMOUNTLIST);
|
1997-08-28 12:09:53 +04:00
|
|
|
return ret;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
mlp = mlhead;
|
|
|
|
while (mlp) {
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(mlfile, "%s %s\n", mlp->ml_host,
|
|
|
|
mlp->ml_dirp);
|
1993-03-21 12:45:37 +03:00
|
|
|
mlp = mlp->ml_next;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fclose(mlfile);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1997-03-23 23:58:14 +03:00
|
|
|
return ret;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1997-03-23 23:58:14 +03:00
|
|
|
add_mlist(hostp, dirp, flags)
|
1994-06-08 23:27:32 +04:00
|
|
|
char *hostp, *dirp;
|
1997-03-23 23:58:14 +03:00
|
|
|
int flags;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-06-08 23:27:32 +04:00
|
|
|
struct mountlist *mlp, **mlpp;
|
1993-03-21 12:45:37 +03:00
|
|
|
FILE *mlfile;
|
|
|
|
|
|
|
|
mlpp = &mlhead;
|
|
|
|
mlp = mlhead;
|
|
|
|
while (mlp) {
|
|
|
|
if (!strcmp(mlp->ml_host, hostp) && !strcmp(mlp->ml_dirp, dirp))
|
|
|
|
return;
|
|
|
|
mlpp = &mlp->ml_next;
|
|
|
|
mlp = mlp->ml_next;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
mlp = emalloc(sizeof(*mlp));
|
1994-06-08 23:27:32 +04:00
|
|
|
strncpy(mlp->ml_host, hostp, RPCMNT_NAMELEN);
|
|
|
|
mlp->ml_host[RPCMNT_NAMELEN] = '\0';
|
|
|
|
strncpy(mlp->ml_dirp, dirp, RPCMNT_PATHLEN);
|
|
|
|
mlp->ml_dirp[RPCMNT_PATHLEN] = '\0';
|
1997-03-23 23:58:14 +03:00
|
|
|
mlp->ml_flag = flags;
|
1998-10-29 15:57:02 +03:00
|
|
|
mlp->ml_next = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
*mlpp = mlp;
|
|
|
|
if ((mlfile = fopen(_PATH_RMOUNTLIST, "a")) == NULL) {
|
1996-05-22 07:50:06 +04:00
|
|
|
syslog(LOG_ERR, "Can't update %s: %m", _PATH_RMOUNTLIST);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)fprintf(mlfile, "%s %s\n", mlp->ml_host, mlp->ml_dirp);
|
|
|
|
(void)fclose(mlfile);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is called via. SIGTERM when the system is going down.
|
|
|
|
* It sends a broadcast RPCMNT_UMNTALL.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
/* ARGSUSED */
|
|
|
|
static void
|
1998-10-07 18:50:35 +04:00
|
|
|
send_umntall(n)
|
|
|
|
int n;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1998-10-29 15:57:02 +03:00
|
|
|
(void)clnt_broadcast(RPCPROG_MNT, RPCMNT_VER1, RPCMNT_UMNTALL,
|
2000-06-03 18:20:49 +04:00
|
|
|
xdr_void, NULL, xdr_void, NULL, (resultproc_t)umntall_each);
|
1994-06-08 23:27:32 +04:00
|
|
|
exit(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1993-03-21 12:45:37 +03:00
|
|
|
umntall_each(resultsp, raddr)
|
|
|
|
caddr_t resultsp;
|
|
|
|
struct sockaddr_in *raddr;
|
|
|
|
{
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-06-08 23:27:32 +04:00
|
|
|
* Free up a group list.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static void
|
1994-06-08 23:27:32 +04:00
|
|
|
free_grp(grp)
|
|
|
|
struct grouplist *grp;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (grp->gr_type == GT_HOST) {
|
2000-06-13 05:08:43 +04:00
|
|
|
if (grp->gr_ptr.gt_addrinfo != NULL)
|
2000-06-09 04:03:31 +04:00
|
|
|
freeaddrinfo(grp->gr_ptr.gt_addrinfo);
|
1994-06-08 23:27:32 +04:00
|
|
|
} else if (grp->gr_type == GT_NET) {
|
|
|
|
if (grp->gr_ptr.gt_net.nt_name)
|
|
|
|
free(grp->gr_ptr.gt_net.nt_name);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 23:27:32 +04:00
|
|
|
#ifdef ISO
|
|
|
|
else if (grp->gr_type == GT_ISO)
|
1998-10-29 15:57:02 +03:00
|
|
|
free(grp->gr_ptr.gt_isoaddr);
|
1994-06-08 23:27:32 +04:00
|
|
|
#endif
|
1998-10-29 15:57:02 +03:00
|
|
|
free(grp);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
1998-10-29 15:57:02 +03:00
|
|
|
#if 0
|
|
|
|
static void
|
|
|
|
SYSLOG(int pri, const char *fmt,...)
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
1995-11-06 10:00:07 +03:00
|
|
|
|
|
|
|
if (debug)
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
else
|
|
|
|
vsyslog(pri, fmt, ap);
|
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
va_end(ap);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
#endif
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check options for consistency.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1999-01-12 18:11:53 +03:00
|
|
|
check_options(line, lineno, dp)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1994-06-08 23:27:32 +04:00
|
|
|
struct dirlist *dp;
|
|
|
|
{
|
|
|
|
|
1999-01-12 18:11:53 +03:00
|
|
|
if (dp == NULL) {
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: missing directory list",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return (1);
|
1999-01-12 18:11:53 +03:00
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
if ((opt_flags & (OP_MAPROOT|OP_MAPALL)) == (OP_MAPROOT|OP_MAPALL) ||
|
|
|
|
(opt_flags & (OP_MAPROOT|OP_KERB)) == (OP_MAPROOT|OP_KERB) ||
|
|
|
|
(opt_flags & (OP_MAPALL|OP_KERB)) == (OP_MAPALL|OP_KERB)) {
|
|
|
|
syslog(LOG_ERR,
|
1999-01-12 18:11:53 +03:00
|
|
|
"\"%s\", line %ld: -mapall, -maproot and -kerb mutually exclusive",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return (1);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
if ((opt_flags & OP_MASK) && (opt_flags & OP_NET) == 0) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: -mask requires -net",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return (1);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
2000-06-09 04:03:31 +04:00
|
|
|
if ((opt_flags & OP_MASK) && (opt_flags & OP_MASKLEN) != 0) {
|
2001-04-24 19:04:27 +04:00
|
|
|
syslog(LOG_ERR, "\"%s\", line %ld: /pref and -mask mutually"
|
|
|
|
" exclusive",
|
2000-06-09 04:03:31 +04:00
|
|
|
line, (unsigned long)lineno);
|
|
|
|
return (1);
|
|
|
|
}
|
1998-10-29 15:57:02 +03:00
|
|
|
if ((opt_flags & (OP_NET|OP_ISO)) == (OP_NET|OP_ISO)) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: -net and -iso mutually exclusive",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return (1);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
if ((opt_flags & OP_ALLDIRS) && dp->dp_left) {
|
1999-01-12 18:11:53 +03:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: -alldir has multiple directories",
|
|
|
|
line, (unsigned long)lineno);
|
1998-10-29 15:57:02 +03:00
|
|
|
return (1);
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check an absolute directory path for any symbolic links. Return true
|
|
|
|
* if no symbolic links are found.
|
|
|
|
*/
|
1998-10-29 15:57:02 +03:00
|
|
|
static int
|
1999-01-12 18:11:53 +03:00
|
|
|
check_dirpath(line, lineno, dirp)
|
|
|
|
const char *line;
|
|
|
|
size_t lineno;
|
1994-06-08 23:27:32 +04:00
|
|
|
char *dirp;
|
|
|
|
{
|
|
|
|
char *cp;
|
|
|
|
struct stat sb;
|
1999-01-12 18:11:53 +03:00
|
|
|
char *file = "";
|
1994-06-08 23:27:32 +04:00
|
|
|
|
1999-01-12 18:11:53 +03:00
|
|
|
for (cp = dirp + 1; *cp; cp++) {
|
1994-06-08 23:27:32 +04:00
|
|
|
if (*cp == '/') {
|
|
|
|
*cp = '\0';
|
1999-01-12 18:11:53 +03:00
|
|
|
if (lstat(dirp, &sb) == -1)
|
|
|
|
goto bad;
|
|
|
|
if (!S_ISDIR(sb.st_mode))
|
|
|
|
goto bad1;
|
1994-06-08 23:27:32 +04:00
|
|
|
*cp = '/';
|
|
|
|
}
|
|
|
|
}
|
1999-01-12 18:11:53 +03:00
|
|
|
|
|
|
|
cp = NULL;
|
|
|
|
if (lstat(dirp, &sb) == -1)
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
if (!S_ISDIR(sb.st_mode) && !S_ISREG(sb.st_mode)) {
|
|
|
|
file = " file or a";
|
|
|
|
goto bad1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
bad:
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: lstat for `%s' failed: %m",
|
|
|
|
line, (unsigned long)lineno, dirp);
|
|
|
|
if (cp)
|
|
|
|
*cp = '/';
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
bad1:
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"\"%s\", line %ld: `%s' is not a%s directory",
|
1999-08-25 21:26:20 +04:00
|
|
|
line, (unsigned long)lineno, dirp, file);
|
1999-01-12 18:11:53 +03:00
|
|
|
if (cp)
|
|
|
|
*cp = '/';
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-09-19 04:59:56 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
bind_resv_port(int sock, sa_family_t family, in_port_t port)
|
|
|
|
{
|
|
|
|
struct sockaddr *sa;
|
|
|
|
struct sockaddr_in sasin;
|
|
|
|
struct sockaddr_in6 sasin6;
|
|
|
|
|
|
|
|
switch (family) {
|
|
|
|
case AF_INET:
|
|
|
|
(void)memset(&sasin, 0, sizeof(sasin));
|
|
|
|
sasin.sin_len = sizeof(sasin);
|
|
|
|
sasin.sin_family = family;
|
|
|
|
sasin.sin_port = htons(port);
|
|
|
|
sa = (struct sockaddr *)(void *)&sasin;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
(void)memset(&sasin6, 0, sizeof(sasin6));
|
|
|
|
sasin6.sin6_len = sizeof(sasin6);
|
|
|
|
sasin6.sin6_family = family;
|
|
|
|
sasin6.sin6_port = htons(port);
|
|
|
|
sa = (struct sockaddr *)(void *)&sasin6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
syslog(LOG_ERR, "Unsupported address family %d", family);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bindresvport_sa(sock, sa) == -1)
|
|
|
|
syslog(LOG_ERR, "Cannot bind to reserved port %d (%m)", port);
|
|
|
|
}
|