1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
#!/usr/bin/perl
#
# $Id: migrate_passwd.pl,v 1.11 2001/08/13 08:54:26 lukeh Exp $
#
# Copyright (c) 1997 Luke Howard.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by Luke Howard.
# 4. The name of the other may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE LUKE HOWARD ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL LUKE HOWARD BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#
# Password migration tool. Migrates /etc/shadow as well, if it exists.
#
# Thanks to Peter Jacob Slot <peter@vision.auk.dk>.
#
# UTF8 support and random tweaks by Jonas Smedegaard <dr@jones.dk>.
require 'migrate_common.ph';
$PROGRAM = "migrate_passwd.pl";
$NAMINGCONTEXT = &getsuffix($PROGRAM);
&parse_args();
&read_shadow_file();
&open_files();
while(<INFILE>)
{
chop;
next if /^#/;
next if /^\+/;
local($user, $pwd, $uid, $gid, $gecos, $homedir, $shell) = split(/:/);
next if (int($IGNORE_UID_BELOW) and int($uid) < int($IGNORE_UID_BELOW));
next if (int($IGNORE_UID_ABOVE) and int($uid) > int($IGNORE_UID_ABOVE));
next if (int($IGNORE_GID_BELOW) and int($uid) < int($IGNORE_GID_BELOW));
next if (int($IGNORE_GID_ABOVE) and int($uid) > int($IGNORE_GID_ABOVE));
if ($USE_UTF8) {
}
if ($use_stdout) {
&dump_user(STDOUT, $user, $pwd, $uid, $gid, $gecos, $homedir, $shell);
} else {
&dump_user(OUTFILE, $user, $pwd, $uid, $gid, $gecos, $homedir, $shell);
}
}
sub dump_user
{
local($HANDLE, $user, $pwd, $uid, $gid, $gecos, $homedir, $shell) = @_;
local($name,$office,$wphone,$hphone)=split(/,/,$gecos);
local($sn);
local($givenname);
local($cn);
local(@tmp);
if ($name) { $cn = $name; } else { $cn = $user; }
$_ = $cn;
@tmp = split(/\s+/);
$sn = $tmp[$#tmp];
pop(@tmp);
$givenname=join(' ',@tmp);
print $HANDLE "dn: uid=$user,$NAMINGCONTEXT\n";
print $HANDLE "uid: $user\n";
&print_utf8($HANDLE, "cn", $cn);
if ($EXTENDED_SCHEMA) {
if ($wphone) {
&print_utf8($HANDLE, "telephonenumber", $wphone);
}
if ($office) {
&print_utf8($HANDLE, "roomnumber", $office);
}
if ($hphone) {
&print_utf8($HANDLE, "homephone", $hphone);
}
if ($givenname) {
&print_utf8($HANDLE, "givenname", $givenname);
}
&print_utf8($HANDLE, "sn", $sn);
if ($DEFAULT_MAIL_DOMAIN) {
print $HANDLE "mail: $user\@$DEFAULT_MAIL_DOMAIN\n";
}
if ($DEFAULT_MAIL_HOST) {
print $HANDLE "mailRoutingAddress: $user\@$DEFAULT_MAIL_HOST\n";
print $HANDLE "mailHost: $DEFAULT_MAIL_HOST\n";
print $HANDLE "objectClass: mailRecipient\n";
}
print $HANDLE "objectClass: person\n";
print $HANDLE "objectClass: organizationalPerson\n";
print $HANDLE "objectClass: inetOrgPerson\n";
}
print $HANDLE "objectClass: account\n";
print $HANDLE "objectClass: posixAccount\n";
print $HANDLE "objectClass: top\n";
if ($DEFAULT_REALM) {
print $HANDLE "objectClass: kerberosSecurityObject\n";
}
if ($shadowUsers{$user} ne "") {
&dump_shadow_attributes($HANDLE, split(/:/, $shadowUsers{$user}));
} else {
print $HANDLE "userPassword: {crypt}$pwd\n";
}
if ($DEFAULT_REALM) {
print $HANDLE "krbname: $user\@$DEFAULT_REALM\n";
}
if ($shell) {
print $HANDLE "loginShell: $shell\n";
}
if ($uid ne "") {
print $HANDLE "uidNumber: $uid\n";
} else {
print $HANDLE "uidNumber:\n";
}
if ($gid ne "") {
print $HANDLE "gidNumber: $gid\n";
} else {
print $HANDLE "gidNumber:\n";
}
if ($homedir) {
print $HANDLE "homeDirectory: $homedir\n";
} else {
print $HANDLE "homeDirectory:\n";
}
if ($gecos) {
# FIXME: Why does UTF8 encoding fail here? Too long? Restriction in nis schema?
# &print_utf8($HANDLE, "gecos", $gecos);
&print_7bit($HANDLE, "gecos", $gecos);
}
print $HANDLE "\n";
}
close(INFILE);
if (OUTFILE != STDOUT) { close(OUTFILE); }
sub read_shadow_file
{
open(SHADOW, "/etc/shadow") || return;
while(<SHADOW>) {
chop;
($shadowUser) = split(/:/, $_);
$shadowUsers{$shadowUser} = $_;
}
close(SHADOW);
}
sub dump_shadow_attributes
{
local($HANDLE, $user, $pwd, $lastchg, $min, $max, $warn, $inactive, $expire, $flag) = @_;
print $HANDLE "objectClass: shadowAccount\n";
if ($pwd) {
print $HANDLE "userPassword: {crypt}$pwd\n";
}
if ($lastchg) {
print $HANDLE "shadowLastChange: $lastchg\n";
}
if ($min) {
print $HANDLE "shadowMin: $min\n";
}
if ($max) {
print $HANDLE "shadowMax: $max\n";
}
if ($warn) {
print $HANDLE "shadowWarning: $warn\n";
}
if ($inactive) {
print $HANDLE "shadowInactive: $inactive\n";
}
if ($expire) {
print $HANDLE "shadowExpire: $expire\n";
}
if ($flag) {
print $HANDLE "shadowFlag: $flag\n";
}
}
sub print_7bit
{
local($HANDLE, $attribute, $content) = @_;
for($content) {
s//Ae/g;
s//Ee/g;
s//Ie/g;
s//Oe/g;
s//Ue/g;
s//ae/g;
s//ee/g;
s//ie/g;
s//oe/g;
s//ue/g;
s//ye/g;
s//Ae/g;
s//ae/g;
s//Oe/g;
s//oe/g;
s//Aa/g;
s//aa/g;
}
print $HANDLE "$attribute: $content\n";
}
sub print_utf8
{
# Regexp found on perl-unicode mailinglist in an email posted by
# Jarkko Hietaniemi <jhi@iki.fi>
local($HANDLE, $attribute, $content) = @_;
if ($USE_UTF8) {
# print $HANDLE "$attribute\:: " . &encode_base64(pack("U0U*", unpack("C*", $content)), "") . "\n";
for($content) {
s/([\x80-\xFF])/chr(0xC0|ord($1)>>6).chr(0x80|ord($1)&0x3F)/eg;
}
print $HANDLE "$attribute\::" . &encode_base64($content, "") . "\n";
} else {
&print_7bit($HANDLE, "$attribute", "$content");
}
}
sub encode_base64 ($;$)
# Found on openldap mailinglist in an email posted by
# Baruzzi Giovanni <giovanni.baruzzi@allianz-leben.de>
# Historically this module has been implemented as pure perl code.
# The XS implementation runs about 20 times faster, but the Perl
# code might be more portable, so it is still here.
{
my $res = "";
my $eol = $_[1];
$eol = "\n" unless defined $eol;
pos($_[0]) = 0; # ensure start at the beginning
while ($_[0] =~ /(.{1,45})/gs) {
$res .= substr(pack('u', $1), 1);
chop($res);
}
$res =~ tr|` -_|AA-Za-z0-9+/|; # `# help emacs
# fix padding at the end
my $padding = (3 - length($_[0]) % 3) % 3;
$res =~ s/.{$padding}$/'=' x $padding/e if $padding;
# break encoded string into lines of no more than 76 characters each
if (length $eol) {
$res =~ s/(.{1,76})/$1$eol/g;
}
$res;
}
|