]>
git.cameronkatri.com Git - pw-darwin.git/blob - adduser/adduser.sh
3 # Copyright (c) 2002-2004 Michael Telahun Makonnen. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 # Email: Mike Makonnen <mtm@FreeBSD.Org>
31 # Display $msg on stderr, unless we're being quiet.
34 if [ -z "$quietflag" ]; then
35 echo 1>&2 ${THISCMD}: ERROR
: $
*
40 # Display $msg on stdout, unless we're being quiet.
43 if [ -z "$quietflag" ]; then
44 echo ${THISCMD}: INFO
: $
*
49 # Output the value of $_uid if it is available for use. If it
50 # is not, output the value of the next higher uid that is available.
51 # If a uid is not specified, output the first available uid, as indicated
58 if [ -z "$_uid" ]; then
59 _nextuid
="`${PWCMD} usernext | cut -f1 -d:`"
62 ${PWCMD} usershow
$_uid > /dev
/null
2>&1
63 if [ ! "$?" -eq 0 ]; then
74 # Display usage information for this utility.
77 echo "usage: ${THISCMD} [options]"
78 echo " options may include:"
79 echo " -C save to the configuration file only"
80 echo " -D do not attempt to create the home directory"
81 echo " -E disable this account after creation"
82 echo " -G additional groups to add accounts to"
83 echo " -L login class of the user"
84 echo " -N do not read configuration file"
85 echo " -S a nonexistent shell is not an error"
86 echo " -d home directory"
87 echo " -f file from which input will be received"
88 echo " -g default login group"
89 echo " -h display this usage message"
90 echo " -k path to skeleton home directory"
91 echo " -m user welcome message file"
92 echo " -q absolute minimal user feedback"
94 echo " -u uid to start at"
95 echo " -w password type: no, none, yes or random"
99 # Outputs a list of valid shells from /etc/shells. Only the
100 # basename of the shell is output.
105 while read _path _junk
; do
110 echo -n "${_prefix}`basename $_path`"
116 # /usr/sbin/nologin is a special case
117 [ -x "${NOLOGIN_PATH}" ] && echo -n " ${NOLOGIN}"
120 # fullpath_from_shell shell
121 # Given $shell, which is either the full path to a shell or
122 # the basename component of a valid shell, get the
123 # full path to the shell from the /etc/shells file.
125 fullpath_from_shell
() {
127 [ -z "$_shell" ] && return 1
129 # /usr/sbin/nologin is a special case; it needs to be handled
130 # before the cat | while loop, since a 'return' from within
131 # a subshell will not terminate the function's execution, and
132 # the path to the nologin shell might be printed out twice.
134 if [ "$_shell" = "${NOLOGIN}" -o \
135 "$_shell" = "${NOLOGIN_PATH}" ]; then
141 while read _path _junk
; do
146 if [ "$_path" = "$_shell" -o \
147 "`basename $_path`" = "$_shell" ]; then
159 # If the given shell is listed in ${ETCSHELLS} or it is
160 # the nologin shell this function will return 0.
161 # Otherwise, it will return 1. If shell is valid but
162 # the path is invalid or it is not executable it
163 # will emit an informational message saying so.
168 _shellchk
="${GREPCMD} '^$_sh$' ${ETCSHELLS} > /dev/null 2>&1"
170 if ! eval $_shellchk; then
171 # The nologin shell is not listed in /etc/shells.
172 if [ "$_sh" != "${NOLOGIN_PATH}" ]; then
173 err
"Invalid shell ($_sh) for user $username."
178 info
"The shell ($_sh) does not exist or is not executable."
184 # Save some variables to a configuration file.
185 # Note: not all script variables are saved, only those that
186 # it makes sense to save.
189 echo "# Configuration file for adduser(8)." > ${ADDUSERCONF}
190 echo "# NOTE: only *some* variables are saved." >> ${ADDUSERCONF}
191 echo "# Last Modified on `${DATECMD}`." >> ${ADDUSERCONF}
192 echo '' >> ${ADDUSERCONF}
193 echo "defaultLgroup=$ulogingroup" >> ${ADDUSERCONF}
194 echo "defaultclass=$uclass" >> ${ADDUSERCONF}
195 echo "defaultgroups=$ugroups" >> ${ADDUSERCONF}
196 echo "passwdtype=$passwdtype" >> ${ADDUSERCONF}
197 echo "homeprefix=$homeprefix" >> ${ADDUSERCONF}
198 echo "defaultshell=$ushell" >> ${ADDUSERCONF}
199 echo "udotdir=$udotdir" >> ${ADDUSERCONF}
200 echo "msgfile=$msgfile" >> ${ADDUSERCONF}
201 echo "disableflag=$disableflag" >> ${ADDUSERCONF}
202 echo "uidstart=$uidstart" >> ${ADDUSERCONF}
206 # Add a user to the user database. If the user chose to send a welcome
207 # message or lock the account, do so.
211 # Is this a configuration run? If so, don't modify user database.
213 if [ -n "$configflag" ]; then
234 _name
="-n '$username'"
235 [ -n "$uuid" ] && _uid
='-u "$uuid"'
236 [ -n "$ulogingroup" ] && _group
='-g "$ulogingroup"'
237 [ -n "$ugroups" ] && _grouplist
='-G "$ugroups"'
238 [ -n "$ushell" ] && _shell
='-s "$ushell"'
239 [ -n "$uclass" ] && _class
='-L "$uclass"'
240 [ -n "$ugecos" ] && _comment
='-c "$ugecos"'
241 [ -n "$udotdir" ] && _dotdir
='-k "$udotdir"'
242 [ -n "$uexpire" ] && _expire
='-e "$uexpire"'
243 [ -n "$upwexpire" ] && _pwexpire
='-p "$upwexpire"'
244 if [ -z "$Dflag" -a -n "$uhome" ]; then
245 # The /nonexistent home directory is special. It
246 # means the user has no home directory.
247 if [ "$uhome" = "$NOHOME" ]; then
250 _home
='-m -d "$uhome"'
252 elif [ -n "$Dflag" -a -n "$uhome" ]; then
257 _passwdmethod
="-w no"
261 # Note on processing the password: The outer double quotes
262 # make literal everything except ` and \ and $.
263 # The outer single quotes make literal ` and $.
264 # We can ensure the \ isn't treated specially by specifying
265 # the -r switch to the read command used to obtain the input.
267 _passwdmethod
="-w yes"
269 _upasswd
='echo "$upass" |'
272 _passwdmethod
="-w none"
275 _passwdmethod
="-w random"
279 _pwcmd
="$_upasswd ${PWCMD} useradd $_uid $_name $_group $_grouplist $_comment"
280 _pwcmd
="$_pwcmd $_shell $_class $_home $_dotdir $_passwdmethod $_passwd"
281 _pwcmd
="$_pwcmd $_expire $_pwexpire"
283 if ! _output
=`eval $_pwcmd` ; then
284 err
"There was an error adding user ($username)."
287 info
"Successfully added ($username) to the user database."
288 if [ "random" = "$passwdtype" ]; then
289 randompass
="$_output"
290 info
"Password for ($username) is: $randompass"
294 if [ -n "$disableflag" ]; then
295 if ${PWCMD} lock
$username ; then
296 info
"Account ($username) is locked."
298 info
"Account ($username) could NOT be locked."
305 if [ -n "$msgflag" ]; then
306 [ -r "$msgfile" ] && {
307 # We're evaluating the contents of an external file.
308 # Let's not open ourselves up for attack. _perms will
309 # be empty if it's writeable only by the owner. _owner
310 # will *NOT* be empty if the file is owned by root.
312 _dir
="`dirname $msgfile`"
313 _file
="`basename $msgfile`"
314 _perms
=`/usr/bin/find $_dir -name $_file -perm +07022 -prune`
315 _owner
=`/usr/bin/find $_dir -name $_file -user 0 -prune`
316 if [ -z "$_owner" -o -n "$_perms" ]; then
317 err
"The message file ($msgfile) may be writeable only by root."
321 while read _line
; do
323 done | ${MAILCMD} -s"Welcome" ${username}
324 info
"Sent welcome message to ($username)."
330 # Reads username of the account from standard input or from a global
331 # variable containing an account line from a file. The username is
332 # required. If this is an interactive session it will prompt in
333 # a loop until a username is entered. If it is batch processing from
334 # a file it will output an error message and return to the caller.
339 # No need to take down user names if this is a configuration saving run.
340 [ -n "$configflag" ] && return
343 if [ -z "$fflag" ]; then
347 _input
="`echo "$fileline" | cut -f1 -d:`"
350 # There *must* be a username, and it must not exist. If
351 # this is an interactive session give the user an
352 # opportunity to retry.
354 if [ -z "$_input" ]; then
355 err
"You must enter a username!"
356 [ -z "$fflag" ] && continue
358 ${PWCMD} usershow
$_input > /dev
/null
2>&1
359 if [ "$?" -eq 0 ]; then
361 [ -z "$fflag" ] && continue
369 # Reads extra information about the user. Can be used both in interactive
370 # and batch (from file) mode.
375 # No need to take down additional user information for a configuration run.
376 [ -n "$configflag" ] && return
378 if [ -z "$fflag" ]; then
379 echo -n "Full name: "
382 _input
="`echo "$fileline" | cut -f7 -d:`"
388 # Get the account's shell. Works in interactive and batch mode. It
389 # accepts either the base name of the shell or the full path.
390 # If an invalid shell is entered it will simply use the default shell.
395 ushell
="$defaultshell"
397 # Make sure the current value of the shell is a valid one
398 if [ -z "$Sflag" ]; then
399 if ! shell_exists
$ushell ; then
400 info
"Using default shell ${defaultshell}."
401 ushell
="$defaultshell"
405 if [ -z "$fflag" ]; then
406 echo -n "Shell ($shells) [`basename $ushell`]: "
409 _input
="`echo "$fileline" | cut -f9 -d:`"
411 if [ -n "$_input" ]; then
412 if [ -n "$Sflag" ]; then
415 _fullpath
=`fullpath_from_shell $_input`
416 if [ -n "$_fullpath" ]; then
419 err
"Invalid shell ($_input) for user $username."
420 info
"Using default shell ${defaultshell}."
421 ushell
="$defaultshell"
428 # Reads the account's home directory. Used both with interactive input
433 if [ -z "$fflag" ]; then
434 echo -n "Home directory [${homeprefix}/${username}]: "
437 _input
="`echo "$fileline" | cut -f8 -d:`"
440 if [ -n "$_input" ]; then
442 # if this is a configuration run, then user input is the home
443 # directory prefix. Otherwise it is understood to
446 [ -z "$configflag" ] && homeprefix
="`dirname $uhome`" || homeprefix
="$uhome"
448 uhome
="${homeprefix}/${username}"
453 # Reads a numeric userid in an interactive or batch session. Automatically
454 # allocates one if it is not specified.
461 if [ -n "$uuid" ]; then
462 _prompt
="Uid [$uuid]: "
464 _prompt
="Uid (Leave empty for default): "
466 if [ -z "$fflag" ]; then
470 _input
="`echo "$fileline" | cut -f2 -d:`"
473 [ -n "$_input" ] && uuid
=$_input
474 uuid
=`get_nextuid $uuid`
479 # Reads login class of account. Can be used in interactive or batch mode.
482 uclass
="$defaultclass"
484 _class
=${uclass:-"default"}
486 if [ -z "$fflag" ]; then
487 echo -n "Login class [$_class]: "
490 _input
="`echo "$fileline" | cut -f4 -d:`"
493 [ -n "$_input" ] && uclass
="$_input"
497 # Reads user's login group. Can be used in both interactive and batch
498 # modes. The specified value can be a group name or its numeric id.
499 # This routine leaves the field blank if nothing is provided and
500 # a default login group has not been set. The pw(8) command
501 # will then provide a login group with the same name as the username.
504 ulogingroup
="$defaultLgroup"
507 if [ -z "$fflag" ]; then
508 echo -n "Login group [${ulogingroup:-$username}]: "
511 _input
="`echo "$fileline" | cut -f3 -d:`"
514 # Pw(8) will use the username as login group if it's left empty
515 [ -n "$_input" ] && ulogingroup
="$_input"
519 # Read additional groups for the user. It can be used in both interactive
523 ugroups
="$defaultgroups"
525 _group
=${ulogingroup:-"${username}"}
527 if [ -z "$configflag" ]; then
528 [ -z "$fflag" ] && echo -n "Login group is $_group. Invite $username"
529 [ -z "$fflag" ] && echo -n " into other groups? [$ugroups]: "
531 [ -z "$fflag" ] && echo -n "Enter additional groups [$ugroups]: "
535 [ -n "$_input" ] && ugroups
="$_input"
539 # Read expiry information for the account and also for the password. This
540 # routine is used only from batch processing mode.
543 upwexpire
="`echo "$fileline" | cut -f5 -d:`"
544 uexpire
="`echo "$fileline" | cut -f6 -d:`"
548 # Read the password in batch processing mode. The password field matters
549 # only when the password type is "yes" or "random". If the field is empty and the
550 # password type is "yes", then it assumes the account has an empty passsword
551 # and changes the password type accordingly. If the password type is "random"
552 # and the password field is NOT empty, then it assumes the account will NOT
553 # have a random password and set passwdtype to "yes."
556 # We may temporarily change a password type. Make sure it's changed
557 # back to whatever it was before we process the next account.
559 [ -n "$savedpwtype" ] && {
560 passwdtype
=$savedpwtype
564 # There may be a ':' in the password
565 upass
=${fileline#*:*:*:*:*:*:*:*:*:}
567 if [ -z "$upass" ]; then
570 # if it's empty, assume an empty password
586 # Reads a line of account information from standard input and
587 # adds it to the user database.
592 while read -r fileline
; do
614 # Prompts for user information interactively, and commits to
617 input_interactive
() {
644 # The case where group = user is handled elsewhere, so
645 # validate any other groups the user is invited to.
646 until [ "$_logingroup_ok" = yes ]; do
649 if [ -n "$ulogingroup" -a "$username" != "$ulogingroup" ]; then
650 if ! ${PWCMD} show group
$ulogingroup > /dev
/null
2>&1; then
651 echo "Group $ulogingroup does not exist!"
656 until [ "$_groups_ok" = yes ]; do
659 for i
in $ugroups; do
660 if [ "$username" != "$i" ]; then
661 if ! ${PWCMD} show group
$i > /dev
/null
2>&1; then
662 echo "Group $i does not exist!"
674 echo -n "Use password-based authentication? [$_usepass]: "
676 [ -z "$_input" ] && _input
=$_usepass
681 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
683 echo -n "Use an empty password? (yes/no) [$_emptypass]: "
685 [ -n "$_input" ] && _emptypass
=$_input
688 echo -n "Use a random password? (yes/no) [$_random]: "
690 [ -n "$_input" ] && _random
="$_input"
692 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
698 [ -n "$configflag" ] && break
699 trap 'stty echo; exit' 0 1 2 3 15
701 echo -n "Enter password: "
704 echo -n "Enter password again: "
708 # if user entered a blank password
709 # explicitly ask again.
710 [ -z "$upass" -a -z "$_passconfirm" ] \
713 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
718 # invalid answer; repeat the loop
722 if [ "$upass" != "$_passconfirm" ]; then
723 echo "Passwords did not match!"
730 # invalid answer; repeat loop
736 _disable
=${disableflag:-"no"}
738 echo -n "Lock out the account after creation? [$_disable]: "
740 [ -z "$_input" ] && _input
=$_disable
745 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
749 # invalid answer; repeat loop
756 # Display the information we have so far and prompt to
759 _disable
=${disableflag:-"no"}
760 [ -z "$configflag" ] && printf "%-10s : %s\n" Username
$username
775 [ -z "$configflag" ] && printf "%-10s : %s\n" "Password" "$_pass"
776 [ -n "$configflag" ] && printf "%-10s : %s\n" "Pass Type" "$passwdtype"
777 [ -z "$configflag" ] && printf "%-10s : %s\n" "Full Name" "$ugecos"
778 [ -z "$configflag" ] && printf "%-10s : %s\n" "Uid" "$uuid"
779 printf "%-10s : %s\n" "Class" "$uclass"
780 printf "%-10s : %s %s\n" "Groups" "${ulogingroup:-$username}" "$ugroups"
781 printf "%-10s : %s\n" "Home" "$uhome"
782 printf "%-10s : %s\n" "Shell" "$ushell"
783 printf "%-10s : %s\n" "Locked" "$_disable"
785 echo -n "OK? (yes/no): "
791 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
803 #### END SUBROUTINE DEFINITION ####
805 THISCMD
=`/usr/bin/basename $0`
807 ADDUSERCONF
="${ADDUSERCONF:-/etc/adduser.conf}"
808 PWCMD
="${PWCMD:-/usr/sbin/pw}"
809 MAILCMD
="${MAILCMD:-mail}"
810 ETCSHELLS
="${ETCSHELLS:-/etc/shells}"
811 NOHOME
="/nonexistent"
813 NOLOGIN_PATH
="/usr/sbin/nologin"
814 GREPCMD
="/usr/bin/grep"
828 udotdir
=/usr
/share
/skel
832 shells
="`valid_shells`"
834 msgfile
=/etc
/adduser.msg
851 defaultshell
="${DEFAULTSHELL}"
853 # Make sure the user running this program is root. This isn't a security
854 # measure as much as it is a usefull method of reminding the user to
855 # 'su -' before he/she wastes time entering data that won't be saved.
857 procowner
=${procowner:-`/usr/bin/id -u`}
858 if [ "$procowner" != "0" ]; then
859 err
'you must be the super-user (uid 0) to use this utility.'
863 # Overide from our conf file
864 # Quickly go through the commandline line to see if we should read
865 # from our configuration file. The actual parsing of the commandline
866 # arguments happens after we read in our configuration file (commandline
867 # should override configuration file).
870 if [ "$_i" = "-N" ]; then
875 if [ -n "$readconfig" ]; then
876 # On a long-lived system, the first time this script is run it
877 # will barf upon reading the configuration file for its perl predecessor.
878 if ( .
${ADDUSERCONF} > /dev
/null
2>&1 ); then
879 [ -r ${ADDUSERCONF} ] && .
${ADDUSERCONF} > /dev
/null
2>&1
883 # Proccess command-line options
908 [ "$2" != "-" ] && infile
="$2"
961 defaultshell
="`fullpath_from_shell $2`"
975 # If the -f switch was used, get input from a file. Otherwise,
976 # this is an interactive session.
978 if [ -n "$fflag" ]; then
979 if [ -z "$infile" ]; then
981 elif [ -n "$infile" ]; then
982 if [ -r "$infile" ]; then
983 input_from_file
< $infile
985 err
"File ($infile) is unreadable or does not exist."
991 if [ -z "$configflag" ]; then
992 echo -n "Add another user? (yes/no): "
994 echo -n "Re-edit the default configuration? (yes/no): "
998 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
999 uidstart
=`get_nextuid $uidstart`