#!/usr/bin/perl -w # $Id: smbldap-useradd,v 1.27 2005/05/27 14:21:00 jtournier Exp $ # # This code was developped by IDEALX (http://IDEALX.org/) and # contributors (their names can be found in the CONTRIBUTORS file). # # Copyright (C) 2002 IDEALX # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # Purpose of smbldap-useradd : user (posix,shadow,samba) add use strict; use FindBin; use FindBin qw($RealBin); use lib "$RealBin/"; use smbldap_tools; use Crypt::SmbHash; ##################### use Getopt::Std; my %Options; my $ok = getopts('o:anmwiPG:u:g:d:s:c:k:t:A:B:C:D:E:F:H:M:N:S:T:?', \%Options); if ( (!$ok) || (@ARGV < 1) || ($Options{'?'}) ) { print_banner; print "Usage: $0 [-awmugdsckABCDEFGHMNPST?] username\n"; print " -o add the user in the organizational unit (relative to the user suffix)\n"; print " -a is a Windows User (otherwise, Posix stuff only)\n"; print " -w is a Windows Workstation (otherwise, Posix stuff only)\n"; print " -i is a trust account (Windows Workstation)\n"; print " -u uid\n"; print " -g gid\n"; print " -G supplementary comma-separated groups\n"; print " -n do not create a group\n"; print " -d home\n"; print " -s shell\n"; print " -c gecos\n"; print " -m creates home directory and copies /etc/skel\n"; print " -k skeleton dir (with -m)\n"; print " -t time. Wait 'time' seconds before exiting (when adding Windows Workstation)\n"; print " -P ends by invoking smbldap-passwd\n"; print " -A can change password ? 0 if no, 1 if yes\n"; print " -B must change password ? 0 if no, 1 if yes\n"; print " -C sambaHomePath (SMB home share, like '\\\\PDC-SRV\\homes')\n"; print " -D sambaHomeDrive (letter associated with home share, like 'H:')\n"; print " -E sambaLogonScript (DOS script to execute on login)\n"; print " -F sambaProfilePath (profile directory, like '\\\\PDC-SRV\\profiles\\foo')\n"; print " -H sambaAcctFlags (samba account control bits like '[NDHTUMWSLKI]')\n"; print " -N canonical name\n"; print " -S surname\n"; print " -M local mailAddress (comma seperated)\n"; print " -T mailToAddress (forward address) (comma seperated)\n"; print " -? show this help message\n"; exit (1); } my $ldap_master=connect_ldap_master(); # cause problems when dealing with getpwuid because of the # negative ttl and ldap modification my $nscd_status = system "/etc/init.d/nscd status >/dev/null 2>&1"; if ($nscd_status == 0) { system "/etc/init.d/nscd stop > /dev/null 2>&1"; } # Read only first @ARGV my $userName = $ARGV[0]; # For computers account, add a trailing dollar if missing if (defined($Options{'w'})) { if ($userName =~ /[^\$]$/s) { $userName .= "\$"; } } # untaint $userName (can finish with one or two $) if ($userName =~ /^([\w -.]+\$?)$/) { $userName = $1; } else { print "$0: illegal username\n"; exit (1); } # user must not exist in LDAP (should it be nss-wide ?) my ($rc, $dn) = get_user_dn2($userName); if ($rc and defined($dn)) { print "$0: user $userName exists\n"; exit (9); } elsif (!$rc) { print "$0: error in get_user_dn2\n"; exit(10); } # Read options # we create the user in the specified ou (relative to the users suffix) my $user_ou=$Options{'o'}; if (defined $user_ou) { $config{usersdn}="$user_ou,$config{usersdn}"; } my $userUidNumber = $Options{'u'}; if (!defined($userUidNumber)) { $userUidNumber=get_next_id($config{usersdn},"uidNumber"); } elsif (getpwuid($userUidNumber)) { die "Uid already exists.\n"; } if ($nscd_status == 0) { system "/etc/init.d/nscd start > /dev/null 2>&1"; } my $createGroup = 0; my $userGidNumber = $Options{'g'}; # gid not specified ? if (!defined($userGidNumber)) { # windows machine => $config{defaultComputerGid} if (defined($Options{'w'})) { $userGidNumber = $config{defaultComputerGid}; # } elsif (!defined($Options{'n'})) { # create new group (redhat style) # find first unused gid starting from $config{GID_START} # while (defined(getgrgid($config{GID_START}))) { # $config{GID_START}++; # } # $userGidNumber = $config{GID_START}; # $createGroup = 1; } else { # user will have gid = $config{defaultUserGid} $userGidNumber = $config{defaultUserGid}; } } else { my $gid; if (($gid = parse_group($userGidNumber)) < 0) { print "$0: unknown group $userGidNumber\n"; exit (6); } $userGidNumber = $gid; } my $group_entry; my $userGroupSID; my $userRid; my $user_sid; if (defined $Options{'a'} or defined $Options{'i'}) { # as grouprid we use the value of the sambaSID attribute for # group of gidNumber=$userGidNumber $group_entry = read_group_entry_gid($userGidNumber); $userGroupSID = $group_entry->get_value('sambaSID'); unless ($userGroupSID) { print "Error: SID not set for unix group $userGidNumber\n"; print "check if your unix group is mapped to an NT group\n"; exit (7); } # as rid we use 2 * uid + 1000 $userRid = 2 * $userUidNumber + 1000; # let's test if this SID already exist $user_sid="$config{SID}-$userRid"; my $test_exist_sid=does_sid_exist($user_sid,$config{usersdn}); if ($test_exist_sid->count == 1) { print "User SID already owned by\n"; # there should not exist more than one entry, but ... foreach my $entry ($test_exist_sid->all_entries) { my $dn= $entry->dn; chomp($dn); print "$dn\n"; } exit(7); } } my $userHomeDirectory; my ($userCN, $userSN); my @userMailLocal; my @userMailTo; my $tmp; if (!defined($userHomeDirectory = $Options{'d'})) { $userHomeDirectory = &subst_user($config{userHome}, $userName); } $userHomeDirectory=~s/\/\//\//; $config{userLoginShell} = $tmp if (defined($tmp = $Options{'s'})); $config{userGecos} = $tmp if (defined($tmp = $Options{'c'})); $config{skeletonDir} = $tmp if (defined($tmp = $Options{'k'})); $userCN = ($Options{'c'} || $userName); $userCN = $tmp if (defined($tmp = $Options{'N'})); $userSN = $userName; $userSN = $tmp if (defined($tmp = $Options{'S'})); @userMailLocal = &split_arg_comma($Options{'M'}); @userMailTo = &split_arg_comma($Options{'T'}); ######################## # MACHINE ACCOUNT if (defined($Options{'w'}) or defined($Options{'i'})) { #print "About to create machine $userName:\n"; if (!add_posix_machine ($userName,$userUidNumber,$userGidNumber,$Options{'t'})) { die "$0: error while adding posix account\n"; } if (defined($Options{'i'})) { # For machine trust account # Objectclass sambaSAMAccount must be added now ! my $pass; my $pass2; system "stty -echo"; print "New password : "; chomp($pass=); print "\n"; system "stty echo"; system "stty -echo"; print "Retype new password : "; chomp($pass2=); print "\n"; system "stty echo"; if ($pass ne $pass2) { print "New passwords don't match!\n"; exit (10); } my ($lmpassword,$ntpassword) = ntlmgen $pass; my $date=time; my $modify = $ldap_master->modify ( "uid=$userName,$config{computersdn}", changes => [ replace => [objectClass => ['inetOrgPerson', 'posixAccount', 'sambaSAMAccount']], add => [sambaLogonTime => '0'], add => [sambaLogoffTime => '2147483647'], add => [sambaKickoffTime => '2147483647'], add => [sambaPwdCanChange => '0'], add => [sambaPwdMustChange => '2147483647'], add => [sambaPwdLastSet => "$date"], add => [sambaAcctFlags => '[I ]'], add => [sambaLMPassword => "$lmpassword"], add => [sambaNTPassword => "$ntpassword"], add => [sambaSID => "$user_sid"], add => [sambaPrimaryGroupSID => "$config{SID}-515"] ] ); $modify->code && die "failed to add entry: ", $modify->error ; } $ldap_master->unbind; exit 0; } # USER ACCOUNT # add posix account first my $add = $ldap_master->add ("uid=$userName,$config{usersdn}", attr => [ 'objectclass' => ['top','inetOrgPerson','posixAccount','shadowAccount'], 'cn' => "$userCN", 'sn' => "$userSN", 'uid' => "$userName", 'uidNumber' => "$userUidNumber", 'gidNumber' => "$userGidNumber", 'homeDirectory' => "$userHomeDirectory", 'loginShell' => "$config{userLoginShell}", 'gecos' => "$config{userGecos}", 'description' => "$config{userGecos}", 'userPassword' => "{crypt}x" ] ); $add->code && warn "failed to add entry: ", $add->error ; #if ($createGroup) { # group_add($userName, $userGidNumber); #} group_add_user($userGidNumber, $userName); my $grouplist; # adds to supplementary groups if (defined($grouplist = $Options{'G'})) { add_grouplist_user($grouplist, $userName); } # If user was created successfully then we should create his/her home dir if (defined($tmp = $Options{'m'})) { unless ( $userName =~ /\$$/ ) { if ( !(-e $userHomeDirectory) ) { system "mkdir $userHomeDirectory 2>/dev/null"; system "cp -a $config{skeletonDir}/.[a-z,A-Z]* $config{skeletonDir}/* $userHomeDirectory 2>/dev/null"; system "chown -R $userUidNumber:$userGidNumber $userHomeDirectory 2>/dev/null"; if (defined $config{userHomeDirectoryMode}) { system "chmod $config{userHomeDirectoryMode} $userHomeDirectory 2>/dev/null"; } else { system "chmod 700 $userHomeDirectory 2>/dev/null"; } } } } # we start to defined mail adresses if option M or T is given in option my @adds; if (@userMailLocal) { my @mail; foreach my $m (@userMailLocal) { my $domain = $config{mailDomain}; if ($m =~ /^(.+)@/) { push (@mail, $m); # mailLocalAddress contains only the first part $m= $1; } else { push(@mail, $m.($domain ? '@'.$domain : '')); } } push(@adds, 'mailLocalAddress' => [ @userMailLocal ]); push(@adds, 'mail' => [ @mail ]); } if (@userMailTo) { push(@adds, 'mailRoutingAddress' => [ @userMailTo ]); } if (@userMailLocal || @userMailTo) { push(@adds, 'objectClass' => 'inetLocalMailRecipient'); } # Add Samba user infos if (defined($Options{'a'})) { if (!$config{with_smbpasswd}) { my $winmagic = 2147483647; my $valpwdcanchange = 0; my $valpwdmustchange = $winmagic; my $valpwdlastset = 0; my $valacctflags = "[UX]"; if (defined($tmp = $Options{'A'})) { if ($tmp != 0) { $valpwdcanchange = "0"; } else { $valpwdcanchange = "$winmagic"; } } if (defined($tmp = $Options{'B'})) { if ($tmp != 0) { $valpwdmustchange = "0"; # To force a user to change his password: # . the attribut sambaPwdLastSet must be != 0 # . the attribut sambaAcctFlags must not match the 'X' flag $valpwdlastset=$winmagic; $valacctflags = "[U]"; } else { $valpwdmustchange = "$winmagic"; } } if (defined($tmp = $Options{'H'})) { $valacctflags = "$tmp"; } my $modify = $ldap_master->modify ( "uid=$userName,$config{usersdn}", changes => [ add => [objectClass => 'sambaSAMAccount'], add => [sambaPwdLastSet => "$valpwdlastset"], add => [sambaLogonTime => '0'], add => [sambaLogoffTime => '2147483647'], add => [sambaKickoffTime => '2147483647'], add => [sambaPwdCanChange => "$valpwdcanchange"], add => [sambaPwdMustChange => "$valpwdmustchange"], add => [displayName => "$config{userGecos}"], add => [sambaAcctFlags => "$valacctflags"], add => [sambaSID => "$config{SID}-$userRid"] ] ); $modify->code && die "failed to add entry: ", $modify->error ; } else { my $FILE="|smbpasswd -s -a $userName >/dev/null" ; open (FILE, $FILE) || die "$!\n"; print FILE < $valhomedrive); } if ($valsmbhome) { push(@adds, 'sambaHomePath' => $valsmbhome); } if ($valprofilepath) { push(@adds, 'sambaProfilePath' => $valprofilepath); } if ($valscriptpath) { push(@adds, 'sambaLogonScript' => $valscriptpath); } push(@adds, 'sambaPrimaryGroupSID' => $userGroupSID); push(@adds, 'sambaLMPassword' => "XXX"); push(@adds, 'sambaNTPassword' => "XXX"); my $modify = $ldap_master->modify ( "uid=$userName,$config{usersdn}", add => { @adds } ); $modify->code && die "failed to add entry: ", $modify->error ; } $ldap_master->unbind; # take down session if (defined($Options{'P'})) { exec "$RealBin/smbldap-passwd $userName" } exit 0; ######################################## =head1 NAME smbldap-useradd - Create a new user =head1 SYNOPSIS smbldap-useradd [-o user_ou] [-c comment] [-d home_dir] [-g initial_group] [-G group[,...]] [-m [-k skeleton_dir]] [-s shell] [-u uid [ -o]] [-P] [-A canchange] [-B mustchange] [-C smbhome] [-D homedrive] [-E scriptpath] [-F profilepath] [-H acctflags] login =head1 DESCRIPTION Creating New Users The smbldap-useradd command creates a new user account using the values specified on the command line and the default values from the system and from the configuration files (in /etc/smbldap-tools directory). For Samba users, rid is '2*uidNumber+1000', and sambaPrimaryGroupSID is '$SID-2*gidNumber+1001', where $SID is the domain SID. Thus you may want to use : $ smbldap-useradd -a -g "Domain Admins" -u 500 Administrator to create an domain administrator account (admin rid is 0x1F4 = 500 and grouprid is 0x200 = 512). Without any option, the account created will be an Unix (Posix) account. The following options may be used to add information: -o The user's account will be created in the specified organazional unit. It is relative to the user suffix dn ($usersdn) defined in the configuration file. -a The user will have a Samba account (and Unix). -w Creates an account for a Samba machine (Workstation), so that it can join a sambaDomainName. -i Creates an interdomain trust account (machine Workstation). A password will be asked for the trust account. -c "comment" The new user's comment field (gecos). -d home_dir The new user will be created using home_dir as the value for the user's login directory. The default is to append the login name to userHomePrefix (defined in the configuration file) and use that as the login directory name. -g initial_group The group name or number of the user's initial login group. The group name must exist. A group number must refer to an already existing group. The default group number is defined in the configuration file (defaultUserGid="513"). -G group,[...] A list of supplementary groups which the user is also a member of. Each group is separated to the next by a comma, with no intervening whitespace. The groups are subject to the same restrictions as the group given with the -g option. The default is for the user to belong only to the initial group. -m The user's home directory will be created if it does not exist. The files contained in skeletonDir will be copied to the home directory if the -k option is used, otherwise the files contained in /etc/skel will be used instead. Any directories contained in skeletonDir or /etc/skel will be created in the user's home directory as well. The -k option is only valid in conjunction with the -m option. The default is to not create the directory and to not copy any files. -s shell The name of the user's login shell. The default is to leave this field blank, which causes the system to select the default login shell. -t time Wait