dhcpcd: update README.DRAGONFLY
[dragonfly.git] / usr.sbin / pwd_mkdb / pwd_mkdb.8
blob21ec1a51ad0175bdab6fc2f08686998b1ebdb3c6
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)pwd_mkdb.8  8.1 (Berkeley) 6/6/93
29 .\" $FreeBSD: src/usr.sbin/pwd_mkdb/pwd_mkdb.8,v 1.26 2005/02/28 21:05:30 ru Exp $
30 .\" $DragonFly: src/usr.sbin/pwd_mkdb/pwd_mkdb.8,v 1.3 2006/02/17 19:40:22 swildner Exp $
31 .\"
32 .Dd June 9, 2021
33 .Dt PWD_MKDB 8
34 .Os
35 .Sh NAME
36 .Nm pwd_mkdb
37 .Nd "generate the password databases"
38 .Sh SYNOPSIS
39 .Nm
40 .Op Fl BCiLNp
41 .Op Fl d Ar directory
42 .Op Fl s Ar cachesize
43 .Op Fl u Ar username
44 .Ar file
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility creates
49 .Xr db 3
50 style secure and insecure databases for the specified file.
51 These databases are then installed into
52 .Pa /etc/spwd.db
53 and
54 .Pa /etc/pwd.db
55 respectively.
56 The file is installed into
57 .Pa /etc/master.passwd .
58 The file must be in the correct format (see
59 .Xr passwd 5 ) .
60 It is important to note that the format used in this system is
61 different from the historic Version 7 style format.
62 .Pp
63 The options are as follows:
64 .Bl -tag -width flag
65 .It Fl B
66 Store data in big-endian format.
67 .It Fl C
68 Check if the password file is in the correct format.
69 Do not
70 change, add, or remove any files.
71 .It Fl L
72 Store data in little-endian format.
73 .It Fl N
74 Tell
75 .Nm
76 to exit with an error if it cannot obtain a lock on the file.
77 By default,
78 we block waiting for a lock on the source file.
79 The lock is held through
80 the rebuilding of the database.
81 .It Fl p
82 Create a Version 7 style password file and install it into
83 .Pa /etc/passwd .
84 .It Fl i
85 Ignore locking failure of the
86 .Pa master.passwd
87 file.
88 This option is intended to be used to build password files in
89 the release process over NFS where no contention can happen.
90 A non-default directory must also be specified with the
91 .Fl d
92 option for locking to be ignored.
93 Other use of this option is strongly discouraged.
94 .It Fl d Ar directory
95 Store databases into specified destination directory instead of
96 .Pa /etc .
97 .It Fl u Ar username
98 Only update the record for the specified user.
99 Utilities that
100 operate on a single user can use this option to avoid the
101 overhead of rebuilding the entire database.
102 .It Fl s Ar cachesize
103 Specify in megabytes the size of the memory cache used by the
104 hashing library.
105 On systems with a large user base, a small cache
106 size can lead to prohibitively long database file rebuild times.
107 As a rough guide, the memory usage of
109 in megabytes will be a little bit more than twice the figure
110 specified here.
111 The default is 2 megabytes.
114 The two databases differ in that the secure version contains the user's
115 encrypted password and the insecure version has an asterisk (``*'')
117 The databases are used by the C library password routines (see
118 .Xr getpwent 3 ) .
122 utility exits zero on success, non-zero on failure.
123 .Sh FILES
124 .Bl -tag -width Pa -compact
125 .It Pa /etc/pwd.db
126 The insecure password database file.
127 .It Pa /etc/pwd.db.tmp
128 A temporary file.
129 .It Pa /etc/spwd.db
130 The secure password database file.
131 .It Pa /etc/spwd.db.tmp
132 A temporary file.
133 .It Pa /etc/master.passwd
134 The current password file.
135 .It Pa /etc/passwd
136 A Version 7 format password file.
138 .Sh COMPATIBILITY
139 Previous versions of the system had a program similar to
140 .Nm ,
141 .Xr mkpasswd 8 ,
142 which built
143 .Xr dbm 3
144 style databases for the password file but depended on the calling programs
145 to install them.
146 The program was renamed in order that previous users of the program
147 not be surprised by the changes in functionality.
148 .Sh SEE ALSO
149 .Xr chpass 1 ,
150 .Xr passwd 1 ,
151 .Xr db 3 ,
152 .Xr getpwent 3 ,
153 .Xr passwd 5 ,
154 .Xr vipw 8
155 .Sh BUGS
156 Because of the necessity for atomic update of the password files,
158 uses
159 .Xr rename 2
160 to install them.
161 This, however, requires that the file specified on the command line live
162 on the same file system as the
163 .Pa /etc
164 directory.
166 There are the obvious races with multiple people running
168 on different password files at the same time.
169 The front-ends to
170 .Nm ,
171 .Xr chpass 1 ,
172 .Xr passwd 1
174 .Xr vipw 8 ,
175 handle the locking necessary to avoid this problem.