3 # This code was developped by IDEALX (http://IDEALX.org/) and
4 # contributors (their names can be found in the CONTRIBUTORS file).
6 # Copyright (C) 2002 IDEALX
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 # Purpose of smbldap-migrate-accounts : add NT sam entries from pwdump
31 # smbldap-migrate.pl (-? for help)
33 # Read pwdump entries on stdin, and add them to the ldap server.
34 # Output uncreated/unmodified entries (see parameters -C -U)
35 # in pwdump format to stdout.
36 # Errors, debug and stats are output to stderr.
40 my ($login, $basedn, $lmpwd, $ntpwd, $gecos, $homedir) = @_;
43 "dn: uid=$login,$basedn
48 sambaHomePath: $homedir
52 die "$0: error while modifying user $login\n"
53 unless (do_ldapmodify
($tmpldif) == 0);
62 my $ok = getopts
('awA:CUW:?', \
%Options);
64 if ( (!$ok) || ($Options{'?'}) ) {
65 print "Usage: $0 [-awAWCU?]\n";
66 print " -a process only people, ignore computers\n";
67 print " -w process only computers, ignore persons\n";
68 print " -A <opts> option string passed verbatim to smbldap-useradd for persons\n";
69 print " -W <opts> option string passed verbatim to smbldap-useradd for computers\n";
70 print " -C if entry not found, don't create it and log it to stdout (default: create it)\n";
71 print " -U if entry found, don't update it and log it to stdout (default: update it)\n";
72 print " -? show this help message\n";
76 my %processed = ( 'user' => 0, 'machine' => 0);
77 my %created = ( 'user' => 0, 'machine' => 0);
78 my %updated = ( 'user' => 0, 'machine' => 0);
79 my %logged = ( 'user' => 0, 'machine' => 0);
80 my %errors = ( 'user' => 0, 'machine' => 0);
81 my %existing = ( 'user' => 0, 'machine' => 0);
82 my $specialskipped = 0;
86 my ($login, $rid, $lmpwd, $ntpwd, $gecos, $homedir, $b) = split(/:/, $_);
90 my $entry_type = 'user';
92 if ($login =~ m/.*\$$/ ) { # computer
93 $processed{'machine'}++;
94 $entry_type = 'machine';
95 if (defined($Options{'a'})) {
96 print STDERR
"ignoring $login\n";
100 $usertype = "-w $Options{'W'}";
101 $userbasedn = $computersdn;
104 $processed{'user'}++;
105 if (defined($Options{'w'})) {
106 print STDERR
"ignoring $login\n";
111 print STDERR
"$login seems to be a special Win account (rid=$rid), skipping\n";
115 $usertype = "-a $Options{'A'}";
116 $userbasedn = $usersdn;
120 # uncomment to replace configured share with share from pwdump
121 # if ($homedir eq "") {
122 $homedir = $_userSmbHome;
126 if (!($gecos eq "")) {
127 $gecos =~ tr/ÁÀÂÄáàâäÇçÉÈÊËÆéèêëæÍÌÏÎíìîÏÑñÓÒÔÖóòôöÚÙÜÛúùüûÝýÿ/AAAAaaaaCcEEEEEeeeeeIIIIiiiiNnOOOOooooUUUUuuuuYyy/;
129 $gecos = $_userGecos;
132 my $user_exists = is_samba_user
($login);
135 if (!defined($Options{'C'})) {
136 # uid doesn't exist and we want to create it
137 my $addcmd = "/usr/local/sbin/smbldap-useradd.pl $usertype $login > /dev/null";
138 print STDERR
"$addcmd\n";
139 my $r = system "$addcmd";
141 print STDERR
"error adding $login, skipping\n";
144 # lem modif... a retirer si pb
145 if ($entry_type eq "user")
147 modify_account
($login, $userbasedn, $lmpwd, $ntpwd, $gecos, $homedir);
150 $created{$entry_type}++;
152 else { # uid doesn't exist and no create => log
154 $logged{$entry_type}++;
157 else { # account exists
158 $existing{$entry_type}++;
159 if (!defined($Options{'U'})) { # exists and modify
160 modify_account
($login, $userbasedn, $lmpwd, $ntpwd, $gecos, $homedir);
161 $updated{$entry_type}++;
163 else { # exists and log
165 $logged{$entry_type}++;
172 $sum = $processed{'user'} + $processed{'machine'};
173 print STDERR
"processed: all=$sum user=$processed{'user'} machine=$processed{'machine'}\n";
175 $sum = $existing{'user'} + $existing{'machine'};
176 print STDERR
"existing: all=$sum user=$existing{'user'} machine=$existing{'machine'}\n";
178 $sum = $created{'user'} + $created{'machine'};
179 print STDERR
"created: all=$sum user=$created{'user'} machine=$created{'machine'}\n";
181 $sum = $updated{'user'} + $updated{'machine'};
182 print STDERR
"updated: all=$sum user=$updated{'user'} machine=$updated{'machine'}\n";
184 $sum = $logged{'user'} + $logged{'machine'};
185 print STDERR
"logged: all=$sum user=$logged{'user'} machine=$logged{'machine'}\n";
187 print STDERR
"special users skipped: $specialskipped\n";
190 ########################################
194 smbldap-migrate.pl - Migrate NT accounts to LDAP
198 smbldap-migrate.pl [-a] [-w] [-A opts] [-W opts] [-C] [-U] [-?]
202 This command reads from stdin account entries as created by pwdump,
203 a tool to dump an user database on NT.
204 Depending of the options, some account entries may be output on
205 stdout. All errors and informations are sent to stderr.
207 -a process only people, ignore computers
209 -w process only computers, ignore persons
212 a string containing arguments to pass verbatim to
213 smbldap-useradd when adding users, eg "-m -x".
214 You don't have to specify -a in this string.
217 a string containing arguments to pass verbatim to
218 smbldap-useradd when adding computers, eg "-m -x".
219 You don't have to specify -w in this string.
221 -C if NT account not found in LDAP, don't create it and log it to stdout
224 -U if NT account found in LDAP, don't update it and log it to stdout
227 -? show the help message