nfssvc(2) [osx man page]
NFSSVC(2) BSD System Calls Manual NFSSVC(2) NAME
nfssvc -- NFS services SYNOPSIS
#include <unistd.h> #include <nfs/nfs.h> int nfssvc(int flags, void *argstructp); DESCRIPTION
The nfssvc() function is used by the NFS server daemon to pass information into and out of the kernel and also to enter the kernel as a server daemon. The flags argument consists of several bits that show what action is to be taken once in the kernel and the argstructp points to any corresponding data that the action may require. nfssvc() is called with the flag NFSSVC_NFSD and a NULL argstructp to enter the kernel as an nfsd(8) daemon. The NFSSVC_NFSD action normally does not return until the NFS server is stopped. The nfsd(8) server daemon calls nfssvc() with the flag NFSSVC_ADDSOCK and a pointer to a struct nfsd_args { int sock; /* Socket to serve */ caddr_t name; /* Client address for connection based sockets */ int namelen; /* Length of name */ }; to pass a server side NFS socket into the kernel for servicing by the nfsd(8) daemons. The nfsd(8) server daemon calls nfssvc() with the flag NFSSVC_EXPORT and a pointer to a struct nfs_export_args { uint32_t nxa_fsid; /* export FS ID */ uint32_t nxa_expid; /* export ID */ char *nxa_fspath; /* export FS path */ char *nxa_exppath; /* export sub-path */ uint32_t nxa_flags; /* export arg flags */ uint32_t nxa_netcount; /* #entries in ex_nets array */ struct nfs_export_net_args *nxa_nets; /* array of net args */ }; to pass exported file system information into the kernel. RETURN VALUES
Upon successful completion, a value of 0 is returned. Otherwise, -1 is returned the global variable errno is set to specify the error. ERRORS
[EPERM] The caller is not the super-user. [EINVAL] The action specified by the flags argument was not valid. [EFAULT] argstructp points to an invalid address. [ENOMEM] A memory allocation failure prevented the action from completing. [EEXIST] An attempt was made to add a UDP socket via the NFSSVC_ADDSOCK action, but the UDP socket has already been added. SEE ALSO
nfsd(8) HISTORY
The nfssvc function first appeared in 4.4BSD. BUGS
The nfssvc system call is designed specifically for the NFS server daemons and as such is specific to their requirements. Several fields of the argument structures are assumed to be valid, such that nfssvc must be used with extreme care. BSD
January 9, 2007 BSD
Check Out this Related Man Page
MOUNTD(8) BSD System Manager's Manual MOUNTD(8) NAME
mountd -- service remote NFS mount requests SYNOPSIS
mountd [-dN] [-P policy] [-p port] [exportsfile] DESCRIPTION
mountd is the server for NFS mount requests from other client machines. mountd listens for service requests at the port indicated in the NFS server specification; see Network File System Protocol Specification, RFC 1094, Appendix A and NFS: Network File System Version 3 Protocol Specification, Appendix I. Options and operands available for mountd: -d Enable debugging mode. mountd will not detach from the controlling terminal and will print debugging messages to stderr. -N Do not require privileged ports for mount or NFS RPC calls. This option is equivalent to specifying ``-noresvport -noresvmnt'' on every export. See exports(5) for more information. Some operating systems (notably Mac OS X) require this option. -P policy IPsec policy string, as described in ipsec_set_policy(3). Multiple IPsec policy strings may be specified by using a semicolon as a separator. If conflicting policy strings are found in a single line, the last string will take effect. If an invalid IPsec policy string is used mountd logs an error message and terminates itself. -p port Force mountd to bind to the given port. If this option is not given, mountd may bind to every anonymous port (in the range 600-1023) which causes trouble when trying to use NFS through a firewall. exportsfile The exportsfile argument specifies an alternative location for the exports file. When mountd is started, it loads the export host addresses and options into the kernel using the nfssvc(2) system call. After changing the exports file, a hangup signal should be sent to the mountd daemon to get it to reload the export information. After sending the SIGHUP (kill -s HUP `cat /var/run/mountd.pid`), check the syslog output to see if mountd logged any parsing errors in the exports file. After receiving SIGTERM, mountd sends a broadcast request to remove the mount list from all the clients. This can take a long time, since the broadcast request waits for each client to respond. FILES
/etc/exports the list of exported filesystems /var/run/mountd.pid the pid of the currently running mountd /var/db/mountdtab the list of remotely mounted filesystems SEE ALSO
nfsstat(1), nfssvc(2), exports(5), nfsd(8), rpcbind(8), showmount(8) HISTORY
The mountd utility first appeared in 4.4BSD. BSD
November 2, 2011 BSD