NetBSD/usr.sbin/pwd_mkdb/pwd_mkdb.8

142 lines
4.4 KiB
Groff
Raw Normal View History

2000-01-23 22:59:32 +03:00
.\" $NetBSD: pwd_mkdb.8,v 1.11 2000/01/23 19:59:32 mycroft Exp $
1997-10-17 10:46:02 +04:00
.\"
1994-08-29 03:32:47 +04:00
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 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-10-17 10:46:02 +04:00
.\" from: @(#)pwd_mkdb.8 8.2 (Berkeley) 4/27/95
1993-03-21 12:45:37 +03:00
.\"
1997-10-17 10:46:02 +04:00
.Dd April 27, 1995
1994-08-29 03:32:47 +04:00
.Dt PWD_MKDB 8
.Os
.Sh NAME
1994-08-29 03:32:47 +04:00
.Nm pwd_mkdb
.Nd "generate the password databases"
.Sh SYNOPSIS
.Nm
2000-01-23 22:59:32 +03:00
.Op Fl pBL
.Op Fl d Ar directory
.Ar file
.Sh DESCRIPTION
.Nm
1993-03-21 12:45:37 +03:00
creates
.Xr db 3
1993-03-21 12:45:37 +03:00
style secure and insecure databases for the specified file.
1994-08-29 03:32:47 +04:00
These databases are then installed into
.Dq Pa /etc/spwd.db
and
1994-08-29 03:32:47 +04:00
.Dq Pa /etc/pwd.db
respectively.
1994-08-29 03:32:47 +04:00
The file is installed into
.Dq Pa /etc/master.passwd .
1993-03-21 12:45:37 +03:00
The file must be in the correct format (see
1994-08-29 03:32:47 +04:00
.Xr passwd 5 ) .
1993-03-21 12:45:37 +03:00
It is important to note that the format used in this system is
different from the historic Version 7 style format.
.Pp
1993-03-21 12:45:37 +03:00
The options are as follows:
1994-08-29 03:32:47 +04:00
.Bl -tag -width flag
.It Fl p
1994-08-29 03:32:47 +04:00
Create a Version 7 style password file and install it into
.Dq Pa /etc/passwd .
.It Fl d Ar directory
Change the root directory of the generated files from
.Dq Pa /
to
.Ar directory .
2000-01-23 22:59:32 +03:00
.It Fl B
Store data in big-endian format.
.It Fl L
Store data in little-endian format.
.El
.Pp
1993-03-21 12:45:37 +03:00
The two databases differ in that the secure version contains the user's
1997-11-05 21:46:07 +03:00
encrypted password and the insecure version has an asterisk (``*'').
.Pp
1993-03-21 12:45:37 +03:00
The databases are used by the C library password routines (see
1994-08-29 03:32:47 +04:00
.Xr getpwent 3 ) .
.Pp
.Nm
1993-03-21 12:45:37 +03:00
exits zero on success, non-zero on failure.
.Sh FILES
1994-08-29 03:32:47 +04:00
.Bl -tag -width Pa -compact
.It Pa /etc/master.passwd
1994-08-29 03:32:47 +04:00
The current password file.
.It Pa /etc/passwd
1994-08-29 03:32:47 +04:00
A Version 7 format password file.
1994-09-17 01:05:14 +04:00
.It Pa /etc/pwd.db
The insecure password database file.
.It Pa /etc/pwd.db.tmp
A temporary file.
.It Pa /etc/spwd.db
The secure password database file.
.It Pa /etc/spwd.db.tmp
A temporary file.
.El
.Sh BUGS
1993-03-21 12:45:37 +03:00
Because of the necessity for atomic update of the password files,
.Nm
1993-03-21 12:45:37 +03:00
uses
.Xr rename 2
1993-03-21 12:45:37 +03:00
to install them.
This, however, requires that the file specified on the command line live
1994-08-29 03:32:47 +04:00
on the same file system as the
.Dq Pa /etc
directory.
.Pp
1993-03-21 12:45:37 +03:00
There are the obvious races with multiple people running
.Nm
1993-03-21 12:45:37 +03:00
on different password files at the same time.
The front-ends to
.Xr chpass 1 ,
1997-11-05 21:46:07 +03:00
.Xr passwd 1 ,
1993-03-21 12:45:37 +03:00
and
1997-11-05 21:46:07 +03:00
.Xr vipw 8
1993-03-21 12:45:37 +03:00
handle the locking necessary to avoid this problem.
2000-01-23 22:59:32 +03:00
.Pp
Although the DB format is endian-transparent, the data stored in the DB is
not. This is difficult to fix without breaking compatibility.
.Sh COMPATIBILITY
1993-03-21 12:45:37 +03:00
Previous versions of the system had a program similar to
.Nm
1993-03-21 12:45:37 +03:00
which built
.Xr dbm 3
1993-03-21 12:45:37 +03:00
style databases for the password file but depended on the calling programs
to install them.
The program was renamed in order that previous users of the program
not be surprised by the changes in functionality.
.Sh SEE ALSO
.Xr chpass 1 ,
.Xr passwd 1 ,
.Xr db 3 ,
.Xr getpwent 3 ,
.Xr passwd 5 ,
.Xr vipw 8