1 .\" Copyright (c) 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)pwd_mkdb.8 8.2 (Berkeley) 4/27/95
39 .Nd "generate the password databases"
48 style secure and insecure databases for the specified file.
49 These databases are then installed into
54 The file is installed into
55 .Dq Pa /etc/master.passwd .
56 The file must be in the correct format (see
58 It is important to note that the format used in this system is
59 different from the historic Version 7 style format.
61 The options are as follows:
64 Create a Version 7 style password file and install it into
68 The two databases differ in that the secure version contains the user's
69 encrypted password and the insecure version has an asterisk (``*'')
71 The databases are used by the C library password routines (see
75 exits zero on success, non-zero on failure.
77 .Bl -tag -width Pa -compact
78 .It Pa /etc/master.passwd
79 The current password file.
81 A Version 7 format password file.
83 The insecure password database file.
84 .It Pa /etc/pwd.db.tmp
87 The secure password database file.
88 .It Pa /etc/spwd.db.tmp
92 Because of the necessity for atomic update of the password files,
97 This, however, requires that the file specified on the command line live
98 on the same file system as the
102 There are the obvious races with multiple people running
104 on different password files at the same time.
111 handle the locking necessary to avoid this problem.
113 Previous versions of the system had a program similar to
118 style databases for the password file but depended on the calling programs
120 The program was renamed in order that previous users of the program
121 not be surprised by the changes in functionality.