summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1998-07-15 06:12:32 +0000
committercharnier <charnier@FreeBSD.org>1998-07-15 06:12:32 +0000
commit6972af9f15795eb573025d6e9360b6a73c34004e (patch)
tree508854ba004b02cff1d217b3c0181cac0adf027e
parente006ba669f17c0c9aa8d728ab0024243dc5095fd (diff)
downloadFreeBSD-src-6972af9f15795eb573025d6e9360b6a73c34004e.zip
FreeBSD-src-6972af9f15795eb573025d6e9360b6a73c34004e.tar.gz
Correct use of .Nm. Use .Ar when appropriate. Remove unused #includes. Typos.
-rw-r--r--sbin/mount_umap/mount_umap.857
-rw-r--r--sbin/mount_umap/mount_umap.c11
-rw-r--r--sbin/mount_umap/umap_manual6
-rw-r--r--sbin/mount_umapfs/mount_umapfs.857
-rw-r--r--sbin/mount_umapfs/mount_umapfs.c11
-rw-r--r--sbin/mount_umapfs/umap_manual6
6 files changed, 72 insertions, 76 deletions
diff --git a/sbin/mount_umap/mount_umap.8 b/sbin/mount_umap/mount_umap.8
index 8fffa5d..4b9bd00 100644
--- a/sbin/mount_umap/mount_umap.8
+++ b/sbin/mount_umap/mount_umap.8
@@ -34,6 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mount_umap.8 8.4 (Berkeley) 5/1/95
+.\" $Id$
.\"
.Dd May 1, 1995
.Dt MOUNT_UMAP 8
@@ -50,74 +51,72 @@
.Ar mount-point
.Sh DESCRIPTION
The
-.Nm mount_umap
+.Nm
command is used to mount a sub-tree of an existing file system
that uses a different set of uids and gids than the local system.
Such a file system could be mounted from a remote site via NFS or
it could be a file system on removable media brought from some
foreign location that uses a different password file.
.Pp
-The options are as follows:
-.Bl -tag -width indent
-.It Fl o
-Options are specified with a
-.Fl o
-flag followed by a comma separated string of options.
-See the
-.Xr mount 8
-man page for possible options and their meanings.
-.El
-.Pp
The
-.Nm mount_umap
+.Nm
command uses a set of files provided by the user to make correspondences
between uids and gids in the sub-tree's original environment and
some other set of ids in the local environment. For instance, user
smith might have uid 1000 in the original environment, while having
uid 2000 in the local environment. The
-.Nm mount_umap
+.Nm
command allows the subtree from smith's original environment to be
mapped in such a way that all files with owning uid 1000 look like
they are actually owned by uid 2000.
.Pp
-.Em target
-should be the current location of the sub-tree in the
+The options are as follows:
+.Bl -tag -width indent
+.It Fl o
+Options are specified with a
+.Fl o
+flag followed by a comma separated string of options.
+See the
+.Xr mount 8
+man page for possible options and their meanings.
+.It Ar target
+Should be the current location of the sub-tree in the
local system's name space.
-.Em mount-point
-should be a directory
+.It Ar mount-point
+Should be a directory
where the mapped subtree is to be placed.
-.Em uid-mapfile
-and
-.Em gid-mapfile
-describe the mappings to be made between identifiers.
+.It Fl u Ar uid-mapfile
+.It Fl g Ar gid-mapfile
+Describe the mappings to be made between identifiers.
Briefly, the format of these files is a count of the number of
mappings on the first line, with each subsequent line containing
a single mapping. Each of these mappings consists of an id in
the local environment and the corresponding id from the original environment,
separated by white space.
-.Em uid-mapfile
+.Ar Uid-mapfile
should contain all uid
mappings, and
-.Em gid-mapfile
+.Ar gid-mapfile
should contain all gid mappings.
Any uids not mapped in
-.Em uid-mapfile
+.Ar uid-mapfile
will be treated as user NOBODY,
and any gids not mapped in
-.Em gid-mapfile
+.Ar gid-mapfile
will be treated as group
NULLGROUP. At most 64 uids can be mapped for a given subtree, and
at most 16 groups can be mapped by a given subtree.
+.El
.Pp
The mapfiles can be located anywhere in the file hierarchy, but they
must be owned by root, and they must be writable only by root.
-.Nm mount_umap
+.Nm Mount_umap
will refuse to map the sub-tree if the ownership or permissions on
these files are improper. It will also balk if the count of mappings
in the first line of the map files is not correct.
.Pp
The layer created by the
-.Nm mount_umap
+.Nm
command is meant to serve as a simple example of file system layering.
It is not meant for production use. The implementation is not very
sophisticated.
@@ -126,6 +125,6 @@ sophisticated.
.Xr mount_null 8
.Sh HISTORY
The
-.Nm mount_umap
+.Nm
utility first appeared in
.Bx 4.4 .
diff --git a/sbin/mount_umap/mount_umap.c b/sbin/mount_umap/mount_umap.c
index b182365..f3e439f 100644
--- a/sbin/mount_umap/mount_umap.c
+++ b/sbin/mount_umap/mount_umap.c
@@ -35,17 +35,17 @@
*/
#ifndef lint
-char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1992, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
-/*
+#if 0
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
-*/
+#endif
static const char rcsid[] =
- "$Id: mount_umap.c,v 1.11 1997/03/29 03:32:47 imp Exp $";
+ "$Id$";
#endif /* not lint */
#include <sys/param.h>
@@ -56,7 +56,6 @@ static const char rcsid[] =
#include <err.h>
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>
@@ -93,7 +92,7 @@ main(argc, argv)
int argc;
char *argv[];
{
- static char not[] = "; not mounted.";
+ static char not[] = "; not mounted";
struct stat statbuf;
struct umap_args args;
FILE *fp, *gfp;
diff --git a/sbin/mount_umap/umap_manual b/sbin/mount_umap/umap_manual
index 059939f..50a8ce5 100644
--- a/sbin/mount_umap/umap_manual
+++ b/sbin/mount_umap/umap_manual
@@ -11,7 +11,7 @@ the yellow pages mechanism. File hierarchies that span more
than one domain leads to certain problems, since the same numerical
UID in one domain may correspond to a different user in another domain.
If the system administrator is very careful to ensure that both domains
-contain identical user ID information, The umap layer can be used to
+contain identical user ID information, the umap layer can be used to
run between those domains without changes
The umap layer is a file system layer that sits on top of the normal
@@ -104,8 +104,8 @@ The user and group mapping files should be owned by the root user, and
should be writable only by that user. If they are not owned by root, or
are writable by some other user, the umap mounting command will abort.
-Normally, the sub-treeis grafted directly into the place in
-the file hierarchy where the it should appear to users.Using the umap
+Normally, the sub-tree is grafted directly into the place in
+the file hierarchy where the it should appear to users. Using the umap
layer requires that the sub-tree be grafted somewhere else, and
the umap layer be mounted in the desired position in the file hierarchy.
Depending on the situation, the underlying sub-tree can be wherever is
diff --git a/sbin/mount_umapfs/mount_umapfs.8 b/sbin/mount_umapfs/mount_umapfs.8
index 8fffa5d..4b9bd00 100644
--- a/sbin/mount_umapfs/mount_umapfs.8
+++ b/sbin/mount_umapfs/mount_umapfs.8
@@ -34,6 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mount_umap.8 8.4 (Berkeley) 5/1/95
+.\" $Id$
.\"
.Dd May 1, 1995
.Dt MOUNT_UMAP 8
@@ -50,74 +51,72 @@
.Ar mount-point
.Sh DESCRIPTION
The
-.Nm mount_umap
+.Nm
command is used to mount a sub-tree of an existing file system
that uses a different set of uids and gids than the local system.
Such a file system could be mounted from a remote site via NFS or
it could be a file system on removable media brought from some
foreign location that uses a different password file.
.Pp
-The options are as follows:
-.Bl -tag -width indent
-.It Fl o
-Options are specified with a
-.Fl o
-flag followed by a comma separated string of options.
-See the
-.Xr mount 8
-man page for possible options and their meanings.
-.El
-.Pp
The
-.Nm mount_umap
+.Nm
command uses a set of files provided by the user to make correspondences
between uids and gids in the sub-tree's original environment and
some other set of ids in the local environment. For instance, user
smith might have uid 1000 in the original environment, while having
uid 2000 in the local environment. The
-.Nm mount_umap
+.Nm
command allows the subtree from smith's original environment to be
mapped in such a way that all files with owning uid 1000 look like
they are actually owned by uid 2000.
.Pp
-.Em target
-should be the current location of the sub-tree in the
+The options are as follows:
+.Bl -tag -width indent
+.It Fl o
+Options are specified with a
+.Fl o
+flag followed by a comma separated string of options.
+See the
+.Xr mount 8
+man page for possible options and their meanings.
+.It Ar target
+Should be the current location of the sub-tree in the
local system's name space.
-.Em mount-point
-should be a directory
+.It Ar mount-point
+Should be a directory
where the mapped subtree is to be placed.
-.Em uid-mapfile
-and
-.Em gid-mapfile
-describe the mappings to be made between identifiers.
+.It Fl u Ar uid-mapfile
+.It Fl g Ar gid-mapfile
+Describe the mappings to be made between identifiers.
Briefly, the format of these files is a count of the number of
mappings on the first line, with each subsequent line containing
a single mapping. Each of these mappings consists of an id in
the local environment and the corresponding id from the original environment,
separated by white space.
-.Em uid-mapfile
+.Ar Uid-mapfile
should contain all uid
mappings, and
-.Em gid-mapfile
+.Ar gid-mapfile
should contain all gid mappings.
Any uids not mapped in
-.Em uid-mapfile
+.Ar uid-mapfile
will be treated as user NOBODY,
and any gids not mapped in
-.Em gid-mapfile
+.Ar gid-mapfile
will be treated as group
NULLGROUP. At most 64 uids can be mapped for a given subtree, and
at most 16 groups can be mapped by a given subtree.
+.El
.Pp
The mapfiles can be located anywhere in the file hierarchy, but they
must be owned by root, and they must be writable only by root.
-.Nm mount_umap
+.Nm Mount_umap
will refuse to map the sub-tree if the ownership or permissions on
these files are improper. It will also balk if the count of mappings
in the first line of the map files is not correct.
.Pp
The layer created by the
-.Nm mount_umap
+.Nm
command is meant to serve as a simple example of file system layering.
It is not meant for production use. The implementation is not very
sophisticated.
@@ -126,6 +125,6 @@ sophisticated.
.Xr mount_null 8
.Sh HISTORY
The
-.Nm mount_umap
+.Nm
utility first appeared in
.Bx 4.4 .
diff --git a/sbin/mount_umapfs/mount_umapfs.c b/sbin/mount_umapfs/mount_umapfs.c
index b182365..f3e439f 100644
--- a/sbin/mount_umapfs/mount_umapfs.c
+++ b/sbin/mount_umapfs/mount_umapfs.c
@@ -35,17 +35,17 @@
*/
#ifndef lint
-char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1992, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
-/*
+#if 0
static char sccsid[] = "@(#)mount_umap.c 8.5 (Berkeley) 4/26/95";
-*/
+#endif
static const char rcsid[] =
- "$Id: mount_umap.c,v 1.11 1997/03/29 03:32:47 imp Exp $";
+ "$Id$";
#endif /* not lint */
#include <sys/param.h>
@@ -56,7 +56,6 @@ static const char rcsid[] =
#include <err.h>
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>
@@ -93,7 +92,7 @@ main(argc, argv)
int argc;
char *argv[];
{
- static char not[] = "; not mounted.";
+ static char not[] = "; not mounted";
struct stat statbuf;
struct umap_args args;
FILE *fp, *gfp;
diff --git a/sbin/mount_umapfs/umap_manual b/sbin/mount_umapfs/umap_manual
index 059939f..50a8ce5 100644
--- a/sbin/mount_umapfs/umap_manual
+++ b/sbin/mount_umapfs/umap_manual
@@ -11,7 +11,7 @@ the yellow pages mechanism. File hierarchies that span more
than one domain leads to certain problems, since the same numerical
UID in one domain may correspond to a different user in another domain.
If the system administrator is very careful to ensure that both domains
-contain identical user ID information, The umap layer can be used to
+contain identical user ID information, the umap layer can be used to
run between those domains without changes
The umap layer is a file system layer that sits on top of the normal
@@ -104,8 +104,8 @@ The user and group mapping files should be owned by the root user, and
should be writable only by that user. If they are not owned by root, or
are writable by some other user, the umap mounting command will abort.
-Normally, the sub-treeis grafted directly into the place in
-the file hierarchy where the it should appear to users.Using the umap
+Normally, the sub-tree is grafted directly into the place in
+the file hierarchy where the it should appear to users. Using the umap
layer requires that the sub-tree be grafted somewhere else, and
the umap layer be mounted in the desired position in the file hierarchy.
Depending on the situation, the underlying sub-tree can be wherever is
OpenPOWER on IntegriCloud