2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1997-02-10 02:22:35 +00:00
|
|
|
* Copyright (c) 1989, 1993, 1995
|
1994-05-24 10:09:53 +00:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Rick Macklem at The University of Guelph.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* 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-02-10 02:22:35 +00:00
|
|
|
* @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
2001-09-18 23:32:09 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2006-05-19 00:04:24 +00:00
|
|
|
|
2004-07-08 22:35:36 +00:00
|
|
|
#include "opt_bootp.h"
|
2002-09-22 00:59:02 +00:00
|
|
|
#include "opt_nfsroot.h"
|
1999-11-01 23:55:38 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/systm.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/kernel.h>
|
2005-06-10 23:50:41 +00:00
|
|
|
#include <sys/bio.h>
|
|
|
|
#include <sys/buf.h>
|
2009-05-29 21:27:12 +00:00
|
|
|
#include <sys/jail.h>
|
2011-08-09 15:29:58 +00:00
|
|
|
#include <sys/limits.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/lock.h>
|
1997-10-12 20:26:33 +00:00
|
|
|
#include <sys/malloc.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/mbuf.h>
|
2001-09-20 04:57:34 +00:00
|
|
|
#include <sys/module.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/proc.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/socket.h>
|
1994-10-02 17:27:07 +00:00
|
|
|
#include <sys/socketvar.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/sysctl.h>
|
2012-01-31 03:58:26 +00:00
|
|
|
#include <sys/syslog.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/vnode.h>
|
2004-12-01 06:42:21 +00:00
|
|
|
#include <sys/signalvar.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-03-16 18:17:34 +00:00
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
2002-03-20 10:07:52 +00:00
|
|
|
#include <vm/uma.h>
|
1995-03-16 18:17:34 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/route.h>
|
2009-12-13 11:06:39 +00:00
|
|
|
#include <net/vnet.h>
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
#include <rpc/rpc.h>
|
2003-11-14 20:54:10 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
#include <nfs/nfsproto.h>
|
2001-09-18 23:32:09 +00:00
|
|
|
#include <nfsclient/nfs.h>
|
|
|
|
#include <nfsclient/nfsnode.h>
|
|
|
|
#include <nfsclient/nfsmount.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <nfs/xdr_subs.h>
|
2001-09-18 23:32:09 +00:00
|
|
|
#include <nfsclient/nfsm_subs.h>
|
2011-04-25 22:22:51 +00:00
|
|
|
#include <nfs/nfsdiskless.h>
|
1995-12-03 10:03:12 +00:00
|
|
|
|
2011-02-25 10:11:01 +00:00
|
|
|
FEATURE(nfsclient, "NFS client");
|
|
|
|
|
2005-10-31 15:41:29 +00:00
|
|
|
MALLOC_DEFINE(M_NFSREQ, "nfsclient_req", "NFS request header");
|
|
|
|
MALLOC_DEFINE(M_NFSBIGFH, "nfsclient_bigfh", "NFS version 3 file handle");
|
|
|
|
MALLOC_DEFINE(M_NFSDIROFF, "nfsclient_diroff", "NFS directory offset data");
|
|
|
|
MALLOC_DEFINE(M_NFSHASH, "nfsclient_hash", "NFS hash tables");
|
|
|
|
MALLOC_DEFINE(M_NFSDIRECTIO, "nfsclient_directio", "NFS Direct IO async write state");
|
1998-05-24 14:41:56 +00:00
|
|
|
|
2002-03-20 10:07:52 +00:00
|
|
|
uma_zone_t nfsmount_zone;
|
1997-10-12 20:26:33 +00:00
|
|
|
|
1995-12-03 10:03:12 +00:00
|
|
|
struct nfsstats nfsstats;
|
2006-05-19 00:04:24 +00:00
|
|
|
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_NODE(_vfs, OID_AUTO, oldnfs, CTLFLAG_RW, 0, "Old NFS filesystem");
|
|
|
|
SYSCTL_STRUCT(_vfs_oldnfs, NFS_NFSSTATS, nfsstats, CTLFLAG_RW,
|
2001-09-18 23:32:09 +00:00
|
|
|
&nfsstats, nfsstats, "S,nfsstats");
|
2003-01-22 19:57:31 +00:00
|
|
|
static int nfs_ip_paranoia = 1;
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_INT(_vfs_oldnfs, OID_AUTO, nfs_ip_paranoia, CTLFLAG_RW,
|
2008-11-02 17:00:23 +00:00
|
|
|
&nfs_ip_paranoia, 0,
|
|
|
|
"Disallow accepting replies from IPs which differ from those sent");
|
1996-11-06 10:53:16 +00:00
|
|
|
#ifdef NFS_DEBUG
|
|
|
|
int nfs_debug;
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_INT(_vfs_oldnfs, OID_AUTO, debug, CTLFLAG_RW, &nfs_debug, 0,
|
2008-11-02 17:00:23 +00:00
|
|
|
"Toggle debug flag");
|
1996-11-06 10:53:16 +00:00
|
|
|
#endif
|
2004-07-06 09:12:03 +00:00
|
|
|
static int nfs_tprintf_initial_delay = NFS_TPRINTF_INITIAL_DELAY;
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_INT(_vfs_oldnfs, NFS_TPRINTF_INITIAL_DELAY,
|
2008-11-02 17:00:23 +00:00
|
|
|
downdelayinitial, CTLFLAG_RW, &nfs_tprintf_initial_delay, 0,
|
|
|
|
"Delay before printing \"nfs server not responding\" messages");
|
2004-07-06 09:12:03 +00:00
|
|
|
/* how long between console messages "nfs server foo not responding" */
|
|
|
|
static int nfs_tprintf_delay = NFS_TPRINTF_DELAY;
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_INT(_vfs_oldnfs, NFS_TPRINTF_DELAY,
|
2008-11-02 17:00:23 +00:00
|
|
|
downdelayinterval, CTLFLAG_RW, &nfs_tprintf_delay, 0,
|
|
|
|
"Delay between printing \"nfs server not responding\" messages");
|
1995-12-03 10:03:12 +00:00
|
|
|
|
2007-01-25 13:07:25 +00:00
|
|
|
static void nfs_decode_args(struct mount *mp, struct nfsmount *nmp,
|
2008-07-24 13:42:28 +00:00
|
|
|
struct nfs_args *argp, const char *hostname);
|
2001-09-18 23:32:09 +00:00
|
|
|
static int mountnfs(struct nfs_args *, struct mount *,
|
2004-12-07 14:26:39 +00:00
|
|
|
struct sockaddr *, char *, struct vnode **,
|
2012-01-25 20:05:58 +00:00
|
|
|
struct ucred *cred, int, int);
|
2010-10-19 11:55:58 +00:00
|
|
|
static void nfs_getnlminfo(struct vnode *, uint8_t *, size_t *,
|
2011-01-03 20:37:31 +00:00
|
|
|
struct sockaddr_storage *, int *, off_t *,
|
|
|
|
struct timeval *);
|
2004-12-07 08:15:41 +00:00
|
|
|
static vfs_mount_t nfs_mount;
|
|
|
|
static vfs_cmount_t nfs_cmount;
|
2002-08-13 10:05:50 +00:00
|
|
|
static vfs_unmount_t nfs_unmount;
|
|
|
|
static vfs_root_t nfs_root;
|
|
|
|
static vfs_statfs_t nfs_statfs;
|
|
|
|
static vfs_sync_t nfs_sync;
|
2004-07-06 09:12:03 +00:00
|
|
|
static vfs_sysctl_t nfs_sysctl;
|
1994-10-23 23:26:18 +00:00
|
|
|
|
2008-07-22 21:27:22 +00:00
|
|
|
static int fake_wchan;
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* nfs vfs operations.
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static struct vfsops nfs_vfsops = {
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_init = nfs_init,
|
2004-12-07 08:15:41 +00:00
|
|
|
.vfs_mount = nfs_mount,
|
|
|
|
.vfs_cmount = nfs_cmount,
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_root = nfs_root,
|
|
|
|
.vfs_statfs = nfs_statfs,
|
|
|
|
.vfs_sync = nfs_sync,
|
|
|
|
.vfs_uninit = nfs_uninit,
|
|
|
|
.vfs_unmount = nfs_unmount,
|
2004-07-06 09:12:03 +00:00
|
|
|
.vfs_sysctl = nfs_sysctl,
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
2011-04-27 17:51:51 +00:00
|
|
|
VFS_SET(nfs_vfsops, oldnfs, VFCF_NETWORK);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2001-09-20 04:57:34 +00:00
|
|
|
/* So that loader and kldload(2) can find us, wherever we are.. */
|
2011-04-27 20:42:30 +00:00
|
|
|
MODULE_VERSION(oldnfs, 1);
|
|
|
|
MODULE_DEPEND(oldnfs, krpc, 1, 1, 1);
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
#ifdef KGSSAPI
|
2011-04-27 20:42:30 +00:00
|
|
|
MODULE_DEPEND(oldnfs, kgssapi, 1, 1, 1);
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
#endif
|
2011-04-27 20:42:30 +00:00
|
|
|
MODULE_DEPEND(oldnfs, nfs_common, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(oldnfs, nfslock, 1, 1, 1);
|
2001-09-20 04:57:34 +00:00
|
|
|
|
2003-11-22 02:21:49 +00:00
|
|
|
static struct nfs_rpcops nfs_rpcops = {
|
|
|
|
nfs_readrpc,
|
|
|
|
nfs_writerpc,
|
|
|
|
nfs_writebp,
|
|
|
|
nfs_readlinkrpc,
|
|
|
|
nfs_invaldir,
|
|
|
|
nfs_commit,
|
|
|
|
};
|
|
|
|
|
2011-04-26 13:50:11 +00:00
|
|
|
/*
|
|
|
|
* This structure is now defined in sys/nfs/nfs_diskless.c so that it
|
|
|
|
* can be shared by both NFS clients. It is declared here so that it
|
|
|
|
* will be defined for kernels built without NFS_ROOT, although it
|
|
|
|
* isn't used in that case.
|
|
|
|
*/
|
|
|
|
#ifndef NFS_ROOT
|
|
|
|
struct nfs_diskless nfs_diskless = { { { 0 } } };
|
|
|
|
struct nfsv3_diskless nfsv3_diskless = { { { 0 } } };
|
|
|
|
int nfs_diskless_valid = 0;
|
|
|
|
#endif
|
|
|
|
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_INT(_vfs_oldnfs, OID_AUTO, diskless_valid, CTLFLAG_RD,
|
2008-11-02 17:00:23 +00:00
|
|
|
&nfs_diskless_valid, 0,
|
|
|
|
"Has the diskless struct been filled correctly");
|
1996-10-20 15:01:58 +00:00
|
|
|
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_STRING(_vfs_oldnfs, OID_AUTO, diskless_rootpath, CTLFLAG_RD,
|
2008-11-02 17:00:23 +00:00
|
|
|
nfsv3_diskless.root_hostnam, 0, "Path to nfs root");
|
1996-10-20 15:01:58 +00:00
|
|
|
|
2011-05-15 20:52:43 +00:00
|
|
|
SYSCTL_OPAQUE(_vfs_oldnfs, OID_AUTO, diskless_rootaddr, CTLFLAG_RD,
|
2008-11-02 17:00:23 +00:00
|
|
|
&nfsv3_diskless.root_saddr, sizeof nfsv3_diskless.root_saddr,
|
|
|
|
"%Ssockaddr_in", "Diskless root nfs address");
|
1996-10-20 15:01:58 +00:00
|
|
|
|
|
|
|
|
2001-09-18 23:32:09 +00:00
|
|
|
void nfsargs_ntoh(struct nfs_args *);
|
2008-02-17 22:32:08 +00:00
|
|
|
static int nfs_mountdiskless(char *,
|
2001-09-18 23:32:09 +00:00
|
|
|
struct sockaddr_in *, struct nfs_args *,
|
2003-11-12 02:54:47 +00:00
|
|
|
struct thread *, struct vnode **, struct mount *);
|
2001-09-18 23:32:09 +00:00
|
|
|
static void nfs_convert_diskless(void);
|
|
|
|
static void nfs_convert_oargs(struct nfs_args *args,
|
|
|
|
struct onfs_args *oargs);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2007-01-25 13:07:25 +00:00
|
|
|
int
|
2001-09-18 23:32:09 +00:00
|
|
|
nfs_iosize(struct nfsmount *nmp)
|
1995-07-07 11:01:31 +00:00
|
|
|
{
|
|
|
|
int iosize;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the size used for io buffers. Use the larger
|
|
|
|
* of the two sizes to minimise nfs requests but make sure
|
|
|
|
* that it is at least one VM page to avoid wasting buffer
|
|
|
|
* space.
|
|
|
|
*/
|
2007-01-25 13:07:25 +00:00
|
|
|
iosize = imax(nmp->nm_rsize, nmp->nm_wsize);
|
|
|
|
iosize = imax(iosize, PAGE_SIZE);
|
|
|
|
return (iosize);
|
1995-07-07 11:01:31 +00:00
|
|
|
}
|
|
|
|
|
1998-05-19 07:11:27 +00:00
|
|
|
static void
|
2001-09-18 23:32:09 +00:00
|
|
|
nfs_convert_oargs(struct nfs_args *args, struct onfs_args *oargs)
|
1997-05-12 19:02:56 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
|
1998-05-19 07:11:27 +00:00
|
|
|
args->version = NFS_ARGSVERSION;
|
|
|
|
args->addr = oargs->addr;
|
|
|
|
args->addrlen = oargs->addrlen;
|
|
|
|
args->sotype = oargs->sotype;
|
|
|
|
args->proto = oargs->proto;
|
|
|
|
args->fh = oargs->fh;
|
|
|
|
args->fhsize = oargs->fhsize;
|
|
|
|
args->flags = oargs->flags;
|
|
|
|
args->wsize = oargs->wsize;
|
|
|
|
args->rsize = oargs->rsize;
|
|
|
|
args->readdirsize = oargs->readdirsize;
|
|
|
|
args->timeo = oargs->timeo;
|
|
|
|
args->retrans = oargs->retrans;
|
|
|
|
args->maxgrouplist = oargs->maxgrouplist;
|
|
|
|
args->readahead = oargs->readahead;
|
|
|
|
args->deadthresh = oargs->deadthresh;
|
|
|
|
args->hostname = oargs->hostname;
|
1997-05-12 19:02:56 +00:00
|
|
|
}
|
|
|
|
|
1998-02-09 06:11:36 +00:00
|
|
|
static void
|
2001-09-18 23:32:09 +00:00
|
|
|
nfs_convert_diskless(void)
|
1997-05-11 18:05:39 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
|
1998-05-19 07:11:27 +00:00
|
|
|
bcopy(&nfs_diskless.myif, &nfsv3_diskless.myif,
|
|
|
|
sizeof(struct ifaliasreq));
|
|
|
|
bcopy(&nfs_diskless.mygateway, &nfsv3_diskless.mygateway,
|
|
|
|
sizeof(struct sockaddr_in));
|
|
|
|
nfs_convert_oargs(&nfsv3_diskless.root_args,&nfs_diskless.root_args);
|
2006-12-06 02:15:25 +00:00
|
|
|
if (nfsv3_diskless.root_args.flags & NFSMNT_NFSV3) {
|
|
|
|
nfsv3_diskless.root_fhsize = NFSX_V3FH;
|
|
|
|
bcopy(nfs_diskless.root_fh, nfsv3_diskless.root_fh, NFSX_V3FH);
|
|
|
|
} else {
|
|
|
|
nfsv3_diskless.root_fhsize = NFSX_V2FH;
|
|
|
|
bcopy(nfs_diskless.root_fh, nfsv3_diskless.root_fh, NFSX_V2FH);
|
|
|
|
}
|
1998-05-19 07:11:27 +00:00
|
|
|
bcopy(&nfs_diskless.root_saddr,&nfsv3_diskless.root_saddr,
|
|
|
|
sizeof(struct sockaddr_in));
|
2001-09-18 23:32:09 +00:00
|
|
|
bcopy(nfs_diskless.root_hostnam, nfsv3_diskless.root_hostnam, MNAMELEN);
|
1998-05-19 07:11:27 +00:00
|
|
|
nfsv3_diskless.root_time = nfs_diskless.root_time;
|
2001-09-18 23:32:09 +00:00
|
|
|
bcopy(nfs_diskless.my_hostnam, nfsv3_diskless.my_hostnam,
|
1998-05-19 07:11:27 +00:00
|
|
|
MAXHOSTNAMELEN);
|
|
|
|
nfs_diskless_valid = 3;
|
1997-05-11 18:05:39 +00:00
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* nfs statfs call
|
|
|
|
*/
|
2002-09-28 17:15:38 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_statfs(struct mount *mp, struct statfs *sbp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
struct vnode *vp;
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td;
|
2001-09-18 23:32:09 +00:00
|
|
|
struct nfs_statfs *sfp;
|
|
|
|
caddr_t bpos, dpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
struct nfsmount *nmp = VFSTONFS(mp);
|
|
|
|
int error = 0, v3 = (nmp->nm_flag & NFSMNT_NFSV3), retattr;
|
2001-09-18 23:32:09 +00:00
|
|
|
struct mbuf *mreq, *mrep, *md, *mb;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nfsnode *np;
|
1995-06-27 11:07:30 +00:00
|
|
|
u_quad_t tquad;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2009-05-11 15:33:26 +00:00
|
|
|
td = curthread;
|
1995-06-27 11:07:30 +00:00
|
|
|
#ifndef nolint
|
2002-07-11 17:54:58 +00:00
|
|
|
sfp = NULL;
|
1995-06-27 11:07:30 +00:00
|
|
|
#endif
|
2008-11-02 10:15:42 +00:00
|
|
|
error = vfs_busy(mp, MBF_NOWAIT);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
2006-09-13 18:39:09 +00:00
|
|
|
error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np, LK_EXCLUSIVE);
|
2006-04-01 01:15:23 +00:00
|
|
|
if (error) {
|
2008-08-31 14:26:08 +00:00
|
|
|
vfs_unbusy(mp);
|
2006-04-01 01:15:23 +00:00
|
|
|
return (error);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
vp = NFSTOV(np);
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
|
|
|
if (v3 && (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
|
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
2002-02-27 18:32:23 +00:00
|
|
|
(void)nfs_fsinfo(nmp, vp, td->td_ucred, td);
|
2006-05-19 00:04:24 +00:00
|
|
|
} else
|
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsstats.rpccnt[NFSPROC_FSSTAT]++;
|
2001-09-18 23:32:09 +00:00
|
|
|
mreq = nfsm_reqhead(vp, NFSPROC_FSSTAT, NFSX_FH(v3));
|
|
|
|
mb = mreq;
|
|
|
|
bpos = mtod(mb, caddr_t);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_fhtom(vp, v3);
|
2002-02-27 18:32:23 +00:00
|
|
|
nfsm_request(vp, NFSPROC_FSSTAT, td, td->td_ucred);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3)
|
|
|
|
nfsm_postop_attr(vp, retattr);
|
1998-05-31 18:19:43 +00:00
|
|
|
if (error) {
|
|
|
|
if (mrep != NULL)
|
1999-04-10 18:53:29 +00:00
|
|
|
m_freem(mrep);
|
Fix a condition where nfs_statfs() can precipitate a panic. There is
code that says this:
nfsm_request(vp, NFSPROC_FSSTAT, p, cred);
if (v3)
nfsm_postop_attr(vp, retattr);
if (!error)
nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
The problem here is that if error != 0, nfsm_dissect() will not be
called, which leaves sfp == NULL. But nfs_statfs() does not bail out
at this point: it continues processing until it tries to dereference
sfp, which causes a panic. I was able to generate this crash under
the following conditions:
1) Set up a machine as an NFS server and NFS client, with amd running
(using NIS maps). /usr/local is exported, though any exported fs
can can be used to trigger the bug.
2) Log in as normal user, with home directory mounted from a SunOS 4.1.3
NFS server via amd (along with a few other NFS filesystems from same
machine).
3) Su to root and type the following:
# mount localhost:/usr/local /mnt
# df
To fix the panic, I changed the code to read:
if (!error) {
nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
} else
goto nfsmout;
This is a bit kludgy in that nfsmout is a label defined by the nfsm_subs.h
macros, but these macros are themselves more than a little kludgy. This
stops the machine from crashing, but does not fix the overall bug: 'error'
somehow becomes 5 (EIO) when a statfs() is performed on the locally mounted
NFS filesystem. This seems to only happen the first time the filesystem
is accesed: on subsequent accesses, it seems to work fine again.
Now, I know there's no practical use in mounting a local filesystem
via NFS, but doing it shouldn't cause the system to melt down.
1997-06-27 19:10:46 +00:00
|
|
|
goto nfsmout;
|
1998-05-31 18:19:43 +00:00
|
|
|
}
|
2001-09-27 22:40:38 +00:00
|
|
|
sfp = nfsm_dissect(struct nfs_statfs *, NFSX_STATFS(v3));
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
1995-07-07 11:01:31 +00:00
|
|
|
sbp->f_iosize = nfs_iosize(nmp);
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
1995-06-27 11:07:30 +00:00
|
|
|
if (v3) {
|
2005-01-18 21:59:44 +00:00
|
|
|
sbp->f_bsize = NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp->sf_tbytes);
|
|
|
|
sbp->f_blocks = tquad / NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp->sf_fbytes);
|
|
|
|
sbp->f_bfree = tquad / NFS_FABLKSIZE;
|
|
|
|
tquad = fxdr_hyper(&sfp->sf_abytes);
|
|
|
|
sbp->f_bavail = tquad / NFS_FABLKSIZE;
|
|
|
|
sbp->f_files = (fxdr_unsigned(int32_t,
|
|
|
|
sfp->sf_tfiles.nfsuquad[1]) & 0x7fffffff);
|
|
|
|
sbp->f_ffree = (fxdr_unsigned(int32_t,
|
|
|
|
sfp->sf_ffiles.nfsuquad[1]) & 0x7fffffff);
|
1994-05-24 10:09:53 +00:00
|
|
|
} else {
|
1998-05-31 20:09:01 +00:00
|
|
|
sbp->f_bsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
|
|
|
|
sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks);
|
|
|
|
sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree);
|
|
|
|
sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail);
|
1994-05-24 10:09:53 +00:00
|
|
|
sbp->f_files = 0;
|
|
|
|
sbp->f_ffree = 0;
|
|
|
|
}
|
2001-09-18 23:32:09 +00:00
|
|
|
m_freem(mrep);
|
|
|
|
nfsmout:
|
1995-06-27 11:07:30 +00:00
|
|
|
vput(vp);
|
2008-08-31 14:26:08 +00:00
|
|
|
vfs_unbusy(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* nfs version 3 fsinfo rpc call
|
|
|
|
*/
|
|
|
|
int
|
2001-09-18 23:32:09 +00:00
|
|
|
nfs_fsinfo(struct nfsmount *nmp, struct vnode *vp, struct ucred *cred,
|
|
|
|
struct thread *td)
|
1995-06-27 11:07:30 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
struct nfsv3_fsinfo *fsp;
|
2001-12-18 01:22:09 +00:00
|
|
|
u_int32_t pref, max;
|
2001-09-18 23:32:09 +00:00
|
|
|
caddr_t bpos, dpos;
|
1995-06-27 11:07:30 +00:00
|
|
|
int error = 0, retattr;
|
2001-09-18 23:32:09 +00:00
|
|
|
struct mbuf *mreq, *mrep, *md, *mb;
|
1998-05-30 16:33:58 +00:00
|
|
|
u_int64_t maxfsize;
|
2006-05-19 00:04:24 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsstats.rpccnt[NFSPROC_FSINFO]++;
|
2001-09-18 23:32:09 +00:00
|
|
|
mreq = nfsm_reqhead(vp, NFSPROC_FSINFO, NFSX_FH(1));
|
|
|
|
mb = mreq;
|
|
|
|
bpos = mtod(mb, caddr_t);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_fhtom(vp, 1);
|
2001-09-12 08:38:13 +00:00
|
|
|
nfsm_request(vp, NFSPROC_FSINFO, td, cred);
|
1995-06-27 11:07:30 +00:00
|
|
|
nfsm_postop_attr(vp, retattr);
|
|
|
|
if (!error) {
|
2001-09-27 22:40:38 +00:00
|
|
|
fsp = nfsm_dissect(struct nfsv3_fsinfo *, NFSX_V3FSINFO);
|
1998-05-31 20:09:01 +00:00
|
|
|
pref = fxdr_unsigned(u_int32_t, fsp->fs_wtpref);
|
2006-05-26 18:45:55 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
1998-05-31 19:20:44 +00:00
|
|
|
if (pref < nmp->nm_wsize && pref >= NFS_FABLKSIZE)
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) &
|
|
|
|
~(NFS_FABLKSIZE - 1);
|
1998-05-31 20:09:01 +00:00
|
|
|
max = fxdr_unsigned(u_int32_t, fsp->fs_wtmax);
|
1998-09-29 23:15:53 +00:00
|
|
|
if (max < nmp->nm_wsize && max > 0) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_wsize == 0)
|
|
|
|
nmp->nm_wsize = max;
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
pref = fxdr_unsigned(u_int32_t, fsp->fs_rtpref);
|
1998-05-31 19:20:44 +00:00
|
|
|
if (pref < nmp->nm_rsize && pref >= NFS_FABLKSIZE)
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) &
|
|
|
|
~(NFS_FABLKSIZE - 1);
|
1998-05-31 20:09:01 +00:00
|
|
|
max = fxdr_unsigned(u_int32_t, fsp->fs_rtmax);
|
1998-09-29 23:15:53 +00:00
|
|
|
if (max < nmp->nm_rsize && max > 0) {
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_rsize == 0)
|
|
|
|
nmp->nm_rsize = max;
|
|
|
|
}
|
1998-05-31 20:09:01 +00:00
|
|
|
pref = fxdr_unsigned(u_int32_t, fsp->fs_dtpref);
|
1998-09-29 23:15:53 +00:00
|
|
|
if (pref < nmp->nm_readdirsize && pref >= NFS_DIRBLKSIZ)
|
|
|
|
nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) &
|
|
|
|
~(NFS_DIRBLKSIZ - 1);
|
|
|
|
if (max < nmp->nm_readdirsize && max > 0) {
|
|
|
|
nmp->nm_readdirsize = max & ~(NFS_DIRBLKSIZ - 1);
|
|
|
|
if (nmp->nm_readdirsize == 0)
|
|
|
|
nmp->nm_readdirsize = max;
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
1999-06-05 05:35:03 +00:00
|
|
|
maxfsize = fxdr_hyper(&fsp->fs_maxfilesize);
|
1998-05-30 16:33:58 +00:00
|
|
|
if (maxfsize > 0 && maxfsize < nmp->nm_maxfilesize)
|
|
|
|
nmp->nm_maxfilesize = maxfsize;
|
2004-01-31 10:40:15 +00:00
|
|
|
nmp->nm_mountp->mnt_stat.f_iosize = nfs_iosize(nmp);
|
1998-05-19 07:11:27 +00:00
|
|
|
nmp->nm_state |= NFSSTA_GOTFSINFO;
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
1995-06-27 11:07:30 +00:00
|
|
|
}
|
2001-09-18 23:32:09 +00:00
|
|
|
m_freem(mrep);
|
|
|
|
nfsmout:
|
1995-06-27 11:07:30 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Mount a remote root fs via. nfs. This depends on the info in the
|
|
|
|
* nfs_diskless structure that has been filled in properly by some primary
|
|
|
|
* bootstrap.
|
|
|
|
* It goes something like this:
|
|
|
|
* - do enough of "ifconfig" by calling ifioctl() so that the system
|
|
|
|
* can talk to the server
|
|
|
|
* - If nfs_diskless.mygateway is filled in, use that address as
|
|
|
|
* a default gateway.
|
|
|
|
* - build the rootfs mount point and call mountnfs() to do the rest.
|
2004-12-05 22:53:17 +00:00
|
|
|
*
|
|
|
|
* It is assumed to be safe to read, modify, and write the nfsv3_diskless
|
|
|
|
* structure, as well as other global NFS client variables here, as
|
|
|
|
* nfs_mountroot() will be called once in the boot before any other NFS
|
|
|
|
* client activity occurs.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_mountroot(struct mount *mp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td = curthread;
|
1997-05-11 18:05:39 +00:00
|
|
|
struct nfsv3_diskless *nd = &nfsv3_diskless;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct socket *so;
|
|
|
|
struct vnode *vp;
|
2006-08-09 01:56:17 +00:00
|
|
|
struct ifreq ir;
|
2009-05-29 21:27:12 +00:00
|
|
|
int error;
|
1994-10-22 17:52:59 +00:00
|
|
|
u_long l;
|
|
|
|
char buf[128];
|
2006-08-09 01:56:17 +00:00
|
|
|
char *cp;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2010-01-09 14:56:38 +00:00
|
|
|
|
2004-07-08 22:35:36 +00:00
|
|
|
#if defined(BOOTP_NFSROOT) && defined(BOOTP)
|
|
|
|
bootpc_init(); /* use bootp to get nfs_diskless filled in */
|
|
|
|
#elif defined(NFS_ROOT)
|
|
|
|
nfs_setup_diskless();
|
1999-11-01 23:55:38 +00:00
|
|
|
#endif
|
|
|
|
|
2010-01-09 14:56:38 +00:00
|
|
|
if (nfs_diskless_valid == 0) {
|
2002-09-22 00:59:02 +00:00
|
|
|
return (-1);
|
2010-01-09 14:56:38 +00:00
|
|
|
}
|
2002-09-22 00:59:02 +00:00
|
|
|
if (nfs_diskless_valid == 1)
|
2001-09-18 23:32:09 +00:00
|
|
|
nfs_convert_diskless();
|
1997-05-11 18:05:39 +00:00
|
|
|
|
1995-05-30 08:16:23 +00:00
|
|
|
/*
|
1994-10-22 17:52:59 +00:00
|
|
|
* XXX splnet, so networks will receive...
|
|
|
|
*/
|
|
|
|
splnet();
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Do enough of ifconfig(8) so that the critical net interface can
|
|
|
|
* talk to the server.
|
|
|
|
*/
|
2007-01-30 00:26:04 +00:00
|
|
|
error = socreate(nd->myif.ifra_addr.sa_family, &so, nd->root_args.sotype, 0,
|
2002-02-27 18:32:23 +00:00
|
|
|
td->td_ucred, td);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-10-22 17:52:59 +00:00
|
|
|
panic("nfs_mountroot: socreate(%04x): %d",
|
|
|
|
nd->myif.ifra_addr.sa_family, error);
|
|
|
|
|
2000-09-05 22:29:36 +00:00
|
|
|
#if 0 /* XXX Bad idea */
|
1994-10-22 17:52:59 +00:00
|
|
|
/*
|
|
|
|
* We might not have been told the right interface, so we pass
|
|
|
|
* over the first ten interfaces of the same kind, until we get
|
|
|
|
* one of them configured.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = strlen(nd->myif.ifra_name) - 1;
|
1995-05-30 08:16:23 +00:00
|
|
|
nd->myif.ifra_name[i] >= '0' &&
|
1994-10-22 17:52:59 +00:00
|
|
|
nd->myif.ifra_name[i] <= '9';
|
|
|
|
nd->myif.ifra_name[i] ++) {
|
2001-09-12 08:38:13 +00:00
|
|
|
error = ifioctl(so, SIOCAIFADDR, (caddr_t)&nd->myif, td);
|
1995-05-30 08:16:23 +00:00
|
|
|
if(!error)
|
1994-10-22 17:52:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-09-05 22:29:36 +00:00
|
|
|
#endif
|
2009-09-15 01:01:03 +00:00
|
|
|
|
2009-09-15 22:09:42 +00:00
|
|
|
error = ifioctl(so, SIOCAIFADDR, (caddr_t)&nd->myif, td);
|
|
|
|
if (error)
|
|
|
|
panic("nfs_mountroot: SIOCAIFADDR: %d", error);
|
|
|
|
|
2006-08-09 01:56:17 +00:00
|
|
|
if ((cp = getenv("boot.netif.mtu")) != NULL) {
|
|
|
|
ir.ifr_mtu = strtol(cp, NULL, 10);
|
|
|
|
bcopy(nd->myif.ifra_name, ir.ifr_name, IFNAMSIZ);
|
|
|
|
freeenv(cp);
|
|
|
|
error = ifioctl(so, SIOCSIFMTU, (caddr_t)&ir, td);
|
|
|
|
if (error)
|
|
|
|
printf("nfs_mountroot: SIOCSIFMTU: %d", error);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
soclose(so);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the gateway field is filled in, set it as the default route.
|
2002-09-26 19:56:43 +00:00
|
|
|
* Note that pxeboot will set a default route of 0 if the route
|
|
|
|
* is not set by the DHCP server. Check also for a value of 0
|
|
|
|
* to avoid panicking inappropriately in that situation.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
2002-09-26 19:56:43 +00:00
|
|
|
if (nd->mygateway.sin_len != 0 &&
|
|
|
|
nd->mygateway.sin_addr.s_addr != 0) {
|
1994-05-24 10:09:53 +00:00
|
|
|
struct sockaddr_in mask, sin;
|
|
|
|
|
|
|
|
bzero((caddr_t)&mask, sizeof(mask));
|
|
|
|
sin = mask;
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_len = sizeof(sin);
|
Add code to allow the system to handle multiple routing tables.
This particular implementation is designed to be fully backwards compatible
and to be MFC-able to 7.x (and 6.x)
Currently the only protocol that can make use of the multiple tables is IPv4
Similar functionality exists in OpenBSD and Linux.
From my notes:
-----
One thing where FreeBSD has been falling behind, and which by chance I
have some time to work on is "policy based routing", which allows
different
packet streams to be routed by more than just the destination address.
Constraints:
------------
I want to make some form of this available in the 6.x tree
(and by extension 7.x) , but FreeBSD in general needs it so I might as
well do it in -current and back port the portions I need.
One of the ways that this can be done is to have the ability to
instantiate multiple kernel routing tables (which I will now
refer to as "Forwarding Information Bases" or "FIBs" for political
correctness reasons). Which FIB a particular packet uses to make
the next hop decision can be decided by a number of mechanisms.
The policies these mechanisms implement are the "Policies" referred
to in "Policy based routing".
One of the constraints I have if I try to back port this work to
6.x is that it must be implemented as a EXTENSION to the existing
ABIs in 6.x so that third party applications do not need to be
recompiled in timespan of the branch.
This first version will not have some of the bells and whistles that
will come with later versions. It will, for example, be limited to 16
tables in the first commit.
Implementation method, Compatible version. (part 1)
-------------------------------
For this reason I have implemented a "sufficient subset" of a
multiple routing table solution in Perforce, and back-ported it
to 6.x. (also in Perforce though not always caught up with what I
have done in -current/P4). The subset allows a number of FIBs
to be defined at compile time (8 is sufficient for my purposes in 6.x)
and implements the changes needed to allow IPV4 to use them. I have not
done the changes for ipv6 simply because I do not need it, and I do not
have enough knowledge of ipv6 (e.g. neighbor discovery) needed to do it.
Other protocol families are left untouched and should there be
users with proprietary protocol families, they should continue to work
and be oblivious to the existence of the extra FIBs.
To understand how this is done, one must know that the current FIB
code starts everything off with a single dimensional array of
pointers to FIB head structures (One per protocol family), each of
which in turn points to the trie of routes available to that family.
The basic change in the ABI compatible version of the change is to
extent that array to be a 2 dimensional array, so that
instead of protocol family X looking at rt_tables[X] for the
table it needs, it looks at rt_tables[Y][X] when for all
protocol families except ipv4 Y is always 0.
Code that is unaware of the change always just sees the first row
of the table, which of course looks just like the one dimensional
array that existed before.
The entry points rtrequest(), rtalloc(), rtalloc1(), rtalloc_ign()
are all maintained, but refer only to the first row of the array,
so that existing callers in proprietary protocols can continue to
do the "right thing".
Some new entry points are added, for the exclusive use of ipv4 code
called in_rtrequest(), in_rtalloc(), in_rtalloc1() and in_rtalloc_ign(),
which have an extra argument which refers the code to the correct row.
In addition, there are some new entry points (currently called
rtalloc_fib() and friends) that check the Address family being
looked up and call either rtalloc() (and friends) if the protocol
is not IPv4 forcing the action to row 0 or to the appropriate row
if it IS IPv4 (and that info is available). These are for calling
from code that is not specific to any particular protocol. The way
these are implemented would change in the non ABI preserving code
to be added later.
One feature of the first version of the code is that for ipv4,
the interface routes show up automatically on all the FIBs, so
that no matter what FIB you select you always have the basic
direct attached hosts available to you. (rtinit() does this
automatically).
You CAN delete an interface route from one FIB should you want
to but by default it's there. ARP information is also available
in each FIB. It's assumed that the same machine would have the
same MAC address, regardless of which FIB you are using to get
to it.
This brings us as to how the correct FIB is selected for an outgoing
IPV4 packet.
Firstly, all packets have a FIB associated with them. if nothing
has been done to change it, it will be FIB 0. The FIB is changed
in the following ways.
Packets fall into one of a number of classes.
1/ locally generated packets, coming from a socket/PCB.
Such packets select a FIB from a number associated with the
socket/PCB. This in turn is inherited from the process,
but can be changed by a socket option. The process in turn
inherits it on fork. I have written a utility call setfib
that acts a bit like nice..
setfib -3 ping target.example.com # will use fib 3 for ping.
It is an obvious extension to make it a property of a jail
but I have not done so. It can be achieved by combining the setfib and
jail commands.
2/ packets received on an interface for forwarding.
By default these packets would use table 0,
(or possibly a number settable in a sysctl(not yet)).
but prior to routing the firewall can inspect them (see below).
(possibly in the future you may be able to associate a FIB
with packets received on an interface.. An ifconfig arg, but not yet.)
3/ packets inspected by a packet classifier, which can arbitrarily
associate a fib with it on a packet by packet basis.
A fib assigned to a packet by a packet classifier
(such as ipfw) would over-ride a fib associated by
a more default source. (such as cases 1 or 2).
4/ a tcp listen socket associated with a fib will generate
accept sockets that are associated with that same fib.
5/ Packets generated in response to some other packet (e.g. reset
or icmp packets). These should use the FIB associated with the
packet being reponded to.
6/ Packets generated during encapsulation.
gif, tun and other tunnel interfaces will encapsulate using the FIB
that was in effect withthe proces that set up the tunnel.
thus setfib 1 ifconfig gif0 [tunnel instructions]
will set the fib for the tunnel to use to be fib 1.
Routing messages would be associated with their
process, and thus select one FIB or another.
messages from the kernel would be associated with the fib they
refer to and would only be received by a routing socket associated
with that fib. (not yet implemented)
In addition Netstat has been edited to be able to cope with the
fact that the array is now 2 dimensional. (It looks in system
memory using libkvm (!)). Old versions of netstat see only the first FIB.
In addition two sysctls are added to give:
a) the number of FIBs compiled in (active)
b) the default FIB of the calling process.
Early testing experience:
-------------------------
Basically our (IronPort's) appliance does this functionality already
using ipfw fwd but that method has some drawbacks.
For example,
It can't fully simulate a routing table because it can't influence the
socket's choice of local address when a connect() is done.
Testing during the generating of these changes has been
remarkably smooth so far. Multiple tables have co-existed
with no notable side effects, and packets have been routes
accordingly.
ipfw has grown 2 new keywords:
setfib N ip from anay to any
count ip from any to any fib N
In pf there seems to be a requirement to be able to give symbolic names to the
fibs but I do not have that capacity. I am not sure if it is required.
SCTP has interestingly enough built in support for this, called VRFs
in Cisco parlance. it will be interesting to see how that handles it
when it suddenly actually does something.
Where to next:
--------------------
After committing the ABI compatible version and MFCing it, I'd
like to proceed in a forward direction in -current. this will
result in some roto-tilling in the routing code.
Firstly: the current code's idea of having a separate tree per
protocol family, all of the same format, and pointed to by the
1 dimensional array is a bit silly. Especially when one considers that
there is code that makes assumptions about every protocol having the
same internal structures there. Some protocols don't WANT that
sort of structure. (for example the whole idea of a netmask is foreign
to appletalk). This needs to be made opaque to the external code.
My suggested first change is to add routing method pointers to the
'domain' structure, along with information pointing the data.
instead of having an array of pointers to uniform structures,
there would be an array pointing to the 'domain' structures
for each protocol address domain (protocol family),
and the methods this reached would be called. The methods would have
an argument that gives FIB number, but the protocol would be free
to ignore it.
When the ABI can be changed it raises the possibilty of the
addition of a fib entry into the "struct route". Currently,
the structure contains the sockaddr of the desination, and the resulting
fib entry. To make this work fully, one could add a fib number
so that given an address and a fib, one can find the third element, the
fib entry.
Interaction with the ARP layer/ LL layer would need to be
revisited as well. Qing Li has been working on this already.
This work was sponsored by Ironport Systems/Cisco
Reviewed by: several including rwatson, bz and mlair (parts each)
Obtained from: Ironport systems/Cisco
2008-05-09 23:03:00 +00:00
|
|
|
/* XXX MRT use table 0 for this sort of thing */
|
2011-02-16 21:29:13 +00:00
|
|
|
CURVNET_SET(TD_TO_VNET(td));
|
2012-02-03 13:08:44 +00:00
|
|
|
error = rtrequest_fib(RTM_ADD, (struct sockaddr *)&sin,
|
1994-05-24 10:09:53 +00:00
|
|
|
(struct sockaddr *)&nd->mygateway,
|
|
|
|
(struct sockaddr *)&mask,
|
2012-02-03 13:08:44 +00:00
|
|
|
RTF_UP | RTF_GATEWAY, NULL, RT_DEFAULT_FIB);
|
2011-02-16 21:29:13 +00:00
|
|
|
CURVNET_RESTORE();
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
panic("nfs_mountroot: RTM_ADD: %d", error);
|
|
|
|
}
|
|
|
|
|
1997-05-04 15:04:49 +00:00
|
|
|
/*
|
|
|
|
* Create the rootfs mount point.
|
|
|
|
*/
|
|
|
|
nd->root_args.fh = nd->root_fh;
|
1997-05-11 18:05:39 +00:00
|
|
|
nd->root_args.fhsize = nd->root_fhsize;
|
1997-05-04 15:04:49 +00:00
|
|
|
l = ntohl(nd->root_saddr.sin_addr.s_addr);
|
1998-12-04 22:54:57 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%ld.%ld.%ld.%ld:%s",
|
1997-05-04 15:04:49 +00:00
|
|
|
(l >> 24) & 0xff, (l >> 16) & 0xff,
|
2001-09-18 23:32:09 +00:00
|
|
|
(l >> 8) & 0xff, (l >> 0) & 0xff, nd->root_hostnam);
|
|
|
|
printf("NFS ROOT: %s\n", buf);
|
2008-06-26 10:21:54 +00:00
|
|
|
nd->root_args.hostname = buf;
|
2008-02-17 22:32:08 +00:00
|
|
|
if ((error = nfs_mountdiskless(buf,
|
2003-11-12 02:54:47 +00:00
|
|
|
&nd->root_saddr, &nd->root_args, td, &vp, mp)) != 0) {
|
1997-05-04 15:04:49 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* This is not really an nfs issue, but it is much easier to
|
|
|
|
* set hostname here and then let the "/etc/rc.xxx" files
|
|
|
|
* mount the right /var based upon its preset value.
|
|
|
|
*/
|
2009-05-29 21:27:12 +00:00
|
|
|
mtx_lock(&prison0.pr_mtx);
|
2009-06-13 15:39:12 +00:00
|
|
|
strlcpy(prison0.pr_hostname, nd->my_hostnam,
|
|
|
|
sizeof (prison0.pr_hostname));
|
2009-05-29 21:27:12 +00:00
|
|
|
mtx_unlock(&prison0.pr_mtx);
|
1994-05-24 10:09:53 +00:00
|
|
|
inittodr(ntohl(nd->root_time));
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal version of mount system call for diskless setup.
|
|
|
|
*/
|
1997-02-10 02:22:35 +00:00
|
|
|
static int
|
2008-02-17 22:32:08 +00:00
|
|
|
nfs_mountdiskless(char *path,
|
2001-09-18 23:32:09 +00:00
|
|
|
struct sockaddr_in *sin, struct nfs_args *args, struct thread *td,
|
2003-11-12 02:54:47 +00:00
|
|
|
struct vnode **vpp, struct mount *mp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam;
|
1997-02-10 02:22:35 +00:00
|
|
|
int error;
|
1997-05-04 15:04:49 +00:00
|
|
|
|
2004-03-01 03:14:23 +00:00
|
|
|
nam = sodupsockaddr((struct sockaddr *)sin, M_WAITOK);
|
2012-01-25 20:05:58 +00:00
|
|
|
if ((error = mountnfs(args, mp, nam, path, vpp, td->td_ucred,
|
|
|
|
NFS_DEFAULT_NAMETIMEO, NFS_DEFAULT_NEGNAMETIMEO)) != 0) {
|
2004-12-07 14:26:39 +00:00
|
|
|
printf("nfs_mountroot: mount %s on /: %d\n", path, error);
|
1997-02-10 02:22:35 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
static int
|
|
|
|
nfs_sec_name_to_num(char *sec)
|
|
|
|
{
|
|
|
|
if (!strcmp(sec, "krb5"))
|
|
|
|
return (RPCSEC_GSS_KRB5);
|
|
|
|
if (!strcmp(sec, "krb5i"))
|
|
|
|
return (RPCSEC_GSS_KRB5I);
|
|
|
|
if (!strcmp(sec, "krb5p"))
|
|
|
|
return (RPCSEC_GSS_KRB5P);
|
|
|
|
if (!strcmp(sec, "sys"))
|
|
|
|
return (AUTH_SYS);
|
|
|
|
/*
|
|
|
|
* Userland should validate the string but we will try and
|
|
|
|
* cope with unexpected values.
|
|
|
|
*/
|
|
|
|
return (AUTH_SYS);
|
|
|
|
}
|
|
|
|
|
1998-05-31 20:09:01 +00:00
|
|
|
static void
|
2008-07-24 13:42:28 +00:00
|
|
|
nfs_decode_args(struct mount *mp, struct nfsmount *nmp, struct nfs_args *argp,
|
|
|
|
const char *hostname)
|
1998-05-31 19:49:31 +00:00
|
|
|
{
|
|
|
|
int s;
|
|
|
|
int adjsock;
|
|
|
|
int maxio;
|
2008-06-26 10:21:54 +00:00
|
|
|
char *p;
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
char *secname;
|
|
|
|
char *principal;
|
1998-05-31 19:49:31 +00:00
|
|
|
|
|
|
|
s = splnet();
|
2005-05-17 12:00:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set read-only flag if requested; otherwise, clear it if this is
|
|
|
|
* an update. If this is not an update, then either the read-only
|
|
|
|
* flag is already clear, or this is a root mount and it was set
|
|
|
|
* intentionally at some previous point.
|
|
|
|
*/
|
2006-09-26 04:12:49 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "ro", NULL, NULL) == 0) {
|
|
|
|
MNT_ILOCK(mp);
|
2004-12-07 08:15:41 +00:00
|
|
|
mp->mnt_flag |= MNT_RDONLY;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
|
|
|
} else if (mp->mnt_flag & MNT_UPDATE) {
|
|
|
|
MNT_ILOCK(mp);
|
2005-05-17 12:00:43 +00:00
|
|
|
mp->mnt_flag &= ~MNT_RDONLY;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
|
|
|
}
|
2005-05-17 12:00:43 +00:00
|
|
|
|
1998-05-31 19:49:31 +00:00
|
|
|
/*
|
|
|
|
* Silently clear NFSMNT_NOCONN if it's a TCP mount, it makes
|
2006-05-23 18:48:07 +00:00
|
|
|
* no sense in that context. Also, set up appropriate retransmit
|
|
|
|
* and soft timeout behavior.
|
1998-05-31 19:49:31 +00:00
|
|
|
*/
|
2006-05-23 18:48:07 +00:00
|
|
|
if (argp->sotype == SOCK_STREAM) {
|
1998-05-31 19:49:31 +00:00
|
|
|
nmp->nm_flag &= ~NFSMNT_NOCONN;
|
2006-05-23 18:48:07 +00:00
|
|
|
nmp->nm_flag |= NFSMNT_DUMBTIMR;
|
|
|
|
nmp->nm_timeo = NFS_MAXTIMEO;
|
|
|
|
nmp->nm_retry = NFS_RETRANS_TCP;
|
|
|
|
}
|
1998-05-31 19:49:31 +00:00
|
|
|
|
|
|
|
/* Also clear RDIRPLUS if not NFSv3, it crashes some servers */
|
|
|
|
if ((argp->flags & NFSMNT_NFSV3) == 0)
|
|
|
|
nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
|
|
|
|
|
|
|
|
/* Re-bind if rsrvd port requested and wasn't on one */
|
|
|
|
adjsock = !(nmp->nm_flag & NFSMNT_RESVPORT)
|
|
|
|
&& (argp->flags & NFSMNT_RESVPORT);
|
|
|
|
/* Also re-bind if we're switching to/from a connected UDP socket */
|
|
|
|
adjsock |= ((nmp->nm_flag & NFSMNT_NOCONN) !=
|
|
|
|
(argp->flags & NFSMNT_NOCONN));
|
|
|
|
|
|
|
|
/* Update flags atomically. Don't change the lock bits. */
|
|
|
|
nmp->nm_flag = argp->flags | nmp->nm_flag;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) {
|
|
|
|
nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
|
|
|
|
if (nmp->nm_timeo < NFS_MINTIMEO)
|
|
|
|
nmp->nm_timeo = NFS_MINTIMEO;
|
|
|
|
else if (nmp->nm_timeo > NFS_MAXTIMEO)
|
|
|
|
nmp->nm_timeo = NFS_MAXTIMEO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1) {
|
|
|
|
nmp->nm_retry = argp->retrans;
|
|
|
|
if (nmp->nm_retry > NFS_MAXREXMIT)
|
|
|
|
nmp->nm_retry = NFS_MAXREXMIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argp->flags & NFSMNT_NFSV3) {
|
|
|
|
if (argp->sotype == SOCK_DGRAM)
|
|
|
|
maxio = NFS_MAXDGRAMDATA;
|
|
|
|
else
|
|
|
|
maxio = NFS_MAXDATA;
|
|
|
|
} else
|
|
|
|
maxio = NFS_V2MAXDATA;
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) {
|
|
|
|
nmp->nm_wsize = argp->wsize;
|
|
|
|
/* Round down to multiple of blocksize */
|
|
|
|
nmp->nm_wsize &= ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_wsize <= 0)
|
|
|
|
nmp->nm_wsize = NFS_FABLKSIZE;
|
|
|
|
}
|
|
|
|
if (nmp->nm_wsize > maxio)
|
|
|
|
nmp->nm_wsize = maxio;
|
|
|
|
if (nmp->nm_wsize > MAXBSIZE)
|
|
|
|
nmp->nm_wsize = MAXBSIZE;
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0) {
|
|
|
|
nmp->nm_rsize = argp->rsize;
|
|
|
|
/* Round down to multiple of blocksize */
|
|
|
|
nmp->nm_rsize &= ~(NFS_FABLKSIZE - 1);
|
|
|
|
if (nmp->nm_rsize <= 0)
|
|
|
|
nmp->nm_rsize = NFS_FABLKSIZE;
|
|
|
|
}
|
|
|
|
if (nmp->nm_rsize > maxio)
|
|
|
|
nmp->nm_rsize = maxio;
|
|
|
|
if (nmp->nm_rsize > MAXBSIZE)
|
|
|
|
nmp->nm_rsize = MAXBSIZE;
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_READDIRSIZE) && argp->readdirsize > 0) {
|
|
|
|
nmp->nm_readdirsize = argp->readdirsize;
|
|
|
|
}
|
|
|
|
if (nmp->nm_readdirsize > maxio)
|
|
|
|
nmp->nm_readdirsize = maxio;
|
|
|
|
if (nmp->nm_readdirsize > nmp->nm_rsize)
|
|
|
|
nmp->nm_readdirsize = nmp->nm_rsize;
|
|
|
|
|
|
|
|
if ((argp->flags & NFSMNT_ACREGMIN) && argp->acregmin >= 0)
|
|
|
|
nmp->nm_acregmin = argp->acregmin;
|
|
|
|
else
|
|
|
|
nmp->nm_acregmin = NFS_MINATTRTIMO;
|
|
|
|
if ((argp->flags & NFSMNT_ACREGMAX) && argp->acregmax >= 0)
|
|
|
|
nmp->nm_acregmax = argp->acregmax;
|
|
|
|
else
|
|
|
|
nmp->nm_acregmax = NFS_MAXATTRTIMO;
|
|
|
|
if ((argp->flags & NFSMNT_ACDIRMIN) && argp->acdirmin >= 0)
|
|
|
|
nmp->nm_acdirmin = argp->acdirmin;
|
|
|
|
else
|
|
|
|
nmp->nm_acdirmin = NFS_MINDIRATTRTIMO;
|
|
|
|
if ((argp->flags & NFSMNT_ACDIRMAX) && argp->acdirmax >= 0)
|
|
|
|
nmp->nm_acdirmax = argp->acdirmax;
|
|
|
|
else
|
|
|
|
nmp->nm_acdirmax = NFS_MAXDIRATTRTIMO;
|
|
|
|
if (nmp->nm_acdirmin > nmp->nm_acdirmax)
|
|
|
|
nmp->nm_acdirmin = nmp->nm_acdirmax;
|
|
|
|
if (nmp->nm_acregmin > nmp->nm_acregmax)
|
|
|
|
nmp->nm_acregmin = nmp->nm_acregmax;
|
|
|
|
|
2000-01-05 05:11:37 +00:00
|
|
|
if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0) {
|
|
|
|
if (argp->maxgrouplist <= NFS_MAXGRPS)
|
|
|
|
nmp->nm_numgrps = argp->maxgrouplist;
|
|
|
|
else
|
|
|
|
nmp->nm_numgrps = NFS_MAXGRPS;
|
|
|
|
}
|
|
|
|
if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0) {
|
|
|
|
if (argp->readahead <= NFS_MAXRAHEAD)
|
|
|
|
nmp->nm_readahead = argp->readahead;
|
|
|
|
else
|
|
|
|
nmp->nm_readahead = NFS_MAXRAHEAD;
|
|
|
|
}
|
2005-06-10 23:50:41 +00:00
|
|
|
if ((argp->flags & NFSMNT_WCOMMITSIZE) && argp->wcommitsize >= 0) {
|
|
|
|
if (argp->wcommitsize < nmp->nm_wsize)
|
|
|
|
nmp->nm_wcommitsize = nmp->nm_wsize;
|
|
|
|
else
|
|
|
|
nmp->nm_wcommitsize = argp->wcommitsize;
|
|
|
|
}
|
2001-09-18 23:32:09 +00:00
|
|
|
if ((argp->flags & NFSMNT_DEADTHRESH) && argp->deadthresh >= 0) {
|
|
|
|
if (argp->deadthresh <= NFS_MAXDEADTHRESH)
|
2000-01-05 05:11:37 +00:00
|
|
|
nmp->nm_deadthresh = argp->deadthresh;
|
|
|
|
else
|
2001-09-18 23:32:09 +00:00
|
|
|
nmp->nm_deadthresh = NFS_MAXDEADTHRESH;
|
2000-01-05 05:11:37 +00:00
|
|
|
}
|
1998-05-31 19:49:31 +00:00
|
|
|
|
|
|
|
adjsock |= ((nmp->nm_sotype != argp->sotype) ||
|
|
|
|
(nmp->nm_soproto != argp->proto));
|
|
|
|
nmp->nm_sotype = argp->sotype;
|
|
|
|
nmp->nm_soproto = argp->proto;
|
|
|
|
|
2009-06-30 19:03:27 +00:00
|
|
|
if (nmp->nm_client && adjsock) {
|
1998-05-31 19:49:31 +00:00
|
|
|
nfs_safedisconnect(nmp);
|
|
|
|
if (nmp->nm_sotype == SOCK_DGRAM)
|
2009-06-30 19:10:17 +00:00
|
|
|
while (nfs_connect(nmp)) {
|
1998-05-31 19:49:31 +00:00
|
|
|
printf("nfs_args: retrying connect\n");
|
2008-07-22 21:27:22 +00:00
|
|
|
(void) tsleep(&fake_wchan, PSOCK, "nfscon", hz);
|
1998-05-31 19:49:31 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-26 10:21:54 +00:00
|
|
|
|
2008-07-24 13:42:28 +00:00
|
|
|
if (hostname) {
|
2008-07-24 14:02:03 +00:00
|
|
|
strlcpy(nmp->nm_hostname, hostname,
|
2008-07-24 13:42:28 +00:00
|
|
|
sizeof(nmp->nm_hostname));
|
|
|
|
p = strchr(nmp->nm_hostname, ':');
|
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
|
|
|
}
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "sec",
|
|
|
|
(void **) &secname, NULL) == 0) {
|
|
|
|
nmp->nm_secflavor = nfs_sec_name_to_num(secname);
|
|
|
|
} else {
|
|
|
|
nmp->nm_secflavor = AUTH_SYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "principal",
|
|
|
|
(void **) &principal, NULL) == 0) {
|
|
|
|
strlcpy(nmp->nm_principal, principal,
|
|
|
|
sizeof(nmp->nm_principal));
|
|
|
|
} else {
|
|
|
|
snprintf(nmp->nm_principal, sizeof(nmp->nm_principal),
|
|
|
|
"nfs@%s", nmp->nm_hostname);
|
|
|
|
}
|
1998-05-31 19:49:31 +00:00
|
|
|
}
|
|
|
|
|
Add the following mount options to the nfs_opts array:
noatime, noexec, suiddir, nosuid, nosymfollow, union,
noclusterr, noclusterw, multilabel, acls, force, update,
async. These options correspond to MOPT_STDOPTS, MOPT_FORCE, MOPT_UPDATE,
and MOPT_ASYNC.
Currently, mount_nfs converts these "-o" options from strings
to MNT_ flags via getmntopts(),
and passes the flags from userspace to the kernel.
This change will allow us in future to pass these mount options
as strings directly to the kernel via nmount() when doing NFS mounts.
2007-10-27 16:28:05 +00:00
|
|
|
static const char *nfs_opts[] = { "from", "nfs_args",
|
|
|
|
"noatime", "noexec", "suiddir", "nosuid", "nosymfollow", "union",
|
|
|
|
"noclusterr", "noclusterw", "multilabel", "acls", "force", "update",
|
2008-03-05 10:09:29 +00:00
|
|
|
"async", "dumbtimer", "noconn", "nolockd", "intr", "rdirplus", "resvport",
|
2010-10-27 14:08:37 +00:00
|
|
|
"readahead", "readdirsize", "soft", "hard", "mntudp", "tcp", "udp",
|
|
|
|
"wsize", "rsize", "retrans", "acregmin", "acregmax", "acdirmin",
|
|
|
|
"acdirmax", "deadthresh", "hostname", "timeout", "addr", "fh", "nfsv3",
|
2011-11-14 18:52:07 +00:00
|
|
|
"sec", "maxgroups", "principal", "negnametimeo", "nocto", "wcommitsize",
|
2012-01-25 20:05:58 +00:00
|
|
|
"nametimeo",
|
2008-03-05 10:09:29 +00:00
|
|
|
NULL };
|
2004-12-07 08:15:41 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* VFS Operations.
|
|
|
|
*
|
|
|
|
* mount system call
|
|
|
|
* It seems a bit dumb to copyinstr() the host and path here and then
|
|
|
|
* bcopy() them in mountnfs(), but I wanted to detect errors before
|
|
|
|
* doing the sockargs() call because sockargs() allocates an mbuf and
|
|
|
|
* an error after that means that I have to release the mbuf.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_mount(struct mount *mp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2008-03-05 09:41:22 +00:00
|
|
|
struct nfs_args args = {
|
|
|
|
.version = NFS_ARGSVERSION,
|
|
|
|
.addr = NULL,
|
|
|
|
.addrlen = sizeof (struct sockaddr_in),
|
|
|
|
.sotype = SOCK_STREAM,
|
|
|
|
.proto = 0,
|
|
|
|
.fh = NULL,
|
|
|
|
.fhsize = 0,
|
|
|
|
.flags = NFSMNT_RESVPORT,
|
|
|
|
.wsize = NFS_WSIZE,
|
|
|
|
.rsize = NFS_RSIZE,
|
|
|
|
.readdirsize = NFS_READDIRSIZE,
|
|
|
|
.timeo = 10,
|
|
|
|
.retrans = NFS_RETRANS,
|
|
|
|
.maxgrouplist = NFS_MAXGRPS,
|
|
|
|
.readahead = NFS_DEFRAHEAD,
|
|
|
|
.wcommitsize = 0, /* was: NQ_DEFLEASE */
|
|
|
|
.deadthresh = NFS_MAXDEADTHRESH, /* was: NQ_DEADTHRESH */
|
|
|
|
.hostname = NULL,
|
|
|
|
/* args version 4 */
|
|
|
|
.acregmin = NFS_MINATTRTIMO,
|
|
|
|
.acregmax = NFS_MAXATTRTIMO,
|
|
|
|
.acdirmin = NFS_MINDIRATTRTIMO,
|
|
|
|
.acdirmax = NFS_MAXDIRATTRTIMO,
|
|
|
|
};
|
2008-09-13 18:57:47 +00:00
|
|
|
int error, ret, has_nfs_args_opt;
|
|
|
|
int has_addr_opt, has_fh_opt, has_hostname_opt;
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr *nam;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *vp;
|
2001-03-01 21:00:17 +00:00
|
|
|
char hst[MNAMELEN];
|
1998-06-07 17:13:14 +00:00
|
|
|
size_t len;
|
1995-06-27 11:07:30 +00:00
|
|
|
u_char nfh[NFSX_V3FHMAX];
|
2008-09-13 18:57:47 +00:00
|
|
|
char *opt;
|
2012-01-25 20:05:58 +00:00
|
|
|
int nametimeo = NFS_DEFAULT_NAMETIMEO;
|
2010-01-21 20:57:25 +00:00
|
|
|
int negnametimeo = NFS_DEFAULT_NEGNAMETIMEO;
|
2008-09-13 18:57:47 +00:00
|
|
|
|
|
|
|
has_nfs_args_opt = 0;
|
|
|
|
has_addr_opt = 0;
|
|
|
|
has_fh_opt = 0;
|
|
|
|
has_hostname_opt = 0;
|
2004-12-07 08:15:41 +00:00
|
|
|
|
2006-05-19 00:04:24 +00:00
|
|
|
if (vfs_filteropt(mp->mnt_optnew, nfs_opts)) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2008-02-17 22:32:08 +00:00
|
|
|
if ((mp->mnt_flag & (MNT_ROOTFS | MNT_UPDATE)) == MNT_ROOTFS) {
|
2009-05-11 15:33:26 +00:00
|
|
|
error = nfs_mountroot(mp);
|
2006-05-19 00:04:24 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2004-12-07 08:15:41 +00:00
|
|
|
|
2008-09-13 18:57:47 +00:00
|
|
|
/*
|
|
|
|
* The old mount_nfs program passed the struct nfs_args
|
|
|
|
* from userspace to kernel. The new mount_nfs program
|
|
|
|
* passes string options via nmount() from userspace to kernel
|
|
|
|
* and we populate the struct nfs_args in the kernel.
|
|
|
|
*/
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "nfs_args", NULL, NULL) == 0) {
|
|
|
|
error = vfs_copyopt(mp->mnt_optnew, "nfs_args", &args,
|
|
|
|
sizeof args);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
2004-12-07 08:15:41 +00:00
|
|
|
|
2008-09-13 18:57:47 +00:00
|
|
|
if (args.version != NFS_ARGSVERSION) {
|
|
|
|
error = EPROGMISMATCH;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
has_nfs_args_opt = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "dumbtimer", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_DUMBTIMR;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "noconn", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_NOCONN;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "conn", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_NOCONN;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "nolockd", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_NOLOCKD;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "lockd", NULL, NULL) == 0)
|
|
|
|
args.flags &= ~NFSMNT_NOLOCKD;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "intr", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_INT;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "rdirplus", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_RDIRPLUS;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "resvport", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_RESVPORT;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "noresvport", NULL, NULL) == 0)
|
|
|
|
args.flags &= ~NFSMNT_RESVPORT;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "soft", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_SOFT;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "hard", NULL, NULL) == 0)
|
|
|
|
args.flags &= ~NFSMNT_SOFT;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "mntudp", NULL, NULL) == 0)
|
|
|
|
args.sotype = SOCK_DGRAM;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "udp", NULL, NULL) == 0)
|
|
|
|
args.sotype = SOCK_DGRAM;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "tcp", NULL, NULL) == 0)
|
|
|
|
args.sotype = SOCK_STREAM;
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "nfsv3", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_NFSV3;
|
2011-05-04 13:27:45 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "nocto", NULL, NULL) == 0)
|
|
|
|
args.flags |= NFSMNT_NOCTO;
|
2008-09-13 18:57:47 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "readdirsize", (void **)&opt, NULL) == 0) {
|
|
|
|
if (opt == NULL) {
|
|
|
|
vfs_mount_error(mp, "illegal readdirsize");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = sscanf(opt, "%d", &args.readdirsize);
|
|
|
|
if (ret != 1 || args.readdirsize <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal readdirsize: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_READDIRSIZE;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "readahead", (void **)&opt, NULL) == 0) {
|
|
|
|
if (opt == NULL) {
|
|
|
|
vfs_mount_error(mp, "illegal readahead");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = sscanf(opt, "%d", &args.readahead);
|
|
|
|
if (ret != 1 || args.readahead <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal readahead: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_READAHEAD;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "wsize", (void **)&opt, NULL) == 0) {
|
|
|
|
if (opt == NULL) {
|
|
|
|
vfs_mount_error(mp, "illegal wsize");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = sscanf(opt, "%d", &args.wsize);
|
|
|
|
if (ret != 1 || args.wsize <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal wsize: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_WSIZE;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "rsize", (void **)&opt, NULL) == 0) {
|
|
|
|
if (opt == NULL) {
|
|
|
|
vfs_mount_error(mp, "illegal rsize");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = sscanf(opt, "%d", &args.rsize);
|
|
|
|
if (ret != 1 || args.rsize <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal wsize: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_RSIZE;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "retrans", (void **)&opt, NULL) == 0) {
|
|
|
|
if (opt == NULL) {
|
|
|
|
vfs_mount_error(mp, "illegal retrans");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = sscanf(opt, "%d", &args.retrans);
|
|
|
|
if (ret != 1 || args.retrans <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal retrans: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_RETRANS;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "acregmin", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.acregmin);
|
2009-01-28 07:46:35 +00:00
|
|
|
if (ret != 1 || args.acregmin < 0) {
|
2008-09-13 18:57:47 +00:00
|
|
|
vfs_mount_error(mp, "illegal acregmin: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-01-28 07:46:35 +00:00
|
|
|
args.flags |= NFSMNT_ACREGMIN;
|
2008-09-13 18:57:47 +00:00
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "acregmax", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.acregmax);
|
2009-01-28 07:46:35 +00:00
|
|
|
if (ret != 1 || args.acregmax < 0) {
|
2008-09-13 18:57:47 +00:00
|
|
|
vfs_mount_error(mp, "illegal acregmax: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-01-28 07:46:35 +00:00
|
|
|
args.flags |= NFSMNT_ACREGMAX;
|
2008-09-13 18:57:47 +00:00
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "acdirmin", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.acdirmin);
|
2009-01-28 07:46:35 +00:00
|
|
|
if (ret != 1 || args.acdirmin < 0) {
|
2008-09-13 18:57:47 +00:00
|
|
|
vfs_mount_error(mp, "illegal acdirmin: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-01-28 07:46:35 +00:00
|
|
|
args.flags |= NFSMNT_ACDIRMIN;
|
2008-09-13 18:57:47 +00:00
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "acdirmax", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.acdirmax);
|
2009-01-28 07:46:35 +00:00
|
|
|
if (ret != 1 || args.acdirmax < 0) {
|
2008-09-13 18:57:47 +00:00
|
|
|
vfs_mount_error(mp, "illegal acdirmax: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-01-28 07:46:35 +00:00
|
|
|
args.flags |= NFSMNT_ACDIRMAX;
|
2008-09-13 18:57:47 +00:00
|
|
|
}
|
2011-11-14 18:52:07 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "wcommitsize", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.wcommitsize);
|
|
|
|
if (ret != 1 || args.wcommitsize < 0) {
|
|
|
|
vfs_mount_error(mp, "illegal wcommitsize: %s", opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_WCOMMITSIZE;
|
|
|
|
}
|
2008-09-13 18:57:47 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "deadthresh", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.deadthresh);
|
|
|
|
if (ret != 1 || args.deadthresh <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal deadthresh: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_DEADTHRESH;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "timeout", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.timeo);
|
|
|
|
if (ret != 1 || args.timeo <= 0) {
|
|
|
|
vfs_mount_error(mp, "illegal timeout: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_TIMEO;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "maxgroups", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &args.maxgrouplist);
|
2010-01-21 20:57:25 +00:00
|
|
|
if (ret != 1 || args.maxgrouplist <= 0) {
|
2008-09-13 18:57:47 +00:00
|
|
|
vfs_mount_error(mp, "illegal maxgroups: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.flags |= NFSMNT_MAXGRPS;
|
|
|
|
}
|
2012-01-25 20:05:58 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "nametimeo", (void **)&opt, NULL) == 0) {
|
|
|
|
ret = sscanf(opt, "%d", &nametimeo);
|
|
|
|
if (ret != 1 || nametimeo < 0) {
|
|
|
|
vfs_mount_error(mp, "illegal nametimeo: %s", opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2010-01-21 20:57:25 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "negnametimeo", (void **)&opt, NULL)
|
|
|
|
== 0) {
|
|
|
|
ret = sscanf(opt, "%d", &negnametimeo);
|
|
|
|
if (ret != 1 || negnametimeo < 0) {
|
|
|
|
vfs_mount_error(mp, "illegal negnametimeo: %s",
|
|
|
|
opt);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2008-09-13 18:57:47 +00:00
|
|
|
if (vfs_getopt(mp->mnt_optnew, "addr", (void **)&args.addr,
|
|
|
|
&args.addrlen) == 0) {
|
|
|
|
has_addr_opt = 1;
|
|
|
|
if (args.addrlen > SOCK_MAXADDRLEN) {
|
|
|
|
error = ENAMETOOLONG;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-10-23 15:53:51 +00:00
|
|
|
nam = malloc(args.addrlen, M_SONAME,
|
2008-09-13 18:57:47 +00:00
|
|
|
M_WAITOK);
|
|
|
|
bcopy(args.addr, nam, args.addrlen);
|
|
|
|
nam->sa_len = args.addrlen;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "fh", (void **)&args.fh,
|
|
|
|
&args.fhsize) == 0) {
|
|
|
|
has_fh_opt = 1;
|
|
|
|
}
|
|
|
|
if (vfs_getopt(mp->mnt_optnew, "hostname", (void **)&args.hostname,
|
|
|
|
NULL) == 0) {
|
|
|
|
has_hostname_opt = 1;
|
|
|
|
}
|
|
|
|
if (args.hostname == NULL) {
|
|
|
|
vfs_mount_error(mp, "Invalid hostname");
|
|
|
|
error = EINVAL;
|
2006-05-19 00:04:24 +00:00
|
|
|
goto out;
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
2010-05-27 03:15:04 +00:00
|
|
|
if (args.fhsize < 0 || args.fhsize > NFSX_V3FHMAX) {
|
|
|
|
vfs_mount_error(mp, "Bad file handle");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-02-17 22:32:08 +00:00
|
|
|
|
1998-05-31 19:49:31 +00:00
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
2001-09-18 23:32:09 +00:00
|
|
|
struct nfsmount *nmp = VFSTONFS(mp);
|
1998-05-31 19:49:31 +00:00
|
|
|
|
2006-05-19 00:04:24 +00:00
|
|
|
if (nmp == NULL) {
|
|
|
|
error = EIO;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-01-31 03:58:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If a change from TCP->UDP is done and there are thread(s)
|
|
|
|
* that have I/O RPC(s) in progress with a tranfer size
|
|
|
|
* greater than NFS_MAXDGRAMDATA, those thread(s) will be
|
|
|
|
* hung, retrying the RPC(s) forever. Usually these threads
|
|
|
|
* will be seen doing an uninterruptible sleep on wait channel
|
|
|
|
* "newnfsreq" (truncated to "newnfsre" by procstat).
|
|
|
|
*/
|
|
|
|
if (args.sotype == SOCK_DGRAM && nmp->nm_sotype == SOCK_STREAM)
|
|
|
|
tprintf(curthread->td_proc, LOG_WARNING,
|
|
|
|
"Warning: mount -u that changes TCP->UDP can result in hung threads\n");
|
|
|
|
|
1998-05-31 19:49:31 +00:00
|
|
|
/*
|
|
|
|
* When doing an update, we can't change from or to
|
2001-11-12 02:33:52 +00:00
|
|
|
* v3, switch lockd strategies or change cookie translation
|
1998-05-31 19:49:31 +00:00
|
|
|
*/
|
|
|
|
args.flags = (args.flags &
|
2001-11-12 02:33:52 +00:00
|
|
|
~(NFSMNT_NFSV3 | NFSMNT_NOLOCKD /*|NFSMNT_XLATECOOKIE*/)) |
|
1998-05-31 19:49:31 +00:00
|
|
|
(nmp->nm_flag &
|
2001-11-12 02:33:52 +00:00
|
|
|
(NFSMNT_NFSV3 | NFSMNT_NOLOCKD /*|NFSMNT_XLATECOOKIE*/));
|
2008-07-24 13:42:28 +00:00
|
|
|
nfs_decode_args(mp, nmp, &args, NULL);
|
2006-05-19 00:04:24 +00:00
|
|
|
goto out;
|
1998-05-31 19:49:31 +00:00
|
|
|
}
|
2003-01-22 19:57:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make the nfs_ip_paranoia sysctl serve as the default connection
|
|
|
|
* or no-connection mode for those protocols that support
|
|
|
|
* no-connection mode (the flag will be cleared later for protocols
|
|
|
|
* that do not support no-connection mode). This will allow a client
|
|
|
|
* to receive replies from a different IP then the request was
|
|
|
|
* sent to. Note: default value for nfs_ip_paranoia is 1 (paranoid),
|
|
|
|
* not 0.
|
|
|
|
*/
|
|
|
|
if (nfs_ip_paranoia == 0)
|
|
|
|
args.flags |= NFSMNT_NOCONN;
|
2008-09-13 18:57:47 +00:00
|
|
|
|
|
|
|
if (has_nfs_args_opt) {
|
|
|
|
/*
|
|
|
|
* In the 'nfs_args' case, the pointers in the args
|
|
|
|
* structure are in userland - we copy them in here.
|
|
|
|
*/
|
|
|
|
if (!has_fh_opt) {
|
|
|
|
error = copyin((caddr_t)args.fh, (caddr_t)nfh,
|
|
|
|
args.fhsize);
|
|
|
|
if (error) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
args.fh = nfh;
|
|
|
|
}
|
|
|
|
if (!has_hostname_opt) {
|
|
|
|
error = copyinstr(args.hostname, hst, MNAMELEN-1, &len);
|
|
|
|
if (error) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
bzero(&hst[len], MNAMELEN - len);
|
|
|
|
args.hostname = hst;
|
|
|
|
}
|
|
|
|
if (!has_addr_opt) {
|
|
|
|
/* sockargs() call must be after above copyin() calls */
|
|
|
|
error = getsockaddr(&nam, (caddr_t)args.addr,
|
|
|
|
args.addrlen);
|
|
|
|
if (error) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2011-05-18 18:36:40 +00:00
|
|
|
} else if (has_addr_opt == 0) {
|
|
|
|
vfs_mount_error(mp, "No server address");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
2006-05-19 00:04:24 +00:00
|
|
|
}
|
2009-05-11 15:33:26 +00:00
|
|
|
error = mountnfs(&args, mp, nam, args.hostname, &vp,
|
2012-01-25 20:05:58 +00:00
|
|
|
curthread->td_ucred, nametimeo, negnametimeo);
|
2006-05-19 00:04:24 +00:00
|
|
|
out:
|
2006-09-26 04:12:49 +00:00
|
|
|
if (!error) {
|
|
|
|
MNT_ILOCK(mp);
|
2006-09-13 18:39:09 +00:00
|
|
|
mp->mnt_kern_flag |= (MNTK_MPSAFE|MNTK_LOOKUP_SHARED);
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2004-12-07 08:15:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* VFS Operations.
|
|
|
|
*
|
|
|
|
* mount system call
|
|
|
|
* It seems a bit dumb to copyinstr() the host and path here and then
|
|
|
|
* bcopy() them in mountnfs(), but I wanted to detect errors before
|
|
|
|
* doing the sockargs() call because sockargs() allocates an mbuf and
|
|
|
|
* an error after that means that I have to release the mbuf.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
static int
|
2012-01-17 01:08:01 +00:00
|
|
|
nfs_cmount(struct mntarg *ma, void *data, uint64_t flags)
|
2004-12-07 08:15:41 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct nfs_args args;
|
|
|
|
|
|
|
|
error = copyin(data, &args, sizeof (struct nfs_args));
|
|
|
|
if (error)
|
2006-05-19 00:04:24 +00:00
|
|
|
return error;
|
2004-12-07 08:15:41 +00:00
|
|
|
|
|
|
|
ma = mount_arg(ma, "nfs_args", &args, sizeof args);
|
|
|
|
|
|
|
|
error = kernel_mount(ma, flags);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Common code for mount and mountroot
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2001-09-18 23:32:09 +00:00
|
|
|
mountnfs(struct nfs_args *argp, struct mount *mp, struct sockaddr *nam,
|
2012-01-25 20:05:58 +00:00
|
|
|
char *hst, struct vnode **vpp, struct ucred *cred, int nametimeo,
|
|
|
|
int negnametimeo)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
struct nfsmount *nmp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nfsnode *np;
|
1998-05-31 20:09:01 +00:00
|
|
|
int error;
|
1995-08-24 10:17:39 +00:00
|
|
|
struct vattr attrs;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
|
|
|
nmp = VFSTONFS(mp);
|
2008-02-17 22:32:08 +00:00
|
|
|
printf("%s: MNT_UPDATE is no longer handled here\n", __func__);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(nam, M_SONAME);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
} else {
|
2003-02-19 05:47:46 +00:00
|
|
|
nmp = uma_zalloc(nfsmount_zone, M_WAITOK);
|
1994-05-24 10:09:53 +00:00
|
|
|
bzero((caddr_t)nmp, sizeof (struct nfsmount));
|
1996-11-06 10:53:16 +00:00
|
|
|
TAILQ_INIT(&nmp->nm_bufq);
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = nmp;
|
2010-10-19 00:20:00 +00:00
|
|
|
nmp->nm_getinfo = nfs_getnlminfo;
|
2011-01-03 20:37:31 +00:00
|
|
|
nmp->nm_vinvalbuf = nfs_vinvalbuf;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
vfs_getnewfsid(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
nmp->nm_mountp = mp;
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_init(&nmp->nm_mtx, "NFSmount lock", NULL, MTX_DEF);
|
1998-05-31 17:27:58 +00:00
|
|
|
|
1998-06-01 10:01:31 +00:00
|
|
|
/*
|
|
|
|
* V2 can only handle 32 bit filesizes. A 4GB-1 limit may be too
|
|
|
|
* high, depending on whether we end up with negative offsets in
|
|
|
|
* the client or server somewhere. 2GB-1 may be safer.
|
|
|
|
*
|
|
|
|
* For V3, nfs_fsinfo will adjust this as necessary. Assume maximum
|
|
|
|
* that we can handle until we find out otherwise.
|
|
|
|
*/
|
1998-06-01 11:07:16 +00:00
|
|
|
if ((argp->flags & NFSMNT_NFSV3) == 0)
|
1998-05-30 16:33:58 +00:00
|
|
|
nmp->nm_maxfilesize = 0xffffffffLL;
|
1998-06-01 10:01:31 +00:00
|
|
|
else
|
2011-08-09 15:29:58 +00:00
|
|
|
nmp->nm_maxfilesize = OFF_MAX;
|
1998-05-30 16:33:58 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
nmp->nm_timeo = NFS_TIMEO;
|
|
|
|
nmp->nm_retry = NFS_RETRANS;
|
2004-01-31 10:40:15 +00:00
|
|
|
if ((argp->flags & NFSMNT_NFSV3) && argp->sotype == SOCK_STREAM) {
|
|
|
|
nmp->nm_wsize = nmp->nm_rsize = NFS_MAXDATA;
|
|
|
|
} else {
|
|
|
|
nmp->nm_wsize = NFS_WSIZE;
|
|
|
|
nmp->nm_rsize = NFS_RSIZE;
|
|
|
|
}
|
2005-06-10 23:50:41 +00:00
|
|
|
nmp->nm_wcommitsize = hibufspace / (desiredvnodes / 1000);
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_readdirsize = NFS_READDIRSIZE;
|
1994-05-24 10:09:53 +00:00
|
|
|
nmp->nm_numgrps = NFS_MAXGRPS;
|
|
|
|
nmp->nm_readahead = NFS_DEFRAHEAD;
|
2001-09-18 23:32:09 +00:00
|
|
|
nmp->nm_deadthresh = NFS_MAXDEADTHRESH;
|
2012-01-25 20:05:58 +00:00
|
|
|
nmp->nm_nametimeo = nametimeo;
|
2010-01-21 20:57:25 +00:00
|
|
|
nmp->nm_negnametimeo = negnametimeo;
|
2004-07-06 09:12:03 +00:00
|
|
|
nmp->nm_tprintf_delay = nfs_tprintf_delay;
|
|
|
|
if (nmp->nm_tprintf_delay < 0)
|
|
|
|
nmp->nm_tprintf_delay = 0;
|
|
|
|
nmp->nm_tprintf_initial_delay = nfs_tprintf_initial_delay;
|
|
|
|
if (nmp->nm_tprintf_initial_delay < 0)
|
|
|
|
nmp->nm_tprintf_initial_delay = 0;
|
1995-06-27 11:07:30 +00:00
|
|
|
nmp->nm_fhsize = argp->fhsize;
|
|
|
|
bcopy((caddr_t)argp->fh, (caddr_t)nmp->nm_fh, argp->fhsize);
|
1994-05-24 10:09:53 +00:00
|
|
|
bcopy(hst, mp->mnt_stat.f_mntfromname, MNAMELEN);
|
|
|
|
nmp->nm_nam = nam;
|
|
|
|
/* Set up the sockets and per-host congestion */
|
|
|
|
nmp->nm_sotype = argp->sotype;
|
|
|
|
nmp->nm_soproto = argp->proto;
|
2003-11-22 02:21:49 +00:00
|
|
|
nmp->nm_rpcops = &nfs_rpcops;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2008-07-24 13:42:28 +00:00
|
|
|
nfs_decode_args(mp, nmp, argp, hst);
|
1998-05-31 19:49:31 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* For Connection based sockets (TCP,...) defer the connect until
|
|
|
|
* the first request, in case the server is not responding.
|
|
|
|
*/
|
|
|
|
if (nmp->nm_sotype == SOCK_DGRAM &&
|
2009-06-30 19:10:17 +00:00
|
|
|
(error = nfs_connect(nmp)))
|
1994-05-24 10:09:53 +00:00
|
|
|
goto bad;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is silly, but it has to be set so that vinifod() works.
|
|
|
|
* We do not want to do an nfs_statfs() here since we can get
|
|
|
|
* stuck on a dead server and we are holding a lock on the mount
|
|
|
|
* point.
|
|
|
|
*/
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
1995-07-07 11:01:31 +00:00
|
|
|
mp->mnt_stat.f_iosize = nfs_iosize(nmp);
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* A reference count is needed on the nfsnode representing the
|
|
|
|
* remote root. If this object is not persistent, then backward
|
|
|
|
* traversals of the mount point (i.e. "..") will not work if
|
|
|
|
* the nfsnode gets flushed out of the cache. Ufs does not have
|
|
|
|
* this problem, because one can identify root inodes by their
|
|
|
|
* number == ROOTINO (2).
|
|
|
|
*/
|
2006-09-13 18:39:09 +00:00
|
|
|
error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np, LK_EXCLUSIVE);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto bad;
|
|
|
|
*vpp = NFSTOV(np);
|
|
|
|
|
1995-08-24 10:17:39 +00:00
|
|
|
/*
|
2004-01-31 10:40:15 +00:00
|
|
|
* Get file attributes and transfer parameters for the
|
|
|
|
* mountpoint. This has the side effect of filling in
|
|
|
|
* (*vpp)->v_type with the correct value.
|
1995-08-24 10:17:39 +00:00
|
|
|
*/
|
2004-01-31 10:40:15 +00:00
|
|
|
if (argp->flags & NFSMNT_NFSV3)
|
|
|
|
nfs_fsinfo(nmp, *vpp, curthread->td_ucred, curthread);
|
|
|
|
else
|
2008-08-28 15:23:18 +00:00
|
|
|
VOP_GETATTR(*vpp, &attrs, curthread->td_ucred);
|
1995-08-24 10:17:39 +00:00
|
|
|
|
1995-06-27 11:07:30 +00:00
|
|
|
/*
|
|
|
|
* Lose the lock but keep the ref.
|
|
|
|
*/
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(*vpp, 0);
|
1995-06-27 11:07:30 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
bad:
|
|
|
|
nfs_disconnect(nmp);
|
2007-03-23 08:52:36 +00:00
|
|
|
mtx_destroy(&nmp->nm_mtx);
|
2002-03-20 10:07:52 +00:00
|
|
|
uma_zfree(nfsmount_zone, nmp);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(nam, M_SONAME);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* unmount system call
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_unmount(struct mount *mp, int mntflags)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
struct nfsmount *nmp;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error, flags = 0;
|
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (mntflags & MNT_FORCE)
|
1994-05-24 10:09:53 +00:00
|
|
|
flags |= FORCECLOSE;
|
|
|
|
nmp = VFSTONFS(mp);
|
|
|
|
/*
|
|
|
|
* Goes something like this..
|
2002-05-16 21:28:32 +00:00
|
|
|
* - Call vflush() to clear out vnodes for this filesystem
|
1994-05-24 10:09:53 +00:00
|
|
|
* - Close the socket
|
|
|
|
* - Free up the data structures
|
|
|
|
*/
|
2002-01-02 00:41:26 +00:00
|
|
|
/* In the forced case, cancel any outstanding requests. */
|
|
|
|
if (flags & FORCECLOSE) {
|
|
|
|
error = nfs_nmcancelreqs(nmp);
|
|
|
|
if (error)
|
2006-05-19 00:04:24 +00:00
|
|
|
goto out;
|
2002-01-02 00:41:26 +00:00
|
|
|
}
|
2001-05-16 18:04:37 +00:00
|
|
|
/* We hold 1 extra ref on the root vnode; see comment in mountnfs(). */
|
2009-05-11 15:33:26 +00:00
|
|
|
error = vflush(mp, 1, flags, curthread);
|
2001-09-18 23:32:09 +00:00
|
|
|
if (error)
|
2006-05-19 00:04:24 +00:00
|
|
|
goto out;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We are now committed to the unmount.
|
|
|
|
*/
|
|
|
|
nfs_disconnect(nmp);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(nmp->nm_nam, M_SONAME);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_destroy(&nmp->nm_mtx);
|
2002-03-20 10:07:52 +00:00
|
|
|
uma_zfree(nfsmount_zone, nmp);
|
2006-05-19 00:04:24 +00:00
|
|
|
out:
|
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return root of a filesystem
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_root(struct mount *mp, int flags, struct vnode **vpp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-18 23:32:09 +00:00
|
|
|
struct vnode *vp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
nmp = VFSTONFS(mp);
|
2006-09-13 18:39:09 +00:00
|
|
|
error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np, flags);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
2006-05-19 00:04:24 +00:00
|
|
|
return error;
|
1994-05-24 10:09:53 +00:00
|
|
|
vp = NFSTOV(np);
|
2004-01-31 10:40:15 +00:00
|
|
|
/*
|
|
|
|
* Get transfer parameters and attributes for root vnode once.
|
|
|
|
*/
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
2004-01-31 10:40:15 +00:00
|
|
|
if ((nmp->nm_state & NFSSTA_GOTFSINFO) == 0 &&
|
|
|
|
(nmp->nm_flag & NFSMNT_NFSV3)) {
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
2004-01-31 10:40:15 +00:00
|
|
|
nfs_fsinfo(nmp, vp, curthread->td_ucred, curthread);
|
2006-05-19 00:04:24 +00:00
|
|
|
} else
|
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
1995-08-30 17:24:15 +00:00
|
|
|
if (vp->v_type == VNON)
|
|
|
|
vp->v_type = VDIR;
|
2002-08-04 10:29:36 +00:00
|
|
|
vp->v_vflag |= VV_ROOT;
|
1994-05-24 10:09:53 +00:00
|
|
|
*vpp = vp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flush out the buffer cache
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
nfs_sync(struct mount *mp, int waitfor)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2006-01-09 20:42:19 +00:00
|
|
|
struct vnode *vp, *mvp;
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error, allerror = 0;
|
|
|
|
|
2009-05-11 15:33:26 +00:00
|
|
|
td = curthread;
|
|
|
|
|
2011-05-29 20:55:23 +00:00
|
|
|
MNT_ILOCK(mp);
|
|
|
|
/*
|
|
|
|
* If a forced dismount is in progress, return from here so that
|
|
|
|
* the umount(2) syscall doesn't get stuck in VFS_SYNC() before
|
|
|
|
* calling VFS_UNMOUNT().
|
|
|
|
*/
|
|
|
|
if ((mp->mnt_kern_flag & MNTK_UNMOUNTF) != 0) {
|
|
|
|
MNT_IUNLOCK(mp);
|
|
|
|
return (EBADF);
|
|
|
|
}
|
2012-05-05 09:34:35 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
2011-05-29 20:55:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Force stale buffer cache information to be flushed.
|
|
|
|
*/
|
|
|
|
loop:
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
|
2008-03-22 09:15:16 +00:00
|
|
|
/* XXX Racy bv_cnt check. */
|
2008-02-25 18:45:57 +00:00
|
|
|
if (VOP_ISLOCKED(vp) || vp->v_bufobj.bo_dirty.bv_cnt == 0 ||
|
2001-06-28 04:10:07 +00:00
|
|
|
waitfor == MNT_LAZY) {
|
2002-09-25 02:38:43 +00:00
|
|
|
VI_UNLOCK(vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
continue;
|
2001-06-28 04:10:07 +00:00
|
|
|
}
|
2001-09-12 08:38:13 +00:00
|
|
|
if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td)) {
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
|
1994-05-24 10:09:53 +00:00
|
|
|
goto loop;
|
2001-06-28 04:10:07 +00:00
|
|
|
}
|
2005-01-11 07:36:22 +00:00
|
|
|
error = VOP_FSYNC(vp, waitfor, td);
|
1994-10-02 17:27:07 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
allerror = error;
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2003-11-02 04:52:53 +00:00
|
|
|
vrele(vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
return (allerror);
|
|
|
|
}
|
2004-07-06 09:12:03 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
nfs_sysctl(struct mount *mp, fsctlop_t op, struct sysctl_req *req)
|
|
|
|
{
|
2004-07-06 09:23:17 +00:00
|
|
|
struct nfsmount *nmp = VFSTONFS(mp);
|
|
|
|
struct vfsquery vq;
|
|
|
|
int error;
|
2004-07-06 09:12:03 +00:00
|
|
|
|
2004-07-06 09:23:17 +00:00
|
|
|
bzero(&vq, sizeof(vq));
|
2004-07-06 09:12:03 +00:00
|
|
|
switch (op) {
|
2004-07-06 09:23:17 +00:00
|
|
|
#if 0
|
|
|
|
case VFS_CTL_NOLOCKS:
|
|
|
|
val = (nmp->nm_flag & NFSMNT_NOLOCKS) ? 1 : 0;
|
|
|
|
if (req->oldptr != NULL) {
|
|
|
|
error = SYSCTL_OUT(req, &val, sizeof(val));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
if (req->newptr != NULL) {
|
|
|
|
error = SYSCTL_IN(req, &val, sizeof(val));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
if (val)
|
|
|
|
nmp->nm_flag |= NFSMNT_NOLOCKS;
|
|
|
|
else
|
|
|
|
nmp->nm_flag &= ~NFSMNT_NOLOCKS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case VFS_CTL_QUERY:
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_lock(&nmp->nm_mtx);
|
2004-07-06 09:23:17 +00:00
|
|
|
if (nmp->nm_state & NFSSTA_TIMEO)
|
|
|
|
vq.vq_flags |= VQ_NOTRESP;
|
2006-05-19 00:04:24 +00:00
|
|
|
mtx_unlock(&nmp->nm_mtx);
|
2004-07-06 09:23:17 +00:00
|
|
|
#if 0
|
|
|
|
if (!(nmp->nm_flag & NFSMNT_NOLOCKS) &&
|
|
|
|
(nmp->nm_state & NFSSTA_LOCKTIMEO))
|
|
|
|
vq.vq_flags |= VQ_NOTRESPLOCK;
|
|
|
|
#endif
|
|
|
|
error = SYSCTL_OUT(req, &vq, sizeof(vq));
|
|
|
|
break;
|
|
|
|
case VFS_CTL_TIMEO:
|
|
|
|
if (req->oldptr != NULL) {
|
|
|
|
error = SYSCTL_OUT(req, &nmp->nm_tprintf_initial_delay,
|
|
|
|
sizeof(nmp->nm_tprintf_initial_delay));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
if (req->newptr != NULL) {
|
2004-07-06 09:40:44 +00:00
|
|
|
error = vfs_suser(mp, req->td);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
2004-07-06 09:23:17 +00:00
|
|
|
error = SYSCTL_IN(req, &nmp->nm_tprintf_initial_delay,
|
|
|
|
sizeof(nmp->nm_tprintf_initial_delay));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
if (nmp->nm_tprintf_initial_delay < 0)
|
|
|
|
nmp->nm_tprintf_initial_delay = 0;
|
|
|
|
}
|
|
|
|
break;
|
2004-07-06 09:12:03 +00:00
|
|
|
default:
|
2004-07-06 09:23:17 +00:00
|
|
|
return (ENOTSUP);
|
2004-07-06 09:12:03 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
2010-10-19 00:20:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the information needed by the nlm from the nfs vnode.
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-19 11:55:58 +00:00
|
|
|
nfs_getnlminfo(struct vnode *vp, uint8_t *fhp, size_t *fhlenp,
|
2011-01-03 20:37:31 +00:00
|
|
|
struct sockaddr_storage *sp, int *is_v3p, off_t *sizep,
|
|
|
|
struct timeval *timeop)
|
2010-10-19 00:20:00 +00:00
|
|
|
{
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct nfsnode *np = VTONFS(vp);
|
|
|
|
|
|
|
|
nmp = VFSTONFS(vp->v_mount);
|
|
|
|
if (fhlenp != NULL)
|
2010-10-19 11:55:58 +00:00
|
|
|
*fhlenp = (size_t)np->n_fhsize;
|
2010-10-19 00:20:00 +00:00
|
|
|
if (fhp != NULL)
|
|
|
|
bcopy(np->n_fhp, fhp, np->n_fhsize);
|
|
|
|
if (sp != NULL)
|
|
|
|
bcopy(nmp->nm_nam, sp, min(nmp->nm_nam->sa_len, sizeof(*sp)));
|
|
|
|
if (is_v3p != NULL)
|
|
|
|
*is_v3p = NFS_ISV3(vp);
|
|
|
|
if (sizep != NULL)
|
|
|
|
*sizep = np->n_size;
|
2011-01-03 20:37:31 +00:00
|
|
|
if (timeop != NULL) {
|
|
|
|
timeop->tv_sec = nmp->nm_timeo / NFS_HZ;
|
|
|
|
timeop->tv_usec = (nmp->nm_timeo % NFS_HZ) * (1000000 / NFS_HZ);
|
|
|
|
}
|
2010-10-19 00:20:00 +00:00
|
|
|
}
|
|
|
|
|